/* ============================================
   ESENCIA THERAPY & WELLNESS CENTER — V2
   "Botanical Luxury Editorial" Redesign
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,500&family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&display=swap');

/* --- Variables --- */
:root {
  --aubergine: #2D1B3D;
  --aubergine-light: #3E2952;
  --plum: #6B2D8B;
  --plum-soft: #8B5DAA;
  --sage: #8BA888;
  --sage-dark: #6E8E6B;
  --sage-light: #A8C4A5;
  --sage-pale: #D6E5D3;
  --green-cta: #7BC142;
  --green-cta-dark: #65A834;
  --cream: #F7F3EE;
  --cream-dark: #EDE7DF;
  --warm-white: #FDFBF8;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --charcoal: #1A1A2E;
  --text-dark: #1C1C28;
  --text-body: #4A4552;
  --text-muted: #8A8494;
  --border: #E2DDD6;
  --border-light: #EFEBE5;

  --font-display: 'Fraunces', serif;
  --font-body: 'Bricolage Grotesque', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-width: 1320px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.4s var(--ease); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 400;
}
.h-xl { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1.05; }
.h-lg { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; letter-spacing: -0.02em; }
.h-md { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.h-sm { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.body-lg { font-size: 1.15rem; line-height: 1.8; }

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* --- Topbar --- */
.topbar {
  background: var(--aubergine);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 10px 0;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a { color: rgba(255,255,255,0.7); }
.topbar a:hover { color: var(--sage-light); }
.topbar__links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__item svg { width: 13px; height: 13px; opacity: 0.6; }
.topbar__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.topbar__social svg { width: 14px; height: 14px; }
.topbar__divider { opacity: 0.4; font-size: 0.75rem; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(253,251,248,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(253,251,248,0.95);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header__logo img { height: 52px; width: auto; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.header__nav a:hover { color: var(--plum); background: rgba(107,45,139,0.06); }
.header__nav a.active { color: var(--plum); }
.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--plum);
}
.nav-cta {
  background: var(--aubergine) !important;
  color: var(--cream) !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--plum) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45,27,61,0.25) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 101;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ============================================
   HERO — Full-Viewport Cinematic
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--aubergine);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 12s linear;
}
.hero.loaded .hero__bg { transform: scale(1.08); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(45,27,61,0.88) 0%,
      rgba(45,27,61,0.65) 40%,
      rgba(45,27,61,0.15) 75%,
      transparent 100%
    ),
    linear-gradient(
      0deg,
      rgba(45,27,61,0.7) 0%,
      transparent 50%
    );
}
/* Decorative organic blob */
.hero__shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(139,168,136,0.12);
  filter: blur(60px);
  z-index: 1;
  animation: morphBlob 20s ease-in-out infinite;
}
@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 50% 70% 60%; }
  75% { border-radius: 40% 30% 60% 50% / 60% 40% 50% 30%; }
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 48px) clamp(60px, 10vh, 120px);
  max-width: 750px;
}
.hero__caption {
  display: none;
}
.hero__caption.active {
  display: block;
  animation: captionIn 0.8s var(--ease-out) both;
}
.hero__caption.exiting {
  display: block;
  animation: captionOut 0.4s var(--ease) both;
}
@keyframes captionIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes captionOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-12px); }
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sage-light);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(45,27,61,0.5);
}
.hero__title em {
  font-style: italic;
  color: var(--sage-light);
  font-weight: 400;
}
.hero__desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(45,27,61,0.4);
}
.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Slider indicators */
.hero__indicators {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  padding: 0;
}
.hero__dot.active {
  background: var(--sage-light);
  height: 32px;
  border-radius: 4px;
}

/* Hero slides */
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__slide.active {
  opacity: 1;
}
.hero__slide .hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* ============================================
   PAGE HERO — Inner Pages
   ============================================ */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  max-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--aubergine);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,27,61,0.2) 0%, rgba(45,27,61,0.85) 100%);
}
.page-hero__overlay--sage {
  background: linear-gradient(180deg, rgba(110,142,107,0.2) 0%, rgba(80,115,77,0.85) 100%);
}
.page-hero--sage {
  background: var(--sage-dark);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-hero__sub {
  color: rgba(247,243,238,0.65);
  font-size: 1.05rem;
  max-width: 500px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--green-cta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(123,193,66,0.25);
}
.btn--primary:hover {
  background: var(--green-cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123,193,66,0.35);
}
.btn--dark {
  background: var(--aubergine);
  color: var(--cream);
}
.btn--dark:hover {
  background: var(--plum);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,27,61,0.3);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--cream);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost {
  background: transparent;
  color: var(--plum);
  padding: 8px 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}
