/* ============================================
   CASA VENUS — RITUAL SPA TULUM
   Brand Kit Stylesheet v2.0 — Tulum Edition
   ============================================ */

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

:root {
  --sand: #F0EAE0;
  --cream: #F7F3ED;
  --warm-white: #FDFBF7;
  --taupe: #B8A99A;
  --clay: #C4956A;
  --terracotta: #C07B5A;
  --chukum: #D4A985;
  --gold: #B8965A;
  --sage: #7A8B6F;
  --sage-light: #A8B09A;
  --ocean: #5C8A87;
  --charcoal: #2C2824;
  --warm-brown: #3A3632;
  --warm-gray: #8A817A;
  --light-gray: #E5DDD3;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant', 'Georgia', serif;
  --nav-height: 80px;
  --max-width: 1200px;
  --section-pad: 120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--warm-brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Grain texture — only on warm/beige sections, not on white */
body::before {
  display: none; /* disabled global grain — applied per-section instead */
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- MARQUEE --- */
.marquee {
  overflow: hidden;
  padding: 28px 0;
  border-bottom: 1px solid var(--light-gray);
  background: var(--warm-white);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--warm-brown);
}
.marquee__dot {
  color: var(--clay);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- INTRO (text + image side-by-side) --- */
.intro {
  padding: var(--section-pad) 0;
}
.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__content {
  max-width: 500px;
}
.intro__content .overline {
  margin-bottom: 20px;
}
.intro__content .heading-2 {
  margin-bottom: 24px;
}
.intro__content .body-text {
  margin-bottom: 32px;
  color: var(--warm-gray);
}
.intro__pillars {
  display: flex;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--taupe);
}
.intro__pillar-dot { color: var(--light-gray); }
.intro__image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.intro__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.intro__image:hover img {
  transform: scale(1.03);
}

/* --- IMAGE BREAK (full-width with quote) --- */
.image-break {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
}
.image-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 40, 36, 0.45);
}
.image-break__quote {
  font-family: var(--font-accent);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  letter-spacing: 2px;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
  line-height: 1.5;
}
.image-break__quote em {
  color: var(--clay);
}

/* --- STATS --- */
.stats {
  padding: 80px 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-gray);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stats__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 2px;
  line-height: 1;
}
.stats__plus {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--clay);
}
.stats__label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* Hero entrance animation */
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroLine {
  from { width: 0; }
  to { width: 60px; }
}
.hero__img {
  animation: heroZoom 8s ease-out forwards;
}
.hero__overlay .hero__title {
  animation: heroFadeUp 1.2s ease-out 0.3s both;
}
.hero__overlay .hero__subtitle {
  animation: heroFadeUp 1.2s ease-out 0.6s both;
}
.hero__overlay .btn {
  animation: heroFadeUp 1.2s ease-out 0.9s both;
}
/* Decorative line after hero title */
.hero__line {
  display: block;
  height: 1px;
  background: rgba(245, 240, 232, 0.5);
  margin: 20px auto 0;
  animation: heroLine 1.5s ease-out 0.8s both;
}

/* Parallax helper */
.parallax-wrap {
  overflow: hidden;
}
.parallax-img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* --- UTILITIES --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- TYPOGRAPHY --- */
.overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}
.heading-1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: 3px;
}
.heading-2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: 1px;
}
.heading-3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  color: var(--charcoal);
}
.heading-4 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
  color: var(--charcoal);
}
.tagline {
  font-family: var(--font-accent);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--clay);
  line-height: 1.5;
}
.body-text {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.9;
  max-width: 600px;
}
.body-text--centered { margin-left: auto; margin-right: auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  padding: 16px 44px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn--primary {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn--primary:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn--outline:hover { background: var(--charcoal); color: var(--warm-white); }
.btn--gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold); color: var(--warm-white); }
.btn--filled {
  background: var(--charcoal);
  color: var(--warm-white);
  border: 1px solid var(--charcoal);
}
.btn--filled:hover { background: var(--warm-brown); }
.btn--whatsapp {
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  border: none;
}
.btn--whatsapp:hover { background: #1fb855; }
.btn--whatsapp svg { width: 20px; height: 20px; fill: white; }
/* Light button for dark sections */
.btn--light {
  background: transparent;
  color: var(--sand);
  border: 1px solid var(--taupe);
}
.btn--light:hover { background: var(--sand); color: var(--charcoal); }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  z-index: 1000;
  border-bottom: 1px solid rgba(229, 221, 211, 0.5);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav--scrolled {
  background: rgba(253, 251, 247, 0.97);
  box-shadow: 0 1px 24px rgba(44, 40, 36, 0.06);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo img { height: 40px; width: auto; }
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.4s;
  position: relative;
}
.nav__link:hover, .nav__link--active { color: var(--charcoal); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clay);
  transition: width 0.4s ease;
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__cta { margin-left: 12px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 960px;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,40,36,0.25) 0%, rgba(44,40,36,0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 8vw, 84px);
  color: var(--warm-white);
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero__subtitle {
  font-family: var(--font-accent);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(245, 240, 232, 0.9);
  letter-spacing: 4px;
  margin-bottom: 48px;
}
.hero .btn--primary,
.hero .btn--outline {
  color: var(--warm-white);
  border-color: var(--warm-white);
  background: transparent;
}
.hero .btn--primary:hover,
.hero .btn--outline:hover {
  background: var(--warm-white);
  color: var(--charcoal);
}
.hero--short {
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
}

/* --- SECTIONS --- */
.section {
  padding: var(--section-pad) 0;
}
.section--sand { background: var(--sand); position: relative; }
.section--cream { background: var(--cream); position: relative; }
.section--dark {
  background: var(--charcoal);
  color: var(--sand);
  position: relative;
}

/* Grain texture — only on warm/dark sections, not white */
.section--sand::before,
.section--dark::before,
.pillars::before,
.footer::before,
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.section--dark::before {
  opacity: 0.12;
}
.section--dark .overline { color: var(--taupe); }
.section--dark .heading-2 { color: var(--sand); }
.section--dark .body-text { color: var(--taupe); }
.section__header {
  text-align: center;
  margin-bottom: 72px;
}
.section__header .overline { margin-bottom: 20px; }
.section__header .heading-2 { margin-bottom: 20px; }
.section__header .body-text { margin: 0 auto; }

/* Organic section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--light-gray), transparent);
  margin: 0 auto;
  max-width: 600px;
}
/* Decorative botanical accent */
.botanical-accent {
  display: block;
  margin: 0 auto 32px;
  width: 32px;
  height: 32px;
  opacity: 0.25;
}
/* Image hover with warm overlay */
.img-hover-warm {
  position: relative;
  overflow: hidden;
}
.img-hover-warm::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 149, 106, 0.08), transparent);
  pointer-events: none;
  transition: opacity 0.5s;
}
.img-hover-warm:hover::after { opacity: 0; }
.img-hover-warm img {
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.img-hover-warm:hover img { transform: scale(1.04); }

/* Horizontal scroll gallery for mobile */
.scroll-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px;
}
.scroll-gallery::-webkit-scrollbar { display: none; }
.scroll-gallery img {
  flex: 0 0 80%;
  scroll-snap-align: center;
  border-radius: 4px;
  height: 300px;
  object-fit: cover;
}

