/* ═══════════════════════════════════════════════════════════
   BELLA VIE SALON & SPA — styles.css
   Design System: Cormorant Garamond + Jost | Blush & Rose Gold
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Colours */
  --clr-ivory:        #FAF6F1;
  --clr-ivory-mid:    #F3EDE4;
  --clr-blush:        #E8C4B8;
  --clr-blush-deep:   #D4A090;
  --clr-rose-gold:    #C9956A;
  --clr-rose-dark:    #A87050;
  --clr-champagne:    #D4B896;
  --clr-lavender:     #C8B8D0;
  --clr-mauve:        #8B6F6F;
  --clr-ink:          #1A1218;
  --clr-ink-soft:     #2E2028;
  --clr-text:         #4A3840;
  --clr-text-light:   #7A6070;
  --clr-white:        #FFFFFF;

  /* Gradients */
  --grad-gold:        linear-gradient(135deg, #C9956A 0%, #D4B896 50%, #C9956A 100%);
  --grad-blush:       linear-gradient(135deg, #E8C4B8 0%, #FAF6F1 100%);
  --grad-dark:        linear-gradient(135deg, #1A1218 0%, #2E2028 100%);
  --grad-hero-overlay: linear-gradient(to right, rgba(26,18,24,0.55) 0%, rgba(26,18,24,0.15) 100%);

  /* Typography */
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'Jost', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:   0.5rem;
  --sp-sm:   1rem;
  --sp-md:   1.5rem;
  --sp-lg:   2.5rem;
  --sp-xl:   4rem;
  --sp-2xl:  6rem;
  --sp-3xl:  9rem;

  /* Layout */
  --container:  1280px;
  --container-narrow: 900px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(26,18,24,0.08);
  --shadow-md:  0 8px 32px rgba(26,18,24,0.12);
  --shadow-lg:  0 20px 60px rgba(26,18,24,0.18);
  --shadow-gold: 0 8px 32px rgba(201,149,106,0.25);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  0.2s;
  --t-mid:   0.4s;
  --t-slow:  0.7s;

  /* Nav height */
  --nav-h: 80px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--clr-ivory);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-ink);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

em { font-style: italic; color: var(--clr-rose-gold); }

p { font-size: 1rem; line-height: 1.75; color: var(--clr-text); }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.section { padding-block: var(--sp-2xl); }
.section--tinted { background: var(--clr-ivory-mid); }
.section--dark { background: var(--clr-ink); }

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
  max-width: 640px;
  margin-inline: auto;
}
.section-header--light { color: var(--clr-white); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-rose-gold);
  margin-bottom: var(--sp-xs);
}
.section-eyebrow--gold { color: var(--clr-champagne); }

.section-title {
  margin-bottom: var(--sp-sm);
}
.section-title--light { color: var(--clr-white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 520px;
  margin-inline: auto;
}
.section-subtitle--light { color: rgba(255,255,255,0.65); }

.section-cta {
  text-align: center;
  margin-top: var(--sp-xl);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: all var(--t-mid) var(--ease-smooth);
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-gold);
  color: var(--clr-white);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,149,106,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-ink);
  border: 1.5px solid var(--clr-ink);
}
.btn--ghost:hover {
  background: var(--clr-ink);
  color: var(--clr-white);
}

.btn--outline {
  background: transparent;
  color: var(--clr-rose-gold);
  border: 1.5px solid var(--clr-rose-gold);
}
.btn--outline:hover {
  background: var(--clr-rose-gold);
  color: var(--clr-white);
}

.btn--outline-light {
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--clr-white);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--clr-white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.4);
}

.btn--nav {
  background: var(--grad-gold);
  color: var(--clr-white);
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  box-shadow: var(--shadow-gold);
}
.btn--nav:hover { transform: translateY(-1px); }

.btn--sm { padding: 0.65rem 1.4rem; font-size: 0.78rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }


/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t-mid) var(--ease-smooth),
              box-shadow var(--t-mid) var(--ease-smooth);
}

