/* ============================================
   LA VELA HEAD SPA — PREMIUM REBUILD v2
   Aesthetic: Cinematic Luxury / Editorial Calm
   ============================================ */
:root {
  --black: #0a0a09;
  --charcoal: #1a1917;
  --dark: #252320;
  --coffee: #3a3530;
  --earth: #5c5347;
  --warm: #8a7d6f;
  --sand: #b5a898;
  --stone: #d4cbc0;
  --linen: #e8e2d9;
  --cream: #f3efe9;
  --ivory: #f9f7f3;
  --white: #fdfcfa;
  --gold: #c4a265;
  --gold-soft: #d4b97a;
  --sage: #8a9a7c;
  --sage-dark: #6b7d5e;

  --font-display: 'Cormorant Garant', 'Times New Roman', serif;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;

  --section-pad: clamp(80px, 10vw, 160px);
  --container: min(1200px, 88vw);
  --container-narrow: min(780px, 88vw);
  --container-wide: min(1440px, 94vw);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Mobile touch optimisations */
a, button { -webkit-tap-highlight-color: transparent; }
button, a, [onclick] { touch-action: manipulation; } /* removes 300ms delay */
input, select, textarea { font-size: 16px; } /* prevent iOS zoom */

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Grain overlay for luxury texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold-soft); color: var(--black); }

/* Hide all pages by default — with rendering optimisation */

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; }

h1 { font-size: clamp(52px, 7.5vw, 108px); letter-spacing: -0.03em; line-height: 1.0; }
h2 { font-size: clamp(38px, 5vw, 72px); letter-spacing: -0.025em; line-height: 1.05; }
h3 { font-size: clamp(26px, 3vw, 44px); letter-spacing: -0.02em; line-height: 1.1; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--earth);
  max-width: 520px;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================
   BUTTONS — Refined
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--black);
  color: var(--cream);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}
.btn-primary:hover::after { transform: translateY(0); }
.btn-primary:hover { color: var(--black); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--stone);
}
.btn-outline:hover { border-color: var(--dark); background: var(--dark); color: var(--cream); }

.btn-white {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-white:hover { background: var(--cream); color: var(--black); border-color: var(--cream); }

.btn-ghost {
  background: none;
  color: var(--earth);
  padding: 4px 0;
  letter-spacing: 0.08em;
  font-size: 12px;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--stone);
  transition: background 0.3s;
}
.btn-ghost:hover { color: var(--dark); }
.btn-ghost:hover::after { background: var(--dark); }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); }

.section { padding: var(--section-pad) 0; }
.section-cream { background: var(--cream); }
.section-ivory { background: var(--ivory); }
.section-dark { background: var(--charcoal); color: var(--stone); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark .eyebrow::before { background: var(--gold-soft); }
.section-black { background: var(--black); color: var(--sand); }
.section-black h1, .section-black h2, .section-black h3 { color: var(--white); }

.divider { width: 48px; height: 1px; background: var(--gold); margin: 28px 0; }
.divider-center { margin-left: auto; margin-right: auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

/* Image styling */
img { max-width: 100%; height: auto; display: block; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-frame { overflow: hidden; position: relative; }
.img-frame img { transition: transform 1.2s var(--ease-out); }
.img-frame:hover img { transform: scale(1.04); }

/* ============================================
   HEADER NAV — Luxe
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease-smooth);
  padding: 0 clamp(20px, 3vw, 48px);
}

.site-header.over-dark { }
.site-header.scrolled {
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--linen);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--dark);
  line-height: 1.1;
}
.site-header.over-dark .nav-logo-text { color: var(--cream); }
.site-header.scrolled .nav-logo-text { color: var(--dark); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links > li > a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}
.nav-links > li > a:hover { color: var(--dark); }
.site-header.over-dark .nav-links > li > a { color: var(--sand); }
.site-header.over-dark .nav-links > li > a:hover { color: var(--cream); }
.site-header.scrolled .nav-links > li > a { color: var(--earth); }
.site-header.scrolled .nav-links > li > a:hover { color: var(--dark); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 12px 0;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  color: var(--dark) !important;
}
.nav-dropdown-menu a:hover { background: var(--ivory); color: var(--black) !important; }

/* Book CTA in nav */
.nav-book {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 20px !important;
  transition: all 0.4s var(--ease-out) !important;
}
.nav-book:hover { background: var(--dark) !important; color: var(--cream) !important; }
.site-header.over-dark .nav-book { background: var(--gold) !important; color: var(--black) !important; }
.site-header.over-dark .nav-book:hover { background: var(--dark) !important; color: var(--cream) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 18px; position: relative; }
.nav-toggle span { display: block; width: 100%; height: 1px; background: var(--dark); position: absolute; left: 0; transition: 0.3s; }
.nav-toggle span:first-child { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:last-child { bottom: 0; }
.site-header.over-dark .nav-toggle span { background: var(--cream); }
.site-header.scrolled .nav-toggle span { background: var(--dark); }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 999; padding: 100px 32px 40px; overflow-y: auto; }
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav a { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--dark); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--linen); display: block; cursor: pointer; }
.mobile-nav .sub { font-family: var(--font-body); font-size: 14px; font-weight: 300; padding-left: 20px; border: none; color: var(--earth); }

/* Sticky mobile book */
.mobile-book { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--linen); padding: 12px 20px; z-index: 998; }
.mobile-book .btn { width: 100%; }

/* ============================================
   HOME HERO — Cinematic Video
   ============================================ */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,9,0.6) 0%, rgba(10,10,9,0.1) 55%, rgba(10,10,9,0) 75%),
    linear-gradient(
      to bottom,
      rgba(10,10,9,0.1) 0%,
      rgba(10,10,9,0.05) 35%,
      rgba(10,10,9,0.5) 70%,
      rgba(10,10,9,0.92) 100%
    );
}