/* --- PILLARS STRIP --- */
.pillars {
  position: relative;
  padding: 72px 0;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}
.pillars__tagline {
  font-family: var(--font-accent);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--warm-brown);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.pillars__tagline em { color: var(--clay); font-style: italic; }
.pillars__list {
  display: flex;
  justify-content: center;
  gap: 56px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--taupe);
}
.pillars__divider { color: var(--light-gray); }

/* --- EDITORIAL RITUALS (Homepage) --- */
.rituals {
  padding: var(--section-pad) 0;
}
.rituals__header {
  margin-bottom: 64px;
}
.ritual-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.ritual-row:last-child { margin-bottom: 0; }
.ritual-row--reverse {
  direction: rtl;
}
.ritual-row--reverse > * {
  direction: ltr;
}
.ritual-row__image {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.ritual-row__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ritual-row:hover .ritual-row__image img {
  transform: scale(1.04);
}
.ritual-row__content {
  padding: 20px 0;
}
.ritual-row__number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 20px;
}
.ritual-row__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.ritual-row__desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 400px;
}
.ritual-row__link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  transition: letter-spacing 0.4s ease;
}
.ritual-row:hover .ritual-row__link {
  letter-spacing: 5px;
}

/* --- SPACE (Immersive gallery) --- */
.space {
  padding: 0;
}
.space__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 4px;
}
.space__photo {
  overflow: hidden;
}
.space__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.space__photo:hover img {
  transform: scale(1.05);
}
.space__photo--tall {
  grid-row: span 2;
}
.space__photo--wide {
  grid-column: span 2;
}

/* --- SINGLE TESTIMONIAL QUOTE --- */
.quote-section {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.quote-section__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.quote-section__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 8px;
  margin-bottom: 40px;
}
.quote-section__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--sand);
  line-height: 1.7;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.quote-section__author {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
}

/* --- CTA HERO (with background image) --- */
.cta-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-hero__overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.cta-hero__overlay::before {
  content: '';
  position: absolute;
  inset: -200px;
  background: rgba(44, 40, 36, 0.5);
  z-index: -1;
}
.cta-hero__tagline {
  font-family: var(--font-accent);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 600px;
}
.cta-hero__tagline em {
  color: var(--clay);
}
.btn--light {
  display: inline-block;
  padding: 16px 48px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(240, 234, 224, 0.5);
  background: transparent;
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn--light:hover {
  background: rgba(240, 234, 224, 0.15);
  border-color: var(--sand);
}

/* --- GALLERY STRIP (used on inner pages) --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 24px;
}
.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.6s ease;
}
.gallery img:hover { transform: scale(1.02); }

/* --- SERVICE CARDS (used on inner pages) --- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: 4px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 32px rgba(44,40,36,0.06);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,40,36,0.1);
}
.service-card__img {
  height: 300px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__body { padding: 32px; }
.service-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-card__link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clay);
}

/* --- TESTIMONIALS (used on inner pages) --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.testimonial {
  text-align: center;
  padding: 40px 24px;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 6px;
  margin-bottom: 24px;
}
.testimonial__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: var(--sand);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial__author {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe);
}

/* --- FOOTER --- */
.footer {
  position: relative;
  background: var(--charcoal);
  color: var(--sand);
  padding: 100px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
.footer__left {
  justify-self: start;
}
.footer__center {
  justify-self: center;
  text-align: center;
}
.footer__right {
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.footer__logo {
  width: 240px;
  height: auto;
  margin: 0 auto 20px;
  filter: invert(1) brightness(0.9) sepia(0.15);
  opacity: 0.7;
}
.footer__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 260px;
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 24px;
}
.footer__links li { margin-bottom: 14px; }
.footer__links a {
  font-size: 14px;
  color: var(--sand);
  opacity: 0.7;
  transition: opacity 0.4s;
}
.footer__links a:hover { opacity: 1; }
.footer__contact {
  margin-bottom: 28px;
}
.footer__contact:last-child { margin-bottom: 0; }
.footer__contact p {
  font-size: 14px;
  color: var(--sand);
  opacity: 0.7;
  margin-bottom: 6px;
  line-height: 1.7;
}
.footer__contact a { transition: opacity 0.4s; }
.footer__contact a:hover { opacity: 1; }
.footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--taupe);
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  color: var(--sand);
  opacity: 0.6;
  transition: opacity 0.4s;
  font-size: 14px;
}
.footer__social a:hover { opacity: 1; }

/* --- FLOATING WHATSAPP --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
  z-index: 997;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.35);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* --- SERVICES PAGE --- */
.services-nav {
  background: rgba(247, 243, 237, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 221, 211, 0.5);
  padding: 16px 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}
