/* ============================================================
   FELIX VIDA WELLNESS — Master Stylesheet
   Design System: Elevated Neutral Luxury + Medical Credibility

   TYPOGRAPHY:
   - Display & Headings: DM Serif Display — elegant serif for all headings
   - Body/UI: Josefin Sans — clean geometric sans, wide tracking

   COLOR SYSTEM:
   - Turquoise (#1BA4A0) — informational accent: icons, labels, UI elements
   - Terracotta (#C05828) — action accent: CTAs, active states, urgency
   - Neutral base: warm espresso/tan/white — elevated, no cool grays
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Action Accent — Terracotta (dark orange, elevated) */
  --color-sand: #C05828;           /* Burnt terracotta — CTAs, active nav */
  --color-sand-light: #D9784A;     /* Warm hover state */
  --color-sand-dark: #8A3D18;      /* Deep pressed state */

  /* Informational Accent — Turquoise */
  --color-sage: #1BA4A0;           /* Deep turquoise — icons, labels, accents */
  --color-sage-light: #5CBFBC;     /* Light turquoise — subtle backgrounds */
  --color-sage-dark: #127B78;      /* Dark turquoise — pressed/focus */

  /* Aliases */
  --color-terracotta: #C05828;
  --color-terracotta-light: #D9784A;
  --color-ocean: #1BA4A0;
  --color-ocean-light: #8DD8D6;

  /* Neutrals — white, sand, and rich dark brown (light + airy main palette) */
  --color-white: #FFFFFF;
  --color-warm-white: #FDFAF5;     /* Almost white with warm undertone */
  --color-cream: #F5E8D3;          /* Sandy warm cream */
  --color-light-gray: #EDD9BE;     /* Warm sand light */
  --color-charcoal: #3D1E0F;       /* Rich dark warm brown (not near-black) */
  --color-dark-gray: #5C3420;      /* Warm medium brown — body text */
  --color-medium-gray: #8B6347;    /* Warm caramel — secondary text */

  /* Typography Scale — 1.25 Major Third (optimal for medical/wellness) */
  --font-display: 'Josefin Sans', sans-serif;                 /* Hero H1 / big display headings */
  --font-heading: 'Josefin Sans', sans-serif;                 /* H2, H3, H4 subheadings */
  --font-body: 'Josefin Sans', sans-serif;                  /* Body text */
  --font-accent: 'Josefin Sans', sans-serif;                /* Section labels */
  --font-ui: 'Josefin Sans', sans-serif;                    /* Nav, buttons, UI */

  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */
  --text-7xl: 4.5rem;     /* 72px */

  /* Spacing — 8px grid system */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 900px;
  --max-width-wide: 1400px;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --border-radius-xl: 12px;

  /* Shadows — subtle, warm-toned */
  --shadow-sm: 0 1px 3px rgba(44,44,44,0.06);
  --shadow-md: 0 4px 12px rgba(44,44,44,0.08);
  --shadow-lg: 0 8px 30px rgba(44,44,44,0.1);
  --shadow-xl: 0 16px 50px rgba(44,44,44,0.12);

  /* Transitions — DEIA-inspired smooth easing */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 700ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: clamp(15px, calc(13.5px + 0.3vw), 18px);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-charcoal);
  background-color: var(--color-warm-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-sage);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-sand-dark);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-charcoal);
  letter-spacing: 0.01em;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-6);
}
h2 { font-size: var(--text-4xl); margin-bottom: var(--space-5); }
h3 { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
h4 { font-size: var(--text-xl); margin-bottom: var(--space-3); font-weight: 600; letter-spacing: 0.06em; }

p {
  margin-bottom: var(--space-4);
  color: var(--color-dark-gray);
}

.lead {
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.85;
  color: var(--color-dark-gray);
}

.section-label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-4);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 600;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.section {
  padding: var(--space-24) 0;
}

.section--sm {
  padding: var(--space-16) 0;
}

.section--lg {
  padding: var(--space-32) 0;
}

.section--cream {
  background-color: var(--color-cream);
}

.section--gradient {
  background: linear-gradient(165deg, var(--color-cream) 0%, #ffffff 40%, #e8f4f3 100%);
}

.section--sage {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.section--sage h2,
.section--sage h3,
.section--sage h4 {
  color: var(--color-white);
}

.section--sage p {
  color: rgba(255,255,255,0.85);
}

.section--sand {
  background-color: #a0705c;
  color: var(--color-white);
}

.section--sand > .container > div > h2,
.section--sand > .container > div > h3,
.section--sand .section-title {
  color: var(--color-white);
}

.section--sand > .container > p,
.section--sand > .container > div > p {
  color: rgba(255,255,255,0.85);
}

.section--sand .btn--secondary {
  color: var(--color-white);
  border-color: var(--color-white);
}

.section--sand .btn--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-sand);
}