.hero-home-content {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(60px, 8vw, 120px);
  width: 100%;
}

.hero-home h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(58px, 9vw, 128px);
  line-height: 0.95;
  text-shadow: 0 2px 32px rgba(0,0,0,0.55);
}

.hero-home h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}

.hero-home p {
  color: rgba(255,255,255,0.96);
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.4);
}
.hero-trust .gold { color: var(--gold-soft); }
.hero-trust .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* Sub-page hero */
.hero-sub {
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 76px;
  overflow: hidden;
}

.hero-sub-light { background: var(--cream); }
.hero-sub-dark { background: var(--charcoal); color: var(--cream); }

.hero-sub-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-sub-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-sub-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,9,0.5), rgba(10,10,9,0.7));
}

.hero-sub .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

.hero-sub .hero-inner h1 {
  margin-bottom: 16px;
  font-style: italic;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.06;
}
.hero-sub-dark .hero-inner p { color: var(--sand); }
.hero-sub-light .hero-inner p { color: var(--earth); margin: 0 auto; }

/* ============================================
   TREATMENT CARDS — Editorial
   ============================================ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* 9-item features: 3 columns fills perfectly */
.features-grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linen);
}
.section-dark .features-grid-9 { background: rgba(255,255,255,0.06); }

.t-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
  aspect-ratio: 3/4;
}

.t-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.t-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out), opacity 0.6s; opacity: 0.75; }
.t-card:hover .t-card-img img { transform: scale(1.06); opacity: 0.5; }

/* Bottom-to-top gradient overlay for text legibility */
.t-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 45%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.t-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3vw, 40px);
  color: var(--cream);
}

.t-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.t-card-body h3 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.t-card-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.t-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 340px;
}

.t-card-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.4s var(--ease-out);
}
.t-card:hover .t-card-link { gap: 14px; }
.t-card-link::after { content: '→'; }

/* ============================================
   REVIEW CARDS
   ============================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.rev-card {
  padding: 40px;
  border: 1px solid var(--linen);
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.rev-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  color: var(--linen);
  position: absolute;
  top: 20px;
  right: 28px;
}
.rev-card:hover { border-color: var(--gold); }

.rev-stars { color: var(--gold); font-size: 12px; letter-spacing: 4px; margin-bottom: 20px; }

.rev-card blockquote {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
  margin-bottom: 24px;
}

.rev-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
}

/* Dark variant */
.section-dark .rev-card { border-color: rgba(255,255,255,0.08); }
.section-dark .rev-card::before { color: rgba(255,255,255,0.06); }
.section-dark .rev-card:hover { border-color: var(--gold); }
.section-dark .rev-card blockquote { color: var(--cream); }
.section-dark .rev-author { color: var(--sand); }

/* ============================================
   LOCATION CARDS
   ============================================ */
.loc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--linen);
  margin-bottom: 2px;
  transition: 0.4s;
}
.loc-card:hover { box-shadow: 0 24px 64px rgba(0,0,0,0.06); }
.loc-card-img { min-height: 360px; position: relative; overflow: hidden; }
.loc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.loc-card:hover .loc-card-img img { transform: scale(1.04); }
.loc-card-body { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.loc-detail { font-size: 16px; color: var(--earth); margin-bottom: 6px; }
.loc-detail strong { font-weight: 500; color: var(--dark); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item { border-bottom: 1px solid var(--linen); }
.section-dark .faq-item { border-color: rgba(255,255,255,0.08); }

.faq-q {
  width: 100%; background: none; border: none; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 15px; font-weight: 400; color: var(--dark);
  transition: color 0.3s;
}
.section-dark .faq-q { color: var(--cream); }
.faq-q:hover { color: var(--gold); }
.section-dark .faq-q:hover { color: var(--gold-soft); }

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--stone); display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--warm); flex-shrink: 0; transition: all 0.4s var(--ease-out);
}
.section-dark .faq-icon { border-color: rgba(255,255,255,0.15); color: var(--sand); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--black); border-color: var(--gold); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 24px; }
.faq-a p { font-size: 14px; line-height: 1.85; color: var(--earth); max-width: 640px; }
.section-dark .faq-a p { color: var(--sand); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-block { text-align: center; padding: var(--section-pad) 0; }
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { color: var(--earth); margin: 0 auto 36px; max-width: 460px; }
.cta-micro { font-size: 12px !important; letter-spacing: 0.04em; color: var(--warm) !important; margin-top: -12px !important; margin-bottom: 28px !important; }
.section-dark .cta-micro { color: rgba(255,255,255,0.3) !important; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   STEP-BY-STEP
   ============================================ */
.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--linen); align-items: start;
}
.step-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 300;
  color: var(--stone); line-height: 1;
}
.step h4 { font-family: var(--font-body); font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.step p { font-size: 13.5px; color: var(--earth); }

/* ============================================
   TREATMENT DETAIL
   ============================================ */
.td-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }

.td-sidebar {
  position: sticky; top: 100px;
  background: var(--cream); padding: 36px;
  border: 1px solid var(--linen);
}
.td-sidebar h3 { font-size: 22px; margin-bottom: 8px; }
.td-sidebar .price { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--dark); margin-bottom: 4px; }
.td-sidebar .dur { font-size: 12px; color: var(--warm); letter-spacing: 0.04em; margin-bottom: 28px; }

.incl-list { list-style: none; margin-bottom: 28px; }
.incl-list li {
  font-size: 13px; color: var(--earth); padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--linen); position: relative;
}
.incl-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sage-dark); font-size: 12px; font-weight: 600; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; padding: 5px 12px; background: var(--linen); color: var(--earth); text-transform: uppercase; }

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); gap: 1px; background: var(--linen); }
.section-dark .features-grid { background: rgba(255,255,255,0.06); }