.services-nav__inner {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-nav__inner::-webkit-scrollbar { display: none; }
.services-nav__link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}
.services-nav__link:hover, .services-nav__link--active {
  color: var(--charcoal);
  border-bottom-color: var(--clay);
}

.service-category {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-category:last-child { border-bottom: none; }
.service-category__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.service-category__img {
  border-radius: 4px;
  overflow: hidden;
  height: 360px;
}
.service-category__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list { width: 100%; }
.service-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-item:last-child { border-bottom: none; }
.service-item__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.service-item__duration {
  font-size: 13px;
  color: var(--taupe);
  white-space: nowrap;
}
.service-item__price {
  font-size: 14px;
  font-weight: 400;
  color: var(--clay);
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

/* --- TEAM GRID --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-member {
  text-align: center;
}
.team-member__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}
.team-member__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 4px;
}
.team-member__role {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--taupe);
}

/* --- SPACE GALLERY --- */
.space-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.space-gallery__main,
.space-gallery__side {
  overflow: hidden;
  border-radius: 4px;
}
.space-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.6s ease;
}
.space-gallery img:hover { transform: scale(1.03); }
.space-gallery__side {
  display: grid;
  gap: 16px;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--warm-brown);
  margin-bottom: 28px;
  outline: none;
  transition: border-color 0.4s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--clay);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--taupe);
  font-weight: 300;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-info__item {
  margin-bottom: 36px;
}
.contact-info__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 10px;
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--warm-brown);
}
.contact-info__value a { border-bottom: 1px solid transparent; transition: border-color 0.4s; }
.contact-info__value a:hover { border-bottom-color: var(--clay); }
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 72px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   V6 — MAMOUNIA + AMAN INSPIRED HOMEPAGE
   ============================================ */

/* --- INTRO OVERLAY — Logo reveal animation --- */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.intro-overlay__bg {
  position: absolute;
  inset: -50px;
  background: var(--sand);
}
.intro-overlay__bg::before {
  content: '';
  position: absolute;
  inset: -50px;
  pointer-events: none;
  opacity: 0.18;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.intro-overlay__logo {
  position: relative;
  z-index: 2;
}
.intro-overlay__logo-img {
  width: 420px;
  height: auto;
  opacity: 0;
  transform: scale(0.6);
  animation: logoReveal 1.2s ease-out 0.3s forwards;
  filter: brightness(0) saturate(100%) invert(59%) sepia(15%) saturate(700%) hue-rotate(4deg) brightness(98%);
}
@keyframes logoReveal {
  to { opacity: 1; transform: scale(1); }
}
.intro-overlay__shine {
  display: none;
}
.intro-overlay--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Prevent scroll during intro */
html.is-loading {
  overflow: hidden;
  background: var(--sand);
}
html.is-loading::after {
  content: '';
  position: fixed;
  inset: -100px;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.18;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.is-loading .nav { opacity: 0; pointer-events: none; }
.is-loading .hero { opacity: 0; }
.is-loading .mobile-book-bar { display: none !important; }
html:not(.is-loading) .nav {
  animation: heroFadeUp 0.8s ease-out 0.3s both;
}
html:not(.is-loading) .hero {
  animation: heroFadeUp 0.8s ease-out 0.1s both;
}

/* --- Hero scroll hint --- */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(240, 234, 224, 0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clay);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

/* --- INTRO V2 — Overlapping asymmetric layout --- */
.intro-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 160px 0 140px;
  max-width: 1400px;
}
.intro-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
  margin: 0 auto;
  overflow: hidden;
}
.intro-v2__text {
  padding: 60px 80px 60px 60px;
  z-index: 2;
  align-self: center;
}
.intro-v2__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.intro-v2__text .body-text {
  margin-bottom: 32px;
  color: var(--warm-gray);
  max-width: 440px;
}
.intro-v2__images {
  position: relative;
  min-height: 600px;
}
.intro-v2__img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(44, 40, 36, 0.12);
}
.intro-v2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.intro-v2__img:hover img {
  transform: scale(1.04);
}
.intro-v2__img--main {
  top: 0;
  left: 0;
  width: 85%;
  height: 520px;
  z-index: 1;
}
.intro-v2__img--accent {
  bottom: -40px;
  right: -20px;
  width: 55%;
  height: 340px;
  z-index: 2;
}
.intro-v2__img--single {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
}
.intro-v2__watermark {
  position: absolute;
  bottom: -20px;
  left: -40px;
  font-family: var(--font-display);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.03;
  letter-spacing: 20px;
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

/* --- RITUALS V2 — Overlapping editorial rows --- */
.rituals-v2 {
  padding: 100px 0 120px;
  max-width: 1300px;
  margin: 0 auto;
}
.rituals-v2__label {
  padding: 0 60px;
  margin-bottom: 80px;
}
.ritual-v2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.ritual-v2:last-child { margin-bottom: 0; }
.ritual-v2__img-wrap {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.ritual-v2__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ritual-v2:hover .ritual-v2__img-wrap img {
  transform: scale(1.04);
}
.ritual-v2__text {
  position: relative;
  z-index: 2;
  padding: 60px 60px 60px 80px;
  margin-left: -80px;
  background: var(--warm-white);
  box-shadow: -20px 0 60px rgba(253, 251, 247, 0.9);
}
.ritual-v2__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 16px;
}
.ritual-v2__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.ritual-v2__desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 380px;
}
.ritual-v2__link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clay);
  position: relative;
  display: inline-block;
  transition: letter-spacing 0.5s ease;
}
.ritual-v2__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ritual-v2:hover .ritual-v2__link {
  letter-spacing: 6px;
}
.ritual-v2:hover .ritual-v2__link::after {
  transform: scaleX(1);
}

/* Flipped layout — image right, text left */
.ritual-v2--flip {
  grid-template-columns: 1fr 1.3fr;
}
.ritual-v2--flip .ritual-v2__img-wrap {
  order: 2;
}
.ritual-v2--flip .ritual-v2__text {
  order: 1;
  margin-left: 0;
  margin-right: -80px;
  padding: 60px 80px 60px 60px;
  text-align: right;
  box-shadow: 20px 0 60px rgba(253, 251, 247, 0.9);
}
.ritual-v2--flip .ritual-v2__desc {
  margin-left: auto;
}
.ritual-v2--flip .ritual-v2__link::after {
  transform-origin: right;
}

