﻿/* ==========================================================================
   NYALI PEARL SPA � STYLESHEET
   1. Variables  2. Reset  3. Typography  4. Header  5. Hero  6. Sections
   7. Services  8. Gallery  9. Testimonials  10. Booking  11. Contact
   12. Footer  13. Responsive  14. Accessibility / reduced motion
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 1. VARIABLES                                                           */
/* ---------------------------------------------------------------------- */
:root{
  --sky:        #7FB8D4;
  --sky-deep:   #5C9EBF;
  --sky-light:  #EAF6FB;
  --ice:        #F2FAFD;
  --pink:       #F4C2C2;
  --pink-soft:  #FBEAEA;
  --cream:      #FFF9F7;
  --white:      #FFFFFF;
  --ink:        #243746;
  --slate:      #6B7280;

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;

  --shadow-soft: 0 12px 40px rgba(36, 55, 70, 0.08);
  --shadow-card: 0 8px 24px rgba(36, 55, 70, 0.06);

  --container: 1180px;
  --header-h: 84px;
  --header-h-scrolled: 68px;

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------------------------------------------------------------------- */
/* 2. RESET                                                               */
/* ---------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 90px; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; height: auto; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, select, textarea{ font: inherit; }
svg{ width: 100%; height: 100%; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hide all main sections except the hero/home and home intro by default. Sections will be
   revealed when navigated to via clicks or hash changes. */
main > section{ display: none; }
main > section#home,
main > section.home-intro,
main > section.services-preview { display: block; }

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 500;
  color: var(--sky-deep);
  margin: 0 0 .9em;
}

.section-head{ max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head h2{ margin-bottom: .4em; }
.section-sub{ font-size: 1.02rem; }

.home-intro{ padding: 5rem 0 3rem; background: linear-gradient(180deg, var(--white) 0%, var(--sky-light) 100%); }
.home-intro .section-head{ text-align: center; margin-bottom: 2.5rem; }
.home-intro .section-head h2::after{
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--sky-deep);
  border-radius: 999px;
  margin: 14px auto 0;
}
.home-intro-inner{ display: grid; gap: 2.5rem; }
.home-intro-copy{ display: grid; gap: 1rem; max-width: 740px; margin: 0 auto; }
.home-intro-copy p{ font-size: 1.03rem; line-height: 1.9; margin: 0 auto; max-width: 820px; color: var(--slate); }
.home-intro-grid{ display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; margin-top: 1rem; }
.intro-card{
  padding: 2.25rem 2rem;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(116,145,173,.12);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.intro-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(82, 138, 223, 0.14);
}
.intro-icon{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.intro-icon svg{ width: 22px; height: 22px; color: var(--sky-deep); }
.intro-card h3{ margin-top: 0; margin-bottom: .85rem; font-size: 1.08rem; }
.intro-card p{ color: var(--slate); font-size: .95rem; line-height: 1.7; }
.premium-card{ background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,247,255,.95)); border-color: rgba(56,111,165,.22); }
.premium-badge{ display: inline-flex; align-items: center; justify-content: center; padding: .5rem 1rem; border-radius: 999px; background: rgba(6,56,105,.08); color: var(--sky-deep); font-weight: 700; letter-spacing: .03em; margin-bottom: 1rem; }

@media (max-width: 1024px){
  .home-intro-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px){
  .home-intro-inner{ gap: 1.5rem; }
  .home-intro-grid{ grid-template-columns: 1fr; }
  .intro-card{ padding: 1.75rem; }
  .section-head{ max-width: 100%; }
}

@media (max-width: 600px){
  .home-intro{ padding: 2.5rem 0 1.5rem; }
  .home-intro-copy{ gap: .75rem; }
  .home-intro-copy p{ font-size: 1rem; }
  .premium-badge{ font-size: .79rem; padding: .45rem .9rem; }
}