.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.btn--ghost:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section--cream { background: var(--cream); }
.section--zen {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--zen > .container {
  position: relative;
  z-index: 1;
}
.section--zen canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.section--dark { background: var(--aubergine); color: var(--cream); }
.section--sage { background: var(--sage-pale); }

.section-header {
  margin-bottom: clamp(40px, 6vw, 70px);
}
.section-header.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.section--dark .section-header p { color: rgba(247,243,238,0.6); }

/* Decorative line */
.line-accent {
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin-top: 20px;
  border-radius: 1px;
}
.center .line-accent { margin-left: auto; margin-right: auto; }

/* ============================================
   BENTO SERVICE GRID — Homepage
   ============================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.bento__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border-light);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.bento__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(45,27,61,0.1);
  border-color: var(--sage-pale);
}
.bento__card--lg {
  grid-row: span 2;
}
.bento__img {
  overflow: hidden;
  flex-shrink: 0;
}
.bento__card--lg .bento__img { height: 100%; min-height: 300px; }
.bento__card:not(.bento__card--lg) .bento__img { height: 220px; }
.bento__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.bento__card:hover .bento__img img { transform: scale(1.05); }
.bento__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bento__card--lg .bento__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(45,27,61,0.7) 30%, rgba(45,27,61,0.95) 70%);
  padding: 100px 32px 32px;
  color: var(--cream);
}
.bento__body .eyebrow { margin-bottom: 8px; }
.bento__card--lg .bento__body .eyebrow { color: var(--sage-light); text-shadow: 0 1px 8px rgba(0,0,0,0.6); letter-spacing: 0.2em; }
.bento__body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.bento__card--lg .bento__body h3 { color: #fff; font-size: 1.8rem; font-weight: 600; text-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4); }
.bento__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}
.bento__card--lg .bento__body p { color: rgba(247,243,238,0.9); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }

/* ============================================
   SERVICE IMAGE CARDS (Bento Layout)
   ============================================ */
.svc-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 680px;
}

/* --- Card Base --- */
.svc-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(45, 27, 61, 0.18);
}

/* Primary card spans 2 rows */
.svc-card--primary {
  grid-row: 1 / 3;
}

/* --- Background Image --- */
.svc-card__img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc-card:hover .svc-card__img img {
  transform: scale(1.04);
}

/* --- Color Overlays --- */
.svc-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.55s var(--ease);
}
.svc-card__overlay--aubergine {
  background: linear-gradient(
    175deg,
    rgba(45, 27, 61, 0.25) 0%,
    rgba(45, 27, 61, 0.55) 35%,
    rgba(45, 27, 61, 0.88) 65%,
    rgba(45, 27, 61, 0.96) 100%
  );
}
.svc-card--primary:hover .svc-card__overlay--aubergine {
  opacity: 0.92;
}
.svc-card__overlay--sage {
  background: linear-gradient(
    175deg,
    rgba(110, 142, 107, 0.4) 0%,
    rgba(110, 142, 107, 0.7) 30%,
    rgba(80, 115, 77, 0.9) 65%,
    rgba(60, 90, 58, 0.97) 100%
  );
}
.svc-card:hover .svc-card__overlay--sage {
  opacity: 0.92;
}
.svc-card__overlay--cream {
  background: linear-gradient(
    175deg,
    rgba(238, 228, 214, 0.45) 0%,
    rgba(234, 222, 205, 0.62) 40%,
    rgba(228, 214, 193, 0.78) 70%,
    rgba(222, 206, 182, 0.88) 100%
  );
}
.svc-card:hover .svc-card__overlay--cream {
  opacity: 0.93;
}

/* --- Content --- */
.svc-card__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  width: 100%;
  color: var(--cream);
}

/* Label / eyebrow */
.svc-card__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 10px;
  display: block;
}
.svc-card__label--dark {
  color: var(--plum);
}

/* Title */
.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.svc-card--primary .svc-card__title {
  font-size: 2.2rem;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(45, 27, 61, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
}
.svc-card__title--dark {
  color: var(--aubergine);
  text-shadow: none;
}

/* Description */
.svc-card__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(247, 243, 238, 0.88);
  margin-bottom: 18px;
  max-width: 420px;
}
.svc-card--primary .svc-card__desc {
  font-size: 0.95rem;
  max-width: 480px;
  color: rgba(247, 243, 238, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
.svc-card__desc--dark {
  color: var(--text-body);
}

/* --- Service Lists --- */
.svc-card__services {
  list-style: none;
  margin-bottom: 22px;
  columns: 2;
  column-gap: 24px;
}
.svc-card__services--short {
  columns: 1;
}
.svc-card__services li {
  position: relative;
  padding: 5px 0 5px 16px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(247, 243, 238, 0.85);
  break-inside: avoid;
  line-height: 1.45;
}
.svc-card__services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage-light);
  opacity: 0.8;
}

