/*
Theme Name:  Regen Provider Guide
Theme URI:   https://regenproviderguide.com
Description: Premium editorial directory theme for regenerative medicine providers. Warm cream palette, dark green accents, Playfair Display headings.
Version:     1.0.0
Author:      Regen Provider Guide
Author URI:  https://regenproviderguide.com
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: regen-provider-guide
Tags:        medical, directory, custom-colors, custom-logo, custom-menu, featured-images
*/

/* ══════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   Both naming conventions are defined so all page
   templates work without modification.
══════════════════════════════════════════════════ */
:root {
  /* Core palette */
  --cream:       #F6F0E4;
  --cream-dark:  #EDE5D0;

  /* Green scale — long names (homepage) */
  --green-dark:  #1C3D2B;
  --green-mid:   #2E6647;
  --green-light: #4A8C62;
  --green-pale:  #E8F0EB;

  /* Green scale — short names (profile / booking) */
  --gd: #1C3D2B;
  --gm: #2E6647;
  --gl: #4A8C62;
  --gp: #E8F0EB;

  /* Gold */
  --gold:       #B8860B;
  --gold-light: #D4A843;
  --go:         #D4A843;
  --go-light:   #FDF3D8;

  /* Text — long names */
  --text-dark:  #1A1A1A;
  --text-mid:   #3D3D3D;
  --text-muted: #6B6B6B;

  /* Text — short names */
  --t1: #1A1A1A;
  --t2: #3D3D3D;
  --t3: #6B6B6B;

  /* Misc */
  --white:  #FFFFFF;
  --border: rgba(28,61,43,0.15);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  min-height: 100vh;
}

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

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 64px;
  z-index: 100;
}

/* Home page: transparent, absolute over hero */
.site-nav--home {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 24px 64px;
  background: transparent;
}

/* All other pages: sticky white bar */
.site-nav--sticky {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--green-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 20px; height: 20px; }

.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px; font-weight: 600;
  color: var(--green-dark);
  letter-spacing: -0.01em; line-height: 1.2;
}

.nav-logo-sub {
  font-size: 10px; font-weight: 500;
  color: var(--green-light);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex; align-items: center;
  gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-dark); }
.nav-cta {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500 !important;
  font-size: 13px !important;
}

/* ══════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--cream);
  min-height: 680px;
  display: flex; align-items: stretch;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(28,61,43,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-arc { position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; overflow: hidden; }
.hero-arc svg { width: 100%; height: 100%; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  padding: 140px 64px 120px;
  gap: 64px; align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: var(--green-mid);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; }

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px; font-weight: 700;
  line-height: 1.1; color: var(--green-dark);
  letter-spacing: -0.02em; margin-bottom: 22px;
}
.hero-headline em { font-style: italic; color: var(--green-mid); }

.hero-subtext {
  font-size: 17px; font-weight: 400;
  line-height: 1.7; color: var(--text-mid);
  max-width: 440px; margin-bottom: 36px;
}

.hero-buttons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dark); color: var(--white);
  font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green-dark);
  font-size: 15px; font-weight: 500;
  padding: 14px 24px; border-radius: 8px;
  border: 1.5px solid rgba(28,61,43,0.3);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--green-dark); background: rgba(28,61,43,0.04); transform: translateY(-1px); }
.btn-secondary svg { width: 16px; height: 16px; }

.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 28px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--cream); margin-left: -8px; overflow: hidden;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.hero-trust-text strong { color: var(--text-mid); font-weight: 600; }

.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-frame { position: relative; width: 100%; max-width: 520px; }
.hero-image-bg {
  position: absolute; top: -20px; right: -20px;
  width: calc(100% - 20px); height: calc(100% - 20px);
  background: var(--green-pale); border-radius: 20px 20px 80px 20px;
}
.hero-image-container {
  position: relative; width: 100%;
  border-radius: 16px 16px 72px 16px;
  overflow: hidden; aspect-ratio: 4/5;
  background: var(--cream-dark);
}
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute; bottom: 28px; left: -28px;
  background: var(--white); border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(28,61,43,0.12);
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.hero-badge-icon {
  width: 40px; height: 40px; background: var(--green-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge-icon svg { width: 22px; height: 22px; }
.hero-badge-label { font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-badge-value { font-size: 20px; font-weight: 700; color: var(--green-dark); font-family: 'Playfair Display', serif; line-height: 1.1; }

.hero-badge-top {
  position: absolute; top: 28px; right: -20px;
  background: var(--green-dark); border-radius: 10px;
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.hero-badge-top-dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; }
.hero-badge-top-text { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.9); white-space: nowrap; }

/* ══════════════════════════════════════════════════
   SEARCH BAR
══════════════════════════════════════════════════ */
.search-section {
  position: relative; z-index: 5;
  margin-top: -56px;
  padding: 0 64px 80px;
  max-width: 1280px;
  margin-left: auto; margin-right: auto;
}
.search-box {
  background: var(--white); border-radius: 16px;
  box-shadow: 0 16px 64px rgba(28,61,43,0.12), 0 4px 16px rgba(28,61,43,0.06);
  padding: 32px 36px;
}
.search-box-label { font-size: 11px; font-weight: 600; color: var(--green-mid); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.search-fields {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  border: 1.5px solid rgba(28,61,43,0.15); border-radius: 10px; overflow: hidden;
}
.search-field {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 20px;
  border-right: 1px solid rgba(28,61,43,0.1);
  background: transparent; cursor: pointer;
  transition: background 0.15s;
}
.search-field:last-of-type { border-right: none; }
.search-field:hover { background: rgba(28,61,43,0.02); }
.search-field-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark); }
.search-field-input { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-muted); background: none; border: none; outline: none; width: 100%; }
.search-field-icon { display: flex; align-items: center; gap: 6px; }
.search-field-icon svg { width: 14px; height: 14px; color: var(--green-light); flex-shrink: 0; }
.search-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green-dark); color: var(--white);
  font-size: 15px; font-weight: 500; padding: 0 32px;
  border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.search-btn:hover { background: var(--green-mid); }