.nav.nav--scrolled {
  background: rgba(250,246,241,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(26,18,24,0.08);
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav__logo { flex-shrink: 0; }
.nav__logo-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.nav__logo-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  line-height: 1.2;
  max-width: 80px;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-ink);
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast) var(--ease-smooth);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.5rem);
  height: 1px;
  background: var(--clr-rose-gold);
  transition: transform var(--t-mid) var(--ease-smooth);
}
.nav__link:hover::after,
.nav__link--active::after { transform: translateX(-50%) scaleX(1); }
.nav__link:hover,
.nav__link--active { color: var(--clr-rose-gold); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-ink);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease-smooth);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav__drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--clr-ivory);
  padding: var(--sp-lg) clamp(1.5rem, 5vw, 3rem) var(--sp-xl);
  transform: translateY(-110%);
  transition: transform var(--t-mid) var(--ease-smooth);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.nav__drawer.is-open { transform: translateY(0); }

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.nav__drawer-links .nav__link {
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--clr-blush);
}


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left image panel */
.hero__image-panel {
  position: relative;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s var(--ease-smooth);
}
.hero--loaded .hero__img { transform: scale(1); }

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    var(--clr-ivory) 100%
  ), linear-gradient(
    to bottom,
    rgba(26,18,24,0.1) 0%,
    transparent 30%
  );
}

.hero__badge {
  position: absolute;
  bottom: var(--sp-xl);
  left: var(--sp-xl);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250,246,241,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.6rem 1.2rem;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-ink);
  box-shadow: var(--shadow-md);
}

.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-rose-gold);
  animation: pulse 2s ease-in-out infinite;
}

/* Right content */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-h) clamp(2rem, 5vw, 5rem) var(--sp-xl) clamp(1.5rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
  background: var(--clr-ivory);
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-rose-gold);
  margin-bottom: var(--sp-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--t-slow) var(--ease-smooth) 0.1s;
}

.hero__headline {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--clr-ink);
  margin-bottom: var(--sp-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t-slow) var(--ease-smooth) 0.25s;
}
.hero__headline em {
  font-weight: 300;
  color: var(--clr-rose-gold);
}
.hero__headline-sub {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--clr-text-light);
  letter-spacing: 0.08em;
}

.hero__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--clr-text-light);
  max-width: 420px;
  margin-bottom: var(--sp-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--t-slow) var(--ease-smooth) 0.4s;
}

.hero__actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--t-slow) var(--ease-smooth) 0.55s;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--clr-blush);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--t-slow) var(--ease-smooth) 0.7s;
}

.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--clr-rose-gold);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-blush);
}

/* Hero loaded state */
.hero--loaded .hero__eyebrow,
.hero--loaded .hero__headline,
.hero--loaded .hero__body,
.hero--loaded .hero__actions,
.hero--loaded .hero__stats {
  opacity: 1;
  transform: translateY(0);
}

/* Orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,196,184,0.25) 0%, transparent 70%);
  top: -100px; right: 40%;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,149,106,0.15) 0%, transparent 70%);
  bottom: 10%; right: 5%;
  animation: floatOrb 10s ease-in-out infinite reverse;
}


/* ════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.why__card {
  background: var(--clr-white);
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition: all var(--t-mid) var(--ease-smooth);
  box-shadow: var(--shadow-sm);
}
.why__card:hover {
  border-color: var(--clr-blush);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--clr-ivory-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-rose-gold);
  margin-bottom: var(--sp-md);
  transition: background var(--t-mid) var(--ease-smooth);
}
.why__card:hover .why__icon {
  background: linear-gradient(135deg, #E8C4B8 0%, #D4B896 100%);
  color: var(--clr-white);
}

.why__card-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--clr-ink);
}
.why__card-body {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.7;
}


/* ════════════════════════════════════════════
   SERVICES GRID
════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.svc-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease-smooth),
              box-shadow var(--t-mid) var(--ease-smooth);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.svc-card__img {
  width: 100%; height: 100%;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.svc-card:hover .svc-card__img { transform: scale(1.06); }

.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,24,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease-smooth);
}
.svc-card:hover .svc-card__overlay { opacity: 1; }

.svc-card__body {
  padding: var(--sp-md);
}
.svc-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--clr-ink);
}
.svc-card__desc {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
}
.svc-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-rose-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t-fast) var(--ease-smooth),
              color var(--t-fast) var(--ease-smooth);
}
.svc-card:hover .svc-card__link { gap: 8px; }


/* ════════════════════════════════════════════
   SPA FEATURE
════════════════════════════════════════════ */
.spa-feature { overflow: hidden; }