/* Short list styling (secondary cards) */
.svc-card__services--short li {
  padding: 6px 0 6px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.svc-card__services--short li:last-child {
  border-bottom: none;
}

/* Dark variant for cream card */
.svc-card__services--dark li {
  color: var(--text-body);
  border-bottom-color: var(--border);
}
.svc-card__services--dark li::before {
  background: var(--sage);
}

/* Primary card: compact 2-col with thin separators */
.svc-card--primary .svc-card__services {
  column-rule: 1px solid rgba(168, 196, 165, 0.15);
  margin-bottom: 24px;
}
.svc-card--primary .svc-card__services li {
  padding: 4px 0 4px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

/* --- CTA Button --- */
.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1.5px solid var(--sage-light);
  border-radius: 50px;
  color: var(--sage-light);
  transition: all 0.4s var(--ease);
  align-self: flex-start;
  width: fit-content;
}
.svc-card__cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}
.svc-card:hover .svc-card__cta svg {
  transform: translateX(3px);
}
.svc-card:hover .svc-card__cta {
  background: var(--sage-light);
  color: var(--aubergine);
  border-color: var(--sage-light);
}
.svc-card__cta--sage {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.svc-card:hover .svc-card__cta--sage {
  background: #fff;
  color: var(--sage-dark);
  border-color: #fff;
}
.svc-card__cta--cream {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.svc-card:hover .svc-card__cta--cream {
  background: #fff;
  color: var(--aubergine);
  border-color: #fff;
}
.svc-card__cta--cream-dark {
  border-color: var(--aubergine);
  color: var(--aubergine);
}
.svc-card:hover .svc-card__cta--cream-dark {
  background: var(--aubergine);
  color: var(--cream);
  border-color: var(--aubergine);
}

/* ============================================
   SERVICE BENTO — Responsive
   ============================================ */
@media (max-width: 1024px) {
  .svc-bento {
    min-height: 560px;
  }
  .svc-card--primary .svc-card__title {
    font-size: 1.85rem;
  }
  .svc-card--primary .svc-card__services {
    column-gap: 20px;
  }
}

@media (max-width: 768px) {
  .svc-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: unset;
  }
  .svc-card--primary {
    grid-row: auto;
    min-height: 520px;
  }
  .svc-card--secondary {
    min-height: 340px;
  }
  .svc-card--primary .svc-card__services {
    columns: 2;
    column-gap: 16px;
  }
  .svc-card--primary .svc-card__title {
    font-size: 1.8rem;
  }
  .svc-card__content {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .svc-card--primary {
    min-height: 580px;
  }
  .svc-card--primary .svc-card__services {
    columns: 1;
  }
  .svc-card--primary .svc-card__title {
    font-size: 1.6rem;
  }
  .svc-card__title {
    font-size: 1.4rem;
  }
  .svc-card__services--short li {
    font-size: 0.82rem;
  }
}

/* ============================================
   TWO-COL FEATURE SECTION
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split--reverse .split__text { order: 1; }
.split__media {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.split__media img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  border-radius: 24px;
}
/* Decorative corner accent */
.split__media::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--sage-pale);
  border-radius: 0 0 24px 0;
  z-index: -1;
}
.split__text h2 { margin-bottom: 20px; }
.split__text p {
  margin-bottom: 16px;
  line-height: 1.85;
}
.split__text .btn { margin-top: 12px; }

/* Checklist */
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; color: var(--sage-dark); }

/* ============================================
   TREATMENT GRID — Masonry-ish
   ============================================ */
.treatments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.treatment {
  border-radius: 16px;
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease);
}
.treatment:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,27,61,0.08);
}
.treatment__img {
  height: 200px;
  overflow: hidden;
}
.treatment__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.treatment:hover .treatment__img img { transform: scale(1.05); }
.treatment[href*="full-body-massage"] .treatment__img img {
  object-position: center 75%;
}
.split__media img[src*="full-body-massage"] {
  max-height: 560px;
  object-fit: cover;
  object-position: center 75%;
}
.treatment__info {
  padding: 20px 22px;
}
.treatment__info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.treatment__info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   FEATURE SPOTLIGHT
   ============================================ */