/* --- HORIZONTAL SCROLL GALLERY --- */
.hscroll {
  padding: 100px 0 120px;
  background: var(--sand);
  position: relative;
}
.hscroll::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.hscroll__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.hscroll__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--charcoal);
  letter-spacing: 1px;
}
.hscroll__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 0 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
  cursor: grab;
}
.hscroll__track:active {
  cursor: grabbing;
}
.hscroll__track::-webkit-scrollbar { display: none; }
.hscroll__item {
  flex: 0 0 auto;
  width: 380px;
  height: 500px;
  overflow: hidden;
  border-radius: 4px;
  scroll-snap-align: start;
  position: relative;
}
.hscroll__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hscroll__item:hover img {
  transform: scale(1.05);
}

/* --- QUOTE V2 — Full-screen immersive testimonial --- */
.quote-v2 {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-v2__bg img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  margin-top: -5%;
}
.quote-v2__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
  max-width: 800px;
}
.quote-v2__content::before {
  content: '';
  position: absolute;
  inset: -400px;
  background: rgba(44, 40, 36, 0.55);
  z-index: -1;
}
.quote-v2__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 8px;
  margin-bottom: 40px;
}
.quote-v2__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--sand);
  line-height: 1.7;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  border: none;
}
.quote-v2__author {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
}

/* --- CTA V2 — Immersive full-width --- */
.cta-v2 {
  position: relative;
  height: 65vh;
  min-height: 420px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-v2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-v2__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.cta-v2__content::before {
  content: '';
  position: absolute;
  inset: -300px;
  background: rgba(44, 40, 36, 0.5);
  z-index: -1;
}
.cta-v2__tagline {
  font-family: var(--font-accent);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 600px;
}
.cta-v2__tagline em {
  color: var(--clay);
}

/* --- Scroll animation system --- */
/* Only hide elements when JS is confirmed running (.js-on added by inline script) */
.js-on [data-anim="fade"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-on [data-anim="fade"].is-visible,
[data-anim="fade"].is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety: if no-js or animation doesn't fire after 3s, force visible */
@media (prefers-reduced-motion: reduce) {
  [data-anim="fade"] { opacity: 1 !important; transform: none !important; transition: none !important; }
  [data-anim="img-reveal"]::after { display: none !important; }
  [data-anim="img-reveal"] img { transform: none !important; }
}

/* Image reveal — wipe from left */
[data-anim="img-reveal"] {
  overflow: hidden;
}
[data-anim="img-reveal"] img {
  transform: scale(1.1);
  transition: transform 1.4s ease-out;
}
[data-anim="img-reveal"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sand);
  z-index: 1;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
[data-anim="img-reveal"].is-revealed::after {
  transform: scaleX(0);
}
[data-anim="img-reveal"].is-revealed img {
  transform: scale(1);
}

/* --- BROWSE BY RITUAL — Aesop-style category cards --- */
.browse {
  padding: 100px 0 120px;
  background: var(--warm-white);
  position: relative;
}
.browse::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.browse__header {
  padding: 0 60px;
  margin-bottom: 48px;
}
.browse__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--charcoal);
  letter-spacing: 0.5px;
}
.browse__track {
  display: flex;
  gap: 20px;
  padding: 0 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.browse__track:active { cursor: grabbing; }
.browse__track::-webkit-scrollbar { display: none; }
.browse__card {
  flex: 0 0 auto;
  width: calc(20% - 16px);
  min-width: 200px;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
}
.browse__card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 2px;
}
.browse__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.browse__card:hover .browse__card-img img {
  transform: scale(1.04);
}
.browse__card-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}

/* --- HORIZONTAL CONTENT SLIDER — Mamounia-style --- */
/* Scroll down → slides move horizontally */
.hslider {
  position: relative;
  /* Height = number of slides × viewport height for scroll room */
  height: 300vh;
  background: var(--warm-white);
}
.hslider::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.hslider__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hslider__track {
  display: flex;
  gap: 0;
  transition: transform 0.1s linear;
  will-change: transform;
}
.hslider__slide {
  display: flex;
  align-items: center;
  min-width: 100vw;
  padding: 60px 80px;
  gap: 80px;
  box-sizing: border-box;
}
.hslider__slide--reverse {
  flex-direction: row-reverse;
}
.hslider__text {
  flex: 1;
  max-width: 480px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
[data-anim="slide-reveal"].is-visible .hslider__text {
  opacity: 1;
  transform: translateY(0);
}
.hslider__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 24px;
}
.hslider__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hslider__body {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 32px;
}
.hslider__cta {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 4px;
  transition: letter-spacing 0.4s ease;
}
.hslider__cta:hover { letter-spacing: 5px; }

.hslider__image {
  flex: 1.2;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.hslider__image-reveal {
  width: 0;
  overflow: hidden;
  transition: width 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}
[data-anim="slide-reveal"].is-visible .hslider__image-reveal {
  width: 100%;
}
.hslider__image-reveal img {
  width: 50vw;
  max-width: 700px;
  height: 480px;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s ease-out 0.3s;
}
[data-anim="slide-reveal"].is-visible .hslider__image-reveal img {
  transform: scale(1);
}

/* --- SPACE BREAK — Full-width image moment --- */
.space-break {
  padding: 0;
  position: relative;
}
.space-break__image {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.space-break__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space-break__content {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.space-break__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--charcoal);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* --- TESTIMONIAL V2 — Centered, refined --- */
.testimonial-v2 {
  padding: 120px 24px;
  background: var(--sand);
  position: relative;
}
.testimonial-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.testimonial-v2__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.testimonial-v2__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 8px;
  margin-bottom: 40px;
}
.testimonial-v2__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  border: none;
}
.testimonial-v2__author {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
}

