/* ============================================================
   BLU INDIGO SPA & WELLNESS — HOMEPAGE STYLESHEET
   Design System: Navy Deep + Gold + Cream
   ============================================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --navy-deep:    #0d1b3e;
  --navy-mid:     #1a2d5a;
  --navy-light:   #2a4580;
  --indigo:       #3d5a99;
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --gold-hover:   #b8942c;
  --cream:        #f9f5f0;
  --cream-warm:   #f2ece3;
  --white:        #ffffff;
  --text-dark:    #1a1a2e;
  --text-mid:     #3d3d5c;
  --text-light:   rgba(255,255,255,0.85);
  --text-muted:   rgba(255,255,255,0.55);

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-card:  0 8px 40px rgba(13,27,62,0.12);
  --shadow-hover: 0 16px 60px rgba(13,27,62,0.22);
  --shadow-gold:  0 4px 24px rgba(201,168,76,0.35);

  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.2s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
sup { font-size: 0.55em; vertical-align: super; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* === UTILITY === */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}
.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border-radius: 50px;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   SECTION LABELS & TITLES
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light {
  color: var(--gold-light);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
}
.section-title.light {
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light em {
  color: var(--gold-light);
}
.section-intro {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  transition: var(--transition);
}
.site-header.scrolled .nav-container {
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(20px);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.site-header.top .nav-container {
  background: linear-gradient(180deg, rgba(13,27,62,0.8) 0%, transparent 100%);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.15em;
  flex-wrap: nowrap;
}
.logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}
.footer-logo-img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}
.logo-blu {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.logo-sep {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-small {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-left: 0.5rem;
  align-self: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-phone {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}
.nav-phone:hover { color: var(--gold-light); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(13,27,62,0.98);
  backdrop-filter: blur(20px);
  padding: 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.open {
  max-height: calc(100vh - 80px);
  padding: 2rem;
  visibility: visible;
}
.mobile-link {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition-fast);
}
.mobile-link:hover { color: var(--gold-light); }
.mobile-cta { margin-top: 0.5rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,62,0.88) 0%,
    rgba(13,27,62,0.70) 50%,
    rgba(13,27,62,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  max-width: 700px;
  margin-left: max(2rem, calc((100vw - 1200px)/2));
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s ease 0.25s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.tm {
  font-size: 0.4em;
  color: var(--gold-light);
  opacity: 0.8;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-body em { color: var(--gold-light); font-style: italic; }
.hero-statement {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-statement p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.hero-statement-bold {
  color: var(--white) !important;
  font-size: 1.1rem !important;
  font-weight: 500;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.75s both;
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  animation: fadeInUp 0.8s ease 0.9s both;
}
.gem { font-style: normal; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease infinite;
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-deep);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 2rem;
}
.trust-icon { color: var(--gold); font-size: 0.7rem; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  background: var(--cream);
  padding: 7rem 0;
}
.problem-section .section-container { text-align: center; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.3);
}
.problem-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.2));
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.problem-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 400;
}
.problem-answer {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  padding-top: 2rem;
}
.answer-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.problem-answer p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.problem-answer strong { color: var(--navy-deep); }

/* ============================================================
   DIFFERENCE SECTION
   ============================================================ */
.difference-section {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 60%, #1e3464 100%);
  padding: 8rem 0;
  overflow: hidden;
}
.difference-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.approach-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.list-dot { color: var(--gold); font-size: 0.7rem; }
.difference-body {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.difference-close {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.difference-close em { color: var(--gold-light); }
.difference-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.diff-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  position: relative;
  transition: var(--transition);
}
.diff-card:hover { background: rgba(255,255,255,0.08); }
.diff-card-featured {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 40px rgba(201,168,76,0.12);
}
.diff-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.diff-card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.1);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.diff-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.diff-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   TREATMENTS SECTION
   ============================================================ */
.treatments-section {
  background: var(--cream-warm);
  padding: 8rem 0;
}
.treatments-section .section-container { text-align: center; }
.treatments-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
  text-align: left;
}
.treatments-row {
  display: grid;
  gap: 1.8rem;
}
.treatments-row-3 {
  grid-template-columns: repeat(3, 1fr);
}
.treatments-row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: calc((100% - 1.8rem) * 2 / 3 + 1.8rem / 3 * 2);
  margin: 0 auto;
  width: calc(66.666% + 0.6rem);
}
.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,168,76,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.25);
}
.treatment-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.treatment-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.treatment-card:hover .treatment-img { transform: scale(1.06); }
.treatment-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.5) 0%, transparent 60%);
}
.treatment-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.treatment-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.treatment-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.treatment-name span {
  font-style: italic;
  color: var(--indigo);
  display: block;
  font-size: 0.95em;
}
.treatment-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}
.treatment-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  transition: var(--transition-fast);
  align-self: flex-start;
}
.treatment-link:hover {
  color: var(--gold-hover);
  letter-spacing: 0.15em;
}
.treatments-cta-row {
  text-align: center;
  margin-top: 1rem;
}