.feature-spotlight {
  position: relative;
  padding: clamp(48px, 6vw, 72px) 0;
  overflow: hidden;
  background: var(--sage);
}
.feature-spotlight__bg {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle 500px at 20% 30%, rgba(45,27,61,0.18) 0%, transparent 60%),
    radial-gradient(circle 400px at 80% 70%, rgba(107,45,139,0.12) 0%, transparent 50%),
    radial-gradient(circle 600px at 60% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle 350px at 40% 80%, rgba(45,27,61,0.1) 0%, transparent 50%);
  animation: spotlightDrift 20s ease-in-out infinite alternate;
}
@keyframes spotlightDrift {
  0%   { transform: translate(0%, 0%) rotate(0deg); }
  25%  { transform: translate(5%, -3%) rotate(1deg); }
  50%  { transform: translate(-3%, 5%) rotate(-1deg); }
  75%  { transform: translate(4%, 2%) rotate(0.5deg); }
  100% { transform: translate(-2%, -4%) rotate(-0.5deg); }
}
.feature-spotlight__bg::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  right: 25%;
  bottom: 25%;
}
.feature-spotlight__bg::after {
  content: '';
  position: absolute;
  inset: 25%;
  background:
    radial-gradient(circle 300px at 70% 40%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle 250px at 30% 60%, rgba(255,255,255,0.06) 0%, transparent 50%);
  animation: spotlightGlow 15s ease-in-out infinite alternate-reverse;
}
@keyframes spotlightGlow {
  0%   { opacity: 0.4; transform: scale(1) translate(0, 0); }
  50%  { opacity: 1; transform: scale(1.1) translate(3%, -2%); }
  100% { opacity: 0.6; transform: scale(0.95) translate(-2%, 3%); }
}
.feature-spotlight::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aubergine), var(--sage-dark), var(--aubergine));
  z-index: 2;
}
.feature-spotlight__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.feature-spotlight__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.feature-spotlight__orb--1 {
  width: 300px;
  height: 300px;
  background: rgba(45,27,61,0.3);
  top: -10%;
  right: 10%;
  animation: orbFloat1 18s ease-in-out infinite;
}
.feature-spotlight__orb--2 {
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.15);
  bottom: -5%;
  left: 5%;
  animation: orbFloat2 22s ease-in-out infinite;
}
.feature-spotlight__orb--3 {
  width: 180px;
  height: 180px;
  background: rgba(107,45,139,0.15);
  top: 40%;
  left: 50%;
  animation: orbFloat3 16s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 30px) scale(1.1); }
  66%      { transform: translate(20px, -20px) scale(0.9); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -25px) scale(1.15); }
  66%      { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-25px, -30px) scale(1.05); }
  66%      { transform: translate(35px, 20px) scale(0.9); }
}
.feature-spotlight__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.feature-spotlight__image {
  position: relative;
}
.feature-spotlight__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.feature-spotlight__img-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.feature-spotlight__img-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 28px;
  z-index: -1;
}
.feature-spotlight__badge {
  position: absolute;
  bottom: -14px;
  right: -10px;
  background: var(--aubergine);
  color: var(--warm-white);
  padding: 14px 16px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  line-height: 1.1;
}
.feature-spotlight__badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.feature-spotlight__badge-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
  margin-top: 2px;
}
.feature-spotlight__tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.feature-spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  white-space: nowrap;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.feature-spotlight__desc {
  color: rgba(253,251,248,0.8);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}
.feature-spotlight__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.feature-spotlight__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}
.feature-spotlight__benefit:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.25);
}
.feature-spotlight__benefit-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: rgba(45,27,61,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-spotlight__benefit-icon svg {
  width: 16px;
  height: 16px;
  color: var(--warm-white);
}
.feature-spotlight__benefit strong {
  display: block;
  color: var(--warm-white);
  font-size: 0.82rem;
  margin-bottom: 1px;
}
.feature-spotlight__benefit span {
  font-size: 0.74rem;
  color: rgba(253,251,248,0.6);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--aubergine);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,168,136,0.12) 0%, transparent 70%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: var(--cream);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(247,243,238,0.6);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TESTIMONIALS — Horizontal Scroll
   ============================================ */
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.testimonial:hover { box-shadow: 0 8px 32px rgba(45,27,61,0.06); }
.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial__stars svg { width: 16px; height: 16px; color: var(--gold); }
.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--sage-dark);
}
.testimonial__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__name { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }
.testimonial__via { font-size: 0.75rem; color: var(--text-muted); }
.testimonial__via a { color: var(--text-muted); text-decoration: none; }
.testimonial__via a:hover { color: var(--sage); text-decoration: underline; }
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.testimonials-dots__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.testimonials-dots__dot.active {
  background: var(--sage);
  transform: scale(1.25);
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.reviews-summary__stars { display: flex; gap: 2px; }
.reviews-summary__stars svg { width: 18px; height: 18px; color: var(--gold); }
.reviews-summary__rating { font-weight: 800; color: var(--text-dark); }
.reviews-summary__count { color: var(--text-muted); }
.reviews-summary a { color: var(--text-muted); text-decoration: none; }
.reviews-summary a:hover { color: var(--sage); text-decoration: underline; }

/* ============================================
   INSURANCE LOGOS
   ============================================ */
.logos-marquee {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.logo-item {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: all 0.3s var(--ease);
}
.logo-item:hover { box-shadow: 0 4px 16px rgba(45,27,61,0.06); border-color: var(--sage-pale); }
.logo-item img { max-height: 45px; max-width: 110px; object-fit: contain; filter: grayscale(0.2); transition: filter 0.3s; }
.logo-item:hover img { filter: grayscale(0); }

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-items: center;
}
.team-card {
  text-align: center;
  max-width: 300px;
  width: 100%;
}
.team-card__photo {
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
  position: relative;
  isolation: isolate;
}
.team-card__photo::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 30px;
  height: 30px;
  border-top: 1.5px solid var(--plum);
  border-left: 1.5px solid var(--plum);
  border-top-left-radius: 6px;
  opacity: 0.82;
  z-index: 2;
  pointer-events: none;
  transition: top 0.45s var(--ease), left 0.45s var(--ease),
              width 0.45s var(--ease), height 0.45s var(--ease),
              opacity 0.45s var(--ease);
}
.team-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('../images/logos/logo-badge.png') no-repeat right 12px bottom 12px / 42px 42px,
    linear-gradient(180deg, transparent 58%, rgba(45,27,61,0.10) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 3px 10px rgba(45, 27, 61, 0.18));
  transition: filter 0.45s var(--ease), background-size 0.45s var(--ease);
}
.team-card:hover .team-card__photo::before {
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  opacity: 1;
}
.team-card:hover .team-card__photo::after {
  filter: drop-shadow(0 5px 14px rgba(45, 27, 61, 0.26));
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-orientation: from-image;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--text-dark); }
.team-card p { font-size: 0.82rem; color: var(--plum-soft); font-weight: 600; }

