/* ============================================================
   FAJAR BALI SPA v5 - Main Stylesheet
   Design: Earthy Tropical Luxury (Canggu)
   Version: 5.0 - Multi-palette (v3/v4/v5 via ?v= param)
   ============================================================ */

/* ──────────────────────── CSS Variables ──────────────────────── */
:root {
  /* Core palette (v3 defaults, overridden per version) */
  --c-primary: #2C4A3E;
  --c-primary-light: #3A6254;
  --c-primary-dark: #1E3329;
  --c-accent: #B8956A;
  --c-accent-light: #D4B48E;
  --c-accent-dark: #9A7A52;
  --c-accent-ondark: var(--c-accent);
  --c-bg: #F5F0EB;
  --c-bg-alt: #EDE7E0;
  --c-surface: #FAFAF7;
  --c-white: #FFFFFF;
  --c-text: #2D2D2D;
  --c-text-muted: #7A7A72;
  --c-text-light: #A5A59D;
  --c-border: #E2DCD5;
  --c-overlay: rgba(30, 51, 41, 0.65);
  --c-overlay-dark: rgba(30, 51, 41, 0.8);
  --c-sand: #E8DDD2;

  /* Gradient & effect helpers (overridden per version) */
  --c-hero-glow-1: rgba(58, 98, 84, 0.4);
  --c-hero-glow-2: rgba(184, 149, 106, 0.15);
  --c-hero-grad: linear-gradient(135deg, #1E3329 0%, #2C4A3E 40%, #3A6254 70%, #1E3329 100%);
  --c-hero-overlay-1: rgba(30, 51, 41, 0.3);
  --c-hero-overlay-2: rgba(30, 51, 41, 0.5);
  --c-hero-overlay-3: rgba(30, 51, 41, 0.7);
  --c-section-dark: linear-gradient(135deg, #2C4A3E 0%, #1E3329 50%, #2C4A3E 100%);
  --c-section-dark-simple: linear-gradient(135deg, #2C4A3E 0%, #1E3329 100%);
  --c-section-dark-rich: linear-gradient(135deg, #2C4A3E 0%, #1E3329 50%, #3A6254 100%);
  --c-header-glass: rgba(250, 250, 247, 0.92);
  --c-header-glass-solid: rgba(250, 250, 247, 0.97);
  --c-btn-accent-glow: rgba(184, 149, 106, 0.35);
  --c-focus-ring: rgba(184, 149, 106, 0.12);
  --c-tag-bg: linear-gradient(135deg, rgba(184, 149, 106, 0.12), rgba(184, 149, 106, 0.06));
  --c-tag-border: rgba(184, 149, 106, 0.25);
  --c-stats-border: rgba(184, 149, 106, 0.2);
  --c-gallery-overlay: rgba(30, 51, 41, 0.85);
  --c-menu-bg: linear-gradient(180deg, #0F1F18 0%, #1A2F25 30%, #1E3329 60%, #162820 100%);
  --c-menu-glow-1: rgba(184, 149, 106, 0.08);
  --c-menu-glow-2: rgba(184, 149, 106, 0.05);
  --c-ph-warm: linear-gradient(135deg, #B8956A 0%, #9A7A52 40%, #D4B48E 100%);
  --c-ph-green: linear-gradient(135deg, #2C4A3E 0%, #3A6254 50%, #4A7A6A 100%);
  --c-ph-sand: linear-gradient(135deg, #D4B48E 0%, #C4A478 50%, #B8956A 100%);

  /* Typography */
  --ff-heading: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --ff-body: 'RNZ Sanz', -apple-system, 'Segoe UI', sans-serif;
  --ff-accent: 'Bodoni Moda', Georgia, serif;

  /* Spacing */
  --section-py: clamp(90px, 11vw, 150px);
  --container-px: clamp(20px, 5vw, 80px);
  --container-max: 1280px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s;
  --t-base: 0.4s;
  --t-slow: 0.6s;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ──────────────────────── Reset & Base ──────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast) var(--ease);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ──────────────────────── Layout ──────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--alt {
  background-color: var(--c-surface);
}

.section + .section:not(.section--dark):not(.section--alt) {
  border-top: 1px solid var(--c-border);
}

.section--dark {
  background-color: var(--c-primary-dark);
}

/* ──────────────────────── Typography ──────────────────────── */
.section__label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--c-accent);
  letter-spacing: 0.25em;
  margin-bottom: 16px;
}

.section__label--light {
  color: var(--c-accent-light);
}

.section__title {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--c-primary-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.section__title em {
  font-family: var(--ff-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent);
}

.section__title--light {
  color: var(--c-white);
}

.section__title--light em {
  color: var(--c-accent-light);
}

.section__desc {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section__desc--light {
  color: rgba(255, 255, 255, 0.65);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.section__cta {
  text-align: center;
  margin-top: clamp(40px, 4vw, 60px);
}

/* ──────────────────────── Ornamental Dividers ──────────────────────── */
.section__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 60px;
  height: 12px;
  margin: 0 auto 24px;
  position: relative;
}

.section__ornament::before,
.section__ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--c-accent);
}

.section__ornament::before {
  margin-right: 6px;
}

.section__ornament::after {
  margin-left: 6px;
}

/* The diamond in the center uses a nested span or we do it with a box-shadow trick */
.section__ornament span {
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--c-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Hero divider variant - lighter color for dark backgrounds */
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 12px;
  margin: 0 auto 24px;
  position: relative;
}

.hero__divider::before,
.hero__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--c-accent-light);
}

.hero__divider::before {
  margin-right: 6px;
}

.hero__divider::after {
  margin-left: 6px;
}

.hero__divider span {
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--c-accent-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* CTA ornament variant */
.cta__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 12px;
  margin: 0 auto 24px;
  position: relative;
}

.cta__ornament::before,
.cta__ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--c-accent-light);
}

.cta__ornament::before {
  margin-right: 6px;
}

.cta__ornament::after {
  margin-left: 6px;
}

.cta__ornament span {
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--c-accent-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ──────────────────────── Buttons ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 36px;
  border-radius: 100px;
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background-color: var(--c-primary);
  color: var(--c-white);
  border: 1px solid var(--c-primary);
}

.btn--primary:hover {
  background-color: var(--c-primary-light);
  border-color: var(--c-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}

.btn--outline-dark:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background-color: var(--c-white);
  color: var(--c-primary);
  border: 1px solid var(--c-white);
}

.btn--white:hover {
  background-color: var(--c-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--gold {
  background-color: var(--c-accent);
  color: var(--c-white);
  border: 1px solid var(--c-accent);
}

.btn--gold:hover {
  background-color: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--c-btn-accent-glow);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 13px;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 15px;
}

/* ──────────────────────── Preloader ──────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--c-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  text-align: center;
}

.preloader__leaf {
  width: 40px;
  height: 40px;
  border: 2px solid var(--c-accent-ondark);
  border-radius: 50% 0;
  margin: 0 auto 20px;
  animation: preloaderSpin 1.5s ease-in-out infinite;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader__text {
  font-family: var(--ff-heading);
  color: var(--c-accent-light);
  font-size: 20px;
  letter-spacing: 0.1em;
}

/* ──────────────────────── Header ──────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--t-base) var(--ease);
}

.header--scrolled {
  background: var(--c-header-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
}

/* Back button (spa portal pages) */
.header__back {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.25s ease;
  z-index: 1001;
}

.header__back:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(-2px);
}

/* Scrolled state — dark border */
.header--scrolled .header__back {
  border-color: var(--c-border);
  color: var(--c-text);
}

.header--scrolled .header__back:hover {
  background: var(--c-bg-alt);
}

.header__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.header__logo-img {
  height: clamp(32px, 3.5vw, 44px);
  width: auto;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.15em;
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast) var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width var(--t-base) var(--ease-out);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link--active {
  color: var(--c-white);
}

.header--scrolled .nav__link {
  color: var(--c-text-muted);
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link--active {
  color: var(--c-primary);
}

.nav__cta {
  padding: 10px 24px;
  font-size: 13px;
}

/* Hide mobile-only panel elements on desktop */
.nav__panel-logo,
.nav__panel-divider,
.nav__panel-info,
.nav__close {
  display: none;
}

/* Close button — mobile panel */
.nav__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1010;
}

.nav__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Mobile toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  z-index: 1001;
  padding: 4px 0;
  margin-left: auto;
}

.header__toggle span {
  width: 100%;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
}

.header--scrolled .header__toggle span {
  background: var(--c-primary-dark);
}

.header__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__toggle--active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* ──────────────────────── Hero V5 ──────────────────────── */
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 100vh;
  min-height: 700px;
  max-height: 1100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-hero-grad);
  will-change: transform;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    var(--c-hero-overlay-1) 0%,
    var(--c-hero-overlay-2) 50%,
    var(--c-hero-overlay-3) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
}