.feat {
  padding: clamp(28px, 3vw, 44px);
  background: var(--white);
}
.section-dark .feat { background: var(--charcoal); }
.section-cream .feat { background: var(--cream); }

.feat h4 { font-family: var(--font-display); font-size: 20px; font-weight: 400; margin-bottom: 12px; }
.feat p { font-size: 16px; color: var(--earth); line-height: 1.8; }
.section-dark .feat p { color: var(--sand); }

/* ============================================
   BLOG / JOURNAL
   ============================================ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.journal-card {
  cursor: pointer;
  transition: 0.4s;
}
.journal-card:hover { transform: translateY(-4px); }

.journal-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
  background: var(--linen);
}
.journal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.journal-card:hover .journal-card-img img { transform: scale(1.04); }

.journal-card .eyebrow { margin-bottom: 8px; }
.journal-card .eyebrow::before { display: none; }

.journal-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
}

.journal-card p {
  font-size: 14px;
  color: var(--earth);
  line-height: 1.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form { display: grid; gap: 20px; }
.form label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm); margin-bottom: 8px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 14px 0; font-family: var(--font-body); font-size: 14px; font-weight: 300;
  border: none; border-bottom: 1px solid var(--stone); background: transparent;
  color: var(--dark); outline: none; transition: border-color 0.3s;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold); }
.form textarea { min-height: 100px; resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--black); color: var(--earth); padding: 80px 0 40px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }

.footer-brand { max-width: 300px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.3); margin-top: 16px; }

.footer-social { display: flex; align-items: center; gap: 6px; margin-top: 24px; flex-wrap: wrap; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s var(--ease-out);
}
.footer-social-link:hover { color: var(--gold); border-color: rgba(196,162,101,0.4); background: rgba(196,162,101,0.06); }
.footer-social-link svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; display: block; }
.footer-social-loc { font-family: var(--font-body); font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }

.footer-col h4 { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; padding: 5px 0; cursor: pointer; transition: color 0.3s; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: rgba(255,255,255,0.2); text-decoration: none; cursor: pointer; }
.footer-bottom a:hover { color: var(--cream); }

/* ============================================
   ANIMATIONS — Cinematic
   ============================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.anim { opacity: 0; transform: translateY(44px); transition: all 1s var(--ease-out); }
.anim.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* Stagger children */
[data-stagger] { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease-out); }
[data-stagger].vis { opacity: 1; transform: translateY(0); }

/* Image reveal */
.img-reveal { overflow: hidden; position: relative; }
.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform-origin: right;
  transition: transform 1.2s var(--ease-out);
}
.img-reveal.loaded::after { transform: scaleX(0); }
.img-reveal img { transition: transform 1.4s var(--ease-out); transform: scale(1.1); }
.img-reveal.loaded img { transform: scale(1); }

/* Parallax containers */
[data-parallax] { overflow: hidden; }
[data-parallax] img { will-change: transform; transform: scale(1.15); }

/* Card tilt */
.t-card { transition: transform 0.15s ease; will-change: transform; }

/* Header auto-hide transition */
.site-header { transition: all 0.5s var(--ease-smooth), transform 0.4s var(--ease-out) !important; }

/* Enhanced hover states */
.t-card-link { position: relative; }
.t-card-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-soft);
  transition: width 0.4s var(--ease-out);
}
.t-card:hover .t-card-link::before { width: 100%; }

/* Review card hover lift */
.rev-card { transition: all 0.5s var(--ease-out); }
.rev-card:hover { 
  transform: translateY(-4px); 
  border-color: var(--gold) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* Feature card hover */
.feat { transition: all 0.4s var(--ease-out); position: relative; overflow: hidden; }
.feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s var(--ease-out);
}
.feat:hover::before { width: 100%; }

/* ============================================
   LOCATION TRUST STRIP
   ============================================ */
.loc-trust-strip {
  background: var(--charcoal) !important;
  padding: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.loc-trust-strip .container { padding-top: 0 !important; padding-bottom: 0 !important; }
.loc-trust-strip .anim {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0 !important;
  flex-wrap: wrap;
  padding: 20px 0;
}
.loc-trust-item {
  font-size: 9.5px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,168,107,0.8);
  padding: 4px 32px;
}
.loc-trust-sep {
  font-size: 5px;
  color: rgba(201,168,107,0.3);
  line-height: 1;
}

/* ============================================
   LOCATION BENEFITS CARDS
   ============================================ */
.loc-benefits { background: var(--linen) !important; }
.loc-benefits .features-grid {
  grid-template-columns: repeat(3, minmax(0, 340px)) !important;
  justify-content: center !important;
  background: none !important;
  gap: 20px !important;
}
.loc-benefits .feat {
  background: var(--white) !important;
  border: 1px solid var(--linen) !important;
  border-top: 2px solid var(--gold) !important;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.loc-benefits .feat::before { display: none !important; }
.loc-benefits .feat:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08) !important;
}
.loc-benefits .feat h4 {
  color: var(--charcoal) !important;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px) !important;
  font-weight: 300 !important;
}
.loc-benefits .feat p { color: var(--earth) !important; line-height: 1.85; font-size: 15px; }

/* What to Expect — First-timer tip cards */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tips-grid .feat {
  background: var(--white) !important;
  border: 1px solid var(--linen) !important;
  border-top: 3px solid var(--gold) !important;
  padding: 36px 32px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.35s var(--ease-out);
}
.tips-grid .feat::before { display: none !important; }
.tips-grid .feat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important;
}
.tips-grid .feat h4 {
  color: var(--dark) !important;
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 24px) !important;
  font-weight: 300 !important;
  margin-bottom: 12px;
}
.tips-grid .feat p { color: var(--earth) !important; font-size: 15px; line-height: 1.85; }
@media (max-width: 600px) { .tips-grid { grid-template-columns: 1fr; } }