.home-intro .slide-in-left,
.home-intro .slide-in-right{
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.home-intro .slide-in-right{
  transform: translateX(24px);
}
.home-intro .slide-in-left.in-view,
.home-intro .slide-in-right.in-view{
  opacity: 1;
  transform: translateX(0);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(92,158,191,.32);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(92,158,191,.4); }
.btn-ghost{
  background: rgba(255,255,255,.5);
  color: var(--ink);
  border: 1px solid rgba(36,55,70,.15);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover{ background: var(--white); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  color: var(--sky-deep);
  border: 1.5px solid var(--sky);
}
.btn-outline:hover{ background: var(--sky-light); }
.btn-sm{ padding: 10px 22px; font-size: .85rem; }
.btn-block{ width: 100%; }

/* ---------------------------------------------------------------------- */
/* 4. HEADER                                                              */
/* ---------------------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36,55,70,.06);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled{ box-shadow: 0 6px 24px rgba(36,55,70,.06); }

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height .3s var(--ease);
}
.site-header.scrolled .header-inner{ height: var(--header-h-scrolled); }

.brand{ display: flex; align-items: center; gap: 10px; }
.brand-mark{ color: var(--sky-deep); flex-shrink: 0; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.1; }
.brand-name{ font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.brand-sub{ font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); }

.main-nav ul{ display: flex; gap: 34px; }
.main-nav a{
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.main-nav a::after,
.mobile-nav a::after{
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--sky-deep);
  transition: width .25s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.is-active::after,
.mobile-nav a:hover::after,
.mobile-nav a.is-active::after{ width: 100%; }
.main-nav a.is-active,
.mobile-nav a.is-active{
  color: var(--sky-deep);
  font-weight: 600;
}
.main-nav a.is-active::before,
.mobile-nav a.is-active::before{
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--sky-deep);
}

.header-actions{ display: flex; align-items: center; gap: 18px; }

.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  transition: max-height .38s var(--ease);
  border-bottom: 1px solid rgba(36,55,70,.06);
}
.mobile-nav.open{ max-height: 480px; }
.mobile-nav ul{ padding: 10px 24px 26px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a{
  display: block;
  padding: 12px 4px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(36,55,70,.05);
  position: relative;
}
.mobile-nav li:last-child a{ border: none; margin-top: 10px; text-align: center; }

/* ---------------------------------------------------------------------- */
/* 5. HERO                                                                */
/* ---------------------------------------------------------------------- */
.hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20,30,38,0.5) 0%, rgba(20,30,38,0.5) 100%);
  padding: 76px 0 0;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-tide{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 85% 12%, rgba(244,194,194,.28), transparent 60%),
    radial-gradient(ellipse 55% 50% at 8% 85%, rgba(127,184,212,.22), transparent 60%);
  pointer-events: none;
}
.hero-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
  pointer-events: none;
}
.hero-orb--a{
  width: 120px; height: 120px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--pink) 70%);
  top: 18%; left: 6%;
  animation: floaty 9s ease-in-out infinite;
}
.hero-orb--b{
  width: 70px; height: 70px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--sky) 70%);
  bottom: 14%; left: 46%;
  animation: floaty 11s ease-in-out infinite reverse;
}
@keyframes floaty{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-22px); }
}

.hero-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 56px 24px 120px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-copy .eyebrow{ color: rgba(255,255,255,.85); }
.hero-copy h1{ color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.15; margin-bottom: .6em; }
.hero-tagline{ color: rgba(255,255,255,.92); font-size: 1.2rem; font-weight: 500; margin-bottom: 1.1em; }
.hero-lede{ font-size: 1.02rem; max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.82); }
.hero-ctas{ display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.8rem; justify-content: center; }

.hero-visual{ display: none; }

/* Background overlay for hero using the CSS variable set on the section */
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(14,22,30,.72) 0%, rgba(14,22,30,.55) 45%, rgba(14,22,30,.82) 100%), var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
  transform: scale(1.02);
}
.hero .hero-inner{ position: relative; z-index: 1; }
.hero-ring{
  position: absolute;
  width: 130px; height: 130px;
  border: 1.5px solid var(--sky);
  border-radius: 50%;
  bottom: -30px; left: -30px;
  opacity: .55;
}

.wave-divider{ display: none; }

/* ---------------------------------------------------------------------- */
/* 6. SECTIONS (shared)                                                   */
/* ---------------------------------------------------------------------- */
section{ padding: 100px 0; }

/* When About includes testimonials, ensure they look correct */
.about-testimonials{ grid-column: 1 / -1; margin-top: 36px; }
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card{ background: var(--white); padding: 22px; border-radius: 14px; box-shadow: var(--shadow-card); color: var(--ink); }
.testimonial-card cite{ display: block; margin-top: 12px; color: var(--slate); font-style: normal; }