.hero__content {
  max-width: 660px;
  text-align: left;
}

.hero__label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--c-accent-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero__rule {
  width: 48px;
  height: 1px;
  background: var(--c-accent-light);
  margin-bottom: 28px;
  opacity: 0.6;
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.04;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  font-family: var(--ff-accent);
  font-style: italic;
  color: var(--c-accent-ondark);
  font-size: 0.85em;
}

.hero__subtitle {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 0 44px;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero side card */
.hero__side {
  flex-shrink: 0;
}

.hero__side-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.04);
  min-width: 200px;
  text-align: center;
  gap: 8px;
}

.hero__side-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: 4px;
}

.hero__side-hours {
  font-family: var(--ff-heading);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: 0.02em;
}

.hero__side-loc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-accent-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ──────────────────────── Intro Section V2 ──────────────────────── */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.intro__text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.intro__stats {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}

.intro__stat {
  display: flex;
  flex-direction: column;
}

.intro__stat-number {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1;
}

.intro__stat-label {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Legacy support */
.intro__images {
  position: relative;
  height: clamp(350px, 40vw, 520px);
}

.intro__image {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro__image--accent {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 50%;
  border: 4px solid var(--c-bg);
}

/* V2 visual container */
.intro__visual {
  position: relative;
}

.intro__image-stack {
  position: relative;
  height: clamp(350px, 40vw, 520px);
}

.intro__image-stack .intro__image--main,
.intro__image-stack > .intro__image:first-child {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro__image-stack .intro__image--main img,
.intro__image-stack .intro__image--main .placeholder-img,
.intro__image-stack > .intro__image:first-child .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__image-stack .intro__image--float,
.intro__image-stack > .intro__image:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--c-bg);
  z-index: 2;
}

.intro__image-stack .intro__image--float img,
.intro__image-stack .intro__image--float .placeholder-img,
.intro__image-stack > .intro__image:nth-child(2) .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background-color: var(--c-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  line-height: 1.3;
  text-align: center;
}

.intro__badge span {
  display: block;
  font-family: var(--ff-heading);
  font-size: 18px;
  color: var(--c-accent-ondark);
}

/* ──────────────────────── Stats Bar (NEW) ──────────────────────── */
.stats-bar {
  background-color: var(--c-primary);
  padding: 48px 0;
  border-top: 1px solid var(--c-stats-border);
  border-bottom: 1px solid var(--c-stats-border);
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.stats-bar__item {
  flex: 1;
  text-align: center;
  padding: 8px 20px;
}

.stats-bar__number {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--c-accent-ondark);
  line-height: 1.1;
  display: block;
}

.stats-bar__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
  letter-spacing: 0.03em;
  display: block;
}