.section--sand .lead {
  color: rgba(255,255,255,0.8);
}

.section--charcoal {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.section--charcoal h2,
.section--charcoal h3 {
  color: var(--color-white);
}

.section--charcoal p {
  color: rgba(255,255,255,0.75);
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
  align-items: center;
}

.flex--between {
  justify-content: space-between;
}

.flex--center {
  justify-content: center;
}

.flex--column {
  flex-direction: column;
}

/* --- Buttons ---
   CTA Psychology: Rounded corners + warm color = approachability
   (Javier Bargas-Avila, Google UX Research: rounded buttons
    increase click-through 14% in healthcare/wellness) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-sand);
  color: var(--color-white);
  border-color: var(--color-sand);
}

.btn--primary:hover {
  background-color: var(--color-sand-dark);
  border-color: var(--color-sand-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn--secondary:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--sage {
  background-color: var(--color-sage);
  color: var(--color-white);
  border-color: var(--color-sage);
}

.btn--sage:hover {
  background-color: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  border-color: var(--color-white);
}

.btn--white:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--color-sage-dark);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-xs);
  padding: var(--space-2) 0;
  letter-spacing: 0.05em;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
}

.top-bar a:hover {
  color: var(--color-sand-light);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__contact {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.top-bar__social {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.top-bar__social a {
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

/* --- Header / Navigation --- */
.header {
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
}

.header__logo img {
  height: 55px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

.header__logo-text span {
  color: var(--color-sand);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--color-charcoal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-sand);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-sand);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 60%;
}

/* DEIA sibling fade — non-hovered links dim */
.nav:hover .nav__link:not(:hover):not(.btn) {
  opacity: 0.4;
}
.nav__link {
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

/* Dropdown */
.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--color-sage);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: 100;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  border-bottom: 1px solid var(--color-cream);
  transition: all var(--transition-fast);
}

.nav__dropdown a:hover {
  background-color: var(--color-cream);
  color: var(--color-sand-dark);
  padding-left: var(--space-6);
}

.nav__cta {
  margin-left: var(--space-4);
}

.nav__cta--portal {
  margin-left: var(--space-2);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-charcoal);
  margin: 5px 0;
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.70;
  transition: transform 10s linear;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(61,30,15,0.72) 0%,
    rgba(61,30,15,0.40) 55%,
    rgba(61,30,15,0.10) 100%
  );
}


.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--color-white);
}

.hero__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--color-sage);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-7xl);
  font-weight: 600;
  font-style: normal;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero__title em {
  font-style: italic;
  color: var(--color-sand-light);
}

.hero__subtitle {
  font-size: var(--text-xl);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-10);
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* --- Service Cards --- */
.service-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  border-top: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-sage);
}

.service-card__image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(44,44,44,0.3));
}

.service-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-sand);
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}

.service-card__text {
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  flex: 1;
}

.service-card__link {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sand);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card__link:hover {
  gap: var(--space-3);
  color: var(--color-sage);
}

/* --- Supplement Cards (homepage) --- */
.supplement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}

.supplement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e0f0ef;
  border-radius: var(--border-radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.supplement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.supplement-card__link {
  margin-top: auto;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c46b4e;
  transition: color 0.3s ease;
}

.supplement-card:hover .supplement-card__link {
  color: var(--color-sage);
}

@media (max-width: 600px) {
  .supplement-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Value Proposition / Feature Grid (homepage) --- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.value-item {
  padding: 0 var(--space-4);
}

.value-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
}

.value-item__title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  color: var(--color-charcoal);
}

.value-item__text {
  font-size: var(--text-base);
  color: var(--color-medium-gray);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

/* --- Team Divider (about page) --- */
.team-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-8) auto var(--space-12);
  max-width: 300px;
}

.team-divider--wavy {
  color: var(--color-sage);
  opacity: 0.4;
}

.team-divider__svg {
  width: 100%;
  height: 16px;
}

/* --- Footer Disclaimer --- */
.footer__disclaimer {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin-top: var(--space-4);
  margin-bottom: calc(-1 * var(--space-2));
}

/* --- Value Proposition / Alternating Rows (about page) --- */
.values-rows {
  max-width: 900px;
  margin: 0 auto;
}

.values-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-10);
  align-items: center;
  padding: var(--space-10) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.values-row:last-child {
  border-bottom: none;
}

.values-row--reverse {
  direction: rtl;
}

.values-row--reverse > * {
  direction: ltr;
}

