/* ============================================================
   AMANZI SPA — Luxury Stylesheet
   ============================================================ */

:root {
  --bg: #07131E;
  --bg2: #0F1F2F;
  --bg3: #152a3d;
  --gold: #D6B17A;
  --gold-light: #E8D0A6;
  --gold-dark: #b8904f;
  --white: #FAF7F2;
  --white-60: rgba(250,247,242,0.6);
  --white-20: rgba(250,247,242,0.12);
  --white-10: rgba(250,247,242,0.06);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html { scroll-behavior: auto; } /* Lenis handles smooth scroll */

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }
textarea { resize: vertical; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   LOADER
   ============================================================ */

/* ============================================================
   INTRO VIDEO LOADER
   ============================================================ */

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  overflow: hidden;
  transition: opacity 1s var(--ease-luxury), visibility 1s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loaderVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Sound prompt overlay */
.loader-sound-prompt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.7s 1.8s var(--ease-luxury) forwards;
  pointer-events: none;
}

.loader-sound-prompt.active {
  pointer-events: auto;
}

.loader-sound-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 1px solid rgba(214, 177, 122, 0.45);
  color: rgba(250, 247, 242, 0.85);
  padding: 28px 40px;
  cursor: pointer;
  transition: border-color 0.4s, color 0.4s, background 0.4s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(7, 19, 30, 0.3);
}

.loader-sound-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(7, 19, 30, 0.5);
}

.loader-sound-btn svg {
  width: 32px;
  height: 32px;
}

.loader-sound-btn span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* Pulse ring around the sound button */
.loader-sound-btn::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(214, 177, 122, 0.2);
  animation: soundPulse 2.2s ease-in-out infinite;
}

@keyframes soundPulse {
  0%   { transform: scale(1);    opacity: 0.5; }
  50%  { transform: scale(1.06); opacity: 0.2; }
  100% { transform: scale(1);    opacity: 0.5; }
}

/* Fade-out once sound is enabled */
.loader-sound-prompt.dismissed {
  animation: soundDismiss 0.5s var(--ease-luxury) forwards;
  pointer-events: none;
}

@keyframes soundDismiss {
  to { opacity: 0; transform: scale(0.9); }
}

/* Skip button */
.loader-skip {
  position: absolute;
  bottom: 36px;
  right: 40px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid rgba(250, 247, 242, 0.2);
  transition: color 0.3s, border-color 0.3s;
  z-index: 3;
  opacity: 0;
  animation: fadeInUp 0.6s 2s var(--ease-luxury) forwards;
}

.loader-skip:hover {
  color: var(--gold);
  border-color: var(--gold);
}

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

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */

.whatsapp-float,
.call-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.whatsapp-float {
  background: #25D366;
  bottom: 160px;
}

.call-float {
  background: var(--gold);
}

.whatsapp-float svg,
.call-float svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.whatsapp-float:hover,
.call-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.book-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 2px;
  z-index: 900;
  transition: background 0.3s, transform 0.3s var(--ease-luxury);
  box-shadow: 0 8px 32px rgba(214,177,122,0.3);
}

.book-sticky:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 0;
  transition: background 0.5s var(--ease-luxury), padding 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(7, 19, 30, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(214,177,122,0.15);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-luxury);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 1px;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(7, 19, 30, 0.98);
  backdrop-filter: blur(20px);
  padding: 32px 40px;
  border-top: 1px solid var(--white-10);
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 12px 24px;
  display: inline-block;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */

#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease-luxury), transform 8s var(--ease-expo);
  transform: scale(1.05);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,19,30,0.3) 0%,
    rgba(7,19,30,0.55) 50%,
    rgba(7,19,30,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white-60);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

.hero-dots {
  position: absolute;
  right: 40px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white-20);
  transition: background 0.3s, height 0.3s;
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  height: 24px;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 1px;
  transition: background 0.3s, transform 0.3s var(--ease-luxury), box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(214,177,122,0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(214,177,122,0.4);
}

.btn-primary.full-width {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px;
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(214,177,122,0.5);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 1px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-luxury);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(214,177,122,0.08);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(214,177,122,0.4);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 1px;
  transition: all 0.3s var(--ease-luxury);
  text-align: center;
}

.btn-outline:hover {
  background: rgba(214,177,122,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-sm {
  display: inline-block;
  border: 1px solid rgba(214,177,122,0.3);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 1px;
  transition: all 0.3s;
}

.btn-outline-sm:hover,
.btn-outline-sm.whatsapp:hover {
  background: rgba(214,177,122,0.1);
  border-color: var(--gold);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */

section { padding: 120px 0; }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header.light .section-eyebrow,
.section-header.light .section-title,
.section-header.light .section-title em {
  color: var(--white);
}

.section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto;
}

.gold-line.left {
  margin: 0 0 32px;
}

.section-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
  max-width: 600px;
  margin: 24px auto 0;
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 60px;
  flex: 1;
  min-width: 160px;
}

.stat-item span:first-child {
  display: inline;
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--gold);
}