/* Founder / Featured Split */
.founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.founder-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(45,27,61,0.08);
  position: relative;
  isolation: isolate;
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-photo::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px;
  width: 46px;
  height: 46px;
  border-top: 2px solid var(--plum);
  border-left: 2px solid var(--plum);
  border-top-left-radius: 8px;
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
  transition: all 0.5s var(--ease);
}
.founder-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('../images/logos/logo-badge.png') no-repeat right 22px bottom 22px / 66px 66px,
    linear-gradient(180deg, transparent 70%, rgba(45,27,61,0.10) 100%);
  border-radius: 24px;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(45, 27, 61, 0.24));
  z-index: 2;
}
.founder-split:hover .founder-photo::before {
  top: 16px;
  left: 16px;
  width: 54px;
  height: 54px;
  opacity: 1;
}
.founder-split:hover .founder-photo::after {
  filter: drop-shadow(0 8px 20px rgba(45, 27, 61, 0.32));
}
.founder-text .eyebrow { margin-bottom: 16px; }
.founder-text h2 { margin-bottom: 8px; }
.founder-text .founder-title {
  color: var(--plum-soft);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 24px;
}
.founder-text p {
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Team section centered last row */
.team-grid--centered {
  justify-content: center;
}

/* Facility gallery */
.facility-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.facility-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--cream) 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(107, 45, 139, 0.08);
  box-shadow: 0 12px 40px rgba(45, 27, 61, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(45, 27, 61, 0.12);
}
.facility-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.facility-card__map {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(107, 45, 139, 0.08);
}
.facility-card__map::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(139, 168, 136, 0.18) 0%, rgba(107, 45, 139, 0.12) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.facility-card__pin {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum) 0%, var(--aubergine) 100%);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(107, 45, 139, 0.35);
  z-index: 2;
}
.facility-card__pin svg {
  width: 22px;
  height: 22px;
}
.facility-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
}
.facility-card__eyebrow {
  color: var(--sage-dark);
}
.facility-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--aubergine);
  margin: 10px 0 0;
  letter-spacing: -0.01em;
}
.facility-card__divider {
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--plum) 100%);
  border-radius: 999px;
  margin: 16px 0 22px;
}
.facility-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 22px;
}
.facility-gallery__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s var(--ease);
  line-height: 1.55;
  text-align: left;
}
.facility-gallery__detail:hover {
  color: var(--plum);
}
.facility-gallery__detail svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  color: var(--sage-dark);
  transition: color 0.3s var(--ease);
}
.facility-gallery__detail:hover svg {
  color: var(--plum);
}
.facility-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--aubergine) 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 6px 18px rgba(107, 45, 139, 0.25);
}
.facility-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(107, 45, 139, 0.35);
}
.facility-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}
.facility-card__cta:hover svg { transform: translateX(3px); }
.facility-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  image-orientation: from-image;
  transition: transform 0.6s var(--ease);
}
.facility-gallery__item:hover img { transform: scale(1.03); }
.facility-gallery__item iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) hue-rotate(-8deg);
  transition: filter 0.4s var(--ease);
}
.facility-card:hover .facility-gallery__item iframe {
  filter: saturate(1) hue-rotate(0deg);
}

