/* ============================================================
   FAJAR BALI SPA - Main Stylesheet
   Design: Coastal Tropical Luxury (Canggu)
   ============================================================ */

/* ──────────────────────── CSS Variables ──────────────────────── */
:root {
  /* Colors */
  --c-primary: #2C4A3E;
  --c-primary-light: #3A6254;
  --c-primary-dark: #1E3329;
  --c-accent: #B8956A;
  --c-accent-light: #D4B48E;
  --c-accent-dark: #9A7A52;
  --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);

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --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: 16px;
  line-height: 1.7;
  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);
}

/* ──────────────────────── Typography ──────────────────────── */
.section__label {
  display: inline-block;
  font-family: var(--ff-accent);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 400;
  font-style: italic;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section__label--light {
  color: var(--c-accent-light);
}

.section__title {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--c-primary-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.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__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.section__cta {
  text-align: center;
  margin-top: clamp(40px, 4vw, 60px);
}

/* ──────────────────────── Buttons ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  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--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);
  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: rgba(250, 250, 247, 0.92);
  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;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.header__logo-text {
  font-family: var(--ff-heading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.1;
  transition: color var(--t-base) var(--ease);
}

.header__logo-sub {
  font-family: var(--ff-accent);
  font-size: 11px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
  transition: color var(--t-base) var(--ease);
}

.header--scrolled .header__logo-text {
  color: var(--c-primary-dark);
}

.header--scrolled .header__logo-sub {
  color: var(--c-accent);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__list {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  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;
}

/* Mobile toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  z-index: 1001;
  padding: 4px 0;
}

.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 ──────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C4A3E 0%, #1E3329 30%, #3A6254 60%, #2C4A3E 100%);
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 51, 41, 0.3) 0%,
    rgba(30, 51, 41, 0.5) 50%,
    rgba(30, 51, 41, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-px);
}

.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: 16px;
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 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: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.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 ──────────────────────── */
.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;
}

.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--main {
  top: 0;
  right: 0;
  width: 75%;
  height: 80%;
}

.intro__image--accent {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 50%;
  border: 4px solid var(--c-bg);
}

/* ──────────────────────── Treatment Cards ──────────────────────── */
.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(-8px);
  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.08);
}

.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: 20px;
  font-weight: 500;
  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);
}

/* ──────────────────────── Experience Section ──────────────────────── */
.experience {
  position: relative;
  overflow: hidden;
}

.experience__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C4A3E 0%, #1E3329 50%, #2C4A3E 100%);
}

.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(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.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 ──────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item .placeholder-img {
  height: 100%;
  transition: transform var(--t-slow) var(--ease-out);
}

.gallery__item:hover .placeholder-img {
  transform: scale(1.06);
}

/* ──────────────────────── Testimonials ──────────────────────── */
.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);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.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;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}

.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;
}

/* ──────────────────────── Partners ──────────────────────── */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partner-logo {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base) var(--ease);
}

.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;
}

/* ──────────────────────── CTA Section ──────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C4A3E 0%, #1E3329 100%);
}

.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(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta__text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ──────────────────────── Location ──────────────────────── */
.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;
  flex-direction: column;
  gap: 4px;
}

.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, #2C4A3E 0%, #1E3329 50%, #3A6254 100%);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--c-overlay);
}

.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(32px, 5vw, 56px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.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);
}

/* 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;
}

/* ──────────────────────── Treatment Nav ──────────────────────── */
.treatment-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.97);
  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: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  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;
}

.treatment-item__image .placeholder-img {
  height: 100%;
  min-height: 200px;
  transition: transform var(--t-slow) var(--ease-out);
}

.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(18px, 1.5vw, 22px);
  font-weight: 500;
  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(24px, 2.5vw, 32px);
  font-weight: 500;
  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 Float ──────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  background: #25D366;
  color: var(--c-white);
  width: 56px;
  height: 56px;
  border-radius: 56px;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--t-base) var(--ease-out);
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  width: auto;
  padding: 0 20px;
}

.whatsapp-float__label {
  font-size: 14px;
  font-weight: 600;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all var(--t-base) var(--ease-out);
}

/* ──────────────────────── Footer ──────────────────────── */
.footer {
  background: var(--c-primary-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer__top {
  padding: clamp(60px, 6vw, 80px) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 48px);
}

.footer__logo {
  font-family: var(--ff-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--c-white);
  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);
  color: var(--c-white);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 500;
  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.1);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ──────────────────────── 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;
}

.placeholder-img--warm {
  background: linear-gradient(135deg, #B8956A 0%, #9A7A52 40%, #D4B48E 100%);
}

.placeholder-img--green {
  background: linear-gradient(135deg, #2C4A3E 0%, #3A6254 50%, #4A7A6A 100%);
}

.placeholder-img--sand {
  background: linear-gradient(135deg, #D4B48E 0%, #C4A478 50%, #B8956A 100%);
}

/* ──────────────────────── 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;
  }
}

/* ──── Tablet Portrait (992px) ──── */
@media (max-width: 992px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro__images {
    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;
  }
}

/* ──── Mobile Landscape (768px) ──── */
@media (max-width: 768px) {
  /* Header mobile nav */
  .header__toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--c-primary-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base) var(--ease);
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
  }

  .nav--open .nav__link {
    color: rgba(255, 255, 255, 0.8);
  }

  .nav--open .nav__link:hover,
  .nav--open .nav__link--active {
    color: var(--c-white);
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav__link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
  }

  .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: 180px;
  }

  /* Experience */
  .experience__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Gallery */
  .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;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Partners */
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: auto;
  }

  /* Hero */
  .hero {
    min-height: 500px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Testimonials */
  .testimonials__slider .swiper-slide {
    height: auto;
  }
}

/* ──── Mobile Portrait (480px) ──── */
@media (max-width: 480px) {
  :root {
    --section-py: 60px;
    --container-px: 20px;
  }

  .hero__title {
    font-size: 32px;
  }

  .section__title {
    font-size: 26px;
  }

  .intro__stats {
    flex-direction: column;
    gap: 16px;
  }

  .intro__stat {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }

  .intro__stat-number {
    font-size: 28px;
  }

  .intro__images {
    height: 280px;
  }

  .experience__features {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .partners__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .partner-logo {
    height: 80px;
  }

  .treatment-nav__link {
    padding: 8px 16px;
    font-size: 13px;
  }

  .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%;
  }

  .treatment-card__footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .contact-card {
    flex-direction: column;
  }

  .contact__map {
    min-height: 280px;
  }

  .contact__map iframe {
    min-height: 280px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-float__label {
    display: none;
  }

  .page-hero {
    min-height: 280px;
    height: 40vh;
  }
}

/* ──── 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,
  .whatsapp-float,
  .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;
  }
}