.stat-item > span:nth-child(2) {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
}

.stat-item p {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--white-10);
}

/* ============================================================
   WHY AMANZI
   ============================================================ */

.section-why {
  background: var(--bg);
}

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

.why-card {
  background: var(--bg2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-luxury);
}

.why-card:hover { background: var(--bg3); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 24px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-60);
}

/* ============================================================
   THERAPIES
   ============================================================ */

.section-therapies {
  position: relative;
  padding: 120px 0;
}

.therapies-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.therapies-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,19,30,0.92);
}

.section-therapies .container {
  position: relative;
  z-index: 1;
}

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

.therapy-card {
  background: rgba(15,31,47,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-10);
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s, transform 0.4s var(--ease-luxury);
}

.therapy-card:hover {
  border-color: rgba(214,177,122,0.4);
  transform: translateY(-4px);
}

.therapy-img {
  overflow: hidden;
  height: 220px;
}

.therapy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}

.therapy-card:hover .therapy-img img {
  transform: scale(1.06);
}

.therapy-content {
  padding: 28px 32px 32px;
}

.therapy-num {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.therapy-content h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.therapy-content p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-60);
  margin-bottom: 20px;
}

.therapy-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--white-10);
  padding-top: 16px;
}

.therapy-meta span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--white-60);
}

.therapy-book {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}

.therapy-book:hover { color: var(--gold-light); }

/* ============================================================
   COUPLE SPA
   ============================================================ */

.section-couple {
  background: var(--bg2);
  padding: 0;
}

.couple-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.couple-image {
  position: relative;
  overflow: hidden;
}

.couple-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-expo);
}

.couple-image:hover img {
  transform: scale(1.04);
}

.couple-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(214,177,122,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(214,177,122,0.4);
  padding: 16px 24px;
  text-align: center;
}

.couple-badge span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.couple-badge strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.couple-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.couple-content .gold-line.left {
  margin-bottom: 28px;
}

.couple-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
  margin-bottom: 32px;
}

.couple-features {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.couple-features li {
  font-size: 13px;
  color: var(--white-60);
  padding-left: 20px;
  position: relative;
}

.couple-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.couple-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 36px;
}

.couple-price span {
  font-size: 12px;
  color: var(--white-60);
  letter-spacing: 0.1em;
}

.couple-price strong {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
}

/* ============================================================
   VIRTUAL TOUR
   ============================================================ */

.section-tour {
  background: var(--bg);
  padding-bottom: 120px;
}

.tour-slider {
  border-radius: 2px;
  overflow: hidden;
}

.tour-slider .swiper-slide {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.tour-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  background: rgba(7,19,30,0.6);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-left: 2px solid var(--gold);
}

.tour-slider .swiper-button-prev,
.tour-slider .swiper-button-next {
  color: var(--gold);
  background: rgba(7,19,30,0.6);
  backdrop-filter: blur(8px);
  width: 48px;
  height: 48px;
  border-radius: 0;
}

.tour-slider .swiper-button-prev::after,
.tour-slider .swiper-button-next::after {
  font-size: 16px;
}

.tour-slider .swiper-pagination-bullet {
  background: var(--white-60);
  opacity: 1;
}

.tour-slider .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 2px;
}

/* ============================================================
   MEMBERSHIP
   ============================================================ */

.section-membership {
  background: var(--bg2);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: start;
}

.membership-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  border: 1px solid var(--white-10);
  transition: border-color 0.4s, transform 0.4s var(--ease-luxury);
}

.membership-card.featured {
  background: var(--bg3);
  border-color: rgba(214,177,122,0.4);
  transform: translateY(-16px);
}

.membership-card:not(.featured):hover {
  border-color: rgba(214,177,122,0.25);
  transform: translateY(-4px);
}

.membership-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
}

.membership-tier {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.membership-price {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1;
}

.membership-price span {
  font-size: 24px;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.membership-price small {
  font-size: 14px;
  color: var(--white-60);
  font-weight: 300;
  font-family: var(--font-sans);
}

.membership-perks {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.membership-perks li {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-60);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.membership-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.membership-card.featured .btn-primary {
  width: 100%;
  text-align: center;
}

/* ============================================================
   GIFT CARDS
   ============================================================ */

.section-gift {
  background: var(--bg);
  padding: 0;
}

.gift-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.gift-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg2);
}

.gift-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
  margin-bottom: 36px;
  margin-top: 8px;
}

.gift-denominations {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gift-btn {
  background: transparent;
  border: 1px solid var(--white-20);
  color: var(--white-60);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s;
  border-radius: 1px;
}

.gift-btn:hover,
.gift-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(214,177,122,0.08);
}

.gift-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: var(--bg);
}