/* Reviews page — Google rating block */
.reviews-rating-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.rrb-stars {
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}
.rrb-score {
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  font-family: var(--font-display);
}
.rrb-divider {
  width: 1px;
  height: 20px;
  background: var(--linen);
}
.rrb-count {
  font-size: 13px;
  color: var(--earth);
  letter-spacing: 0.04em;
}
.rrb-source {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--linen);
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.rrb-source:hover { color: var(--charcoal); border-color: var(--gold); }

/* Google rating badge above maps */
.map-rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
}
.map-rating-badge .mrb-score {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.map-rating-badge .mrb-stars {
  color: #fbbc04;
  font-size: 14px;
  letter-spacing: 1px;
}
.map-rating-badge .mrb-count {
  font-size: 12px;
  color: var(--earth);
}

/* Location card image zoom */
.loc-card-img img { transition: transform 1.4s var(--ease-out) !important; }
.loc-card:hover .loc-card-img img { transform: scale(1.06) !important; }

/* FAQ answer smooth height */
.faq-a { transition: max-height 0.5s var(--ease-out), padding-bottom 0.3s; }

/* Journal card hover */
.journal-card { transition: transform 0.6s var(--ease-out); }
.journal-card:hover { transform: translateY(-6px); }
.journal-card-img img { transition: transform 1.2s var(--ease-out) !important; }
.journal-card:hover .journal-card-img img { transform: scale(1.06) !important; }

/* Btn magnetic wrapper */
.btn-magnetic { transition: transform 0.15s ease; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--warm); }