.spa-feature__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.spa-feature__images {
  position: relative;
  height: 580px;
}

.spa-feature__img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.spa-feature__img-main img {
  width: 100%; height: 100%;
}

.spa-feature__img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 52%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--clr-ivory);
}
.spa-feature__img-accent img {
  width: 100%; height: 100%;
}

.spa-feature__award {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  background: var(--grad-gold);
  color: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-sm) var(--sp-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 110px;
}
.spa-feature__award-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}
.spa-feature__award-text {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.spa-feature__body {
  color: var(--clr-text-light);
  margin-bottom: var(--sp-md);
  font-size: 1rem;
  line-height: 1.8;
}

.spa-feature__list {
  margin: var(--sp-lg) 0 var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.spa-feature__list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-text);
}
.spa-feature__list-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-gold);
  flex-shrink: 0;
}


/* ════════════════════════════════════════════
   GALLERY PREVIEW
════════════════════════════════════════════ */
.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: var(--sp-sm);
}

.gallery-preview__item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-preview__item img {
  width: 100%; height: 100%;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.gallery-preview__item:hover img { transform: scale(1.06); }

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

.gallery-preview__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-sm) var(--sp-md);
  background: linear-gradient(to top, rgba(26,18,24,0.7) 0%, transparent 100%);
  color: var(--clr-white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform var(--t-mid) var(--ease-smooth);
}
.gallery-preview__item:hover .gallery-preview__caption {
  transform: translateY(0);
}


/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-ivory-mid);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid) var(--ease-smooth);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card__stars {
  color: var(--clr-rose-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-sm);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--clr-ink-soft);
  margin-bottom: var(--sp-md);
  border: none;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--clr-ivory-mid);
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-ink);
  font-style: normal;
  display: block;
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--clr-text-light);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--sp-lg);
}


/* ════════════════════════════════════════════
   PACKAGES
════════════════════════════════════════════ */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  align-items: start;
}

.pkg-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-blush);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-mid) var(--ease-smooth);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pkg-card--featured {
  background: var(--clr-ink);
  border-color: transparent;
  position: relative;
  top: -12px;
  box-shadow: var(--shadow-lg);
}
.pkg-card--featured .pkg-card__name,
.pkg-card--featured .pkg-card__duration,
.pkg-card--featured .pkg-card__list li,
.pkg-card--featured .pkg-card__price { color: var(--clr-white); }
.pkg-card--featured .pkg-card__list li::before { background: var(--clr-rose-gold); }
.pkg-card--featured .pkg-card__list { border-color: rgba(255,255,255,0.1); }
.pkg-card--featured .pkg-card__footer { border-color: rgba(255,255,255,0.1); }

.pkg-card__header { margin-bottom: var(--sp-md); }
.pkg-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-rose-gold);
  background: rgba(201,149,106,0.12);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
}
.pkg-card__tag--gold {
  color: var(--clr-champagne);
  background: rgba(212,184,150,0.15);
}

.pkg-card__name {
  font-size: 1.5rem;
  color: var(--clr-ink);
  margin-bottom: 4px;
}
.pkg-card__duration {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  letter-spacing: 0.05em;
}

.pkg-card__list {
  padding-block: var(--sp-md);
  border-block: 1px solid var(--clr-blush);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-block: var(--sp-md);
}
.pkg-card__list li {
  font-size: 0.9rem;
  color: var(--clr-text);
  padding-left: 1.2rem;
  position: relative;
}
.pkg-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--clr-blush-deep);
}

.pkg-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--clr-blush);
}
.pkg-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--clr-rose-gold);
}


/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__img {
  width: 100%; height: 100%;
  object-position: center center;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,18,24,0.82) 0%,
    rgba(26,18,24,0.65) 50%,
    rgba(139,111,111,0.55) 100%
  );
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-2xl) clamp(1.5rem, 5vw, 3rem);
  max-width: 700px;
}
.cta-banner__title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--clr-white);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--sp-md);
}
.cta-banner__title em { color: var(--clr-champagne); }