.gift-card-mockup {
  background: linear-gradient(135deg, #0f2a3d 0%, #07131e 50%, #152a3d 100%);
  border: 1px solid rgba(214,177,122,0.4);
  border-radius: 12px;
  padding: 40px 48px;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(214,177,122,0.2);
  position: relative;
  overflow: hidden;
}

.gift-card-mockup::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,177,122,0.08) 0%, transparent 70%);
}

.gift-card-mockup img {
  width: 100px;
}

.gift-card-mockup p {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-60);
}

.gift-amount {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
}

.gift-card-mockup span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--white-60);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.section-testimonials {
  background: var(--bg2);
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.google-rating .stars {
  display: flex;
  gap: 3px;
}

.google-rating .stars svg {
  width: 18px;
  height: 18px;
}

.google-rating span {
  font-size: 13px;
  color: var(--white-60);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--white-10);
  padding: 52px 48px;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214,177,122,0.15);
  border: 1px solid rgba(214,177,122,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.testimonials-slider .swiper-pagination {
  position: static;
  margin-top: 32px;
}

.testimonials-slider .swiper-pagination-bullet {
  background: var(--white-20);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.testimonials-slider .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   GALLERY
   ============================================================ */

.section-gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

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

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.8s var(--ease-expo);
}

.gallery-item.large img {
  min-height: 560px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,19,30,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  transition: background 0.4s;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(7,19,30,0.5);
}

/* ============================================================
   BOOKING
   ============================================================ */

.section-booking {
  position: relative;
  padding: 120px 0;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,19,30,0.92);
}

.section-booking .container {
  position: relative;
  z-index: 1;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.booking-text .section-title {
  margin-top: 12px;
}

.booking-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
  margin-top: 24px;
  margin-bottom: 40px;
}

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.3s;
}

.contact-link:hover { color: var(--gold); }

.contact-link svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.booking-form {
  background: rgba(15,31,47,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--white-10);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-60);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  border-radius: 1px;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(214,177,122,0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-20);
}

.form-group select option {
  background: var(--bg2);
  color: var(--white);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
}

.form-group textarea {
  height: 80px;
}

.time-slots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.time-slot {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  color: var(--white-60);
  font-size: 12px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 1px;
  transition: all 0.3s;
}

.time-slot:hover,
.time-slot.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(214,177,122,0.08);
}

/* ============================================================
   FAQ
   ============================================================ */

.section-faq {
  background: var(--bg2);
}

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--white-10);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(214,177,122,0.3);
}

.faq-question {
  width: 100%;
  background: transparent;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-item.open .faq-question { color: var(--gold); }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.4s var(--ease-luxury);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-luxury);
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
}

/* ============================================================
   CONTACT / LOCATIONS
   ============================================================ */

.section-contact {
  background: var(--bg);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.location-card {
  background: var(--bg2);
  padding: 48px 40px;
  border: 1px solid var(--white-10);
  transition: border-color 0.4s;
}

.location-card.full {
  grid-column: span 1;
}

.location-card:hover {
  border-color: rgba(214,177,122,0.3);
}

.location-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white-10);
}

.location-address {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 12px;
}

.location-address a {
  color: var(--white-60);
  transition: color 0.3s;
}

.location-address a:hover { color: var(--gold); }