.values-row__number {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-sage);
  opacity: 0.85;
  text-align: center;
}

.values-row__title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  color: var(--color-charcoal);
}

.values-row__text {
  font-size: var(--text-base);
  color: var(--color-medium-gray);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

/* --- Trust Bar --- */
.trust-bar {
  background-color: var(--color-warm-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: var(--space-4) 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.trust-bar__item {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.trust-bar__divider {
  color: rgba(0, 0, 0, 0.15);
}

/* --- About / Split Section --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.split__image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-sage);
  border-radius: var(--border-radius-lg);
  z-index: -1;
}
.split__image--no-border::before { display: none; }

.split__content {
  max-width: 520px;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--color-sand);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
}

.testimonial-card__text {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-charcoal);
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-dark-gray);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.testimonial-card__quote {
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-cream);
  line-height: 1;
  pointer-events: none;
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: var(--space-24) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,30,15,0.90) 0%,
    rgba(61,30,15,0.82) 100%
  );
}


.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner__content h2 {
  color: var(--color-white);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
}

.cta-banner__content p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* --- Team Section --- */
.team-card {
  text-align: center;
}

.team-card__image {
  width: 280px;
  height: 340px;
  margin: 0 auto var(--space-6);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.team-card__title {
  font-size: var(--text-sm);
  color: var(--color-sand);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--color-medium-gray);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* --- Conditions / Tag List --- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.tag-list__item {
  padding: var(--space-2) var(--space-5);
  background-color: var(--color-cream);
  border-radius: 50px;
  font-size: var(--text-sm);
  color: var(--color-dark-gray);
  transition: all var(--transition-fast);
}

.tag-list__item:hover {
  background-color: var(--color-sand);
  color: var(--color-white);
}

/* --- FAQ Accordion --- */
.accordion {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--color-light-gray);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

.accordion__trigger:hover {
  color: var(--color-sage);
}

.accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: var(--space-4);
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: var(--color-sage);
  transition: transform var(--transition-base);
}

.accordion__icon::before {
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item.active .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion__content__inner {
  padding: 0 0 var(--space-6) 0;
  font-size: var(--text-base);
  color: var(--color-dark-gray);
  line-height: 1.7;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-4);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(27,164,160,0.12);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border: 2px solid var(--color-sand);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: var(--space-4);
  right: -30px;
  background-color: var(--color-sand);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-10);
  transform: rotate(45deg);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.pricing-card__duration {
  font-size: var(--text-sm);
  color: var(--color-medium-gray);
  margin-bottom: var(--space-4);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: var(--space-6);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--space-8);
}

.pricing-card__features li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-dark-gray);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--color-sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-sage-dark);
  color: rgba(255,255,255,0.85);
  padding: var(--space-20) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__brand p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-4);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.footer__links li {
  margin-bottom: var(--space-3);
}

.footer__links a {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-sage-light);
}

/* DEIA sibling fade — non-hovered footer links dim */
.footer__links:hover a:not(:hover) {
  opacity: 0.4;
}
.footer__links a {
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.footer__contact li {
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background-color: var(--color-sand);
  border-color: var(--color-sand);
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}

.footer__bottom a {
  color: rgba(255,255,255,0.75);
}

.footer__bottom a:hover {
  color: var(--color-sand-light);
}

/* --- Page Header (Interior pages) --- */
.page-header {
  background-color: #a0705c;
  padding: var(--space-20) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(27,164,160,0.07);
}

/* Turquoise accent line at bottom of page header */
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--color-sage);
}

.page-header h1 {
  color: var(--color-white);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  max-width: 800px;
  margin: 0 auto;
}

.page-header .breadcrumb {
  display: none;
}

.page-header .breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb a:hover {
  color: var(--color-sand-light);
}

/* --- Service Detail Page --- */
.service-detail__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.service-detail__sidebar {
}

/* Collapsible Treatment Details */
.treatment-details {
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-3);
}

.treatment-details summary {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-charcoal);
  padding: var(--space-4) var(--space-6);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.treatment-details summary::-webkit-details-marker { display: none; }

.treatment-details summary::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--color-sage);
  font-weight: 300;
  transition: transform 0.2s ease;
}

.treatment-details[open] summary::after {
  content: '\2212';
}

.treatment-details summary:hover {
  background: rgba(27, 164, 160, 0.04);
}

.treatment-details > ul,
.treatment-details > p,
.treatment-details > h4 {
  padding: 0 var(--space-6) var(--space-4);
}

.treatment-details > ul {
  padding-bottom: var(--space-6);
}

.treatment-details li {
  padding: var(--space-2) 0;
  color: var(--color-dark-gray);
}