/* Values grid */
.section--values {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--values::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at -5% 0%, rgba(139,168,136,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 600px 500px at 105% 100%, rgba(139,168,136,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 400px 350px at 65% 15%, rgba(107,45,139,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 350px 300px at 25% 90%, rgba(107,45,139,0.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.section--values::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 250px at 15% 30%, rgba(139,168,136,0.3) 0%, transparent 100%),
    radial-gradient(circle 200px at 80% 40%, rgba(139,168,136,0.2) 0%, transparent 100%),
    radial-gradient(circle 280px at 50% 80%, rgba(139,168,136,0.25) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.section--values > .container {
  position: relative;
  z-index: 1;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-card {
  padding: 32px 28px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: all 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,27,61,0.06);
  border-color: var(--sage-pale);
}
.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value-card__icon svg { width: 22px; height: 22px; color: var(--sage-dark); }
.value-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Group photo enhanced */
.group-photo--hero {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(45,27,61,0.08);
}
.group-photo--hero img { width: 100%; display: block; }

/* ============================================
   PROGRAM CARDS
   ============================================ */
.programs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.program {
  text-align: center;
  padding: 36px 24px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: all 0.4s var(--ease);
}
.program:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,27,61,0.06);
  border-color: var(--sage-pale);
}
.program__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.program__icon svg { width: 24px; height: 24px; color: var(--sage-dark); }
.program__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.program__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.program:hover .program__thumb img {
  transform: scale(1.05);
}
.program h4 { font-size: 1rem; margin-bottom: 6px; }
.program p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 24px; line-height: 1.85; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 500;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 18px; height: 18px; color: var(--sage-dark); }
.contact-detail a { color: var(--plum); font-weight: 600; }
.contact-detail a:hover { color: var(--sage-dark); }

.contact-form {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-light);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--plum-soft);
  box-shadow: 0 0 0 4px rgba(107,45,139,0.08);
}
.form-field textarea { height: 130px; resize: vertical; margin-bottom: 16px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.contact-form .btn { width: 100%; justify-content: center; }

/* Dark variant for green sections */
.contact-dark {
  background: var(--aubergine);
  padding: clamp(60px, 8vw, 100px) 0;
}
.contact-dark h2 { color: var(--cream); }
.contact-dark p { color: rgba(247,243,238,0.65); }
.contact-dark .contact-form {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.contact-dark .form-field input,
.contact-dark .form-field textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--cream);
}
.contact-dark .contact-detail { color: rgba(247,243,238,0.8); }
.contact-dark .contact-detail a { color: var(--sage-light); }
.contact-dark .contact-detail a:hover { color: var(--sage); }
.contact-dark .contact-detail__icon { background: rgba(139,168,136,0.15); }
.contact-dark .contact-detail__icon svg { color: var(--sage-light); }
.contact-dark .form-field input::placeholder,
.contact-dark .form-field textarea::placeholder { color: rgba(247,243,238,0.35); }
.contact-dark .form-field input:focus,
.contact-dark .form-field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(139,168,136,0.15);
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.location {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--warm-white);
  transition: all 0.4s var(--ease);
}
.location:hover { box-shadow: 0 12px 40px rgba(45,27,61,0.06); }
.location__img { height: 240px; overflow: hidden; }
.location__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.location:hover .location__img img { transform: scale(1.04); }
.location__info { padding: 28px; }
.location__tag {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.location__info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.location__info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.location__info a { color: var(--plum); font-weight: 600; }

/* ============================================
   ABOUT TEXT
   ============================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
}
.prose p + p { margin-top: 16px; }
.group-photo {
  border-radius: 24px;
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto 0;
  border: 1px solid var(--border-light);
}
.group-photo img { width: 100%; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(247,243,238,0.6);
  padding: 70px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) brightness(0.85);
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--sage);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer__contact-link:hover {
  background: var(--plum);
  transform: translateY(-1px);
}
.footer__contact-link svg { color: currentColor; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(247,243,238,0.55);
  transition: color 0.3s;
}
.footer__link:hover { color: var(--sage-light); }
.footer__link svg { width: 14px; height: 14px; color: var(--sage); flex-shrink: 0; }
.footer__bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(247,243,238,0.3);
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,243,238,0.5);
  transition: all 0.3s var(--ease);
}
.footer__socials a:hover { background: var(--sage-dark); color: var(--cream); }
.footer__socials svg { width: 15px; height: 15px; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb__list a {
  color: var(--plum);
  font-weight: 600;
}
.breadcrumb__list a:hover { color: var(--sage-dark); }
.breadcrumb__sep {
  color: var(--border);
  font-size: 0.7rem;
}
.breadcrumb__current {
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================
   SERVICE PAGE — HERO VARIANT
   ============================================ */
.service-hero {
  position: relative;
  height: 45vh;
  min-height: 340px;
  max-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--aubergine);
}
.service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,27,61,0.25) 0%, rgba(45,27,61,0.88) 100%);
}
.service-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 44px;
}
.service-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.service-hero__tagline {
  color: var(--sage-light);
  font-size: 1.05rem;
  font-weight: 500;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s var(--ease);
}
.benefit-item:hover {
  border-color: var(--sage-pale);
  box-shadow: 0 4px 16px rgba(45,27,61,0.04);
}
.benefit-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefit-icon svg { width: 12px; height: 12px; color: var(--sage-dark); }