/* Hero video Ken Burns effect */
.hero-home video {
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Link underline animation */
a.link-anim {
  position: relative;
  text-decoration: none;
  color: var(--gold);
}
a.link-anim::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
a.link-anim:hover::after { width: 100%; }

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE — Mobile-First (80% of traffic)
   ============================================ */

@media (max-width: 1024px) {
  .td-grid { grid-template-columns: 1fr; }
  .td-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .loc-card { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid-9 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .book-loc-grid { grid-template-columns: 1fr !important; }
  /* ---- GLOBAL MOBILE ---- */
  :root {
    --section-pad: clamp(48px, 8vw, 80px);
  }
  
  body { 
    font-size: 14px; 
    padding-bottom: 72px; /* space for sticky book bar */
  }
  
  h1 { font-size: clamp(40px, 10vw, 60px); line-height: 1.0; }
  h2 { font-size: clamp(32px, 8vw, 48px); line-height: 1.05; }
  h3 { font-size: clamp(24px, 6vw, 34px); line-height: 1.1; }
  
  .container, .container-narrow, .container-wide {
    padding: 0 20px;
  }
  
  /* ---- NAV ---- */
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { height: 64px; }
  .nav-logo img { height: 30px; }
  .nav-logo-text { font-size: 18px; }
  
  /* ---- MOBILE NAV OVERLAY ---- */
  .mobile-nav {
    padding: 80px 24px 120px;
  }
  .mobile-nav a {
    font-size: 24px;
    padding: 12px 0;
  }
  .mobile-nav .sub {
    font-size: 13px;
    padding-left: 16px;
  }
  
  /* ---- STICKY BOOK BAR ---- */
  .mobile-book { 
    display: block; 
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }
  
  /* ---- HERO — HOME ---- */
  .hero-home {
    min-height: 100svh; /* use svh for mobile address bar */
    align-items: flex-end;
  }
  .hero-video-wrap::after {
    background:
      linear-gradient(to right, rgba(10,10,9,0.25) 0%, rgba(10,10,9,0) 100%),
      linear-gradient(
        to bottom,
        rgba(10,10,9,0.1) 0%,
        rgba(10,10,9,0.1) 25%,
        rgba(10,10,9,0.65) 55%,
        rgba(10,10,9,0.97) 100%
      );
  }
  .hero-home-content {
    padding: 80px 0 100px; /* top clears fixed header; bottom clears sticky bar */
  }
  .hero-home h1 {
    font-size: clamp(44px, 12vw, 72px);
    max-width: 100%;
    line-height: 0.95;
  }
  .hero-home p {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .hero-actions .btn-white,
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-trust {
    font-size: 13px;
    gap: 10px;
  }
  .hero-trust .dot { display: none; }
  
  /* ---- HERO — SUB PAGES ---- */
  .hero-sub {
    min-height: 45vh !important;
    padding-top: 64px;
  }
  .hero-sub .hero-inner {
    padding: 28px 0;
  }
  .hero-sub .hero-inner h1 {
    font-size: clamp(34px, 9vw, 54px);
  }
  .hero-sub .hero-inner p {
    font-size: 14px;
    padding: 0 8px;
  }
  
  /* ---- EYEBROW ---- */
  .eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.16em;
  }
  .eyebrow::before { width: 16px; }
  
  /* ---- BUTTONS — Full width on mobile ---- */
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn,
  .cta-actions .btn-white,
  .cta-actions .btn-primary,
  .cta-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .btn {
    padding: 14px 28px;
    font-size: 12px;
  }
  
  /* ---- TREATMENT CARDS ---- */
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 0;
    background: #b0b0b0;
  }
  .t-card {
    aspect-ratio: 3/4;
  }
  .t-card::after {
    height: 80%;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 40%, transparent 100%);
  }
  .t-card-body {
    padding: 32px 28px;
  }
  .t-card-tag {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }
  .t-card-body h3 {
    font-size: 36px;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  .t-card-meta {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
  }
  .t-card-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    max-width: 100%;
    line-height: 1.75;
    margin-bottom: 24px;
  }
  .t-card-link {
    font-size: 12px;
    letter-spacing: 0.16em;
  }
  
  /* ---- TREATMENT DETAIL ---- */
  .td-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .td-sidebar {
    position: static;
    padding: 28px 24px;
  }
  .td-sidebar .price {
    font-size: 30px;
  }
  .step {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 20px 0;
  }
  .step-num {
    font-size: 24px;
  }
  .step h4 {
    font-size: 14px;
  }
  .step p {
    font-size: 12.5px;
  }
  
  /* ---- REVIEW CARDS ---- */
  .reviews-grid { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .rev-card {
    padding: 28px 24px;
  }
  .rev-card::before {
    font-size: 60px;
    top: 12px;
    right: 20px;
  }
  .rev-card blockquote {
    font-size: 16px;
  }
  
  /* ---- FEATURES / STANDARDS GRID ---- */
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-9 { grid-template-columns: 1fr; }
  .feat {
    padding: 28px 24px;
  }
  .feat h4 {
    font-size: 18px;
  }
  .feat p {
    font-size: 13px;
  }
  
  /* ---- TWO-COL LAYOUTS ---- */
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  /* ---- LOCATION CARDS ---- */
  .loc-card {
    grid-template-columns: 1fr;
  }
  .loc-card-img {
    min-height: 240px;
  }
  .loc-card-body {
    padding: 28px 24px;
  }
  
  /* ---- FAQ ---- */
  .faq-q {
    font-size: 14px;
    padding: 20px 0;
  }
  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .faq-a p {
    font-size: 13px;
  }
  
  /* ---- IMAGES ---- */
  .img-frame,
  .img-reveal,
  [data-parallax] {
    height: 300px !important;
  }
  
  /* ---- CTA BLOCKS ---- */
  .cta-block {
    padding: 60px 0;
  }
  .cta-block h2 {
    font-size: clamp(26px, 6.5vw, 38px);
  }
  .cta-block p {
    font-size: 14px;
    padding: 0 8px;
  }
  
  /* ---- FULLBLEED IMAGE BREAK ---- */
  [data-parallax][style*="height:50vh"] {
    height: 35vh !important;
  }
  
  /* ---- JOURNAL GRID ---- */
  .journal-grid { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  .journal-card-img {
    aspect-ratio: 16/10;
  }
  .journal-card h3 {
    font-size: 20px;
  }
  
  /* ---- CONTACT FORM ---- */
  .form input,
  .form select,
  .form textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 12px 0;
  }
  
  /* ---- FOOTER ---- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  /* ---- BOOK PAGE ---- */
  .book-grid-2 {
    grid-template-columns: 1fr !important;
  }
  
  /* ---- LOCATION DETAIL PAGE ---- */
  .loc-detail {
    font-size: 15px;
  }
  /* Map embeds — full width on mobile */
  iframe[title*="map"] {
    height: 220px !important;
  }
  
  /* ---- IDEAL-FOR TAGS ---- */
  .tags {
    gap: 4px;
  }
  .tag {
    font-size: 9px;
    padding: 4px 10px;
  }
  
  /* ---- INCL LIST ---- */
  .incl-list li {
    font-size: 12.5px;
    padding: 7px 0 7px 20px;
  }
  
  /* ---- DISABLE HOVER EFFECTS ON TOUCH ---- */
  .t-card { transition: none !important; }
  .t-card:hover .t-card-img img { transform: scale(1) !important; opacity: 0.65 !important; }
  .t-card-link::before { display: none; }
  .feat::before { display: none; }
  .rev-card:hover { transform: none !important; box-shadow: none !important; }
  .journal-card:hover { transform: none !important; }
  
  /* ---- SCROLL SNAP FOR REVIEWS ON MOBILE ---- */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .rev-card {
    width: 88vw;
    min-width: 88vw;
    max-width: 88vw;
    scroll-snap-align: center;
    flex-shrink: 0;
    padding: 24px 20px;
  }
  .rev-card blockquote {
    font-size: 15px;
    line-height: 1.6;
  }
  .rev-author {
    font-size: 10px;
  }
  
  /* ---- PROGRESS BAR — thinner on mobile ---- */
  #progressBar { height: 1.5px !important; }
}

/* ---- Small phones (iPhone SE etc) ---- */
@media (max-width: 375px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .hero-home h1 { font-size: 38px; }
  .t-card { aspect-ratio: 3/4; }
  .t-card-body h3 { font-size: 32px; }
  .btn { padding: 12px 24px; font-size: 10px; }
  .rev-card { min-width: 90vw; }
  .feat { padding: 24px 20px; }
}

/* ---- Landscape phones ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-home { min-height: 120vh; }
  .hero-sub { min-height: 80vh !important; }
}

/* Utility */
.tc { text-align: center; }
.mb0 { margin-bottom: 0; }
.mb16 { margin-bottom: 16px; }
.mb24 { margin-bottom: 24px; }
.mb32 { margin-bottom: 32px; }
.mb40 { margin-bottom: 40px; }
.mb48 { margin-bottom: 48px; }
.mb64 { margin-bottom: 64px; }
.mb80 { margin-bottom: 80px; }
.mt24 { margin-top: 24px; }
.mt40 { margin-top: 40px; }
.mt60 { margin-top: 60px; }

/* WordPress nav output tweaks (walker) */
.nav-dropdown-menu { list-style: none; margin: 0; }
.nav-dropdown-menu li { list-style: none; margin: 0; padding: 0; }

/* ============================================
   LUXURY UPGRADE — La Vela v3
   World-Class Redesign Layer
   ============================================ */

/* -------- PAGE LOADER -------- */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.25s ease, visibility 0.25s;
}
#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-wordmark {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(16px);
  animation: loaderIn 0.7s var(--ease-out) 0.15s forwards;
}
.loader-bar {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: loaderBar 0.9s var(--ease-out) 0.5s forwards;
}
@keyframes loaderIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar {
  to { width: 48px; }
}