.search-btn svg { width: 18px; height: 18px; }
.search-tags { display: flex; align-items: center; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.search-tags-label { font-size: 12px; color: var(--text-muted); }
.search-tag {
  font-size: 12px; color: var(--green-mid); background: var(--green-pale);
  border-radius: 20px; padding: 4px 12px; font-weight: 500; cursor: pointer;
  transition: background 0.15s;
}
.search-tag:hover { background: #d0e8d8; }

/* ══════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-top: 1px solid rgba(28,61,43,0.08);
  border-bottom: 1px solid rgba(28,61,43,0.08);
  padding: 36px 64px;
}
.stats-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(28,61,43,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px; font-weight: 700; color: var(--green-dark);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px;
}
.stat-number span { color: var(--gold-light); }
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.stat-label strong { display: block; font-size: 12px; font-weight: 600; color: var(--green-mid); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }

/* ══════════════════════════════════════════════════
   SHARED SECTION HEADERS
══════════════════════════════════════════════════ */
.section-header {
  display: grid; grid-template-columns: 1fr auto;
  align-items: flex-end; margin-bottom: 52px; gap: 32px;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: var(--green-mid);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
}
.section-eyebrow-line { display: inline-block; width: 28px; height: 2px; background: var(--gold-light); border-radius: 2px; }
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px; font-weight: 700; color: var(--green-dark);
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px;
}
.section-subtext { font-size: 16px; line-height: 1.7; color: var(--text-muted); max-width: 480px; }
.section-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--green-dark);
  border-bottom: 1.5px solid rgba(28,61,43,0.3); padding-bottom: 2px;
  white-space: nowrap; flex-shrink: 0; transition: border-color 0.2s;
}
.section-link:hover { border-color: var(--green-dark); }
.section-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════
   BROWSE TREATMENTS
══════════════════════════════════════════════════ */
.browse-section { background: var(--cream); padding: 96px 64px; }
.browse-inner { max-width: 1280px; margin: 0 auto; }
.treatment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.treatment-card {
  background: var(--white); border-radius: 14px; padding: 28px 24px;
  border: 1px solid rgba(28,61,43,0.08);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.treatment-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green-dark); transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(28,61,43,0.1); border-color: rgba(28,61,43,0.15); }
.treatment-card:hover::after { transform: scaleX(1); }
.treatment-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.treatment-icon svg { width: 24px; height: 24px; }
.treatment-name { font-family: 'Playfair Display', Georgia, serif; font-size: 17px; font-weight: 600; color: var(--green-dark); line-height: 1.3; }
.treatment-desc { font-size: 13px; line-height: 1.6; color: var(--text-muted); flex: 1; }
.treatment-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; padding-top: 14px; border-top: 1px solid rgba(28,61,43,0.08); }
.treatment-count { font-size: 12px; font-weight: 600; color: var(--green-mid); }
.treatment-arrow { width: 28px; height: 28px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.treatment-card:hover .treatment-arrow { background: var(--green-dark); transform: translate(2px, -2px); }
.treatment-arrow svg { width: 12px; height: 12px; }
.treatment-card:hover .treatment-arrow svg { stroke: white; }

/* ══════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════ */
.hiw-section { background: var(--green-dark); padding: 96px 64px; position: relative; overflow: hidden; }
.hiw-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.hiw-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.hiw-headline { font-family: 'Playfair Display', Georgia, serif; font-size: 40px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; }
.hiw-headline em { font-style: italic; color: var(--gold-light); }
.hiw-subtext { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 480px; margin: 0 auto; }
.hiw-steps { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.hiw-steps::before { content: ''; position: absolute; top: 36px; left: calc(16.6% + 36px); right: calc(16.6% + 36px); height: 1px; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0px, rgba(255,255,255,0.2) 6px, transparent 6px, transparent 14px); }
.hiw-step { padding: 0 40px; display: flex; flex-direction: column; gap: 20px; text-align: center; align-items: center; border-right: 1px solid rgba(255,255,255,0.06); }
.hiw-step:last-child { border-right: none; }
.hiw-step-num { width: 72px; height: 72px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; background: rgba(255,255,255,0.04); }
.hiw-step-num-inner { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hiw-step-icon { position: absolute; bottom: -4px; right: -4px; width: 24px; height: 24px; background: var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hiw-step-icon svg { width: 12px; height: 12px; }
.hiw-step-title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--white); line-height: 1.25; }
.hiw-step-text { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.7; max-width: 280px; }
.hiw-step-detail { display: flex; flex-direction: column; gap: 8px; width: 100%; background: rgba(255,255,255,0.05); border-radius: 10px; padding: 16px 18px; border: 1px solid rgba(255,255,255,0.07); text-align: left; }
.hiw-step-detail-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.55); }
.hiw-step-detail-dot { width: 5px; height: 5px; background: var(--gold-light); border-radius: 50%; flex-shrink: 0; opacity: 0.7; }
.hiw-cta { text-align: center; margin-top: 60px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.hiw-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-light); color: var(--green-dark); font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 8px; transition: background 0.2s, transform 0.15s; }
.hiw-btn-primary:hover { background: #e8b84d; transform: translateY(-1px); }
.hiw-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.75); font-size: 15px; font-weight: 500; padding: 14px 24px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.18); transition: border-color 0.2s, color 0.2s; }
.hiw-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; }