.stats-bar__divider {
  width: 1px;
  height: 40px;
  background-color: var(--c-accent-light);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ──────────────────────── Treatment Cards (Grid) ──────────────────────── */
.treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.treatment-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease-out);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.treatment-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.treatment-card__image .placeholder-img {
  height: 100%;
  transition: transform var(--t-slow) var(--ease-out);
}

.treatment-card:hover .treatment-card__image .placeholder-img {
  transform: scale(1.05);
}

.treatment-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--c-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.treatment-card:hover .treatment-card__overlay {
  opacity: 1;
}

.treatment-card__body {
  padding: 24px;
}

.treatment-card__title {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-primary-dark);
  margin-bottom: 10px;
}

.treatment-card__desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.treatment-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

.treatment-card__price {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-accent-dark);
}

.treatment-card__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-primary);
  transition: color var(--t-fast) var(--ease);
}

.treatment-card__link:hover {
  color: var(--c-accent);
}

/* ──────────────────────── Ritual Steps (NEW) ──────────────────────── */
.ritual__steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.ritual__step {
  flex: 1;
  text-align: center;
  padding: clamp(24px, 2.5vw, 36px) clamp(16px, 2vw, 24px);
  background: rgba(136, 144, 99, 0.08);
  border: 1px solid rgba(136, 144, 99, 0.18);
  border-radius: var(--radius-md);
  transition: all var(--t-base) var(--ease);
}

.ritual__step:hover {
  background: rgba(136, 144, 99, 0.14);
  transform: translateY(-4px);
}

.ritual__step-num {
  font-family: var(--ff-heading);
  font-size: 48px;
  font-weight: 400;
  color: var(--c-accent-light);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  opacity: 0.7;
}

.ritual__step h3 {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: 8px;
}

.ritual__step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.ritual__connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  padding-top: 48px;
}

.ritual__connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  border-top: 1px dashed var(--c-accent-light);
  opacity: 0.5;
}

/* ──────────────────────── Featured Treatments (NEW) ──────────────────────── */
.treatments__showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}

.treat-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 350px;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease-out);
}

.treat-feature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.treat-feature--reverse {
  direction: rtl;
}

.treat-feature--reverse > * {
  direction: ltr;
}

.treat-feature__img {
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.treat-feature__img img,
.treat-feature__img .placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.treat-feature:hover .treat-feature__img img,
.treat-feature:hover .treat-feature__img .placeholder-img {
  transform: scale(1.04);
}

.treat-feature__body {
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.treat-feature__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-accent-dark);
  background: var(--c-tag-bg);
  border: 1px solid var(--c-tag-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.treat-feature__title {
  font-family: var(--ff-heading);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  color: var(--c-primary-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.treat-feature__desc {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.treat-feature__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  margin-bottom: 24px;
  border-top: 1px solid var(--c-border);
}

.treat-feature__meta::before {
  display: none;
}

.treat-feature__duration {
  font-size: 14px;
  color: var(--c-text-muted);
}

.treat-feature__meta .treat-feature__duration + .treat-feature__price::before {
  content: '\00B7';
  margin-right: 16px;
  color: var(--c-text-light);
  font-size: 18px;
}

.treat-feature__price {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-accent);
}

/* ──────────────────────── Quick Treatment Grid (NEW) ──────────────────────── */
.treatments__quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: clamp(40px, 4vw, 60px);
}

.treat-quick {
  text-align: center;
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease-out);
  padding-bottom: 24px;
}

.treat-quick:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.treat-quick__img {
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio fallback */
  position: relative;
  overflow: hidden;
}

@supports (aspect-ratio: 4/3) {
  .treat-quick__img {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 4 / 3;
    position: relative;
  }
}

.treat-quick__img img,
.treat-quick__img .placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.treat-quick:hover .treat-quick__img img,
.treat-quick:hover .treat-quick__img .placeholder-img {
  transform: scale(1.05);
}

.treat-quick h4 {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-primary-dark);
  margin-top: 16px;
  padding: 0 16px;
  text-align: center;
}