/* Custom cursor removed — using system cursor */

/* -------- MARQUEE STRIP -------- */
.marquee-strip {
  overflow: hidden;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 15px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqScroll 38s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-strip:hover .marquee-item { color: rgba(255,255,255,0.45); }
.m-dot { color: var(--gold); font-size: 5px; flex-shrink: 0; }
.m-gold { color: var(--gold-soft); }
@keyframes marqScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------- STATS SECTION -------- */
.stats-section {
  padding: clamp(56px, 7vw, 92px) 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--linen);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: clamp(20px, 3vw, 40px) clamp(12px, 2vw, 24px);
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  top: 15%; left: 0;
  height: 70%; width: 1px;
  background: var(--linen);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 12px;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
}

/* -------- HERO SCROLL CUE -------- */
.hero-scroll-cue {
  position: absolute;
  bottom: clamp(28px, 4vw, 48px);
  right: clamp(24px, 4vw, 56px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 2s forwards;
}
.hero-scroll-cue-text {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}
.hero-scroll-cue-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.4s ease-in-out 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* -------- NAV LOGO — Italic Treatment -------- */
.nav-logo-text { font-style: italic; letter-spacing: 0.08em; }

/* -------- FEATURES GRID — EDITORIAL NUMBERED -------- */
/* Use CSS counters to add 01–09 numerals as design elements */
.features-grid-9 { counter-reset: feat-count; }
.features-grid-9 .feat { counter-increment: feat-count; padding: clamp(36px, 4vw, 60px) !important; }

/* Repurpose ::before for the counter number, ::after for hover line */
.features-grid-9 .feat::before {
  content: counter(feat-count, decimal-leading-zero) !important;
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  transition: none !important;
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: var(--gold) !important;
  letter-spacing: 0.14em !important;
  margin-bottom: 22px !important;
  opacity: 0.7 !important;
}
.features-grid-9 .feat::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 0 !important;
  height: 1px !important;
  background: var(--gold) !important;
  transition: width 0.9s var(--ease-out) !important;
}
.features-grid-9 .feat:hover::after { width: 100% !important; }
.features-grid-9 .feat h4 {
  font-family: var(--font-display) !important;
  font-size: clamp(19px, 1.8vw, 26px) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.25 !important;
  color: var(--cream) !important;
  margin-bottom: 14px !important;
}
.features-grid-9 .feat p {
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.9 !important;
}
/* Gap lines between cells */
.section-dark .features-grid-9 { background: rgba(255,255,255,0.04) !important; gap: 1px !important; }
.section-dark .features-grid-9 .feat { background: var(--charcoal) !important; }
.section-dark .features-grid-9 .feat:hover { background: #242220 !important; }

/* -------- ENHANCED MOBILE NAV -------- */
.mobile-nav { background: var(--black) !important; padding: 88px 32px 100px !important; }
.mobile-nav a {
  font-family: var(--font-display) !important;
  font-size: clamp(26px, 5.5vw, 36px) !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.6) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  padding: 16px 0 !important;
  transition: color 0.3s, padding-left 0.5s var(--ease-out) !important;
}
.mobile-nav a:hover { color: var(--cream) !important; padding-left: 10px !important; }

/* Book Now top button */
.mob-book-top {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 2px !important;
  padding: 14px 24px !important;
  text-align: center !important;
  margin-bottom: 8px !important;
}
.mob-book-top:hover { background: var(--gold) !important; color: var(--black) !important; padding-left: 24px !important; }

/* Accordion */
.mob-accordion { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mob-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display) !important;
  font-size: clamp(26px, 5.5vw, 36px);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  padding: 16px 0;
  text-align: left;
  transition: color 0.3s;
}
.mob-accordion-btn:hover { color: var(--cream); }
.mob-accordion.open .mob-accordion-btn { color: var(--cream); }
.mob-accordion-icon {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}
.mob-accordion.open .mob-accordion-icon { transform: rotate(45deg); }
.mob-accordion-body {
  display: none;
  flex-direction: column;
  padding-bottom: 8px;
}
.mob-accordion.open .mob-accordion-body { display: flex; }
.mob-accordion-body a {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.4) !important;
  padding: 10px 0 10px 16px !important;
  border-bottom: none !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
}
.mob-accordion-body a:hover { color: var(--cream) !important; padding-left: 24px !important; }

.mobile-nav .sub {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.28) !important;
  padding-left: 24px !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}
.mobile-nav a[href*="zenoti"] {
  color: var(--gold) !important;
  font-style: italic !important;
  border-bottom: none !important;
  margin-top: 20px !important;
}

/* -------- REVIEW CARD — Bottom Gold Line Hover -------- */
.section-dark .rev-card { position: relative; overflow: hidden; }
.section-dark .rev-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.7s var(--ease-out);
}
.section-dark .rev-card:hover::after { width: 100%; }
/* Suppress the transform lift on dark bg reviews */
.section-dark .rev-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: rgba(255,255,255,0.1) !important;
}

/* -------- LOCATION CARDS — GHOST NUMBER -------- */
.loc-card { position: relative; }
.loc-ghost-num {
  position: absolute;
  bottom: 0; right: 20px;
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 300;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  line-height: 0.9;
}
.loc-card-body { position: relative; z-index: 1; }