/* ============================================================
   WELLNESS SECTION
   ============================================================ */
.wellness-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.wellness-bg-img {
  position: absolute;
  inset: 0;
}
.wellness-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.wellness-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,27,62,0.95) 0%,
    rgba(13,27,62,0.85) 50%,
    rgba(13,27,62,0.6) 100%
  );
}
.wellness-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.wellness-body {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.wellness-close {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.2rem;
}
.wellness-close em { color: var(--gold-light); }
.wellness-right {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.wellness-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  transition: var(--transition);
}
.wellness-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,168,76,0.3);
  transform: translateX(4px);
}
.wellness-icon {
  font-size: 1.6rem;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}
.wellness-item h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.wellness-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   DR. HELEN SECTION
   ============================================================ */
.dr-section {
  background: var(--cream);
  padding: 8rem 0;
}
.dr-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.dr-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(13,27,62,0.18);
}
.dr-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.dr-credential-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.92) 0%, transparent 100%);
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
}
.cred-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.cred-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.dr-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  border: none;
  padding: 0;
  margin-bottom: 1.8rem;
  line-height: 1.4;
}
.dr-body {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.dr-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
}
.pillar span { font-size: 1rem; }

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations-section {
  background: var(--navy-deep);
  padding: 8rem 0;
}
.locations-section .section-label { color: var(--gold-light); }
.locations-section .section-title { color: var(--white); }
.locations-section .section-title em { color: var(--gold-light); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.location-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.location-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.location-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.location-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.location-card:hover .location-img { transform: scale(1.04); }
.location-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.6) 0%, transparent 60%);
}
.location-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}
.location-badge-alt {
  background: rgba(255,255,255,0.9);
  color: var(--navy-mid);
}
.location-body {
  padding: 2rem;
}
.loc-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.location-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.location-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.location-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.location-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.loc-tag {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}
.location-link:hover { color: var(--gold-light); }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: var(--cream-warm);
  padding: 8rem 0;
}
.testimonials-section .section-container { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
  text-align: left;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.25);
}
.testimonial-featured {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-color: rgba(201,168,76,0.3);
}
.testimonial-featured .testimonial-quote { color: rgba(255,255,255,0.85); }
.testimonial-featured .author-name { color: var(--white); }
.testimonial-featured .author-source { color: rgba(255,255,255,0.5); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy-light), var(--indigo));
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.15rem;
}
.author-source {
  font-size: 0.75rem;
  color: var(--text-mid);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.google-stars { color: var(--gold); font-size: 1rem; }
.google-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  background: linear-gradient(145deg, var(--navy-deep), #0a1428 50%, #151f45);
  padding: 9rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,90,153,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.cta-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
.cta-sub { margin-top: 1.5rem; }
.cta-phone-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}
.cta-phone-link:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060d1f;
  padding-top: 5rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
  line-height: 1.5;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.contact-item a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}
.contact-item a:hover { color: var(--gold-light); }
.contact-item small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer-cta { margin-top: 1.2rem; font-size: 0.8rem; padding: 0.65rem 1.5rem; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .btn-nav { display: none; }
  .main-nav { gap: 1.2rem; }
  .nav-container { padding: 1rem 1.5rem; }
  .difference-inner { grid-template-columns: 1fr; gap: 3rem; }
  .wellness-content { grid-template-columns: 1fr; gap: 3rem; }
  .dr-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dr-image-col { max-width: 400px; margin: 0 auto; }
  .treatments-row-3 { grid-template-columns: repeat(2, 1fr); }
  .treatments-row-2 { grid-template-columns: repeat(2, 1fr); width: 100%; max-width: 100%; margin: 0; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.mobile-menu {
  display: none;
}
@media (max-width: 768px) {
  .nav-container { padding: 1rem 1.2rem; }
  .logo-small { display: none; }
  .logo-blu, .logo-sep { font-size: 1.4rem; }
  .mobile-menu { display: flex; }
  .main-nav { display: none; }
  .btn-nav { display: none; }
  .btn { white-space: normal; text-align: center; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .difference-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .treatments-row-3 { grid-template-columns: 1fr; }
  .treatments-row-2 { grid-template-columns: 1fr; width: 100%; max-width: 100%; margin: 0; }
  .trust-container { flex-direction: column; gap: 0.8rem; }
  .trust-divider { display: none; }
  .trust-item { padding: 0.3rem 1rem; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-scroll { display: none; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 1.9rem; }
}