.cta-banner__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: var(--sp-xl);
  max-width: 520px;
  margin-inline: auto;
}
.cta-banner__actions {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════
   CONTACT STRIP
════════════════════════════════════════════ */
.contact-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-strip__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}
.contact-info-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--clr-ivory-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-rose-gold);
  flex-shrink: 0;
}
.contact-info-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-rose-gold);
  margin-bottom: 4px;
}
.contact-info-item__value {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.6;
}
.contact-info-item__note {
  font-size: 0.8rem;
  color: var(--clr-text-light);
}
.contact-info-item__link:hover { color: var(--clr-rose-gold); }

.contact-strip__map {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 380px;
  background: var(--clr-ivory-mid);
  border: 1px solid var(--clr-blush);
}
.contact-strip__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  color: var(--clr-text-light);
  text-align: center;
  padding: var(--sp-lg);
}
.map-placeholder svg { color: var(--clr-blush-deep); opacity: 0.6; }
.map-placeholder p { font-size: 0.95rem; }
.map-placeholder__note { font-size: 0.8rem; color: var(--clr-text-light); opacity: 0.7; }


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--clr-ink);
  color: rgba(255,255,255,0.7);
}

.footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-2xl);
  padding-block: var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo-img {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: var(--sp-md);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-lg);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--t-mid) var(--ease-smooth);
}
.footer__social-link:hover {
  border-color: var(--clr-rose-gold);
  color: var(--clr-rose-gold);
  background: rgba(201,149,106,0.1);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.footer__nav-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-rose-gold);
  margin-bottom: var(--sp-md);
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast) var(--ease-smooth);
}
.footer__nav-col ul li a:hover { color: var(--clr-champagne); }

.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  padding-block: 2px;
}

.footer__book-btn { margin-top: var(--sp-md); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-md);
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__legal {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__legal a:hover { color: var(--clr-champagne); }


/* ════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-smooth),
              transform var(--t-slow) var(--ease-smooth);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }
[data-reveal]:nth-child(5) { transition-delay: 0.4s; }
[data-reveal]:nth-child(6) { transition-delay: 0.5s; }


/* ════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 20px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}


/* ════════════════════════════════════════════
   STUB PAGES — shared style token for future pages
════════════════════════════════════════════ */
.stub-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-xl);
  padding-top: calc(var(--nav-h) + var(--sp-xl));
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}
.stub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(201,149,106,0.2) 0%, transparent 60%);
}
.stub-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}
.stub-hero__title {
  color: var(--clr-white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.stub-hero__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}
.stub-hero__breadcrumb a { color: var(--clr-champagne); }


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .packages__grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-sm); }
  .pkg-card--featured { top: 0; }

  .footer__top { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }

  .spa-feature__inner { gap: var(--sp-xl); }
  .spa-feature__images { height: 460px; }
}

/* ── Mobile: 768px ── */
@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  /* Nav */
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }

  /* Hero: stack vertically */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vmin 1fr;
    min-height: auto;
  }
  .hero__image-overlay {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      var(--clr-ivory) 100%
    );
  }
  .hero__badge { bottom: var(--sp-md); left: var(--sp-md); }
  .hero__content {
    padding: var(--sp-lg) clamp(1.5rem, 5vw, 2rem) var(--sp-xl);
  }
  .hero__headline { font-size: clamp(2.8rem, 9vw, 4rem); }
  .hero__stats { gap: var(--sp-md); }

  /* Grids */
  .why__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }

  /* Spa feature */
  .spa-feature__inner { grid-template-columns: 1fr; }
  .spa-feature__images {
    height: 340px;
    order: -1;
  }
  .spa-feature__award { left: auto; right: var(--sp-sm); top: var(--sp-sm); transform: none; }

  /* Gallery */
  .gallery-preview__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-preview__item--tall { grid-row: span 1; }
  .gallery-preview__item--wide { grid-column: span 2; }

  /* Testimonials */
  .testimonials__track { grid-template-columns: 1fr; }

  /* Packages */
  .packages__grid { grid-template-columns: 1fr; }
  .pkg-card--featured { top: 0; }

  /* Contact */
  .contact-strip__grid { grid-template-columns: 1fr; }
  .contact-strip__map { height: 280px; }

  /* Footer */
  .footer__top { gap: var(--sp-lg); }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* CTA banner */
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

/* ── Small mobile: 480px ── */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__nav { grid-template-columns: 1fr; }
  .testimonial-card__quote { font-size: 1rem; }
  .pkg-card { padding: var(--sp-md); }
}