/* -------- FOOTER — WORDMARK WATERMARK -------- */
.site-footer { position: relative; overflow: hidden; }
.footer-watermark {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 200px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  line-height: 0.85;
  letter-spacing: -0.01em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.site-footer > .container-wide { position: relative; z-index: 1; }

/* -------- ANIMATED DIVIDER (on scroll reveal) -------- */
.anim.vis .divider {
  animation: dividerGrow 1.1s var(--ease-out) 0.25s both;
}
@keyframes dividerGrow {
  from { width: 0; opacity: 0; }
  to { width: 48px; opacity: 1; }
}

/* -------- EYEBROW LINE — ANIMATE ON REVEAL -------- */
.anim.vis .eyebrow::before {
  animation: eyebrowLine 0.8s var(--ease-out) 0.1s both;
}
@keyframes eyebrowLine {
  from { width: 0; opacity: 0; }
  to { width: 24px; opacity: 1; }
}

/* -------- TREATMENT CARD — CORNER ACCENT -------- */
.t-card::before {
  content: '';
  position: absolute;
  bottom: clamp(18px, 2.5vw, 32px);
  right: clamp(18px, 2.5vw, 32px);
  width: 20px; height: 20px;
  border-right: 1px solid rgba(196,162,101,0);
  border-bottom: 1px solid rgba(196,162,101,0);
  z-index: 3;
  transition: all 0.7s var(--ease-out);
}
.t-card:hover::before {
  border-color: rgba(196,162,101,0.65);
  width: 30px; height: 30px;
}

/* -------- CTA SECTION — DECORATIVE WATERMARK -------- */
.cta-block { position: relative; overflow: hidden; }
.cta-block > .container { position: relative; z-index: 1; }
.cta-block::before {
  content: '"';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 280px);
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  z-index: 0;
}

/* -------- TREATMENT DETAIL SIDEBAR -------- */
.td-sidebar {
  border-top: 2px solid var(--gold) !important;
  background: var(--ivory) !important;
}

/* -------- NAV BOOK BUTTON — SUBTLE PULSE -------- */
@keyframes bookPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,162,101,0); }
  60% { box-shadow: 0 0 0 5px rgba(196,162,101,0.12); }
}
.nav-book { animation: bookPulse 4s ease-in-out infinite; }

/* -------- PARALLAX QUOTE — MORE CINEMATIC -------- */
[data-parallax] p[style*="Cormorant"],
[data-parallax] p[style*="Playfair"] {
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 3.5vw, 48px) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  max-width: 680px !important;
  letter-spacing: 0.01em !important;
}

/* -------- h2 ITALIC em ACCENT -------- */
h2 em { font-style: italic; font-weight: 300; color: var(--gold-soft); }

/* -------- SECTION DARK h2 -------- */
.section-dark h2 { color: var(--cream); font-weight: 300; }

/* -------- HEALTH ELIGIBILITY PAGE -------- */

/* Intro strip */
.elig-intro-strip {
  background: var(--charcoal);
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.elig-intro-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* Grid */
.elig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

/* Base card */
.elig-card {
  background: var(--charcoal);
  padding: clamp(40px, 4.5vw, 68px);
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease-out);
}
.elig-card:hover { background: #242220; }

/* Hover gold line at top */
.elig-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.8s var(--ease-out);
}
.elig-card:hover::after { width: 100%; }

/* Number */
.elig-num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.75;
}

/* Heading */
.elig-card h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 0;
}

.elig-card .divider {
  margin: 22px 0;
  background: rgba(255,255,255,0.1);
}

/* Body text */
.elig-card p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.42);
  margin-bottom: 14px;
}
.elig-card p:last-child { margin-bottom: 0; }
.elig-card strong { color: var(--cream); font-weight: 500; }

/* Italic reassurance quote */
.elig-reassure {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  color: var(--gold-soft) !important;
  border-left: 1px solid rgba(196,162,101,0.3);
  padding-left: 16px !important;
  margin-top: 20px !important;
}

/* List */
.elig-list {
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
}
.elig-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.38);
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.elig-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* Image card variant */
.elig-card--image {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.elig-card-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.elig-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  filter: brightness(0.75);
}
.elig-card--image:hover .elig-card-img img { transform: scale(1.06); }
.elig-card-content {
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* CTA card */
.elig-card--cta {
  background: var(--black) !important;
  border: 1px solid rgba(196,162,101,0.2);
}
.elig-card--cta:hover { background: #111 !important; }
.elig-card--cta h3 { color: var(--white); }
.elig-card--cta p { color: rgba(255,255,255,0.5); }
.elig-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .elig-card--image { grid-template-columns: 1fr; }
  .elig-card-img { min-height: 240px; }
}

@media (max-width: 768px) {
  .elig-grid { grid-template-columns: 1fr; }
  .elig-card { padding: 36px 24px; }
  .elig-card h3 { font-size: 24px; }
  .elig-intro-text { font-size: 18px; }
  .elig-cta-actions { flex-direction: column; }
  .elig-cta-actions .btn { width: 100%; justify-content: center; }
}

/* -------- TREATMENTS PAGE — COMPACT INTRO -------- */
.treats-intro {
  background: var(--white);
  padding: clamp(36px, 4vw, 56px) 0 clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--linen);
}
.treats-intro-h2 {
  font-style: italic;
  font-size: clamp(26px,3.2vw,42px);
  margin-top: 10px;
}
.treats-mood {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 14px auto 0;
}
.treats-mood span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--gold);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.treats-grid-section {
  padding-bottom: 2px;
}
.treats-eyebrow-row {
  padding-top: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(16px, 2vw, 28px);
}