.location-phone {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.location-phone:hover { color: var(--gold-light); }

.location-hours {
  font-size: 12px;
  color: var(--white-60);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: border-color 0.3s, color 0.3s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer-top {
  background: var(--bg2);
  padding: 80px 0 60px;
  border-top: 1px solid var(--white-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-60);
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-60);
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-location {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.footer-location strong {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-location a,
.footer-location span {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-60);
  transition: color 0.3s;
}

.footer-location a:hover { color: var(--gold); }

.footer-bottom {
  background: var(--bg);
  padding: 20px 0;
  border-top: 1px solid var(--white-10);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--white-60);
  letter-spacing: 0.05em;
}

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

.footer-legal a {
  font-size: 12px;
  color: var(--white-60);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   TOAST
   ============================================================ */

.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 1000;
  opacity: 0;
  transition: all 0.5s var(--ease-luxury);
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-inner {
  background: var(--bg2);
  border: 1px solid rgba(214,177,122,0.4);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.toast-inner svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.toast-inner span {
  font-size: 13px;
  color: var(--white);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal-text {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ============================================================
   RESPONSIVE — COMPREHENSIVE MOBILE OPTIMISATION
   ============================================================ */

/* ── Tablet landscape ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .therapies-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 40px; }
  .membership-grid     { grid-template-columns: repeat(2, 1fr); }
  .article-wrap        { grid-template-columns: 1fr; }
  .article-sidebar     { position: static; }
  .location-info-grid  { grid-template-columns: 1fr; }
  .membership-hero-banner { grid-template-columns: 1fr; padding: 40px; }
  .membership-value-grid  { grid-template-columns: repeat(2, 1fr); }
  .gift-options-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-split         { grid-template-columns: 1fr; gap: 40px; }
  .about-split img     { height: 340px; }
}

/* ── Tablet portrait ───────────────────────────────────────── */
@media (max-width: 900px) {
  .container           { padding: 0 24px; }
  section              { padding: 64px 0; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger           { display: flex; }
  .nav-container       { gap: 0; height: 70px; padding: 0 24px; }

  /* Hero */
  .hero-title          { font-size: clamp(38px, 8vw, 64px); }
  .hero-subtitle       { font-size: 14px; }

  /* Couple */
  .couple-inner        { grid-template-columns: 1fr; min-height: unset; }
  .couple-image        { height: 400px; }
  .couple-content      { padding: 56px 40px; }

  /* Gift */
  .gift-inner          { grid-template-columns: 1fr; }
  .gift-content        { padding: 56px 40px; }
  .gift-card-visual    { padding: 40px; }

  /* Booking */
  .booking-inner       { grid-template-columns: 1fr; gap: 40px; }

  /* Membership */
  .membership-grid     { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .membership-card.featured { transform: translateY(0); }

  /* Locations */
  .locations-grid      { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stats-strip         { padding: 40px 24px; }
  .stat-item           { padding: 0 20px; }
  .stat-divider        { height: 40px; }

  /* Blog */
  .blog-grid           { grid-template-columns: repeat(2, 1fr); }

  /* Floating buttons — shrink & tighten */
  .whatsapp-float      { width: 46px; height: 46px; bottom: 138px; right: 20px; }
  .call-float          { width: 46px; height: 46px; bottom: 86px;  right: 20px; }
  .book-sticky         { bottom: 20px; right: 20px; padding: 12px 18px; font-size: 10px; }
}

/* ── Large phone ───────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Mobile menu — full-screen overlay below nav */
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 0 80px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(7, 19, 30, 0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(214, 177, 122, 0.15);
    z-index: 799;
    display: none;
  }
  .mobile-menu.open    { display: block; }
  .mobile-menu ul      { flex-direction: column; gap: 0; padding: 0 24px; }
  .mobile-menu ul li   { border-bottom: 1px solid var(--white-10); }
  .mobile-menu a       { display: block; padding: 18px 0; font-size: 12px; letter-spacing: 0.18em; }
  .mobile-cta          {
    margin: 24px auto 0;
    display: block;
    text-align: center;
    max-width: 280px;
    padding: 14px 24px;
  }

  /* Page hero */
  .page-hero           { height: 300px; padding-bottom: 44px; }

  /* Sections */
  section              { padding: 56px 0; }
  .section-header      { margin-bottom: 36px; }

  /* About */
  .about-split         { grid-template-columns: 1fr; gap: 28px; }
  .about-split img     { height: 260px; }

  /* Grids → single col */
  .blog-grid           { grid-template-columns: 1fr; }
  .gallery-page-grid   { grid-template-columns: repeat(2, 1fr); }
  .location-info-grid  { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }

  /* Loader sound prompt */
  .loader-sound-btn    { padding: 20px 28px; }
  .loader-sound-btn svg { width: 26px; height: 26px; }
  .loader-skip         { bottom: 20px; right: 20px; }
}

/* ── Phone ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .container           { padding: 0 20px; }
  section              { padding: 48px 0; }

  /* Hero */
  .hero-content        { padding: 0 20px; }
  .hero-eyebrow        { font-size: 9px; letter-spacing: 0.28em; margin-bottom: 14px; }
  .hero-title          { font-size: clamp(32px, 9vw, 48px); margin-bottom: 18px; }
  .hero-subtitle       { font-size: 13px; line-height: 1.7; margin-bottom: 28px; }
  .hero-actions        { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
  .hero-dots           { display: none; }
  .hero-scroll-indicator { display: none; }

  /* Section headers */
  .section-title       { font-size: clamp(26px, 7.5vw, 40px); }
  .section-eyebrow     { font-size: 9px; letter-spacing: 0.28em; }
  .section-desc        { font-size: 13px; }
  .gold-line           { margin: 16px auto; }

  /* Stats — stacked full-width */
  .stats-strip         { flex-direction: column; padding: 0; gap: 0; }
  .stat-item           { width: 100%; padding: 24px 20px; border-bottom: 1px solid var(--white-10); }
  .stat-item:last-child{ border-bottom: none; }
  .stat-divider        { display: none; }
  .stat-item span:first-child { font-size: clamp(32px, 9vw, 48px); }

  /* Why cards */
  .why-grid            { grid-template-columns: 1fr; gap: 2px; }
  .why-card            { padding: 32px 24px; }
  .why-icon            { width: 40px; height: 40px; margin-bottom: 16px; }

  /* Therapies */
  .therapies-grid      { grid-template-columns: 1fr; }
  .therapy-img         { height: 200px; }
  .therapy-content     { padding: 24px; }

  /* Couple */
  .couple-image        { height: 240px; }
  .couple-content      { padding: 36px 20px; }
  .couple-badge        { top: 16px; right: 16px; padding: 10px 14px; }
  .couple-badge strong { font-size: 14px; }

  /* Membership */
  .membership-grid     { grid-template-columns: 1fr; max-width: 100%; }
  .membership-card     { padding: 36px 24px; }
  .membership-price    { font-size: 40px; }
  .membership-value-grid { grid-template-columns: 1fr; }
  .membership-hero-banner { padding: 32px 20px; }

  /* Gallery */
  .gallery-grid        { grid-template-columns: 1fr; }
  .gallery-item.large  { grid-row: span 1; }
  .gallery-page-grid   { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid           { grid-template-columns: 1fr; }
  .blog-card           { border: 1px solid var(--white-10); }
  .blog-card-body      { padding: 20px; }

  /* Locations */
  .locations-grid      { grid-template-columns: 1fr; }
  .info-box            { padding: 28px 20px; }
  .info-box .big-phone { font-size: 24px; white-space: nowrap; }

  /* Forms */
  .form-row            { grid-template-columns: 1fr; }
  .booking-form        { padding: 28px 20px; }
  input, select, textarea { font-size: 16px !important; } /* prevents iOS auto-zoom */
  .time-slots          { gap: 8px; }
  .time-slot           { padding: 10px 12px; font-size: 10px; letter-spacing: 0.1em; min-height: 44px; }

  /* FAQ */
  .faq-question        { font-size: 13px; padding: 18px 20px 18px 0; min-height: 44px; }
  .faq-grid            { gap: 0; }

  /* Price table */
  .price-row           { grid-template-columns: 1fr; gap: 2px; padding: 14px 0; }
  .price-duration, .price-amount { text-align: left; }
  .menu-tabs           { gap: 6px; flex-wrap: wrap; }
  .tab-btn             { padding: 8px 14px; font-size: 9px; }

  /* Footer */
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer-top          { padding: 48px 0 36px; }
  .footer-bottom .container { flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal        { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* About */
  .about-values        { grid-template-columns: 1fr; }
  .value-card          { padding: 28px 20px; }

  /* Article / blog post */
  .article-body h2     { font-size: 20px; }
  .article-body h3     { font-size: 18px; }
  .sidebar-book        { padding: 24px 20px; }

  /* Page hero */
  .page-hero           { height: 260px; padding-bottom: 36px; }
  .page-hero h1        { font-size: clamp(28px, 8vw, 44px); }

  /* Gift */
  .gift-options-grid   { grid-template-columns: repeat(2, 1fr); }
  .gift-content        { padding: 36px 20px; }

  /* Tour slider */
  .tour-slider .swiper-slide { height: 300px; }

  /* Floating buttons — compact + clearly separated */
  .whatsapp-float      { width: 44px; height: 44px; bottom: 130px; right: 16px; }
  .call-float          { width: 44px; height: 44px; bottom: 80px;  right: 16px; }
  .book-sticky         { bottom: 16px; right: 16px; padding: 11px 14px; font-size: 9px; letter-spacing: 0.1em; }
  .music-toggle        { width: 44px; height: 44px; bottom: 16px;  left: 16px; }

  /* Breadcrumb */
  .breadcrumb          { font-size: 11px; flex-wrap: wrap; gap: 2px; }

  /* Loader */
  .loader-sound-btn    { padding: 16px 22px; gap: 10px; }
  .loader-sound-btn svg { width: 24px; height: 24px; }
  .loader-skip         { bottom: 16px; right: 16px; padding: 6px 12px; font-size: 9px; }
}

/* ── Very small phones (SE, Galaxy A series) ───────────────── */
@media (max-width: 390px) {
  .container           { padding: 0 16px; }
  .hero-title          { font-size: 28px; }
  .section-title       { font-size: 24px; }
  .nav-logo img        { height: 36px; }
  .nav-container       { padding: 0 16px; }
  .btn-primary,
  .btn-ghost           { padding: 12px 20px; font-size: 10px; }
  .membership-price    { font-size: 34px; }
  .why-card            { padding: 28px 18px; }
  .couple-image        { height: 200px; }
  .gallery-page-grid   { grid-template-columns: 1fr; }
}

/* ============================================================
   BODY LOADING STATE (prevents FOUC)
   ============================================================ */

body.loading { overflow: hidden; }

/* ============================================================
   NAV ACTIVE STATE & DROPDOWN
   ============================================================ */

.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-has-drop { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(7,19,30,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(214,177,122,0.15);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  padding: 12px 0;
  z-index: 100;
  /* Smooth transition — no display:none flash */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s var(--ease-luxury),
              visibility 0.38s,
              transform 0.38s var(--ease-luxury);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 11px 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color 0.28s, padding-left 0.28s var(--ease-luxury),
              background 0.28s;
  border-left: 2px solid transparent;
}

.nav-dropdown li a:hover {
  color: var(--gold);
  padding-left: 32px;
  border-left-color: var(--gold);
  background: rgba(214,177,122,0.05);
}

/* ============================================================
   INNER PAGE HERO (for non-homepage pages)
   ============================================================ */

.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,19,30,0.4) 0%, rgba(7,19,30,0.8) 70%, rgba(7,19,30,1) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero-content .container {
  display: flex;
  flex-direction: column;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a, .breadcrumb span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-60);
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb-sep {
  color: var(--white-20);
  font-size: 10px;
}

.breadcrumb .current { color: var(--gold); }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

/* ============================================================
   THERAPIES PAGE — FULL MENU
   ============================================================ */

.menu-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  justify-content: center;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--white-10);
  color: var(--white-60);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 1px;
}

.tab-btn:hover, .tab-btn.active {
  background: rgba(214,177,122,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

.menu-category {
  margin-bottom: 64px;
}

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--white-10), transparent);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--white-10);
  transition: background 0.3s;
}

.price-row:hover { background: var(--white-10); }

.price-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  font-family: var(--font-serif);
}

.price-name small {
  display: block;
  font-size: 12px;
  color: var(--white-60);
  font-family: var(--font-sans);
  font-weight: 300;
  margin-top: 2px;
}

.price-duration {
  font-size: 12px;
  color: var(--white-60);
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: right;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}

.price-row.multi {
  grid-template-columns: 1fr;
}

.price-row.multi .price-variants {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.price-row.multi .price-variants span {
  font-size: 13px;
  color: var(--white-60);
}

.price-row.multi .price-variants strong {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
  margin-left: 6px;
}

/* ============================================================
   MEMBERSHIP PAGE
   ============================================================ */

.membership-hero-banner {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border: 1px solid rgba(214,177,122,0.2);
  padding: 56px 64px;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.membership-hero-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

.membership-hero-banner p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
}

.membership-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 72px;
}

.value-item {
  background: var(--bg2);
  padding: 36px 32px;
  text-align: center;
}

.value-item .value-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  display: block;
}

.value-item p {
  font-size: 13px;
  color: var(--white-60);
  margin-top: 8px;
}

/* ============================================================
   GIFT CARD PAGE
   ============================================================ */

.gift-card-page {
  padding: 80px 0 120px;
}

.gift-intro {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.gift-intro p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-60);
  margin-top: 16px;
}

.gift-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.gift-option {
  background: var(--bg2);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid var(--white-10);
  cursor: pointer;
  transition: all 0.3s;
}

.gift-option:hover, .gift-option.active {
  border-color: rgba(214,177,122,0.5);
  background: var(--bg3);
}

.gift-option .amount {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  display: block;
}

.gift-option p {
  font-size: 12px;
  color: var(--white-60);
  margin-top: 8px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-page-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-page-item:hover img { transform: scale(1.06); }

.gallery-page-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,19,30,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.4s;
}

.gallery-page-item:hover .overlay { background: rgba(7,19,30,0.45); }

.gallery-page-item .overlay span {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
}

.gallery-page-item:hover .overlay span { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7,19,30,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-hero {
  background: var(--bg2);
  padding: 120px 0 80px;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.blog-card {
  background: var(--bg2);
  border: 1px solid var(--white-10);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(214,177,122,0.3);
  transform: translateY(-4px);
}

.blog-card-img {
  overflow: hidden;
  height: 220px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-body p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-60);
  flex: 1;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--white-10);
  padding-top: 16px;
}

.blog-date {
  font-size: 11px;
  color: var(--white-60);
  letter-spacing: 0.1em;
}

.blog-read-more {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}

.blog-read-more:hover { color: var(--gold-light); }

/* Blog Article Page */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  padding: 80px 0 120px;
  align-items: start;
}

.article-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,247,242,0.75);
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  margin: 48px 0 16px;
  line-height: 1.2;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-light);
  margin: 36px 0 12px;
}