/* (cinema styles removed) */
.cinema__placeholder-removed {
  display: none;
}
/* ============================================
   V6 — RESPONSIVE OVERRIDES
   ============================================ */

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  :root { --section-pad: 96px; }
  .intro-v2 { padding: 120px 24px 100px; }
  .intro-v2__text { padding: 40px 40px 40px 24px; }
  .intro-v2__images { min-height: 480px; }
  .intro-v2__img--main { height: 420px; }
  .intro-v2__img--accent { height: 280px; width: 50%; }
  .rituals-v2 { padding: 80px 24px 100px; }
  .rituals-v2__label { padding: 0 24px; }
  .ritual-v2__img-wrap img { height: 400px; }
  .ritual-v2__text { padding: 40px 40px 40px 60px; margin-left: -60px; }
  .ritual-v2--flip .ritual-v2__text { padding: 40px 60px 40px 40px; margin-right: -60px; }
  .hscroll__item { width: 320px; height: 420px; }
  .ritual-row { grid-template-columns: 1fr 1fr; gap: 48px; }
  .ritual-row__image img { height: 400px; }
  .space__photos { grid-template-columns: repeat(2, 1fr); grid-template-rows: 250px 250px; }
  .space__photo--tall { grid-row: span 1; }
  .space__photo--wide { grid-column: span 1; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr auto 1fr; gap: 40px; }
  .footer__logo { width: 180px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .service-category__header { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; --section-pad: 72px; }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 9998;
  }
  .nav__links.active { display: flex; }
  .nav__links.active .nav__link {
    color: var(--sand);
    font-size: 16px;
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 4px;
  }
  .nav__links.active .nav__link:hover,
  .nav__links.active .nav__link--active {
    color: var(--clay);
  }
  /* Hide Book Now button in mobile menu — sticky bar handles booking */
  .nav__cta {
    display: none;
  }
  /* Grain on mobile menu */
  .nav__links.active::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: url('../img/grain.png');
    background-repeat: repeat;
    background-size: 150px 150px;
  }
  .nav__burger { display: flex; z-index: 9999; position: relative; }
  .nav__burger.active span { background: var(--sand); }
  .nav__burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav__burger.active span:nth-child(2) { opacity: 0; }
  .nav__burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav__cta { margin-left: 0; }

  .hero { height: 75vh; min-height: 500px; }
  .hero__title { display: none; }
  .hero__overlay .btn { display: none; }
  .hero__line { display: none; }

  /* V6 mobile */
  .intro-v2 { grid-template-columns: 1fr; padding: 60px 24px 40px; overflow: visible; }
  .intro-v2__text { padding: 0 0 40px; text-align: center; }
  .intro-v2__text .body-text { max-width: 100%; margin: 0 auto 32px; }
  .intro-v2__heading br { display: none; }
  .about-intro .intro-v2__heading br { display: inline; }
  .intro-v2__images { min-height: 380px; }
  .intro-v2__img--main { width: 100%; height: 340px; position: relative; }
  .intro-v2__img--accent { width: 55%; height: 220px; }
  .intro-v2__watermark { font-size: 48px; left: 0; letter-spacing: 10px; width: 100%; text-align: center; }
  .intro__pillars { justify-content: center; }

  .browse { padding: 60px 0 80px; }
  .browse__header { padding: 0 24px; margin-bottom: 32px; }
  .browse__track { padding: 0 24px; gap: 16px; }
  .browse__card { min-width: 160px; width: 42vw; }

  .hslider { height: auto; }
  .hslider__sticky { position: relative; height: auto; flex-direction: column; }
  .hslider__track { flex-direction: column; transform: none !important; }
  .hslider__slide { flex-direction: column !important; min-width: 100%; padding: 40px 24px; gap: 32px; }
  .hslider__image-reveal { width: 100% !important; }
  .hslider__image-reveal img { width: 100%; max-width: 100%; height: 300px; }

  .space-break__image { height: 45vh; }
  .testimonial-v2 { padding: 80px 24px; }

  .intro .container { grid-template-columns: 1fr; gap: 40px; }
  .intro__image img { height: 400px; }
  .intro__pillars { justify-content: center; }
  .intro__content { text-align: center; max-width: 100%; }

  .ritual-row { grid-template-columns: 1fr; gap: 32px; }
  .ritual-row--reverse { direction: ltr; }
  .ritual-row__image img { height: 350px; }
  .ritual-row__content { text-align: center; }
  .ritual-row__desc { max-width: 100%; margin: 0 auto 32px; }
  .ritual-row { margin-bottom: 64px; }

  .space__photos { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }

  .cta-hero { height: 50vh; min-height: 350px; }

  .service-cards { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; gap: 12px; }
  .gallery img { height: 240px; }

  .pillars__list { flex-direction: column; gap: 14px; }
  .pillars__divider { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer__left { justify-self: center; }
  .footer__center { order: -1; }
  .footer__right { justify-self: center; grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__logo { width: 160px; }
  .footer__tagline { margin: 0 auto; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .space-gallery { grid-template-columns: 1fr; }

  .service-item { grid-template-columns: 1fr auto; }
  .service-item__duration { grid-column: 1; font-size: 12px; padding-bottom: 0; }
  .service-item__name { grid-column: 1; }
  .service-item__price { grid-row: 1; grid-column: 2; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { height: 65vh; }
  .hero__title { letter-spacing: 4px; }
  .btn { padding: 14px 32px; font-size: 10px; }
  .nav__logo-text { font-size: 18px; letter-spacing: 4px; }
}

/* ============================================
   ABOUT PAGE — V6
   ============================================ */
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.about-intro {
  position: relative;
}
.about-intro .intro-v2__img--single img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}

.about-story {
  padding: 140px 0 120px;
  background: var(--warm-white);
  position: relative;
}
.about-story::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.about-story__inner { position: relative; z-index: 1; text-align: center; }
.about-story__heading {
  margin: 24px 0 40px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
}
.about-story .body-text {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.85;
}

.pillars-v2 {
  padding: 140px 0 160px;
  background: var(--sand);
  position: relative;
}
.pillars-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.pillars-v2 .container { position: relative; z-index: 1; }
.pillars-v2__header {
  text-align: center;
  margin-bottom: 80px;
}
.pillars-v2__header .heading-2 {
  margin-top: 16px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
}
.pillars-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.pillar-card {
  text-align: left;
  padding: 40px 32px;
  background: rgba(253, 251, 247, 0.5);
  border: 1px solid rgba(196, 149, 106, 0.15);
  transition: transform 0.4s ease, background 0.4s ease;
}
.pillar-card:hover {
  background: rgba(253, 251, 247, 0.85);
  transform: translateY(-4px);
}
.pillar-card__num {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  color: var(--clay);
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.pillar-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.pillar-card__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm-gray);
}

.space-break__caption {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 2;
  color: var(--warm-white);
}
.space-break__caption .overline { color: var(--clay); margin-bottom: 12px; }
.space-break__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--warm-white);
}