.treat-quick span {
  display: block;
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-accent);
  margin-top: 6px;
  text-align: center;
}

/* ──────────────────────── Experience Section ──────────────────────── */
.experience {
  position: relative;
  overflow: hidden;
}

.experience__bg {
  position: absolute;
  inset: 0;
  background: var(--c-section-dark);
}

.experience__overlay {
  position: absolute;
  inset: 0;
  background: var(--c-overlay-dark);
}

.experience__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.experience__title {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.experience__text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.experience__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: 48px;
}

.experience__feature {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--t-base) var(--ease);
}

.experience__feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.experience__feature svg {
  color: var(--c-accent-light);
  margin-bottom: 12px;
}

.experience__feature h4 {
  font-family: var(--ff-heading);
  font-size: 16px;
  color: var(--c-white);
  margin-bottom: 6px;
}

.experience__feature p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ──────────────────────── Gallery Mosaic ──────────────────────── */
.gallery__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  height: 520px;
}

.gallery__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

.gallery__col--double .gallery__item {
  flex: 1;
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base) var(--ease);
  flex: 1;
}

.gallery__item:hover {
  box-shadow: var(--shadow-lg);
}

.gallery__item--v {
  height: 100%;
}

.gallery__item .placeholder-img {
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow) var(--ease-out);
}

.gallery__item:hover .placeholder-img {
  transform: scale(1.06);
}

.gallery__hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, var(--c-gallery-overlay) 0%, transparent 100%);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform var(--t-base) var(--ease-out);
  z-index: 2;
}

.gallery__item:hover .gallery__hover {
  transform: translateY(0);
}

/* Legacy grid support */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ──────────────────────── Testimonials V2 ──────────────────────── */
.testimonials__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonials__stars {
  display: flex;
  gap: 2px;
  color: var(--c-accent);
}

.testimonials__score {
  font-size: 14px;
  color: var(--c-text-muted);
}

.testimonial-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-accent);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--ff-heading);
  font-size: 60px;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 28px;
  pointer-events: none;
  user-select: none;
}

.testimonial-card__text {
  font-family: var(--ff-accent);
  font-size: clamp(16px, 1.3vw, 19px);
  font-style: italic;
  color: var(--c-text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  padding-top: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card__author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--c-primary-dark);
}

.testimonial-card__origin {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.testimonials__slider .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.testimonials__slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--c-border);
  opacity: 1;
  transition: all var(--t-fast) var(--ease);
}

.testimonials__slider .swiper-pagination-bullet-active {
  background: var(--c-accent);
  width: 28px;
  border-radius: 5px;
}

/* Testimonials nav (prev/next + pagination) */
.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-accent);
  background: transparent;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  flex-shrink: 0;
}

.testimonials__btn:hover {
  background-color: var(--c-accent);
  color: var(--c-white);
}

.testimonials__btn svg {
  width: 18px;
  height: 18px;
}

/* ──────────────────────── Partners Marquee ──────────────────────── */
.partners {
  padding: 40px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}

.partners__marquee {
  overflow: hidden;
  width: 100%;
}

.partners__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
  will-change: transform;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners__track:hover {
  animation-play-state: paused;
}

/* Legacy grid support */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease);
}

/* Legacy grid partner logos keep their bordered style */
.partners__grid .partner-logo {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  height: 100px;
  padding: 8px;
}

.partners__grid .partner-logo:hover {
  border-color: var(--c-accent-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.partner-logo span {
  font-family: var(--ff-heading);
  font-size: 14px;
  color: var(--c-text-muted);
  text-align: center;
  padding: 8px;
  letter-spacing: 0.03em;
}

.partners__track .partner-logo {
  opacity: 0.5;
  transition: opacity var(--t-fast) var(--ease);
}

.partners__track .partner-logo:hover {
  opacity: 1;
}

/* ──────────────────────── CTA Section ──────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: var(--c-section-dark-simple);
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: var(--c-overlay-dark);
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta__title {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.cta__text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero .btn--gold,
.cta .btn--gold {
  background-color: var(--c-accent-ondark);
  border-color: var(--c-accent-ondark);
  color: var(--c-primary-dark);
}

.hero .btn--gold:hover,
.cta .btn--gold:hover {
  background-color: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-primary-dark);
}

/* ──────────────────────── Spa Portals ──────────────────────── */
.portals__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 20px;
}

.portal {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--c-white);
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}