.article-body p { margin-bottom: 20px; }

.article-body ul, .article-body ol {
  margin: 16px 0 20px 24px;
}

.article-body li {
  margin-bottom: 10px;
  color: rgba(250,247,242,0.7);
}

.article-body strong { color: var(--white); font-weight: 500; }

.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--bg2);
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--white-60);
}

.article-cta-box {
  background: var(--bg2);
  border: 1px solid rgba(214,177,122,0.3);
  padding: 36px;
  margin: 48px 0;
  text-align: center;
}

.article-cta-box h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 12px;
}

.article-cta-box p {
  font-size: 14px;
  color: var(--white-60);
  margin-bottom: 24px;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--bg2);
  border: 1px solid var(--white-10);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--white-10);
}

.sidebar-widget ul { display: flex; flex-direction: column; gap: 12px; }

.sidebar-widget ul li a {
  font-size: 13px;
  color: var(--white-60);
  transition: color 0.3s;
  display: block;
  padding-left: 14px;
  position: relative;
}

.sidebar-widget ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.sidebar-widget ul li a:hover { color: var(--gold); }

.sidebar-book {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border: 1px solid rgba(214,177,122,0.3);
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 24px;
}

.sidebar-book h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.sidebar-book p {
  font-size: 13px;
  color: var(--white-60);
  margin-bottom: 20px;
  line-height: 1.6;
}