/* ══════════════════════════════════════════════════
   FEATURED PROVIDERS (homepage)
══════════════════════════════════════════════════ */
.providers-section { background: var(--white); padding: 96px 64px; }
.providers-inner { max-width: 1280px; margin: 0 auto; }
.providers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.provider-card { background: var(--white); border-radius: 18px; border: 1px solid rgba(28,61,43,0.1); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.22s, box-shadow 0.22s; position: relative; }
.provider-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(28,61,43,0.11); }
.provider-card--featured { border-color: var(--green-mid); box-shadow: 0 0 0 1px var(--green-mid); }
.provider-card--featured:hover { box-shadow: 0 20px 56px rgba(28,61,43,0.16), 0 0 0 1px var(--green-mid); }
.provider-ribbon { position: absolute; top: 18px; right: -1px; background: var(--green-dark); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px 5px 12px; border-radius: 4px 0 0 4px; display: flex; align-items: center; gap: 5px; z-index: 2; }
.provider-header { padding: 28px 24px 20px; display: flex; align-items: flex-start; gap: 16px; border-bottom: 1px solid rgba(28,61,43,0.07); }
.provider-avatar { width: 68px; height: 68px; border-radius: 50%; overflow: hidden; flex-shrink: 0; position: relative; }
.provider-avatar svg { width: 100%; height: 100%; }
.provider-verified { position: absolute; bottom: 0; right: 0; width: 20px; height: 20px; background: var(--green-dark); border-radius: 50%; border: 2px solid var(--white); display: flex; align-items: center; justify-content: center; }
.provider-verified svg { width: 10px; height: 10px; }
.provider-name-block { flex: 1; min-width: 0; }
.provider-name { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--green-dark); letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 3px; }
.provider-creds { font-size: 11px; font-weight: 600; color: var(--green-mid); letter-spacing: 0.04em; margin-bottom: 8px; }
.provider-rating { display: flex; align-items: center; gap: 5px; }
.provider-stars { display: flex; gap: 2px; }
.provider-stars svg { width: 12px; height: 12px; }
.provider-rating-num { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.provider-rating-count { font-size: 12px; color: var(--text-muted); }
.provider-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.provider-specialty { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--green-dark); }
.provider-specialty svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--green-mid); }
.provider-meta-row { display: flex; align-items: center; gap: 16px; }
.provider-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); }
.provider-meta-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.provider-bio { font-size: 13px; line-height: 1.65; color: var(--text-muted); }
.provider-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.provider-tag { font-size: 11px; font-weight: 500; color: var(--green-dark); background: var(--green-pale); border-radius: 20px; padding: 4px 11px; }
.provider-tag--gold { color: #7A5500; background: #FDF3D8; }
.provider-stats { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--cream); border-radius: 10px; overflow: hidden; }
.provider-stat { padding: 10px 12px; text-align: center; border-right: 1px solid rgba(28,61,43,0.08); }
.provider-stat:last-child { border-right: none; }
.provider-stat-n { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; font-weight: 700; color: var(--green-dark); line-height: 1.1; }
.provider-stat-l { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.provider-footer { padding: 16px 24px 22px; display: flex; align-items: center; gap: 10px; border-top: 1px solid rgba(28,61,43,0.07); }
.provider-btn-primary { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--green-dark); color: var(--white); font-size: 13px; font-weight: 500; padding: 11px 16px; border-radius: 8px; transition: background 0.2s; }
.provider-btn-primary:hover { background: var(--green-mid); }
.provider-btn-ghost { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(28,61,43,0.18); border-radius: 8px; color: var(--green-dark); flex-shrink: 0; transition: background 0.2s, border-color 0.2s; }
.provider-btn-ghost:hover { background: var(--green-pale); border-color: rgba(28,61,43,0.3); }
.providers-cta { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(28,61,43,0.08); }
.providers-cta-text { font-size: 14px; color: var(--text-muted); }
.providers-cta-link { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 600; color: var(--green-dark); border-bottom: 1.5px solid rgba(28,61,43,0.28); padding-bottom: 2px; transition: border-color 0.2s; }
.providers-cta-link:hover { border-color: var(--green-dark); }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonials-section { background: var(--cream); padding: 96px 64px; position: relative; overflow: hidden; }
.testimonials-section::before { content: '\201C'; position: absolute; top: 40px; left: 52px; font-family: 'Playfair Display', Georgia, serif; font-size: 260px; line-height: 1; color: rgba(28,61,43,0.05); pointer-events: none; user-select: none; }
.testimonials-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.testimonials-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 20px; margin-top: 52px; }
.tcard { background: var(--white); border-radius: 16px; border: 1px solid rgba(28,61,43,0.09); padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.2s, box-shadow 0.2s; }
.tcard:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(28,61,43,0.09); }
.tcard--featured { background: var(--green-dark); border-color: transparent; }
.tcard-stars { display: flex; gap: 3px; }
.tcard-stars svg { width: 14px; height: 14px; }
.tcard-quote { font-family: 'Playfair Display', Georgia, serif; font-size: 17px; line-height: 1.65; color: var(--text-dark); font-style: italic; flex: 1; }
.tcard--featured .tcard-quote { color: rgba(255,255,255,0.9); }
.tcard-treatment { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--green-mid); background: var(--green-pale); border-radius: 20px; padding: 5px 12px; width: fit-content; }
.tcard--featured .tcard-treatment { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.tcard-treatment svg { width: 11px; height: 11px; }
.tcard-outcome { background: var(--green-pale); border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.tcard--featured .tcard-outcome { background: rgba(255,255,255,0.1); }
.tcard-outcome-num { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 700; color: var(--green-dark); line-height: 1; }
.tcard--featured .tcard-outcome-num { color: var(--gold-light); }
.tcard-outcome-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.tcard--featured .tcard-outcome-label { color: rgba(255,255,255,0.65); }
.tcard-author { display: flex; align-items: center; gap: 12px; padding-top: 4px; border-top: 1px solid rgba(28,61,43,0.07); }
.tcard--featured .tcard-author { border-top-color: rgba(255,255,255,0.1); }
.tcard-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.tcard-avatar svg { width: 100%; height: 100%; }
.tcard-author-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.tcard--featured .tcard-author-name { color: var(--white); }
.tcard-author-loc { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.tcard--featured .tcard-author-loc { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════ */
.newsletter-section { background: var(--cream-dark); padding: 96px 64px; position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(28,61,43,0.07); pointer-events: none; }
.newsletter-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.newsletter-left { display: flex; flex-direction: column; gap: 20px; }
.newsletter-headline { font-family: 'Playfair Display', Georgia, serif; font-size: 36px; font-weight: 700; color: var(--green-dark); letter-spacing: -0.02em; line-height: 1.2; }
.newsletter-headline em { font-style: italic; color: var(--green-mid); }
.newsletter-subtext { font-size: 16px; line-height: 1.7; color: var(--text-muted); }
.newsletter-perks { display: flex; flex-direction: column; gap: 10px; }
.newsletter-perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); }
.newsletter-perk-check { width: 20px; height: 20px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.newsletter-perk-check svg { width: 10px; height: 10px; }
.newsletter-right { background: var(--white); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; gap: 22px; box-shadow: 0 8px 40px rgba(28,61,43,0.07); }
.newsletter-form-title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--green-dark); }
.newsletter-form-sub { font-size: 14px; color: var(--text-muted); margin-top: -8px; line-height: 1.5; }
.newsletter-field-group { display: flex; flex-direction: column; gap: 6px; }
.newsletter-field-label { font-size: 12px; font-weight: 600; color: var(--text-mid); }
.newsletter-input { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(28,61,43,0.15); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-dark); outline: none; background: var(--white); transition: border-color 0.15s; }
.newsletter-input:focus { border-color: var(--green-mid); }
.newsletter-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.newsletter-checkbox-box { width: 18px; height: 18px; border-radius: 4px; background: var(--green-pale); border: 1px solid rgba(28,61,43,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.newsletter-checkbox-box svg { width: 10px; height: 10px; }
.newsletter-checkbox-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.newsletter-checkbox-text a { color: var(--green-mid); font-weight: 500; }
.newsletter-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--green-dark); color: var(--white); font-size: 15px; font-weight: 500; padding: 15px; border-radius: 8px; border: none; cursor: pointer; transition: background 0.2s; }
.newsletter-submit:hover { background: var(--green-mid); }
.newsletter-trust { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-muted); }
.newsletter-trust svg { width: 13px; height: 13px; color: var(--green-light); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--green-dark); padding: 72px 64px 0;
  position: relative; overflow: hidden;
}
.site-footer::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.site-footer::after { content: ''; position: absolute; right: -120px; bottom: -120px; width: 480px; height: 480px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.04); pointer-events: none; }
.footer-main { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; position: relative; z-index: 1; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-logo-mark { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-mark svg { width: 20px; height: 20px; }
.footer-logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.2; }
.footer-logo-sub { font-size: 9px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; display: block; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: background 0.15s, color 0.15s; }
.footer-social:hover { background: rgba(255,255,255,0.13); color: white; }
.footer-social svg { width: 14px; height: 14px; }
.footer-nav-col {}
.footer-nav-heading { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.15s; display: flex; align-items: center; gap: 7px; }
.footer-nav-links a:hover { color: var(--white); }
.badge { display: inline-block; font-size: 9px; font-weight: 700; color: var(--green-dark); background: var(--gold-light); padding: 2px 7px; border-radius: 20px; letter-spacing: 0.04em; }
.footer-accreditation { max-width: 1280px; margin: 0 auto; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }
.footer-accred-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.footer-accred-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-accred-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.4); }
.footer-accred-badge svg { width: 12px; height: 12px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 24px 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 1; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-legal { list-style: none; display: flex; gap: 20px; flex-shrink: 0; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════════════
   BREADCRUMB (profile / booking pages)
══════════════════════════════════════════════════ */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 64px; }
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--t3); }
.breadcrumb-inner a { color: var(--gm); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--t3); opacity: 0.5; }