.portal:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.portal__bg {
  position: absolute;
  inset: 0;
}

.portal__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.portal:hover .portal__bg img {
  transform: scale(1.05);
}

.portal__overlay {
  position: absolute;
  inset: 0;
}

.portal__overlay--warm {
  background: linear-gradient(180deg, rgba(180, 100, 40, 0.1) 0%, rgba(180, 100, 40, 0.4) 40%, rgba(120, 60, 20, 0.85) 100%);
}

.portal__overlay--dark {
  background: linear-gradient(180deg, rgba(61, 48, 20, 0.1) 0%, rgba(61, 48, 20, 0.4) 40%, rgba(61, 48, 20, 0.88) 100%);
}

.portal__content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portal__label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--c-accent-ondark);
  align-self: flex-start;
  padding: 4px 12px;
  border: 1px solid rgba(207, 187, 153, 0.3);
  border-radius: 20px;
}

.portal__title {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.1;
  margin: 4px 0;
}

.portal__title em {
  font-family: var(--ff-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent-ondark);
}

.portal__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 360px;
}

.portal__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.portal__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-accent-ondark);
  margin-top: 8px;
  transition: gap var(--t-fast) var(--ease);
}

.portal:hover .portal__cta {
  gap: 14px;
}

.portal__cta svg {
  transition: transform var(--t-fast) var(--ease);
}

.portal:hover .portal__cta svg {
  transform: translateX(4px);
}

/* ──────────────────────── Contact Form ──────────────────────── */
section.contact-form .contact-form__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

section.contact-form .contact-form__header .section__title {
  text-align: left;
}

section.contact-form .contact-form__header .section__label {
  text-align: left;
}

section.contact-form .contact-form__header .section__ornament {
  margin: 0 0 24px 0;
}

section.contact-form .contact-form__desc {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

section.contact-form .contact-form__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

section.contact-form .contact-form__note svg {
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

section.contact-form .contact-form__note span {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.contact-form__form {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 3.5vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

.contact-form__form .form__row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__form .form__group {
  display: block;
  margin-bottom: 24px;
}

.contact-form__form .form__label {
  display: block !important;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary-dark);
  margin-bottom: 10px;
}

.contact-form__form .form__label span {
  color: var(--c-accent);
}

.contact-form__form input.form__input,
.contact-form__form select.form__input,
.contact-form__form textarea.form__input {
  display: block !important;
  width: 100% !important;
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-text);
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-form__form input.form__input:focus,
.contact-form__form select.form__input:focus,
.contact-form__form textarea.form__input:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-focus-ring);
  background-color: var(--c-white);
}

.contact-form__form input.form__input::placeholder,
.contact-form__form textarea.form__input::placeholder {
  color: var(--c-text-light);
  font-weight: 300;
}

.contact-form__form select.form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A7A72' d='M6 8.825L.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.contact-form__form textarea.form__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-form__form .btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px 40px;
}

@media (max-width: 992px) {
  section.contact-form .contact-form__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  section.contact-form .contact-form__header .section__title,
  section.contact-form .contact-form__header .section__label {
    text-align: center;
  }

  section.contact-form .contact-form__header .section__ornament {
    margin: 0 auto 24px;
  }

  section.contact-form .contact-form__desc {
    text-align: center;
  }

  section.contact-form .contact-form__note {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-form__form .form__row {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .contact-form__form {
    padding: 24px 20px;
  }
}

/* ──────────────────────── Location V2 ──────────────────────── */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.location__text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.location__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--c-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-accent-dark);
}

.location__icon svg {
  width: 20px;
  height: 20px;
}

.location__details strong {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-primary);
}

.location__details span,
.location__details a {
  font-size: 15px;
  color: var(--c-text-muted);
}

.location__details a:hover {
  color: var(--c-accent);
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
  background: var(--c-bg-alt);
}

.location__map iframe {
  width: 100%;
  height: 100%;
}

/* ──────────────────────── Page Hero ──────────────────────── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D0A04 0%, #1A1308 50%, #2A2116 100%);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,19,8,0.4) 0%, rgba(26,19,8,0.75) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-px);
}

.page-hero__label {
  display: inline-block;
  font-family: var(--ff-accent);
  font-size: clamp(14px, 1.2vw, 17px);
  font-style: italic;
  color: var(--c-accent-light);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.page-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.page-hero__subtitle {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ──────────────────────── About Page ──────────────────────── */
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-story__content p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Values */
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.value-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.5vw, 36px);
  text-align: center;
  border: 1px solid var(--c-border);
  transition: all var(--t-base) var(--ease-out);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent-light);
}

.value-card__icon {
  color: var(--c-accent);
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-primary-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* Team */
.about-team__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.about-team__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ──────────────────────── Treatment Nav ──────────────────────── */
.treatment-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-header-glass-solid);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.treatment-section {
  scroll-margin-top: 120px;
}

.treatment-section .section__header {
  padding-top: 20px;
}