/* ============================================
   HOW IT WORKS — STEP CARDS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  counter-increment: step;
  transition: all 0.4s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,27,61,0.06);
  border-color: var(--sage-pale);
}
.step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--plum); }
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer__inner {
  padding: 0 0 20px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* ============================================
   TREATMENT CARD — LINK VARIANT
   ============================================ */
a.treatment {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.treatment .treatment__info {
  position: relative;
}
.treatment__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: gap 0.3s var(--ease);
}
.treatment__link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
a.treatment:hover .treatment__link { gap: 10px; }
a.treatment:hover .treatment__link svg { transform: translateX(2px); }

/* ============================================
   RELATED SERVICES
   ============================================ */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram-section {
  background: var(--cream);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.instagram-post {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.instagram-post:hover img {
  transform: scale(1.06);
}
.instagram-post__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 61, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.instagram-post:hover .instagram-post__overlay {
  opacity: 1;
}
.instagram-post__icon {
  color: #fff;
  opacity: 0.9;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease);
}
.instagram-post:hover .instagram-post__icon {
  transform: translateY(0);
}
.instagram-post__icon svg {
  width: 28px;
  height: 28px;
}
.instagram-post__caption {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0.85;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease) 0.05s;
}
.instagram-post:hover .instagram-post__caption {
  transform: translateY(0);
}
.instagram-follow {
  text-align: center;
  margin-top: 2.5rem;
}