/* ══════════════════════════════════════════════════
   PROVIDER PROFILE PAGE
══════════════════════════════════════════════════ */
.provider-hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 64px; }
.provider-hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: end; padding: 40px 0 0; }
.hero-photo-col { display: flex; flex-direction: column; }
.hero-photo-frame { width: 100%; border-radius: 16px 16px 0 0; overflow: hidden; aspect-ratio: 3/4; background: var(--gp); position: relative; }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-illustration { width: 100%; height: 100%; }
.hero-info-col { padding-bottom: 36px; display: flex; flex-direction: column; gap: 20px; }
.hero-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.badge-verified { display: inline-flex; align-items: center; gap: 5px; background: var(--gd); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 20px; }
.badge-top { display: inline-flex; align-items: center; gap: 5px; background: var(--go-light); color: #7A5500; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 20px; }
.badge-telehealth { display: inline-flex; align-items: center; gap: 5px; background: var(--gp); color: var(--gm); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 20px; }
.hero-name { font-family: 'Playfair Display', Georgia, serif; font-size: 44px; font-weight: 700; color: var(--gd); letter-spacing: -0.02em; line-height: 1.1; }
.hero-creds { font-size: 15px; font-weight: 500; color: var(--gm); letter-spacing: 0.02em; }
.hero-specialty { font-size: 17px; color: var(--t2); line-height: 1.5; padding-left: 16px; border-left: 3px solid var(--go); }
.hero-rating { display: flex; align-items: center; gap: 14px; }
.hero-stars { display: flex; gap: 3px; }
.hero-stars svg { width: 16px; height: 16px; }
.hero-rating-num { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--gd); }
.hero-rating-reviews { font-size: 13px; color: var(--t3); }
.hero-rating-divider { width: 1px; height: 20px; background: var(--border); }
.hero-rating-stat { font-size: 13px; color: var(--t3); }
.hero-rating-stat strong { color: var(--t2); font-weight: 600; }
.hero-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--t2); }
.hero-meta-item svg { width: 14px; height: 14px; color: var(--gm); flex-shrink: 0; }
.hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.btn-book { display: inline-flex; align-items: center; gap: 7px; background: var(--gd); color: var(--white); font-size: 14px; font-weight: 500; padding: 13px 24px; border-radius: 8px; transition: background 0.2s; }
.btn-book:hover { background: var(--gm); }
.btn-message { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: var(--gd); font-size: 14px; font-weight: 500; padding: 13px 20px; border-radius: 8px; border: 1.5px solid rgba(28,61,43,0.25); transition: background 0.2s, border-color 0.2s; }
.btn-message:hover { background: var(--gp); border-color: rgba(28,61,43,0.4); }
.btn-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(28,61,43,0.2); border-radius: 8px; color: var(--gd); transition: background 0.2s; }
.btn-icon:hover { background: var(--gp); }
.hero-availability { display: inline-flex; align-items: center; gap: 7px; background: #EBF7EE; border-radius: 20px; padding: 7px 14px; font-size: 12px; font-weight: 600; color: #1A6632; width: fit-content; }
.avail-dot { width: 7px; height: 7px; background: #2ECC71; border-radius: 50%; }
.profile-tabs { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 64px; position: sticky; top: 65px; z-index: 90; }
.profile-tabs-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; }
.profile-tab { padding: 16px 22px; font-size: 13px; font-weight: 500; color: var(--t3); border-bottom: 2.5px solid transparent; cursor: pointer; transition: color 0.15s, border-color 0.15s; white-space: nowrap; }
.profile-tab:hover { color: var(--gd); }
.profile-tab--active { color: var(--gd); border-bottom-color: var(--gd); }
.profile-body { padding: 40px 64px 80px; }
.profile-body-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.profile-content { display: flex; flex-direction: column; gap: 32px; }
.content-card { background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.content-card-header { padding: 24px 28px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.content-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--gd); letter-spacing: -0.01em; }
.content-card-body { padding: 28px; }
.about-text { font-size: 15px; line-height: 1.75; color: var(--t2); }
.about-text p + p { margin-top: 16px; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.expertise-item { display: flex; align-items: center; gap: 10px; background: var(--cream); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: var(--t2); }
.expertise-item svg { width: 16px; height: 16px; color: var(--gm); flex-shrink: 0; }
.treatment-list { display: flex; flex-direction: column; }
.treatment-row { display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: center; padding: 20px 28px; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.treatment-row:last-child { border-bottom: none; }
.treatment-row:hover { background: #FAFAF7; }
.treatment-row-icon { width: 44px; height: 44px; background: var(--gp); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.treatment-row-icon svg { width: 22px; height: 22px; }
.treatment-row-name { font-size: 15px; font-weight: 600; color: var(--gd); margin-bottom: 3px; }
.treatment-row-desc { font-size: 13px; color: var(--t3); line-height: 1.5; }
.treatment-row-meta { text-align: right; }
.treatment-row-sessions { font-size: 12px; font-weight: 600; color: var(--gm); white-space: nowrap; }
.treatment-row-price { font-size: 12px; color: var(--t3); margin-top: 3px; }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.credential-item { display: flex; align-items: flex-start; gap: 12px; background: var(--cream); border-radius: 10px; padding: 16px; }
.credential-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.credential-icon svg { width: 18px; height: 18px; }
.credential-title { font-size: 13px; font-weight: 600; color: var(--gd); line-height: 1.3; margin-bottom: 3px; }
.credential-detail { font-size: 12px; color: var(--t3); }
.reviews-summary { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; padding: 28px; border-bottom: 1px solid var(--border); }
.reviews-big-num { font-family: 'Playfair Display', Georgia, serif; font-size: 64px; font-weight: 700; color: var(--gd); line-height: 1; text-align: center; }
.reviews-big-stars { display: flex; gap: 4px; justify-content: center; margin: 8px 0 4px; }
.reviews-big-stars svg { width: 16px; height: 16px; }
.reviews-big-count { font-size: 12px; color: var(--t3); text-align: center; }
.reviews-bars { display: flex; flex-direction: column; gap: 7px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.review-bar-label { color: var(--t3); width: 36px; flex-shrink: 0; }
.review-bar-track { flex: 1; height: 6px; background: var(--cream-dark); border-radius: 3px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--go); border-radius: 3px; }
.review-bar-count { color: var(--t3); width: 28px; text-align: right; flex-shrink: 0; }
.review-card-list { display: flex; flex-direction: column; }
.review-card { padding: 24px 28px; border-bottom: 1px solid var(--border); }
.review-card:last-child { border-bottom: none; }
.review-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; gap: 16px; }
.review-card-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.review-avatar svg { width: 100%; height: 100%; }
.review-name { font-size: 14px; font-weight: 600; color: var(--t1); }
.review-treatment { font-size: 11px; color: var(--gm); font-weight: 500; margin-top: 2px; }
.review-date { font-size: 11px; color: var(--t3); white-space: nowrap; }
.review-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.review-stars svg { width: 12px; height: 12px; }
.review-text { font-size: 14px; line-height: 1.7; color: var(--t2); }
.review-outcome { display: inline-flex; align-items: center; gap: 6px; background: var(--gp); border-radius: 20px; font-size: 11px; font-weight: 600; color: var(--gm); padding: 4px 10px; margin-top: 10px; }
.review-outcome svg { width: 10px; height: 10px; }
.photo-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 28px; }
.gallery-thumb { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; background: var(--gp); cursor: pointer; position: relative; }
.gallery-thumb svg { width: 100%; height: 100%; }
.gallery-thumb-last { position: relative; }
.gallery-thumb-last::after { content: '+6 more'; position: absolute; inset: 0; background: rgba(28,61,43,0.55); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: white; }
.profile-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 130px; }
.sidebar-card { background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.sidebar-card-title { font-size: 11px; font-weight: 700; color: var(--t3); letter-spacing: 0.1em; text-transform: uppercase; padding: 16px 20px 12px; border-bottom: 1px solid var(--border); }
.booking-card { background: var(--white); border-radius: 16px; border: 2px solid var(--gd); overflow: hidden; }
.booking-header { background: var(--gd); padding: 20px; }
.booking-header-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.booking-avail { display: flex; align-items: center; gap: 7px; }
.booking-avail-dot { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; }
.booking-avail-text { font-size: 14px; font-weight: 600; color: var(--white); }
.booking-next { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.booking-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.booking-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.booking-type { border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 12px; cursor: pointer; transition: border-color 0.15s, background 0.15s; text-align: center; }
.booking-type--active { border-color: var(--gd); background: var(--gp); }
.booking-type-label { font-size: 12px; font-weight: 600; color: var(--gd); }
.booking-type-sub { font-size: 10px; color: var(--t3); margin-top: 2px; }
.booking-dates { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.booking-date { display: flex; flex-direction: column; align-items: center; padding: 8px 4px; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.booking-date:hover { border-color: var(--gm); background: var(--gp); }
.booking-date--active { border-color: var(--gd); background: var(--gd); }
.booking-date--active .booking-date-day, .booking-date--active .booking-date-num { color: white; }
.booking-date-day { font-size: 9px; font-weight: 600; color: var(--t3); letter-spacing: 0.06em; text-transform: uppercase; }
.booking-date-num { font-size: 15px; font-weight: 700; color: var(--gd); line-height: 1.3; }
.booking-date-slots { font-size: 9px; color: var(--gl); margin-top: 1px; }
.booking-date--active .booking-date-slots { color: rgba(255,255,255,0.7); }
.booking-date--gray .booking-date-num { color: var(--t3); }
.booking-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--gd); color: var(--white); font-size: 15px; font-weight: 500; padding: 14px; border-radius: 8px; border: none; cursor: pointer; transition: background 0.2s; }
.booking-btn:hover { background: var(--gm); }
.booking-msg-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: var(--gd); font-size: 13px; font-weight: 500; padding: 11px; border-radius: 8px; border: 1.5px solid var(--border); cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.booking-msg-btn:hover { background: var(--gp); border-color: rgba(28,61,43,0.3); }
.booking-price-note { font-size: 11px; color: var(--t3); text-align: center; }
.quick-stats { display: grid; grid-template-columns: 1fr 1fr; }
.qs-item { padding: 14px 16px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.qs-item:nth-child(2n) { border-right: none; }
.qs-item:nth-last-child(-n+2) { border-bottom: none; }
.qs-num { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--gd); line-height: 1; }
.qs-label { font-size: 11px; color: var(--t3); margin-top: 3px; line-height: 1.3; }
.location-map { height: 140px; background: var(--gp); overflow: hidden; }
.location-map svg { width: 100%; height: 100%; }
.location-details { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.location-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--t2); }
.location-row svg { width: 14px; height: 14px; color: var(--gm); flex-shrink: 0; margin-top: 1px; }
.location-link { color: var(--gm); font-weight: 500; font-size: 12px; margin-top: 4px; display: block; }
.insurance-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.insurance-list { display: flex; flex-direction: column; gap: 8px; }
.insurance-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--t2); }
.insurance-item svg { width: 14px; height: 14px; color: var(--gl); flex-shrink: 0; }
.insurance-note { font-size: 11px; color: var(--t3); padding-top: 6px; border-top: 1px solid var(--border); line-height: 1.5; }
.similar-section { padding: 0 64px 80px; }
.similar-inner { max-width: 1280px; margin: 0 auto; }
.similar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.similar-card { background: var(--white); border-radius: 14px; border: 1px solid var(--border); padding: 20px; display: flex; align-items: center; gap: 14px; transition: transform 0.18s, box-shadow 0.18s; }
.similar-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(28,61,43,0.08); }
.similar-av { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.similar-av svg { width: 100%; height: 100%; }
.similar-name { font-family: 'Playfair Display', Georgia, serif; font-size: 15px; font-weight: 700; color: var(--gd); margin-bottom: 2px; }
.similar-creds { font-size: 11px; color: var(--gm); font-weight: 600; margin-bottom: 5px; }
.similar-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--t3); }
.similar-stars { display: flex; gap: 2px; }
.similar-stars svg { width: 10px; height: 10px; }
.similar-arrow { margin-left: auto; width: 32px; height: 32px; border-radius: 50%; background: var(--gp); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.similar-arrow svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════════════
   BOOKING PAGE
══════════════════════════════════════════════════ */
.page-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 32px 64px; }
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-header-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: var(--gm); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.page-header-eyebrow span { display: inline-block; width: 22px; height: 2px; background: var(--go); border-radius: 2px; }
.page-header-title { font-family: 'Playfair Display', Georgia, serif; font-size: 36px; font-weight: 700; color: var(--gd); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 8px; }
.page-header-sub { font-size: 15px; color: var(--t3); line-height: 1.5; }
.stepper-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 64px; }
.stepper-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: stretch; }
.step-item { display: flex; align-items: center; gap: 12px; padding: 18px 0; margin-right: 48px; position: relative; }
.step-item:not(:last-child)::after { content: ''; position: absolute; right: -28px; top: 50%; transform: translateY(-50%); width: 20px; height: 1px; background: var(--border); }
.step-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; border: 1.5px solid var(--border); color: var(--t3); background: var(--white); }
.step-item--active .step-num { background: var(--gd); border-color: var(--gd); color: white; }
.step-item--done .step-num { background: var(--gp); border-color: var(--gm); color: var(--gm); }
.step-label { font-size: 13px; font-weight: 500; color: var(--t3); line-height: 1.2; }
.step-item--active .step-label { color: var(--gd); font-weight: 600; }
.step-item--done .step-label { color: var(--gm); }
.step-sub { font-size: 11px; color: var(--t3); margin-top: 1px; }
.booking-body-wrap { padding: 40px 64px 80px; }
.booking-body-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 36px; align-items: start; }
.step-panel { display: flex; flex-direction: column; gap: 24px; }
.form-card { background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.form-card-header { padding: 24px 28px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 14px; }
.form-card-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--gp); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-card-icon svg { width: 18px; height: 18px; }
.form-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--gd); }
.form-card-sub { font-size: 12px; color: var(--t3); margin-top: 2px; }
.form-card-body { padding: 28px; display: flex; flex-direction: column; gap: 22px; }
.confirm-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.confirm-row:last-child { border-bottom: none; }
.confirm-key { font-size: 12px; font-weight: 600; color: var(--t3); letter-spacing: 0.04em; text-transform: uppercase; flex-shrink: 0; padding-top: 1px; min-width: 130px; }
.confirm-val { font-size: 14px; color: var(--t1); text-align: right; line-height: 1.5; }
.confirm-val strong { font-weight: 600; color: var(--gd); }
.confirm-edit { font-size: 11px; color: var(--gm); font-weight: 500; cursor: pointer; margin-top: 3px; display: block; }
.payment-method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.payment-option { border: 1.5px solid var(--border); border-radius: 10px; padding: 14px 12px; cursor: pointer; text-align: center; transition: border-color 0.15s, background 0.15s; }
.payment-option--selected { border-color: var(--gd); background: var(--gp); }
.payment-icon { font-size: 22px; margin-bottom: 6px; }
.payment-label { font-size: 12px; font-weight: 600; color: var(--gd); }
.payment-sub { font-size: 10px; color: var(--t3); margin-top: 2px; }
.field-label { font-size: 12px; font-weight: 600; color: var(--t2); margin-bottom: 7px; display: block; }
.field-label span { color: #C0392B; margin-left: 2px; }
.field-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--t1); background: var(--white); outline: none; transition: border-color 0.15s; }
.field-input:focus { border-color: var(--gm); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { display: flex; flex-direction: column; }
.terms-check { display: flex; align-items: flex-start; gap: 10px; }
.check-box { width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid var(--gd); background: var(--gd); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
.check-box svg { width: 10px; height: 10px; }
.terms-text { font-size: 12px; color: var(--t3); line-height: 1.6; }
.terms-text a { color: var(--gm); font-weight: 500; }
.step-actions { display: flex; align-items: center; justify-content: space-between; }
.btn-back { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: var(--gd); font-size: 14px; font-weight: 500; padding: 13px 18px; border-radius: 8px; border: 1.5px solid var(--border); cursor: pointer; transition: background 0.15s; }
.btn-back:hover { background: var(--gp); }
.btn-next { display: inline-flex; align-items: center; gap: 8px; background: var(--gd); color: var(--white); font-size: 14px; font-weight: 500; padding: 13px 24px; border-radius: 8px; cursor: pointer; border: none; transition: background 0.2s; }
.btn-next:hover { background: var(--gm); }
.trust-row { display: flex; align-items: center; gap: 20px; justify-content: center; padding: 18px 28px; border-top: 1px solid var(--border); background: #FAFAF7; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--t3); }
.trust-item svg { width: 13px; height: 13px; color: var(--gm); }
.cancel-note { background: var(--go-light); border: 1px solid rgba(212,168,67,0.25); border-radius: 10px; padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; }
.cancel-note svg { width: 15px; height: 15px; color: #8A6800; flex-shrink: 0; margin-top: 1px; }
.cancel-note-text { font-size: 12px; color: #5C4400; line-height: 1.6; }
.cancel-note-text strong { font-weight: 600; }
.booking-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.appt-summary { background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.appt-summary-header { background: var(--gd); padding: 16px 20px; display: flex; align-items: center; gap: 10px; }
.appt-summary-header svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.appt-summary-title { font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.06em; text-transform: uppercase; }
.appt-summary-body { padding: 20px; display: flex; flex-direction: column; }
.appt-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.appt-row:last-child { border-bottom: none; padding-bottom: 0; }
.appt-icon { width: 30px; height: 30px; background: var(--gp); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.appt-icon svg { width: 14px; height: 14px; }
.appt-key { font-size: 10px; font-weight: 600; color: var(--t3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.appt-val { font-size: 13px; font-weight: 600; color: var(--gd); }
.appt-sub-val { font-size: 11px; color: var(--t3); margin-top: 1px; }
.price-breakdown { background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.price-breakdown-title { font-size: 11px; font-weight: 700; color: var(--t3); letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.price-lines { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.price-line { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--t2); }
.price-line-key { color: var(--t3); }
.price-line-val { font-weight: 500; color: var(--t1); }
.price-divider { height: 1px; background: var(--border); margin: 4px 0; }
.price-total { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-top: 1px solid var(--border); }
.price-total-key { font-size: 13px; font-weight: 700; color: var(--gd); }
.price-total-val { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--gd); }
.price-note { padding: 0 20px 14px; font-size: 11px; color: var(--t3); line-height: 1.5; }
.expect-card { background: var(--gd); border-radius: 16px; padding: 20px; }
.expect-title { font-family: 'Playfair Display', Georgia, serif; font-size: 15px; font-weight: 700; color: white; margin-bottom: 14px; }
.expect-list { display: flex; flex-direction: column; gap: 10px; }
.expect-item { display: flex; align-items: flex-start; gap: 10px; }
.expect-dot { width: 18px; height: 18px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.expect-dot svg { width: 9px; height: 9px; }
.expect-text { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.provider-card-mini { background: var(--white); border-radius: 16px; border: 1px solid var(--border); padding: 20px; display: flex; align-items: center; gap: 16px; }
.provider-av-mini { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--gp); }
.provider-av-mini svg { width: 100%; height: 100%; }
.provider-name-mini { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; font-weight: 700; color: var(--gd); margin-bottom: 2px; }
.provider-creds-mini { font-size: 11px; font-weight: 600; color: var(--gm); margin-bottom: 6px; }
.provider-rating-mini { display: flex; align-items: center; gap: 5px; font-size: 12px; }
.prov-stars-mini { display: flex; gap: 2px; }
.prov-stars-mini svg { width: 11px; height: 11px; }

/* ══════════════════════════════════════════════════
   DEFAULT PAGE
══════════════════════════════════════════════════ */
.page-default { padding: 64px; }
.page-default-inner { max-width: 900px; margin: 0 auto; }
.page-default-title { font-family: 'Playfair Display', Georgia, serif; font-size: 40px; font-weight: 700; color: var(--green-dark); margin-bottom: 28px; }
.page-default-content { font-size: 16px; line-height: 1.75; color: var(--text-mid); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .site-nav, .site-nav--home, .site-nav--sticky { padding: 16px 24px; }
  .hero-inner { grid-template-columns: 1fr; padding: 120px 24px 80px; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .hero-right { display: none; }
  .search-section { padding: 0 24px 60px; }
  .search-fields { grid-template-columns: 1fr; }
  .search-field { border-right: none; border-bottom: 1px solid rgba(28,61,43,0.1); }
  .stats-bar, .browse-section, .hiw-section, .providers-section, .testimonials-section, .newsletter-section { padding-left: 24px; padding-right: 24px; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .hiw-steps::before { display: none; }
  .hiw-step { border-right: none; padding: 0; }
  .providers-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  nav, .breadcrumb, .provider-hero, .profile-tabs, .profile-body, .similar-section { padding-left: 24px; padding-right: 24px; }
  .provider-hero-inner { grid-template-columns: 1fr; }
  .hero-photo-col { display: none; }
  .profile-body-inner { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .similar-grid { grid-template-columns: 1fr; }
  .page-header, .stepper-bar, .booking-body-wrap { padding-left: 24px; padding-right: 24px; }
  .booking-body-inner { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; }
  .credentials-grid { grid-template-columns: 1fr; }
  .similar-grid, .providers-grid { grid-template-columns: 1fr; }
  .payment-method-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}