.sidebar-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-6);
}

.sidebar-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-light-gray);
}

.sidebar-card ul li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-cream);
  font-size: var(--text-sm);
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card ul li a {
  color: var(--color-dark-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-card ul li a:hover {
  color: var(--color-sand);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  flex-shrink: 0;
}

/* Contact info labels — Josefin Sans UI style, not serif */
.contact-info__text h4 {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.contact-info__text p {
  font-size: var(--text-base);
  color: var(--color-medium-gray);
  margin-bottom: 0;
}

/* --- Map --- */
.map-container {
  width: 100%;
  height: 480px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Full-width map strip below contact grid */
.map-strip {
  margin-top: var(--space-16);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 460px;
}

.map-strip iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --- Divider Decoration --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background-color: var(--color-sage);
}

.divider__icon {
  color: var(--color-sage);
  font-size: var(--text-lg);
}

/* --- Animations (Intersection Observer triggered) --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay utilities — apply to grid items, card rows */
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }

/* Hero stagger — CSS keyframe animation on page load (no JS needed) */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__content .hero__label {
  opacity: 0;
  animation: heroReveal 0.75s var(--ease-out-expo) 0.1s forwards;
}
.hero__content .hero__title {
  opacity: 0;
  animation: heroReveal 0.85s var(--ease-out-expo) 0.25s forwards;
}
.hero__content .hero__subtitle {
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out-expo) 0.45s forwards;
}
.hero__content .hero__actions {
  opacity: 0;
  animation: heroReveal 0.75s var(--ease-out-expo) 0.65s forwards;
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-sand);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--color-sand-dark);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1024px) {
  h1 { font-size: var(--text-5xl); }
  .hero__title { font-size: var(--text-5xl); }
  .section-title { font-size: var(--text-4xl); }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: var(--space-10); }
}

@media (max-width: 768px) {
  :root {
    --space-24: 4rem;
    --space-32: 5rem;
  }

  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  .hero__title { font-size: var(--text-4xl); }
  .section-title { font-size: var(--text-3xl); }
  .cta-banner__content h2 { font-size: var(--text-3xl); }
  .page-header h1 { font-size: var(--text-4xl); }

  .mobile-toggle { display: block; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav__link {
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-6);
  }

  .nav__item .nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: var(--color-cream);
  }

  .nav__item.dropdown-open .nav__dropdown {
    display: block;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-3);
    width: calc(100% - var(--space-12));
    text-align: center;
  }

  .nav__cta--portal {
    margin-left: 0;
    order: -1;
  }

  .top-bar { display: none; }
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
  .service-card__title { min-height: 0; }
  .values-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-8) 0;
  }
  .values-row--reverse {
    direction: ltr;
  }
  .values-row__number {
    font-size: 4rem;
  }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .split--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
  .hero { min-height: 70vh; }
  .hero__actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__title { font-size: var(--text-3xl); }
  .value-grid { grid-template-columns: 1fr; }
  .container { padding: 0 var(--space-4); }
  .pricing-accordion__body > div { flex-wrap: wrap; gap: var(--space-1); }
  .pricing-accordion__header h3 { font-size: var(--text-lg); }
  .membership-card__price { font-size: var(--text-3xl); }
}

/* Disable sibling fade on mobile (touch has no hover state) */
@media (max-width: 768px) {
  .nav:hover .nav__link:not(:hover):not(.btn) { opacity: 1; }
  .footer__links:hover a:not(:hover) { opacity: 1; }
}

/* ============================================================
   CUSTOM SCROLLBAR — refined polished detail
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb {
  background: var(--color-sage-light);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-sage); }

/* ============================================================
   TURQUOISE BUTTON VARIANT
   ============================================================ */