.article-faq { margin-top: 56px; }

.article-faq h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
}

/* ============================================================
   LOCATION PAGE
   ============================================================ */

.location-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 80px;
}

.info-box {
  background: var(--bg2);
  padding: 48px 40px;
  border: 1px solid var(--white-10);
}

.info-box h3 {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.info-box p, .info-box a {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-60);
  display: block;
  margin-bottom: 4px;
}

.info-box a:hover { color: var(--gold); }

.info-box .big-phone {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}

.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85);
  margin-bottom: 80px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-60);
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg2);
  padding: 36px 32px;
  border: 1px solid var(--white-10);
  transition: border-color 0.3s;
}

.value-card:hover { border-color: rgba(214,177,122,0.3); }

.value-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-60);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ============================================================
   TOAST
   ============================================================ */

.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 1000;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.toast-inner {
  background: var(--bg2);
  border: 1px solid rgba(214,177,122,0.4);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.toast-inner svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.toast-inner span { font-size: 13px; color: var(--white); }

/* ============================================================
   MULTI-PAGE RESPONSIVE
   ============================================================ */

/* ============================================================
   TULIP SCROLL ELEMENT
   ============================================================ */

.tulip-scroll {
  position: fixed;
  top: 0;
  left: 0; /* x position driven by GSAP — diagonal top-right → bottom-left */
  width: 124px;
  pointer-events: none;
  z-index: 52;
  will-change: transform, filter;
  transform-origin: center top;
  opacity: 0.92;
  filter: drop-shadow(0 0 10px rgba(214,177,122,0.12));
}

@media (max-width: 768px) {
  .tulip-scroll {
    width: 80px;
  }
}

/* ============================================================
   SCROLL WATER-DROPLET INDICATOR
   ============================================================ */

/* Outer positioning wrapper */
.sdrop-wrap {
  position: fixed;
  right: 14px;
  top: 100px;
  bottom: 56px;
  width: 28px;
  z-index: 400;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

/* Vertical track line */
.sdrop-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(214,177,122,0.12) 15%,
    rgba(214,177,122,0.28) 50%,
    rgba(214,177,122,0.12) 85%,
    transparent 100%
  );
}