@media (max-width: 860px){
  .testimonial-grid{ grid-template-columns: 1fr; }
}

/* Trust bar */
.trust-bar{ padding: 0 0 90px; background: var(--white); }
.trust-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px;
  background: var(--sky-light);
  border-radius: var(--radius-lg);
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  justify-content: center;
  text-align: center;
}
.trust-item svg{ width: 26px; height: 26px; color: var(--sky-deep); flex-shrink: 0; }

/* About */
.about{ background: var(--white); }
.about-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-image{ position: relative; }
.about-image img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-image-accent{
  position: absolute;
  width: 90%; height: 90%;
  top: -22px; right: -22px;
  border: 1.5px solid var(--pink);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-points{ margin: 22px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.about-points li{
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: .96rem;
}
.about-points li::before{
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

/* Featured experience */
.featured{ background: linear-gradient(180deg, var(--white), var(--ice)); }
.featured-inner{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 0;
}
.featured-image img{
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  aspect-ratio: 5/4;
  object-fit: cover;
}
.featured-card{
  background: var(--white);
  padding: 48px 44px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-soft);
  margin-left: -40px;
  border-top: 3px solid var(--pink);
}
.featured-list{ display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.featured-list li{ padding-left: 22px; position: relative; font-size: .95rem; color: var(--ink); }
.featured-list li::before{
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky-deep);
}

/* Why choose us */
.why-us{ background: var(--white); }
.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.why-card{
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  height: auto;
}
.why-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-card); }
.why-icon{
  width: 44px; height: 44px;
  color: var(--sky-deep);
  margin-bottom: 16px;
}
.why-card h3{ margin-bottom: .3em; font-size: 1.1rem; }
.why-card p{ font-size: .92rem; margin: 0; }

/* ---------------------------------------------------------------------- */
/* 7. SERVICES                                                            */
/* ---------------------------------------------------------------------- */
.services{ background: var(--ice); }
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.service-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-media{
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
}
.service-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.service-icon{
  width: 46px; height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 18px;
}
.service-card h3{ margin-bottom: .35em; }
.service-card p{ font-size: .92rem; }
.service-top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.service-price{
  color: var(--sky-deep);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}
.service-duration{
  color: var(--slate);
  font-size: .82rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.service-desc{ flex-grow: 0; margin-bottom: 16px; }
.service-benefits-label{
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-benefits{
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-grow: 1;
}
.service-benefits li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: var(--slate);
}
.service-benefit-icon{
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--sky-deep);
}
.service-cta{ margin-top: auto; }
.service-link{
  color: var(--sky-deep);
  font-weight: 500;
  font-size: .88rem;
  margin-top: 14px;
  display: inline-block;
  transition: transform .25s var(--ease);
}
.service-link:hover{ transform: translateX(3px); }
.services-note{ text-align: center; margin-top: 40px; font-size: .92rem; }
.services-note a{ color: var(--sky-deep); font-weight: 500; }

/* ---------------------------------------------------------------------- */
/* 8. GALLERY                                                             */
/* ---------------------------------------------------------------------- */
.gallery{ background: var(--white); }
.gallery-grid{
  columns: 3;
  column-gap: 18px;
}
.gallery-item{
  display: block;
  width: 100%;
  margin-bottom: 18px;
  break-inside: avoid;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.05); }
.gallery-item::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(36,55,70,.28));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery-item:hover::after{ opacity: 1; }

@media (max-width: 640px){
  .gallery-grid{ column-gap: 10px; }
  .gallery-item{ margin-bottom: 10px; border-radius: 14px; }
  .gallery-item img{ aspect-ratio: 1 / 1; }
  .gallery-item::after{ opacity: .18; }
}