.about-gallery {
  padding: 120px 0 140px;
  background: var(--warm-white);
}
.about-gallery__intro {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}
.about-gallery__intro .body-text {
  font-size: 17px;
  line-height: 1.85;
  max-width: 100%;
}
.about-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-gallery__item:hover img { transform: scale(1.04); }
.about-gallery__item--tall {
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .pillars-v2__grid { grid-template-columns: 1fr; gap: 24px; }
  .about-gallery__grid { grid-template-rows: 280px 280px; }
}

@media (max-width: 768px) {
  .about-intro .intro-v2__img--single img { height: 380px; }
  .about-story { padding: 80px 0 60px; }
  .about-story__heading { font-size: 36px; margin: 20px 0 32px; }
  .about-story .body-text { font-size: 16px; }
  .pillars-v2 { padding: 80px 0 100px; }
  .pillars-v2__header { margin-bottom: 48px; }
  .pillar-card { padding: 32px 24px; }
  .pillar-card__title { font-size: 32px; }
  .space-break__caption { bottom: 24px; left: 24px; right: 24px; }
  .space-break__heading { font-size: 32px; }
  .about-gallery { padding: 60px 0 80px; }
  .about-gallery__intro { margin-bottom: 40px; padding: 0 24px; }
  .about-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 220px;
    gap: 12px;
  }
  .about-gallery__item--tall { grid-row: span 1; }
}

/* ============================================
   MOBILE STICKY BOOKING BAR
   ============================================ */
.mobile-book-bar {
  display: none;
}

/* Hide during intro overlay */
.is-loading .mobile-book-bar {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-book-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--charcoal);
    border-top: 1px solid rgba(196, 149, 106, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: bookBarIn 0.6s ease 0.5s both;
  }
  @keyframes bookBarIn {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .mobile-book-bar__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    background: var(--clay);
    color: var(--warm-white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s ease;
  }
  .mobile-book-bar__btn:active {
    background: var(--terracotta);
  }

  /* Hide WhatsApp float on mobile — booking bar replaces it */
  .whatsapp-float {
    display: none;
  }

  /* Add bottom padding to footer so content isn't hidden behind bar */
  .footer {
    padding-bottom: 80px;
  }
}

/* ============================================
   SERVICES PAGE — V6
   ============================================ */
.services-pill-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(229, 221, 211, 0.5);
  padding: 16px 0;
}
.services-pill-nav__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}
.services-pill-nav__inner::-webkit-scrollbar { display: none; }
.services-pill-nav__link {
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  border: 1px solid rgba(196, 149, 106, 0.25);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.services-pill-nav__link:hover {
  background: var(--clay);
  color: var(--warm-white);
  border-color: var(--clay);
}

.services-main {
  background: var(--warm-white);
  position: relative;
}
.services-main::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}

.service-cat {
  position: relative;
  scroll-margin-top: 140px;
}
.service-cat:nth-of-type(even) {
  background: var(--sand);
}

.service-cat__hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 380px;
  max-height: 520px;
  overflow: hidden;
}
.service-cat__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-cat__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(44,40,36,0.2) 0%, rgba(44,40,36,0.55) 100%);
  text-align: center;
  color: var(--warm-white);
}
.service-cat__hero-overlay .overline {
  color: var(--clay);
  margin-bottom: 16px;
}
.service-cat__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--warm-white);
  line-height: 1;
}

.service-cat__body {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}
.service-cat__intro {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
  color: var(--warm-gray);
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}
.service-cat__note {
  margin-top: 40px;
  font-size: 15px;
  color: var(--warm-gray);
  text-align: center;
  line-height: 1.7;
}
.service-cat__note a {
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  text-decoration: none;
  padding-bottom: 1px;
}

.service-group {
  margin-bottom: 56px;
}
.service-group:last-child { margin-bottom: 0; }
.service-group__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(196, 149, 106, 0.2);
}

@media (max-width: 1024px) {
  .service-cat__hero { height: 45vh; min-height: 320px; }
}

@media (max-width: 768px) {
  .services-pill-nav { padding: 12px 0; top: 64px; }
  .services-pill-nav__inner { padding: 4px 16px; gap: 6px; }
  .services-pill-nav__link { padding: 8px 14px; font-size: 10px; letter-spacing: 1.5px; }
  .service-cat__hero { height: 40vh; min-height: 280px; }
  .service-cat__title { font-size: 48px; letter-spacing: 4px; }
  .service-cat__body { padding: 60px 0 70px; }
  .service-cat__intro { font-size: 17px; margin-bottom: 40px; }
  .service-group { margin-bottom: 40px; }
  .service-group__title { font-size: 18px; letter-spacing: 2px; }
}

/* ============================================
   CONTACT PAGE — V6
   ============================================ */
.contact-intro {
  padding: 120px 0 80px;
  background: var(--warm-white);
  position: relative;
}
.contact-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.contact-intro__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-intro__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  color: var(--charcoal);
  margin: 24px 0 32px;
  letter-spacing: 1px;
}
.contact-intro .body-text {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
}