/* Tick marks along the track */
.sdrop-tick {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 1px;
  background: rgba(214,177,122,0.2);
}

/* Moving droplet thumb */
.sdrop-thumb {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 30px;
  will-change: transform;
}

/* Clipping container — teardrop shape */
.sdrop-body {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* teardrop: pointed top, round bottom */
  clip-path: path(
    'M 11 0
     C 11 0 22 11 22 18
     C 22 24.6 17 30 11 30
     C 5 30 0 24.6 0 18
     C 0 11 11 0 11 0 Z'
  );
  background: rgba(7, 19, 30, 0.55);
}

/* Spinning oval that creates the wave-inside-water effect */
.sdrop-wave {
  position: absolute;
  bottom: -10px;
  left: -7px;
  width: 36px;
  height: 36px;
  border-radius: 45%;
  background: linear-gradient(
    160deg,
    rgba(214,177,122,0.65) 0%,
    rgba(214,177,122,0.25) 60%,
    transparent 100%
  );
  animation: sdropSpin 3.2s linear infinite;
}

.sdrop-wave2 {
  animation-delay: -1.6s;
  opacity: 0.38;
  background: rgba(214,177,122,0.3);
}

@keyframes sdropSpin {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* SVG outline — gold teardrop border */
.sdrop-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Pulse ring expanding from thumb */
.sdrop-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50% 50% 50% 50% / 36% 36% 64% 64%;
  border: 1px solid rgba(214,177,122,0.35);
  animation: sdropRing 2.6s cubic-bezier(0.19,1,0.22,1) infinite;
  pointer-events: none;
}

@keyframes sdropRing {
  0%   { transform: scale(1);    opacity: 0.55; }
  100% { transform: scale(2.0);  opacity: 0; }
}

/* Second, delayed ring for overlap effect */
.sdrop-ring2 {
  animation-delay: -1.3s;
}

/* Percentage label that appears at 0% and 100% */
.sdrop-label {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(214,177,122,0.5);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s;
}

.sdrop-thumb:hover .sdrop-label,
.sdrop-wrap:hover .sdrop-label { opacity: 1; }

/* Hide on mobile / small screens */
@media (max-width: 900px) {
  .sdrop-wrap { display: none; }
}

/* ============================================================
   BACKGROUND MUSIC PLAYER
   ============================================================ */

.music-toggle {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(7, 19, 30, 0.88);
  border: 1px solid rgba(214, 177, 122, 0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-luxury),
              box-shadow 0.3s;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: visible;
}

.music-toggle:hover {
  border-color: var(--gold);
  background: rgba(214, 177, 122, 0.1);
  transform: scale(1.1);
}