.treatment-nav__inner {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.treatment-nav__inner::-webkit-scrollbar {
  display: none;
}

.treatment-nav__link {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all var(--t-fast) var(--ease);
}

.treatment-nav__link:hover {
  color: var(--c-primary);
  background: var(--c-bg-alt);
}

.treatment-nav__link--active {
  color: var(--c-white);
  background: var(--c-primary);
}

/* Treatment List */
.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.treatment-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: all var(--t-base) var(--ease-out);
}

.treatment-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.treatment-item__image {
  overflow: hidden;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.treatment-item__image img,
.treatment-item__image .placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.treatment-item:hover .treatment-item__image img,
.treatment-item:hover .treatment-item__image .placeholder-img {
  transform: scale(1.06);
}

.treatment-item__body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.treatment-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 16px;
}

.treatment-item__title {
  font-family: var(--ff-heading);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--c-primary-dark);
}

.treatment-item__duration {
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 500;
  white-space: nowrap;
}

.treatment-item__desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.treatment-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

.treatment-item__price {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-accent-dark);
}

/* ──────────────────────── Contact Page ──────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}

.contact__heading {
  font-family: var(--ff-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--c-primary-dark);
  margin-bottom: 12px;
}

.contact__text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--c-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
}

.contact-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary-dark);
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--c-accent);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 500px;
  background: var(--c-bg-alt);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* ──────────────────────── WhatsApp Widget ──────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Trigger button */
.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
.wa-btn__icon { transition: opacity 0.2s ease, transform 0.25s ease; position: absolute; }
.wa-btn__icon--close { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.wa-btn__icon--wa { opacity: 1; transform: rotate(0) scale(1); }
.wa-widget--open .wa-btn { background: #1a1308; box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.wa-widget--open .wa-btn__icon--wa { opacity: 0; transform: rotate(90deg) scale(0.6); }
.wa-widget--open .wa-btn__icon--close { opacity: 1; transform: rotate(0) scale(1); }

/* Panel */
.wa-panel {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  pointer-events: none;
}
.wa-widget--open .wa-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wa-panel__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.wa-panel__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.wa-panel__close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Options — side by side */
.wa-panel__options {
  display: flex;
  flex-direction: row;
}
.wa-panel__option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.wa-panel__option:last-child { border-right: none; }
.wa-panel__option:hover { background: rgba(255,255,255,0.05); }
.wa-panel__option-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,211,102,0.1);
  border-radius: 50%;
  transition: background 0.2s ease;
}
.wa-panel__option:hover .wa-panel__option-icon { background: rgba(37,211,102,0.2); }
.wa-panel__option-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wa-panel__option-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.wa-panel__option-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

@media (max-width: 480px) {
  .wa-widget { bottom: 20px; right: 16px; }
  .wa-panel { width: calc(100vw - 32px); }
}

/* ──────────────────────── Back to Top ──────────────────────── */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-dark);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-base) var(--ease);
}

.back-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-top:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.back-top svg {
  width: 20px;
  height: 20px;
}

/* ──────────────────────── Footer ──────────────────────── */
.footer {
  background: var(--c-primary-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer__top {
  padding: clamp(60px, 6vw, 90px) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 48px);
}

.footer__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 4px;
}

.footer__tagline {
  font-family: var(--ff-accent);
  font-size: 13px;
  font-style: italic;
  color: var(--c-accent-light);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--t-fast) var(--ease);
}

.footer__social a:hover {
  background: var(--c-accent-light);
  color: var(--c-white);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--t-fast) var(--ease);
}