.contact-methods {
  padding: 60px 0 140px;
  background: var(--warm-white);
}
.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-card {
  display: block;
  padding: 56px 40px;
  background: var(--sand);
  border: 1px solid rgba(196, 149, 106, 0.15);
  text-decoration: none;
  color: var(--charcoal);
  transition: all 0.4s ease;
  position: relative;
}
.contact-card:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-4px);
}
.contact-card:hover .contact-card__num,
.contact-card:hover .contact-card__action { color: var(--clay); }
.contact-card:hover .contact-card__title,
.contact-card:hover .contact-card__body { color: var(--warm-white); }
.contact-card__num {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16px;
  color: var(--clay);
  letter-spacing: 4px;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}
.contact-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: 16px;
  transition: color 0.4s ease;
}
.contact-card__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 32px;
  transition: color 0.4s ease;
}
.contact-card__action {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 4px;
  transition: color 0.4s ease;
}

.contact-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
  position: relative;
}
.contact-location::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.contact-location__info {
  padding: 100px 80px;
  color: var(--warm-white);
  position: relative;
  z-index: 1;
}
.contact-location__info .overline { color: var(--clay); }
.contact-location__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--warm-white);
  margin: 16px 0 48px;
}
.contact-location__detail {
  margin-bottom: 32px;
}
.contact-location__detail h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.contact-location__detail p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.85);
}
.contact-location__btn {
  margin-top: 20px;
  border-color: var(--clay);
  color: var(--clay);
}
.contact-location__btn:hover {
  background: var(--clay);
  color: var(--charcoal);
}
.contact-location__map {
  position: relative;
  min-height: 600px;
}
.contact-location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}

@media (max-width: 1024px) {
  .contact-methods__grid { gap: 16px; }
  .contact-card { padding: 48px 32px; }
  .contact-location { grid-template-columns: 1fr; }
  .contact-location__info { padding: 80px 40px; }
  .contact-location__map { min-height: 400px; }
}

@media (max-width: 768px) {
  .contact-intro { padding: 80px 0 40px; }
  .contact-intro__heading { font-size: 38px; margin: 20px 0 24px; }
  .contact-intro .body-text { font-size: 16px; }
  .contact-methods { padding: 40px 0 80px; }
  .contact-methods__grid { grid-template-columns: 1fr; gap: 12px; padding: 0 16px; }
  .contact-card { padding: 36px 24px; }
  .contact-card__title { font-size: 28px; }
  .contact-card__body { font-size: 14px; margin-bottom: 24px; }
  .contact-location__info { padding: 64px 24px; }
  .contact-location__heading { font-size: 36px; margin: 12px 0 32px; }
  .contact-location__detail { margin-bottom: 24px; }
  .contact-location__map { min-height: 320px; }
}

/* ============================================
   V6 CATEGORY PAGES (hair, nails, facials, etc.)
   ============================================ */
.services-pill-nav__link--active {
  background: var(--clay);
  color: var(--warm-white);
  border-color: var(--clay);
}

.cat-intro {
  padding: 100px 0 80px;
  background: var(--warm-white);
  position: relative;
}
.cat-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.cat-intro__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cat-intro__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin: 24px 0 32px;
}
.cat-intro .body-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
}

.cat-treatments {
  padding: 60px 0 120px;
  background: var(--warm-white);
}
.cat-treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  background: var(--sand);
  text-decoration: none;
  color: var(--charcoal);
  border: 1px solid rgba(196, 149, 106, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44, 40, 36, 0.08);
}
.treatment-card__img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.treatment-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.treatment-card:hover .treatment-card__img img {
  transform: scale(1.05);
}
.treatment-card__body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.treatment-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.treatment-card__meta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.treatment-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 24px;
  flex: 1;
}
.treatment-card__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 4px;
  align-self: flex-start;
}

/* Additional services list (specialty treatments without detail pages) */
.cat-additional {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.cat-additional__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(196, 149, 106, 0.2);
  text-align: center;
}
.cat-additional__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-bottom: 40px;
}
.cat-additional__item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--charcoal);
}
.cat-additional__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.cat-additional__price {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--clay);
  white-space: nowrap;
}
.cat-additional__item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--warm-gray);
}
.cat-additional__note {
  text-align: center;
  font-size: 14px;
  color: var(--warm-gray);
  padding-top: 24px;
  border-top: 1px solid rgba(196, 149, 106, 0.15);
}
.cat-additional__note a {
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  text-decoration: none;
}

/* Service-list reuse on category pages */
.cat-treatments .service-list {
  background: var(--sand);
  padding: 40px;
}
.cat-treatments .service-item:last-child { border-bottom: none; }

@media (max-width: 1024px) {
  .cat-treatments__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cat-additional__list { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .cat-intro { padding: 60px 0 40px; }
  .cat-intro__heading { font-size: 38px; margin: 16px 0 24px; }
  .cat-intro .body-text { font-size: 16px; }
  .cat-treatments { padding: 40px 0 80px; }
  .cat-treatments__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
    margin-bottom: 60px;
  }
  .treatment-card__img { height: 240px; }
  .treatment-card__body { padding: 28px 24px; }
  .cat-additional { padding: 0 16px; }
  .cat-additional__title { font-size: 18px; letter-spacing: 2px; }
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq {
  padding: 40px 0 120px;
  background: var(--warm-white);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.faq .container--narrow { position: relative; z-index: 1; }
.faq__item {
  border-bottom: 1px solid rgba(196, 149, 106, 0.2);
  padding: 28px 0;
}
.faq__item[open] { padding-bottom: 32px; }
.faq__q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.5px;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--clay);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__q:hover { color: var(--clay); }
.faq__a {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 92%;
}
.faq__a a {
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  text-decoration: none;
}

/* ============================================
   POLICIES PAGE
   ============================================ */
.policies-header {
  padding: 160px 0 60px;
  background: var(--warm-white);
  text-align: center;
  position: relative;
}
.policies-header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.policies-header .container--narrow { position: relative; z-index: 1; }
.policies-header__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: 1px;
  color: var(--charcoal);
  margin: 16px 0 12px;
}
.policies-header__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: var(--warm-gray);
}