/* Skeleton loading */
.instagram-skeleton {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-dark);
}
.instagram-skeleton__pulse {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    110deg,
    var(--cream-dark) 30%,
    var(--warm-white) 50%,
    var(--cream-dark) 70%
  );
  background-size: 200% 100%;
  animation: instaSkeleton 1.4s ease-in-out infinite;
}
@keyframes instaSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state */
.instagram-empty {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   SCROLL REVEALS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--lg { grid-row: span 1; }
  .treatments { grid-template-columns: repeat(2, 1fr); }
  .logos-marquee { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .founder-split { gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .programs { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar .container { flex-wrap: wrap; justify-content: center; text-align: center; }
  .topbar__social { display: none; }
  .topbar__links { gap: 12px; flex-wrap: wrap; justify-content: center; }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--warm-white);
    flex-direction: column;
    padding: 100px 32px 32px;
    box-shadow: -12px 0 40px rgba(0,0,0,0.08);
    transition: right 0.5s var(--ease);
    z-index: 100;
    align-items: stretch;
    gap: 0;
  }
  .header__nav.open { right: 0; }
  .header__nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    font-size: 1rem;
  }
  .header__nav a.active::after { display: none; }
  .nav-cta { text-align: center; margin-top: 16px; border-bottom: none !important; }
  .menu-toggle { display: flex; }

  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero__indicators { display: none; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .feature-spotlight__layout { grid-template-columns: 1fr; gap: 32px; }
  .feature-spotlight__image { max-width: 420px; margin: 0 auto; }
  .feature-spotlight__badge { bottom: -12px; right: -8px; padding: 12px 16px; }
  .feature-spotlight__badge-number { font-size: 1.4rem; }
  .feature-spotlight__desc { max-width: 100%; }
  .split--reverse .split__media { order: -1; }
  .split--reverse .split__text { order: 1; }
  .split__media::after { display: none; }

  .bento { grid-template-columns: 1fr; }
  .treatments { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .logos-marquee { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-split { grid-template-columns: 1fr; }
  .founder-photo { max-width: 400px; margin: 0 auto; }
  .founder-text { text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .facility-gallery { grid-template-columns: 1fr; }
  .programs { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .locations { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

/* ============================================
   TEAM CARD (clickable) + TEAM MODAL
   ============================================ */

/* Make team-card work as a <button> without losing its existing look */
button.team-card {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: block;
  text-align: center;
  max-width: 300px;
  width: 100%;
}
button.team-card:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 6px;
  border-radius: 20px;
}
button.team-card .team-card__photo {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
button.team-card:hover .team-card__photo {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(45, 27, 61, 0.14);
}

/* Modal overlay */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(45, 27, 61, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.team-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.team-modal {
  background: var(--cream);
  border-radius: 24px;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(45, 27, 61, 0.3);
  transform: scale(0.96) translateY(16px);
  transition: transform 0.4s var(--ease);
  border: 1px solid var(--border-light);
}
.team-modal-overlay.open .team-modal {
  transform: scale(1) translateY(0);
}
.team-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  cursor: pointer;
  color: var(--text-body);
  transition: all 0.3s var(--ease);
}
.team-modal__close:hover {
  background: var(--aubergine);
  color: #fff;
  border-color: var(--aubergine);
}
.team-modal__close svg { width: 20px; height: 20px; }
.team-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  max-height: 90vh;
}
.team-modal__photo {
  background: var(--cream-dark);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 90vh;
  position: relative;
  isolation: isolate;
}
.team-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-modal__photo::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px;
  width: 50px;
  height: 50px;
  border-top: 2px solid var(--plum);
  border-left: 2px solid var(--plum);
  border-top-left-radius: 8px;
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}
.team-modal__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('../images/logos/logo-badge.png') no-repeat right 22px bottom 22px / 72px 72px,
    linear-gradient(180deg, transparent 70%, rgba(45,27,61,0.10) 100%);
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(45, 27, 61, 0.24));
}
.team-modal__details {
  padding: 40px 44px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-modal__details .eyebrow { margin-bottom: 4px; }
.team-modal__details h3 {
  font-family: var(--font-display, 'Fraunces', 'DM Serif Display', serif);
  color: var(--aubergine);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  margin: 0;
}
.team-modal__title {
  color: var(--plum-soft);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 14px;
}
.team-modal__bio {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 0.98rem;
  margin: 0;
}

@media (max-width: 760px) {
  .team-modal__grid { grid-template-columns: 1fr; }
  .team-modal { max-height: 94vh; overflow-y: auto; }
  .team-modal__photo { aspect-ratio: 4 / 3; max-height: 42vh; }
  .team-modal__photo img { object-position: center 20%; }
  .team-modal__details { padding: 26px 22px 32px; }
  .team-modal-overlay { padding: 12px; }
  .team-modal__photo::before {
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    border-top-width: 1.5px;
    border-left-width: 1.5px;
  }
  .team-modal__photo::after {
    background:
      url('../images/logos/logo-badge.png') no-repeat right 14px bottom 14px / 48px 48px,
      linear-gradient(180deg, transparent 70%, rgba(45,27,61,0.10) 100%);
  }
}

/* Prevent body scroll when modal is open */
body.modal-open { overflow: hidden; }

/* Wellness Plan 4-up grid */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
}
.wellness-grid__item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(72, 36, 76, 0.10);
  aspect-ratio: 4 / 3;
  background: var(--cream, #f5efe6);
}
.split__media .wellness-grid__item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.wellness-grid__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 14px 12px;
  background: linear-gradient(to top, rgba(72, 36, 76, 0.78) 0%, rgba(72, 36, 76, 0.45) 60%, rgba(72, 36, 76, 0) 100%);
  color: #fff;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (max-width: 600px) {
  .wellness-grid { gap: 10px; }
  .wellness-grid__item figcaption { font-size: 0.95rem; padding: 16px 10px 10px; }
}

/* ============================================================
   Hero — Premier Deal slide overlay & CTA
   ============================================================ */
/* Heavier overlay on deal slides so any text/graphics baked into
   the promo image stay legible behind the caption. */
.hero--deal-active .hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(45,27,61,0.93) 0%,
      rgba(45,27,61,0.78) 40%,
      rgba(45,27,61,0.45) 70%,
      rgba(45,27,61,0.25) 100%
    ),
    linear-gradient(
      0deg,
      rgba(45,27,61,0.75) 0%,
      transparent 55%
    );
}

/* Hide the standard "Schedule Evaluation / Our Services" buttons when a
   deal slide is active — the deal caption ships its own CTAs. */
.hero--deal-active .hero__actions {
  display: none !important;
}

/* Deal-specific eyebrow accent — gold/plum gradient pill */
.hero__caption--deal .hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--plum, #783c64), var(--aubergine, #48233c));
  color: #fff;
  border-radius: 999px;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(72, 35, 60, 0.35);
}

.hero__caption--deal em {
  font-style: italic;
}

.hero__deal-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__deal-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__deal-cta .btn svg {
  width: 18px;
  height: 18px;
}

/* Fallback gradient bg if a deal has no image uploaded yet */
.hero__bg--gradient {
  background:
    radial-gradient(circle at 30% 30%, rgba(180, 140, 50, 0.4), transparent 55%),
    linear-gradient(135deg, #6b2f55 0%, #3d1d33 100%);
}

@media (max-width: 768px) {
  .hero__deal-cta { gap: 10px; margin-top: 22px; }
}