.btn--sage {
  background-color: var(--color-sage);
  color: var(--color-white);
  border-color: var(--color-sage);
}
.btn--sage:hover {
  background-color: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline-sage {
  background-color: transparent;
  color: var(--color-sage);
  border-color: var(--color-sage);
}
.btn--outline-sage:hover {
  background-color: var(--color-sage);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* ============================================================
   TRUST BAR — services page social proof strip
   ============================================================ */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
  padding: var(--space-4) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.trust-bar span {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
}
@media (max-width: 600px) {
  .trust-bar { gap: var(--space-4); padding: var(--space-3) var(--space-4); }
  .trust-bar span { font-size: 0.65rem; }
}

/* ============================================================
   SERVICE ANCHOR NAV — quick-jump links
   ============================================================ */
.service-anchors {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
  margin-top: var(--space-6);
  padding: var(--space-5) 0;
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  position: sticky;
  top: 0;
  z-index: 90;
}
.service-anchors a {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius);
  color: var(--color-dark-gray);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.service-anchors a:hover {
  color: var(--color-sage);
  border-bottom-color: var(--color-sage);
  background-color: rgba(27, 164, 160, 0.06);
}
@media (max-width: 600px) {
  .service-anchors { gap: var(--space-4); padding: var(--space-3) var(--space-4); }
  .service-anchors a { font-size: 0.65rem; letter-spacing: 0.1em; }
}

/* ============================================================
   PRICING HINT — "Starting at" labels
   ============================================================ */
.pricing-hint {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-sage);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}
.pricing-hint a {
  color: var(--color-sand);
  text-decoration: none;
  margin-left: var(--space-3);
  transition: color 0.3s ease;
}
.pricing-hint a:hover {
  color: var(--color-sage);
}

/* ============================================================
   MEMBERSHIP CARDS — pricing page
   ============================================================ */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.membership-card {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border: 1px solid var(--color-light-gray);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.membership-card--featured {
  border-color: var(--color-sage);
  box-shadow: 0 4px 20px rgba(27, 164, 160, 0.15);
  position: relative;
}
.membership-card--vip {
  border: 2px solid var(--color-sage);
  position: relative;
  box-shadow: 0 4px 24px rgba(27,164,160,0.12);
}
.membership-card--vip .membership-card__name {
  color: var(--color-sage);
}
.membership-card--vip .membership-card__price {
  color: var(--color-sage);
}
.membership-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-sage);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: 100px;
  white-space: nowrap;
}
.membership-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-espresso);
  margin-bottom: var(--space-1);
}
.membership-card__period {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-medium-gray);
  margin-bottom: var(--space-6);
}
.membership-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  text-align: left;
  flex-grow: 1;
}
.membership-card li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-dark-gray);
  border-bottom: 1px solid var(--color-light-gray);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}
.membership-card li:last-child { border-bottom: none; }
.membership-card li i {
  color: var(--color-sage);
  font-size: 0.7rem;
  margin-top: 0.35em;
  flex-shrink: 0;
}

/* Package Cards */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.package-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-light-gray);
  text-align: center;
}
.package-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-charcoal);
  margin-bottom: var(--space-3);
}
.package-card__detail {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-dark-gray);
  margin-bottom: var(--space-2);
}
.package-card__note {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-sage);
  font-weight: 600;
  letter-spacing: 0.05em;
}
/* ============================================================
   PRICING ACCORDION — collapsible service categories
   ============================================================ */
.pricing-accordion {
  margin-bottom: var(--space-6);
  border-bottom: 2px solid var(--color-sand);
}
.pricing-accordion summary {
  list-style: none;
}
.pricing-accordion summary::-webkit-details-marker {
  display: none;
}
.pricing-accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  cursor: pointer;
  user-select: none;
}
.pricing-accordion__header h3 {
  margin: 0;
  font-size: var(--text-xl);
}
.pricing-accordion__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: var(--space-4);
}
.pricing-accordion__icon::before,
.pricing-accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--color-sage);
  border-radius: 1px;
  transition: transform 0.3s ease;
}
.pricing-accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.pricing-accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.pricing-accordion[open] .pricing-accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.pricing-accordion__body {
  padding: 0 0 var(--space-6);
}

/* Coming Soon visual treatment */
.coming-soon-section {
  position: relative;
  opacity: 0.75;
}
.coming-soon-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.15);
  pointer-events: none;
  border-radius: var(--border-radius-lg);
}

.package-card__cta {
  display: inline-block;
  margin-top: var(--space-4);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.package-card__cta:hover {
  opacity: 0.7;
}
.package-card__savings {
  display: inline-block;
  background: #e0f0ef;
  color: var(--color-sage);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  margin-bottom: var(--space-3);
}

/* Package card category accents */
.package-card--glp1 {
  border-top: 3px solid var(--color-sage);
}
.package-card--aesthetics {
  border-top: 3px solid var(--color-terracotta);
}
.package-card--iv {
  border-top: 3px solid #5B8FA8;
}

@media (max-width: 1024px) {
  .membership-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .package-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .service-anchors { overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; padding-left: var(--space-4); padding-right: var(--space-4); }
  .service-anchors a { white-space: nowrap; flex-shrink: 0; }
  .team-divider { max-width: 200px; }
  .footer__disclaimer { margin-top: var(--space-3); }
}

/* CTA Contact Row */
.cta-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.cta-contact-row a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.cta-contact-row a:hover { color: var(--color-white); }
.cta-contact-row span { color: rgba(255,255,255,0.3); }