.music-toggle svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.music-toggle.playing {
  border-color: rgba(214, 177, 122, 0.6);
  box-shadow: 0 0 24px rgba(214, 177, 122, 0.18);
}

.music-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(214, 177, 122, 0.35);
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.music-toggle.playing .music-ring {
  animation: musicPulse 1.8s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes musicPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.7); opacity: 0;   }
}

/* ================================================================
   MOBILE CASCADE-CORRECTION BLOCK
   Many page-specific base styles are defined after the main
   @media blocks above, so they silently override those rules.
   Re-declaring the responsive overrides HERE (last in cascade)
   restores correct behaviour on every screen size.
   ================================================================ */

/* ── ≤ 1100 px ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .membership-hero-banner { grid-template-columns: 1fr; padding: 40px; }
  .article-wrap           { grid-template-columns: 1fr; }
  .article-sidebar        { position: static; }
  .gift-options-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ── ≤ 768 px ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero              { height: 300px; padding-bottom: 44px; }
  .about-split            { grid-template-columns: 1fr; gap: 28px; }
  .about-split img        { height: 260px; }
  .blog-grid              { grid-template-columns: 1fr; }
  .gallery-page-grid      { grid-template-columns: repeat(2, 1fr); }
  .location-info-grid     { grid-template-columns: 1fr; }
  .contact-grid           { grid-template-columns: 1fr; }
}

/* ── ≤ 640 px (phone) ───────────────────────────────────────── */
@media (max-width: 640px) {
  /* Page hero */
  .page-hero              { height: 260px; padding-bottom: 36px; }
  .page-hero h1           { font-size: clamp(28px, 8vw, 44px); }
  .breadcrumb             { font-size: 11px; flex-wrap: wrap; gap: 2px; }

  /* Therapies price table */
  .menu-tabs              { gap: 6px; flex-wrap: wrap; }
  .tab-btn                { padding: 8px 14px; font-size: 9px; }
  .price-row              { grid-template-columns: 1fr; gap: 2px; padding: 14px 0; }
  .price-duration,
  .price-amount           { text-align: left; }

  /* Membership */
  .membership-hero-banner { grid-template-columns: 1fr; padding: 32px 20px; }
  .membership-value-grid  { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-page-grid      { grid-template-columns: 1fr; }

  /* Gift */
  .gift-options-grid      { grid-template-columns: repeat(2, 1fr); }

  /* Blog */
  .blog-grid              { grid-template-columns: 1fr; }
  .blog-card-body         { padding: 20px; }

  /* Blog article */
  .article-body h2        { font-size: 20px; }
  .article-body h3        { font-size: 18px; }
  .sidebar-book           { padding: 24px 20px; }

  /* About */
  .about-split            { grid-template-columns: 1fr; gap: 28px; }
  .about-split img        { height: 200px; }
  .about-values           { grid-template-columns: 1fr; }
  .value-card             { padding: 28px 20px; }

  /* Contact / Location */
  .location-info-grid     { grid-template-columns: 1fr; }
  .contact-grid           { grid-template-columns: 1fr; }
  .info-box               { padding: 28px 20px; }
  .info-box .big-phone    { font-size: 24px; white-space: nowrap; }

  /* Tulip flower — hides on phone (JS sizing is desktop-only) */
  .tulip-scroll           { display: none; }

  /* Music toggle — audio autoplay is blocked on mobile browsers */
  .music-toggle           { display: none; }

  /* Floating buttons — full-width book bar, compact right-side stack */
  .book-sticky            { left: 16px; right: 16px; text-align: center; bottom: 16px; }
  .call-float             { bottom: 76px; right: 16px; }
  .whatsapp-float         { bottom: 128px; right: 16px; }
}

/* ================================================================
   CENTRE PHOTO GALLERY  (jayanagar.html, jp-nagar.html)
   ================================================================ */
.centre-photos {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(214, 177, 122, .15);
}
.centre-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.cp-item { overflow: hidden; }
.cp-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.cp-item:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .centre-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .centre-photo-grid .cp-item img { height: 200px; }
}
@media (max-width: 560px) {
  .centre-photo-grid { grid-template-columns: 1fr; }
  .centre-photo-grid .cp-item img { height: 220px; }
}

/* ================================================================
   OUR LOCATIONS SECTION  (index.html)
   ================================================================ */
.section-our-locations { padding: 100px 0; background: var(--bg2); }
.loc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.loc-card {
  background: var(--bg);
  border: 1px solid rgba(214, 177, 122, .2);
  overflow: hidden;
}
.loc-card-photos {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 210px;
}
.loc-card-photos .main-photo { grid-row: span 2; }
.loc-card-photos img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loc-card-body { padding: 22px 24px 28px; }
.loc-card-body h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}
.loc-card-body address {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.loc-card-body .loc-phone {
  color: var(--gold);
  font-size: 14px;
  display: block;
  margin-bottom: 18px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .loc-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