@media (max-width: 400px){
  .gallery-grid{ columns: 1; column-gap: 0; }
  .gallery-item img{ aspect-ratio: 4 / 3; }
}
/* 8. MASSEUSES */
.masseuse-grid{ display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.masseuse-card{
  background: var(--white);
  padding: 28px 26px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  text-align: left;
  border: 1px solid rgba(82, 138, 223, 0.14);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.masseuse-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(82, 138, 223, 0.16);
}
.masseuse-top{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.masseuse-avatar{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sky-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  flex-shrink: 0;
}
.masseuse-card h3{ margin: 0; font-size: 1.05rem; }
.masseuse-card .role{ color: var(--sky-deep); font-weight: 600; margin-bottom: 8px; font-size: .85rem; }
.masseuse-card .bio{ color: var(--slate); margin-bottom: 0; font-size: .9rem; line-height: 1.6; }

#lightbox{
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 38, .92);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
#lightbox[hidden],
#lightbox.hidden-state{
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
#lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox img{
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  transform: scale(.94);
  transition: transform .3s var(--ease);
}
.lightbox.open img{ transform: scale(1); }
.lightbox-close{
  position: absolute;
  top: 26px; right: 30px;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  width: 44px; height: 44px;
}

/* ---------------------------------------------------------------------- */
/* 9. TESTIMONIALS                                                        */
/* ---------------------------------------------------------------------- */
.testimonials{ background: var(--sky-light); }
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonial-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  margin: 0;
  box-shadow: var(--shadow-card);
  height: auto;
}
.testimonial-card p{
  font-family: var(--font-body);
  font-style: normal;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.testimonial-card cite{ font-style: normal; font-size: .85rem; color: var(--slate); }

/* ---------------------------------------------------------------------- */
/* CTA                                                                    */
/* ---------------------------------------------------------------------- */
.cta{
  background: linear-gradient(135deg, var(--sky-deep), var(--sky) 60%, var(--pink));
  position: relative;
}
.cta-inner{ text-align: center; max-width: 640px; }
.cta h2{ color: var(--white); }
.cta p{ color: rgba(255,255,255,.9); }
.cta-actions{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.cta .btn-ghost{ color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }
.cta .btn-primary{ background: var(--white); color: var(--sky-deep); box-shadow: 0 10px 24px rgba(0,0,0,.15); }
@media (max-width: 640px){
  .cta-actions{ flex-direction: column; width: 100%; }
  .cta-actions .btn{ width: 100%; }
}

/* ---------------------------------------------------------------------- */
/* 10. BOOKING                                                            */
/* ---------------------------------------------------------------------- */
.booking{
  background: var(--cream);
  margin-top: 64px;
  padding: 56px 32px;
  border-radius: var(--radius-lg);
}
.booking-inner{ max-width: 760px; margin: 0 auto; }
.booking-head{ text-align: center; margin-bottom: 40px; }
.booking-form{
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ margin-bottom: 20px; display: flex; flex-direction: column; }
.field label{ font-size: .88rem; font-weight: 500; margin-bottom: 7px; color: var(--ink); }
.field .optional{ font-weight: 400; color: var(--slate); }
.field input, .field select, .field textarea{
  padding: 13px 16px;
  border: 1.5px solid rgba(36,55,70,.14);
  border-radius: var(--radius-sm);
  background: var(--ice);
  color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--sky-deep);
  background: var(--white);
  outline: none;
}
.field textarea{ resize: vertical; min-height: 90px; }
.error-msg{
  display: none;
  color: #C0455A;
  font-size: .8rem;
  margin-top: 5px;
}
.field.invalid input, .field.invalid select{ border-color: #C0455A; }
.field.invalid .error-msg{ display: block; }

.form-note{ text-align: center; font-size: .8rem; margin: 16px 0 0; color: var(--slate); }

.booking-success{
  text-align: center;
  background: var(--white);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.booking-success svg{ width: 54px; height: 54px; color: var(--sky-deep); margin: 0 auto 16px; }
.booking-success h3{ margin-bottom: .4em; }

/* ---------------------------------------------------------------------- */
/* 11. CONTACT                                                            */
/* ---------------------------------------------------------------------- */
.contact{ background: var(--white); }
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.contact-list{ display: flex; flex-direction: column; gap: 20px; margin: 26px 0 30px; }
.contact-list li{ display: flex; gap: 16px; align-items: flex-start; }
.contact-icon{ width: 24px; height: 24px; color: var(--sky-deep); flex-shrink: 0; margin-top: 3px; }
.contact-list strong{ display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 3px; }
.contact-list a, .contact-list span{ color: var(--ink); font-size: 1rem; }
.contact-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

.contact-map{ border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(36,55,70,.08); min-height: 320px; }
.map-embed{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  background: var(--sky-light);
}

/* ---------------------------------------------------------------------- */
/* 12. FOOTER                                                             */
/* ---------------------------------------------------------------------- */
.site-footer{ background: var(--ink); color: rgba(255,255,255,.75); padding-top: 64px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-name{ font-size: 1.3rem; color: var(--white); }
.footer-brand p{ color: rgba(255,255,255,.6); margin: 8px 0 18px; }
.footer-social{ display: flex; gap: 12px; }
.footer-social a{
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  transition: background .25s var(--ease);
}
.footer-social svg{ width: 16px; height: 16px; }
.footer-social a:hover{ background: rgba(255,255,255,.12); }

.site-footer h4{ color: var(--white); font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-links ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-links a{ color: rgba(255,255,255,.65); font-size: .92rem; }
.footer-links a:hover{ color: var(--white); }
.footer-contact p{ margin: 0 0 10px; color: rgba(255,255,255,.65); font-size: .92rem; }
.footer-contact a{ color: rgba(255,255,255,.85); }

.footer-bottom{ padding: 22px 0; }
.footer-bottom .container{ display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-credit{ font-weight: 500; color: rgba(255,255,255,.8); }

/* ---------------------------------------------------------------------- */
/* WhatsApp float                                                         */
/* ---------------------------------------------------------------------- */
.whatsapp-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.4);
  z-index: 90;
  transition: transform .25s var(--ease);
}
.whatsapp-float svg{ width: 30px; height: 30px; fill: var(--white); }
.whatsapp-float:hover{ transform: scale(1.08); }

/* ---------------------------------------------------------------------- */
/* Reveal-on-scroll                                                       */
/* ---------------------------------------------------------------------- */
.reveal-up{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal-up.in-view{ opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------------- */
/* 13. RESPONSIVE                                                         */
/* ---------------------------------------------------------------------- */
@media (max-width: 1024px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .featured-card{ padding: 38px 32px; }
  .service-card{ padding: 26px 22px; }
}

@media (max-width: 900px){
  .main-nav{ display: none; }
  .hamburger{ display: flex; }
  .header-actions .btn-sm{ display: none; }

  .hero-inner{ grid-template-columns: 1fr; padding-bottom: 90px; text-align: center; }
  .hero-copy{ order: 2; }
  .hero-visual{ order: 1; max-width: 340px; margin: 0 auto; }
  .hero-ctas{ justify-content: center; }
  .hero-lede{ margin-left: auto; margin-right: auto; }

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

  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-image{ max-width: 420px; margin: 0 auto; }

  .featured-inner{ grid-template-columns: 1fr; }
  .featured-image img{ border-radius: var(--radius-lg); }
  .featured-card{ margin-left: 0; margin-top: -40px; width: 88%; margin-inline: auto; border-radius: var(--radius-lg); }

  .gallery-grid{ columns: 2; }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .masseuse-grid{ grid-template-columns: 1fr; }
  .masseuse-photo{ height: 220px; }

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

@media (max-width: 640px){
  section{ padding: 70px 0; }
  .trust-grid{ grid-template-columns: 1fr 1fr; padding: 20px; }
  .services-grid{ grid-template-columns: 1fr; gap: 18px; }
  .why-grid{ grid-template-columns: 1fr; }
  .service-card{ padding: 24px 20px; }
  .service-top{ gap: 8px; }
  .service-price{ font-size: 1rem; }
  .service-duration{ font-size: .78rem; margin-bottom: 12px; }
  .service-desc{ font-size: .88rem; }
  .service-benefits{ gap: 6px; margin-bottom: 16px; }
  .service-benefits li{ font-size: .82rem; }
  .gallery-grid{ columns: 1; }
  .masseuse-grid{ gap: 18px; }
  .masseuse-photo{ height: 200px; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container{ flex-direction: column; text-align: center; }
  .booking{ padding: 40px 16px; margin-top: 44px; }
  .booking-form{ padding: 28px 18px; }
  .booking-success{ padding: 36px 20px; }
  .form-note{ font-size: .74rem; }
  .cta-actions{ flex-direction: column; align-items: stretch; width: 100%; }
  .cta-actions .btn{ width: 100%; }
  .contact-actions{ flex-direction: column; }
  .contact-actions .btn{ width: 100%; }
  .whatsapp-float{ width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg{ width: 26px; height: 26px; }
}

@media (max-width: 400px){
  h1{ font-size: 2.1rem; }
  .container{ padding: 0 18px; }

  /* Card padding tightened for very small phones */
  .intro-card{ padding: 1.4rem 1.2rem; }
  .intro-card h3{ font-size: 1rem; }
  .intro-card p{ font-size: .9rem; }

  .preview-card{ padding: 20px 18px; }
  .preview-card h3{ font-size: .98rem; }

  .masseuse-card{ padding: 22px 18px; }
  .masseuse-avatar{ width: 30px; height: 30px; font-size: .78rem; }
  .masseuse-top{ gap: 10px; margin-bottom: 10px; }

  .service-card{ padding: 20px 16px; }

  .why-card{ padding: 22px 18px; }

  .testimonial-card{ padding: 22px 18px; }

  .trust-grid{ grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
  .trust-item{ font-size: .85rem; gap: 8px; }
  .trust-item svg{ width: 22px; height: 22px; }

  .masseuse-highlights{ padding: 22px 16px; }
  .highlights-title{ font-size: 1.05rem; }
  .highlight-item h4{ font-size: .92rem; }
  .highlight-item p{ font-size: .84rem; }
}

/* ---------------------------------------------------------------------- */
/* 14. ACCESSIBILITY / REDUCED MOTION                                     */
/* ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up{ opacity: 1; transform: none; }
}

/* 8b. MASSEUSE HIGHLIGHTS */
.masseuse-highlights{
  margin-top: 50px;
  padding: 36px 32px;
  background: var(--sky-light);
  border-radius: 18px;
  border: 1px solid rgba(82, 138, 223, 0.14);
}
.highlights-title{
  font-size: 1.2rem;
  margin-bottom: 22px;
  text-align: center;
  color: var(--ink);
}
.highlights-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-item h4{
  font-size: .98rem;
  color: var(--sky-deep);
  margin-bottom: 8px;
}
.highlight-item p{
  font-size: .88rem;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}
@media (max-width: 900px){
  .highlights-grid{ grid-template-columns: 1fr; gap: 20px; }
  .masseuse-highlights{ padding: 28px 22px; }
}

/* SERVICES PREVIEW (Home page) */
.services-preview{ background: var(--ice); }
.preview-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.preview-card{
  display: block;
  background: var(--white);
  border: 1px solid rgba(82, 138, 223, 0.14);
  border-radius: 16px;
  padding: 26px 24px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.preview-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(82, 138, 223, 0.16);
}
.preview-card h3{
  color: var(--ink);
  font-size: 1.05rem;
  margin: 0 0 .5rem;
}
.preview-price{
  color: var(--sky-deep);
  font-weight: 600;
  font-size: .98rem;
}
.preview-cta{
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 860px){
  .preview-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .preview-grid{ grid-template-columns: 1fr; gap: 14px; }
}


/* ---------------------------------------------------------------------- */
/* SPA SHOWCASE (spa1 / spa2 alternating)                                 */
/* ---------------------------------------------------------------------- */
.spa-showcase{
  padding: 90px 0;
  background: var(--ice);
  overflow: hidden;
}

.showcase-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.showcase-row:last-child{ margin-bottom: 0; }

.showcase-row .showcase-media{ order: 1; }
.showcase-row .showcase-text{ order: 2; }
.showcase-row.reverse .showcase-media{ order: 2; }
.showcase-row.reverse .showcase-text{ order: 1; }

.showcase-media img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
  transition: transform .5s var(--ease);
}
.showcase-media:hover img{ transform: scale(1.02); }

.showcase-text h3{
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}
.showcase-text p{
  color: var(--slate);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 440px;
}

@media (max-width: 1024px){
  .showcase-media img{ height: 360px; }
}

@media (max-width: 860px){
  .showcase-row,
  .showcase-row.reverse{
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .showcase-row .showcase-media,
  .showcase-row .showcase-text,
  .showcase-row.reverse .showcase-media,
  .showcase-row.reverse .showcase-text{
    order: initial;
  }
  .showcase-text p{ max-width: none; }
  .showcase-media img{ height: 300px; }
}

@media (max-width: 600px){
  .spa-showcase{ padding: 60px 0; }
  .showcase-media img{ height: 240px; border-radius: var(--radius-md); }
  .showcase-text h3{ font-size: 1.5rem; }
}