.policies-content {
  padding: 60px 0 120px;
  background: var(--warm-white);
}
.policy-section {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(196, 149, 106, 0.15);
}
.policy-section:last-child { border-bottom: none; }
.policy-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.policy-section p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 16px;
}
.policy-section ul {
  margin: 12px 0 16px 24px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-gray);
}
.policy-section ul li {
  margin-bottom: 6px;
}
.policy-section a {
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  text-decoration: none;
}
.policy-section strong {
  color: var(--charcoal);
  font-weight: 500;
}

@media (max-width: 768px) {
  .faq { padding: 20px 0 80px; }
  .faq__item { padding: 20px 0; }
  .faq__q { font-size: 18px; gap: 16px; }
  .faq__a { font-size: 14px; max-width: 100%; }
  .policies-header { padding: 120px 0 40px; }
  .policies-content { padding: 40px 0 80px; }
  .policy-section { margin-bottom: 40px; padding-bottom: 24px; }
  .policy-section h2 { font-size: 22px; }
  .policy-section p, .policy-section ul { font-size: 14px; }
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */
.testimonials-section {
  padding: 140px 0 140px;
  background: var(--sand);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.testimonials-section .container { position: relative; z-index: 1; }
.testimonials-section__header {
  text-align: center;
  margin-bottom: 72px;
}
.testimonials-section__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  color: var(--charcoal);
  margin-top: 16px;
}
.testimonials-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  padding: 40px 32px;
  background: rgba(253, 251, 247, 0.6);
  border: 1px solid rgba(196, 149, 106, 0.15);
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars {
  color: var(--clay);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0 0 28px;
  flex: 1;
  quotes: "\201C" "\201D";
}
.testimonial-card__quote::before { content: open-quote; }
.testimonial-card__quote::after { content: close-quote; }
.testimonial-card__author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-style: normal;
}
.testimonial-card__author span {
  display: block;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--clay);
  margin-top: 4px;
  font-size: 11px;
}

@media (max-width: 1024px) {
  .testimonials-section__grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 32px 28px; }
}

.testimonials-section__cta {
  text-align: center;
  margin-top: 56px;
}
.testimonials-section__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.testimonials-section__link:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

@media (max-width: 768px) {
  .testimonials-section { padding: 80px 0 80px; }
  .testimonials-section__header { margin-bottom: 48px; }
  .testimonials-section__heading { font-size: 32px; }
  .testimonial-card__quote { font-size: 17px; }
  .testimonials-section__cta { margin-top: 40px; }
}

/* ============================================
   ABOUT TEAM SECTION
   ============================================ */
.about-team {
  padding: 140px 0 140px;
  background: var(--warm-white);
  position: relative;
}
.about-team::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.about-team .container { position: relative; z-index: 1; }
.about-team__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.about-team__heading {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 16px 0 24px;
}
.about-team__intro {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.85;
}
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-team__pillar {
  text-align: left;
  padding-top: 32px;
  border-top: 1px solid rgba(196, 149, 106, 0.3);
}
.about-team__num {
  display: block;
  font-family: var(--font-accent);
  color: var(--clay);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}
.about-team__pillar-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.about-team__pillar p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--warm-gray);
}

@media (max-width: 1024px) {
  .about-team__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .about-team { padding: 80px 0 80px; }
  .about-team__header { margin-bottom: 48px; }
  .about-team__intro { font-size: 16px; }
}

/* ============================================
   V6 SERVICE DETAIL PAGES
   ============================================ */
.detail-intro {
  padding: 100px 0 40px;
  background: var(--warm-white);
  text-align: center;
  position: relative;
}
.detail-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.detail-intro .container--narrow { position: relative; z-index: 1; }
.detail-intro__meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.detail-intro__divider {
  color: var(--clay);
  opacity: 0.5;
}
.detail-intro__body .body-text {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.85;
}

.detail-accordion {
  padding: 40px 0 80px;
  background: var(--warm-white);
}
.detail-acc__item {
  border-bottom: 1px solid rgba(196, 149, 106, 0.2);
  padding: 24px 0;
}
.detail-acc__item[open] {
  padding-bottom: 28px;
}
.detail-acc__q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.5px;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.detail-acc__q::-webkit-details-marker { display: none; }
.detail-acc__q::after {
  content: '+';
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--clay);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.detail-acc__item[open] .detail-acc__q::after { transform: rotate(45deg); }
.detail-acc__q:hover { color: var(--clay); }
.detail-acc__a {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm-gray);
}
.detail-acc__a ul,
.detail-acc__a ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-acc__a ul li,
.detail-acc__a ol li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid rgba(196, 149, 106, 0.08);
}
.detail-acc__a ul li:last-child,
.detail-acc__a ol li:last-child { border-bottom: none; }
.detail-acc__a ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--clay);
}
.detail-acc__steps {
  counter-reset: stepcounter;
}
.detail-acc__steps li::before {
  content: counter(stepcounter, decimal-leading-zero);
  counter-increment: stepcounter;
  position: absolute;
  left: 0;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--clay);
  font-size: 14px;
  font-weight: 500;
  width: 24px;
}

.detail-cta {
  padding: 80px 0 120px;
  background: var(--sand);
  position: relative;
}
.detail-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url('../img/grain.png');
  background-repeat: repeat;
  background-size: 150px 150px;
}
.detail-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.detail-cta__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--charcoal);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.detail-cta__back {
  display: block;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}
.detail-cta__back:hover { color: var(--clay); }

@media (max-width: 768px) {
  .detail-intro { padding: 60px 0 24px; }
  .detail-intro__meta { font-size: 11px; letter-spacing: 2px; margin-bottom: 24px; }
  .detail-intro__body .body-text { font-size: 16px; }
  .detail-accordion { padding: 24px 0 60px; }
  .detail-acc__item { padding: 18px 0; }
  .detail-acc__q { font-size: 18px; gap: 16px; }
  .detail-acc__a { font-size: 14px; }
  .detail-cta { padding: 60px 0 80px; }
  .detail-cta__heading { font-size: 28px; margin-bottom: 24px; }
}