.footer__links a:hover {
  color: var(--c-accent-light);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer__contact svg {
  flex-shrink: 0;
  color: var(--c-accent-light);
  margin-top: 2px;
}

.footer__contact a:hover {
  color: var(--c-accent-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

/* ──────────────────────── Placeholder Images ──────────────────────── */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-accent);
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  position: relative;
}

.placeholder-img--warm {
  background: var(--c-ph-warm);
}

.placeholder-img--green {
  background: var(--c-ph-green);
}

.placeholder-img--sand {
  background: var(--c-ph-sand);
}

/* Real images in containers that previously used placeholders */
.intro__image img,
.treat-feature__img img,
.treat-quick__img img,
.gallery__item img,
.treatment-card__image img,
.treatment-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ──────────────────────── Page Content (default) ──────────────────────── */
.page-content {
  padding: 140px 0 80px;
}

.page-content h1 {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--c-primary-dark);
  margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ──── Tablet Landscape (1200px) ──── */
@media (max-width: 1200px) {
  .treatments__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__col:last-child {
    grid-column: 1 / -1;
  }

  .treatments__quick {
    grid-template-columns: repeat(3, 1fr);
  }

  .ritual__steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .ritual__connector {
    display: none;
  }

  .ritual__step {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }
}

/* ──── Tablet Portrait (992px) ──── */
@media (max-width: 992px) {
  .hero__side {
    display: none;
  }

  .hero__inner {
    justify-content: center;
  }

  .hero__content {
    text-align: center;
    max-width: 600px;
  }

  .hero__rule {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro__images {
    height: 350px;
  }

  .intro__image-stack {
    height: 350px;
  }

  .location__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location__map {
    height: 350px;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__map {
    min-height: 350px;
  }

  .treatment-item {
    grid-template-columns: 220px 1fr;
  }

  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .treat-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .treat-feature--reverse {
    direction: ltr;
  }

  .treat-feature__img {
    min-height: 260px;
  }

  .treatments__quick {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar__inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .stats-bar__item {
    flex: 1 1 calc(50% - 20px);
    padding: 16px 12px;
  }

  .stats-bar__divider {
    display: none;
  }
}

/* ──── Mobile Landscape (768px) ──── */
@media (max-width: 768px) {
  /* Portals - stack on mobile */
  .portals__grid {
    grid-template-columns: 1fr;
  }

  .portal {
    min-height: 420px;
  }

  /* Header mobile nav */
  .header__toggle {
    display: flex;
  }

  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 9999 !important;
    background:
      radial-gradient(ellipse at 30% 20%, var(--c-menu-glow-1) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 80%, var(--c-menu-glow-2) 0%, transparent 50%),
      var(--c-menu-bg);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 80px 40px 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
  }

  /* Close button */
  .nav__close {
    display: flex !important;
  }

  /* Panel logo */
  .nav__panel-logo {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
  }

  .nav__panel-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
  }

  .nav__panel-brand {
    font-family: var(--ff-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--c-white);
    letter-spacing: 0.05em;
    line-height: 1.1;
  }

  .nav__panel-sub {
    font-family: var(--ff-accent);
    font-size: 12px;
    font-style: italic;
    color: var(--c-accent-light);
    letter-spacing: 0.15em;
    margin-top: 6px;
  }

  /* Panel divider */
  .nav__panel-divider {
    display: block !important;
    width: 40px;
    height: 1px;
    background: var(--c-accent-light);
    opacity: 0.4;
    margin: 24px auto;
  }

  .nav--open .nav__link {
    color: rgba(255, 255, 255, 0.7);
  }

  .nav--open .nav__link:hover,
  .nav--open .nav__link--active {
    color: var(--c-white);
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .nav__link {
    font-size: 13px;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7);
  }

  .nav__cta {
    margin-top: 8px;
  }

  /* Panel bottom info */
  .nav__panel-info {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
  }

  .nav__panel-info span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .header__toggle--active span {
    background: var(--c-white) !important;
  }

  /* Treatments */
  .treatments__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .treatment-item {
    grid-template-columns: 1fr;
  }

  .treatment-item__body {
    padding: 24px;
  }

  .treatment-item__image .placeholder-img {
    min-height: 200px;
  }

  /* Experience */
  .experience__features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Gallery */
  .gallery__mosaic {
    grid-template-columns: 1fr 1fr;
    height: auto;
    gap: 12px;
  }

  .gallery__mosaic .gallery__col {
    gap: 12px;
  }

  .gallery__mosaic .gallery__item--v {
    min-height: 220px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  /* About values */
  .about-values__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Partners */
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero__scroll {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Testimonials */
  .testimonials__slider .swiper-slide {
    height: auto;
  }

  /* Ritual steps - 2x2 grid on tablet, stacked on mobile */
  .ritual__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .ritual__connector {
    display: none;
  }

  .ritual__step {
    width: 100%;
  }

  .ritual__step-num {
    font-size: 36px;
  }

  /* Featured treatments */
  .treat-feature {
    grid-template-columns: 1fr;
  }

  .treat-feature--reverse {
    direction: ltr;
  }

  .treat-feature__img {
    min-height: 240px;
  }

  /* Quick treatments */
  .treatments__quick {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Stats bar - 2x2 grid */
  .stats-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stats-bar__item {
    padding: 16px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-bar__item:nth-child(2n) {
    border-right: none;
  }

  .stats-bar__item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stats-bar__divider {
    display: none;
  }

  /* Location */
  .location__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location__map {
    height: 300px;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__map {
    min-height: 300px;
  }

  /* Back to top */
  .back-top {
    bottom: 88px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ──── Mobile Portrait (480px) ──── */
@media (max-width: 480px) {
  :root {
    --section-py: 56px;
    --container-px: 20px;
  }

  /* Typography scaling */
  .hero__title {
    font-size: 34px;
    letter-spacing: 0.01em;
  }

  .section__title {
    font-size: 26px;
  }

  .section__desc {
    font-size: 14px;
  }

  /* Intro */
  .intro__images,
  .intro__image-stack {
    height: 280px;
  }

  /* Experience */
  .experience__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Gallery - 2 columns stays clean on mobile */
  .gallery__mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery__mosaic .gallery__col {
    gap: 10px;
  }

  .gallery__mosaic .gallery__item--v {
    min-height: 180px;
  }

  /* Ritual steps - single column on small screens */
  .ritual__steps {
    grid-template-columns: 1fr;
  }

  .ritual__step {
    padding: 24px 20px;
  }

  .ritual__step-num {
    font-size: 32px;
  }

  .ritual__step h3 {
    font-size: 16px;
  }

  .ritual__step p {
    font-size: 13px;
  }

  /* Stats bar - single column */
  .stats-bar__inner {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar__number {
    font-size: 24px;
  }

  .stats-bar__label {
    font-size: 10px;
  }

  /* Featured treatments */
  .treat-feature__img {
    min-height: 200px;
  }

  .treat-feature__body {
    padding: 24px 20px;
  }

  .treat-feature__title {
    font-size: 22px;
  }

  /* Quick treatments */
  .treatments__quick {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Treatment page items */
  .treatment-nav__link {
    padding: 8px 14px;
    font-size: 11px;
  }

  .treatment-item__header {
    flex-direction: column;
    gap: 4px;
  }

  .treatment-item__footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .treatment-item__footer .btn {
    width: 100%;
  }

  /* Testimonials */
  .testimonials__nav {
    gap: 12px;
  }

  .testimonials__btn {
    width: 38px;
    height: 38px;
  }

  /* Contact */
  .contact-card {
    gap: 12px;
  }

  /* Page hero */
  .page-hero {
    min-height: 260px;
    height: 40vh;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer__col {
    text-align: center;
  }

  .footer__contact li {
    justify-content: center;
  }

  /* WhatsApp widget mobile */
  .wa-widget { bottom: 20px; right: 20px; }

  /* Back to top */
  .back-top {
    bottom: 78px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
}

/* ──── Small Devices (360px) ──── */
@media (max-width: 360px) {
  .hero__title {
    font-size: 28px;
  }

  .section__title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .btn--lg {
    padding: 14px 28px;
  }
}

/* ──── Large Desktop (1440px+) ──── */
@media (min-width: 1440px) {
  :root {
    --container-max: 1360px;
  }
}

/* ──── Ultra Wide (1920px+) ──── */
@media (min-width: 1920px) {
  :root {
    --container-max: 1440px;
  }

  body {
    font-size: 17px;
  }
}

/* ──────────────────────── Print ──────────────────────── */
@media print {
  .header,
  .wa-widget,
  .back-top,
  .preloader,
  .hero__scroll {
    display: none !important;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }

  body {
    background: white;
    color: black;
  }
}

/* ──────────────────────── Reduced Motion ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .partners__track {
    animation: none;
  }
}

/* ──────────────────────── Spa Bali Header Override ──────────────────────── */
body.page-template-page-spa-bali .header,
body.page-template-page-spa-bali .header--scrolled {
  background: #FE4B00 !important;
  border-bottom: none !important;
}

body.page-template-page-spa-bali .header--scrolled {
  box-shadow: 0 2px 20px rgba(254, 75, 0, 0.3) !important;
}

/* spa-bali logo swap handled by JS */

body.page-template-page-spa-bali .nav__link {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.page-template-page-spa-bali .nav__link:hover,
body.page-template-page-spa-bali .nav__link--active {
  color: #FFFFFF !important;
}

body.page-template-page-spa-bali .btn.nav__cta,
body.page-template-page-spa-bali .nav__cta.btn {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #FE4B00 !important;
}

body.page-template-page-spa-bali .btn.nav__cta:hover,
body.page-template-page-spa-bali .nav__cta.btn:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
}

body.page-template-page-spa-bali .header__toggle span {
  background-color: #FFFFFF !important;
}

/* ──────────────────────── Spa Luxury Header Override ──────────────────────── */
body.page-template-page-spa-luxury .header,
body.page-template-page-spa-luxury .header--scrolled {
  background: #3D3014 !important;
  border-bottom: none !important;
}

body.page-template-page-spa-luxury .header--scrolled {
  box-shadow: 0 2px 20px rgba(61, 48, 20, 0.4) !important;
}

/* spa-luxury logo swap handled by JS */

body.page-template-page-spa-luxury .nav__link {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.page-template-page-spa-luxury .nav__link:hover,
body.page-template-page-spa-luxury .nav__link--active {
  color: #FFFFFF !important;
}

body.page-template-page-spa-luxury .btn.nav__cta,
body.page-template-page-spa-luxury .nav__cta.btn {
  background: #CFBB99 !important;
  background-color: #CFBB99 !important;
  border-color: #CFBB99 !important;
  color: #3D3014 !important;
}

body.page-template-page-spa-luxury .btn.nav__cta:hover,
body.page-template-page-spa-luxury .nav__cta.btn:hover {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #3D3014 !important;
}

body.page-template-page-spa-luxury .header__toggle span {
  background-color: #FFFFFF !important;
}

body.page-template-page-spa-luxury .header__back {
  border-color: rgba(207, 187, 153, 0.4);
  color: #CFBB99;
}

body.page-template-page-spa-luxury .header__back:hover {
  background: rgba(207, 187, 153, 0.15);
  border-color: #CFBB99;
}

/* Spa Bali back button */
body.page-template-page-spa-bali .header__back {
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

body.page-template-page-spa-bali .header__back:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}