/* ── Facials section divider ── */
.facials-divider {
  background: var(--cream);
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}
.facials-divider-inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}
.facials-divider-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.facials-divider-content {
  flex-shrink: 0;
}
.facials-divider-content .eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}
.facials-divider-h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin: 0 0 10px;
  line-height: 1.15;
}
.facials-divider-sub {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--earth);
  margin: 0;
}
@media (max-width: 600px) {
  .facials-divider-line { display: none; }
  .facials-divider-inner { justify-content: center; }
}
@media (max-width: 768px) {
  .treats-intro { padding: 32px 0 24px; }
}

/* ============================================
   LUXURY FINISHING LAYER — v4
   Cormorant Garant upgrade refinements
   ============================================ */

/* Ensure all headings get the display serif */
h1, h2, h3, h4 { font-family: var(--font-display); }

/* Body gets Jost — slightly heavier than 300 for readability */
body { font-weight: 300; letter-spacing: 0.01em; }

/* Hero home: italic em is already gold — make it truly shine */
.hero-home h1 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }

/* Sub-page hero: italic is already set in the base rule above */

/* The "Choose your ritual." h2 — give it more presence */
.container-narrow h2 { font-style: italic; }

/* Stats numbers: Cormorant at this scale is incredible */
.stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.03em;
}

/* Section intro h2 centred: italic for editorial quality */
.tc h2 { font-style: italic; }

/* Divider: slightly longer for more presence */
.divider { width: 56px; }

/* Subtitle: slightly more refined tracking */
.subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* Location card body h3: not italic — structural/factual feel */
.loc-card-body h3 { font-style: normal; }

/* Treatment detail sidebar h3: clean */
.td-sidebar h3 { font-style: normal; font-weight: 400; }
.td-sidebar .price { font-style: italic; }

/* Review card hover — gold line at top instead of border */
.rev-card {
  border-top: 1px solid var(--linen);
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--linen);
  padding: 44px 36px;
}

/* Mobile nav in Cormorant italic = stunning */
.mobile-nav a { font-style: italic !important; }
.mobile-nav .sub { font-style: normal !important; font-family: var(--font-body) !important; }

/* FAQ question text: slightly larger, Jost 400 */
.faq-q { font-size: 16px; font-weight: 400; letter-spacing: 0.005em; }

/* Form labels: refined */
.form label { font-size: 9px; letter-spacing: 0.2em; }

/* Footer col headings */
.footer-col h4 { font-family: var(--font-body); letter-spacing: 0.2em; font-size: 9px; }

/* Loader wordmark: already display italic — make slightly bigger */
.loader-wordmark { font-size: clamp(32px, 6vw, 68px); letter-spacing: 0.16em; }

/* Ghost location number: Cormorant italic */
.loc-ghost-num { font-style: italic; }

/* Footer watermark: Cormorant italic */
.footer-watermark { font-style: italic; font-size: clamp(80px, 16vw, 220px); }

/* CTA block h2: non-italic for directness (contrast with rest) */
.cta-block h2 { font-style: normal; font-weight: 300; }

/* Marquee: slightly refined tracking */
.marquee-item { letter-spacing: 0.24em; font-size: 9.5px; }

/* Book button in nav: Jost 500, prominent gold */
.nav-book {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
}

/* Treatment tag label */
.t-card-tag { letter-spacing: 0.2em; font-size: 8.5px; }
.t-card-link { font-size: 9px; letter-spacing: 0.2em; }
.t-card-meta { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.06em; }

/* Rev author */
.rev-author { letter-spacing: 0.16em; font-size: 10px; }

/* Step numbers: large italic Cormorant */
.step-num { font-style: italic; font-size: 36px; }

/* Tags */
.tag { font-family: var(--font-body); letter-spacing: 0.12em; }

/* Incl list */
.incl-list li { font-size: 13.5px; letter-spacing: 0.01em; }

/* Paragraph parallax quote override */
[data-parallax] p {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(22px, 3.2vw, 42px) !important;
  letter-spacing: 0.01em !important;
}

/* Mobile: undo blanket italic on centred h2 for small screens */
@media (max-width: 768px) {
  .container-narrow h2 { font-style: italic; }
  .stat-num { font-size: clamp(42px, 11vw, 60px); }
  .rev-card { padding: 32px 24px; }
  .step-num { font-size: 28px; }
}

/* ============================================
   RESPONSIVE — LUXURY UPGRADE ADDITIONS
   ============================================ */
@media (max-width: 768px) {
  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::before { display: block; } /* keep right border on 2nd */
  .stat-item:nth-child(3)::before { display: none; }  /* first item on row 2 */
  .stat-num { font-size: clamp(38px, 10vw, 56px); }
  .stat-label { font-size: 9px; letter-spacing: 0.14em; }

  /* Footer watermark */
  .footer-watermark { display: none; }

  /* Hero scroll cue */
  .hero-scroll-cue { display: none; }

  /* Marquee speed */
  .marquee-track { animation-duration: 24s; }

  /* Feat numbered padding */
  .features-grid-9 .feat { padding: 28px 24px !important; }
  .features-grid-9 .feat h4 { font-size: 18px !important; }

  /* Loc ghost */
  .loc-ghost-num { display: none; }

  /* Treatment card corner */
  .t-card::before { display: none; }
}

/* ============================================
   PERFORMANCE: content-visibility
   Tells the browser to skip layout/paint of
   off-screen sections until they scroll near.
   The 'auto' keyword in contain-intrinsic-size
   remembers the real size after first render,
   preventing cumulative layout shift.
   ============================================ */
.section {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ============================================
   ACCESSIBILITY: prefers-reduced-motion
   Removes animations/transitions for users who
   have requested reduced motion in OS settings.
   Also improves Lighthouse accessibility score.
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .anim { opacity: 1 !important; transform: none !important; }
  .anim.vis { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
  [data-parallax] img { transform: scale(1.15) !important; will-change: auto !important; }
  #page-loader { display: none !important; }
}
