/* =============================================================================
   ESTATIKA CLEAN — Main Stylesheet
   Design System: Playfair Display (headings) + Inter (body)
   Palette: Ivory #F6F4F1 · Gold #C7A87A · Green #7FB13D · Charcoal #333333
============================================================================= */

/* ── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
  --ivory:      #F6F4F1;
  --white:      #FFFFFF;
  --beige:      #EAE6E1;
  --green:      #7FB13D;
  --green-lt:   #9EBF6A;
  --gold:       #C7A87A;
  --charcoal:   #333333;
  --body:       #4a4a4a;
  --muted:      #888888;
  --radius:     6px;
  --shadow:     0 4px 28px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.11);
  --trans:      all 0.34s ease;
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Container ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--charcoal);
  line-height: 1.18;
}

/* ── Section Label ─────────────────────────────────────────────────────────── */
.s-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 15px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: var(--trans);
  cursor: pointer;
}
.btn-gold:hover { background: #b89068; border-color: #b89068; color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 15px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  border-radius: var(--radius);
  border: 2px solid var(--charcoal);
  transition: var(--trans);
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 15px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.55);
  transition: var(--trans);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn-green-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  transition: var(--trans);
}
.btn-green-link::after { content: '→'; transition: transform 0.28s ease; }
.btn-green-link:hover { color: #5f8c2a; border-color: #5f8c2a; }
.btn-green-link:hover::after { transform: translateX(4px); }

.btn-gold-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--trans);
}
.btn-gold-link::after { content: '→'; transition: transform 0.28s ease; }
.btn-gold-link:hover::after { transform: translateX(4px); }

.section-footer { text-align: center; margin-top: 52px; }

/* =============================================================================
   HEADER
============================================================================= */
/* ── Site Header (two-row: top-bar + nav-bar) ────────────────────────────── */
.site-header {
  position: relative;
  background: var(--white);
}

/* ── Top bar ─────────────────────────────────────────────────────────────── */
.header-top {
  padding: 18px 0;
  border-bottom: 1px dashed #cccccc;
}
.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo img,
.site-logo .custom-logo { height: 56px; width: auto; display: block; }
.site-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
}
.site-logo__text span { color: var(--green); }

/* Contact items */
.header-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s ease;
}
.header-contact__item svg { color: var(--gold); flex-shrink: 0; }
.header-contact__item:hover { color: var(--green); }
.header-contact__item:hover svg { color: var(--green); }

/* Social icons */
.header-social {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.header-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  color: #777777;
  background: #fff;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.header-social__link:hover { color: var(--charcoal); border-color: #aaa; background: #f5f5f5; }

/* ── Nav bar — sticky on desktop ─────────────────────────────────────────── */
.header-nav-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header-nav-bar.is-scrolled { box-shadow: 0 3px 20px rgba(0,0,0,0.10); }

/* ── Primary nav ─────────────────────────────────────────────────────────── */
.primary-nav { display: flex; align-items: stretch; }
.primary-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0 14px;
  position: relative;
  transition: color 0.22s ease;
  white-space: nowrap;
}
.primary-nav > li > a {
  display: flex;
  align-items: center;
  padding: 15px 14px;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-parent > a,
.primary-nav .current-menu-ancestor > a { color: var(--green); }

/* Active underline at bottom of nav bar */
.primary-nav > li.current-menu-item > a::before,
.primary-nav > li.current-menu-parent > a::before,
.primary-nav > li.current-menu-ancestor > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
}

/* Dropdown */
.primary-nav li { position: relative; }
.primary-nav > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--beige);
  border-top: 3px solid var(--green);
  border-radius: 0 6px 6px 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.09);
  min-width: 200px;
  padding: 8px 0;
  z-index: 9999;
}
.primary-nav > li:hover > ul { display: block; }
.primary-nav > li > ul li { position: relative; }
.primary-nav > li > ul a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 9px 22px;
  display: block;
  color: #444;
}
.primary-nav > li > ul a:hover { color: var(--green); background: var(--ivory); }
.primary-nav > li > ul a::before { display: none !important; }
/* Second-level items that have children use flex for right-aligned chevron */
.primary-nav > li > ul .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Book Consultation — plain nav link, same style as other items */

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}
/* Hamburger → X when open */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header scroll state */
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.09); }

/* =============================================================================
   HERO — Section 1
============================================================================= */
.ehp-hero {
  background: var(--ivory);
  padding: 110px 0 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
}
.hero-text h1 {
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.13;
}
.hero-text h1 em { font-style: italic; color: var(--green); }
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: #666;
  font-weight: 300;
  margin-bottom: 38px;
  max-width: 430px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--beige);
  flex-wrap: wrap;
}
.trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-item span { font-size: 11.5px; color: var(--muted); letter-spacing: 0.5px; }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 36px;
  left: -28px;
  background: #fff;
  padding: 18px 26px;
  border-radius: 8px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  font-family: 'Inter', sans-serif;
  min-width: 190px;
}
.hero-badge .b-stars { color: #F5A623; font-size: 13px; letter-spacing: 2.5px; margin-bottom: 6px; }
.hero-badge strong { display: block; font-size: 14px; color: var(--charcoal); font-weight: 700; margin-bottom: 3px; }
.hero-badge span { font-size: 11.5px; color: #999; }

/* =============================================================================
   TRUST STRIP — below hero
============================================================================= */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}
.trust-item-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  letter-spacing: 0.3px;
}
.trust-item-strip svg { flex-shrink: 0; }

/* =============================================================================
   SIGNATURE TREATMENTS — Section 2
============================================================================= */
.ehp-treatments {
  background: var(--white);
  padding: 96px 0;
}
.section-hd { text-align: center; margin-bottom: 64px; }
.section-hd h2 { font-size: clamp(30px, 3vw, 44px); font-weight: 600; margin-bottom: 16px; }
.section-hd p { font-size: 16px; color: var(--muted); max-width: 460px; margin: 0 auto; line-height: 1.7; }

.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.treat-card {
  background: var(--ivory);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--trans);
}
.treat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.treat-card .c-img { height: 310px; overflow: hidden; }
.treat-card .c-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.treat-card:hover .c-img img { transform: scale(1.06); }
.treat-card .c-body { padding: 30px 30px 34px; }
.treat-card .c-body h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--charcoal); }
.treat-card .c-body p { font-size: 14px; line-height: 1.65; color: #777; margin-bottom: 26px; }
/* =============================================================================
   INSIDE THE CLINIC — Video Testimonials
============================================================================= */
.ehp-videos {
  background: var(--white);
  padding: 96px 0;
  border-top: 1px solid var(--beige);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.video-card:only-child {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.video-card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
}
.video-thumb {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #000;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.video-card:hover .video-thumb img {
  transform: scale(1.04);
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.video-play-btn svg {
  width: 28px;
  height: 28px;
  color: var(--charcoal);
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.video-card:hover .video-play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 6px 28px rgba(199,168,122,0.4);
}
.video-card:hover .video-play-btn svg {
  color: #fff;
}
.video-body {
  padding: 28px 32px 32px;
}
.video-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.3;
}
.videos-empty {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  padding: 40px 0;
}
.videos-empty a { color: var(--gold); text-decoration: underline; }

/* ── Video Lightbox ──────────────────────────────────────────────────────── */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.video-lightbox.is-open { display: flex; }
.video-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
}
.video-lightbox-content {
  position: relative;
  width: 90vw;
  max-width: 960px;
  z-index: 1;
  animation: videoLightboxIn 0.3s ease;
}
@keyframes videoLightboxIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.video-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 36px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s ease;
}
.video-lightbox-close:hover { color: #fff; }
.video-lightbox-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-lightbox-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card:only-child { max-width: 100%; }
}

@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr; }
  .video-thumb { height: 220px; }
  .video-play-btn { width: 60px; height: 60px; }
  .video-play-btn svg { width: 22px; height: 22px; }
}
/* =============================================================================
   SKIN CONCERNS — Section 3
============================================================================= */
.ehp-concerns {
  background: var(--ivory);
  padding: 96px 0;
}
.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.concern-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--beige);
  transition: var(--trans);
}
.concern-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.concern-card .c-img { height: 216px; overflow: hidden; }
.concern-card .c-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.concern-card:hover .c-img img { transform: scale(1.04); }
.concern-card .c-body { padding: 26px 26px 30px; }
.concern-card .c-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 9px; color: var(--charcoal); }
.concern-card .c-body p { font-size: 13.5px; line-height: 1.65; color: #777; margin-bottom: 22px; }

/* =============================================================================
   TECHNOLOGY — Section 4
============================================================================= */
.ehp-technology {
  background: var(--white);
  padding: 96px 0;
}
.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.tech-text h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 600; margin-bottom: 20px; line-height: 1.22; }
.tech-intro { font-size: 15.5px; line-height: 1.85; color: #666; margin-bottom: 44px; max-width: 480px; }
.tech-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 44px; }
.tech-list li { display: flex; align-items: flex-start; gap: 16px; }
.tech-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.tech-icon svg { width: 15px; height: 15px; }
.ti-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.ti-text span { font-size: 13px; color: #888; line-height: 1.6; }
.tech-visual { position: relative; border-radius: 10px; overflow: visible; }
.tech-visual img { height: 580px; object-fit: cover; border-radius: 10px; display: block; width: 100%; }
.tech-badge {
  position: absolute;
  top: 36px;
  right: -24px;
  background: var(--green);
  color: #fff;
  padding: 22px 26px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  text-align: center;
  box-shadow: 0 8px 28px rgba(127,177,61,0.35);
}
.tech-badge strong { display: block; font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.tech-badge span { font-size: 10.5px; letter-spacing: 1.5px; opacity: 0.9; text-transform: uppercase; }

/* =============================================================================
   BEFORE & AFTER — Section 5
============================================================================= */
.ehp-ba {
  background: var(--ivory);
  padding: 96px 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-img { overflow: hidden; }
.ba-img img { height: 290px; object-fit: cover; width: 100%; display: block; }
.ba-img--placeholder {
  height           : 290px;
  display          : flex;
  flex-direction   : column;
  align-items      : center;
  justify-content  : center;
  gap              : 14px;
  background       : linear-gradient(145deg, #F7F2ED 0%, #EDE5DA 100%);
  border-bottom    : 1.5px dashed #C8B49A;
}
.ba-img--placeholder::before {
  content            : '';
  display            : block;
  width              : 52px;
  height             : 52px;
  background-image   : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A8927A' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
  background-size    : contain;
  background-repeat  : no-repeat;
  background-position: center;
  opacity            : 0.7;
}
.ba-img--placeholder::after {
  content       : 'Add Photo';
  font-family   : 'Inter', sans-serif;
  font-size     : 0.6875rem;
  font-weight   : 500;
  color         : #A8927A;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ba-info { padding: 22px 26px; }
.ba-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 5px; color: var(--charcoal); }
.ba-info p { font-size: 12.5px; color: #999; }

/* =============================================================================
   ADVANCED TECHNOLOGIES GRID — Section 4b
============================================================================= */
.ehp-advanced-tech {
  background: var(--ivory);
  padding: 96px 0;
  border-top: 1px solid var(--beige);
}
.tech-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tech-card-item {
  display: block;
  background: var(--white);
  border: 1px solid var(--beige);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.tech-card-item:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
.tech-card-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 10px;
  line-height: 1.3;
}
.tech-card-item p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;
}
.tech-card-item .learn-more {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================================================
   MEET DOCTOR — Section 6
============================================================================= */
.ehp-doctor {
  background: var(--white);
  padding: 96px 0;
}
.doc-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 88px;
  align-items: center;
}
.doc-visual { position: relative; border-radius: 10px; overflow: hidden; }
.doc-visual img { height: 640px; object-fit: cover; border-radius: 10px; width: 100%; display: block; }
.doc-text h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 600; margin-bottom: 8px; }
.doc-title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.doc-text p { font-size: 15.5px; line-height: 1.9; color: #666; margin-bottom: 38px; max-width: 520px; }
.doc-highlights { display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; }
.doc-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
}
.doc-highlights li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* =============================================================================
   GOOGLE REVIEWS — Section 7
============================================================================= */
.ehp-reviews {
  background: var(--charcoal);
  padding: 96px 0;
}
.ehp-reviews .section-hd h2 { color: var(--white); }
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 22px;
  border-radius: 4px;
}
.g-badge .g-stars { color: #F5A623; font-size: 15px; letter-spacing: 2px; }
.g-badge span { font-size: 13px; color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 38px 34px;
  transition: var(--trans);
}
.review-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.r-stars { color: #F5A623; font-size: 15px; letter-spacing: 2.5px; margin-bottom: 22px; }
.review-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin-bottom: 30px;
  background: transparent;
  border: none;
  padding: 0;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.r-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.r-info strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; margin-bottom: 3px; }
.r-info span { font-size: 12px; color: rgba(255,255,255,0.45); }

/* =============================================================================
   AREAS WE SERVE — Section 8
============================================================================= */
.ehp-areas {
  background: var(--beige);
  padding: 56px 0;
}
.areas-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.areas-hd {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 28px;
  white-space: nowrap;
}
.areas-sep { width: 32px; height: 1px; background: var(--gold); opacity: 0.45; margin-right: 28px; }
.areas-list { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; }
.area { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--charcoal); font-weight: 400; padding: 6px 4px; }
.area-dot { color: var(--gold); font-size: 14px; padding: 0 10px; opacity: 0.7; }

/* =============================================================================
   TREATMENT JOURNEY — Section 8b
============================================================================= */
.ehp-journey {
  background: var(--white);
  padding: 96px 0;
  border-top: 1px solid var(--beige);
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.journey-step {
  background: var(--ivory);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: 36px 28px 32px;
  position: relative;
}
.journey-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(199,168,122,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.journey-step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 12px;
  line-height: 1.3;
}
.journey-step p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--body);
  margin: 0;
}

/* =============================================================================
   FINAL CTA — Section 9
============================================================================= */
.ehp-cta {
  background: #1e1e1e;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ehp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(199,168,122,0.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 50%, rgba(127,177,61,0.05) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.ehp-cta .s-label { color: var(--gold); }
.ehp-cta h2 { font-size: clamp(34px, 4vw, 56px); font-weight: 600; color: var(--white); margin-bottom: 20px; }
.ehp-cta p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 490px; margin: 0 auto 52px; line-height: 1.75; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4a8c2a;
  color: #fff;
  padding: 15px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  border-radius: var(--radius);
  border: 2px solid #4a8c2a;
  transition: var(--trans);
}
.btn-wa:hover { background: #3d7522; border-color: #3d7522; }

/* =============================================================================
   FOOTER
============================================================================= */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 240px;
  margin-bottom: 16px;
}
.footer-brand__address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.footer-brand__phone,
.footer-brand__email {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  transition: color 0.22s ease;
}
.footer-brand__phone:hover,
.footer-brand__email:hover { color: var(--gold); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color 0.22s ease; }
.footer-col ul a:hover { color: var(--white); }
.footer-col--hours h4 { margin-bottom: 12px; }
.footer-hours { margin-top: 18px; }
.footer-hours__title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-hours__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-hours__table td { padding: 3px 0; }
.footer-hours__table td:last-child { text-align: right; color: rgba(255,255,255,0.45); }
.footer-hours__appt {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  font-style: italic;
}
.footer-appt-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding: 20px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-style: italic;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom__links {
  display: flex;
  gap: 20px;
}
.footer-bottom__links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  transition: color 0.22s ease;
}
.footer-bottom__links a:hover { color: rgba(255,255,255,0.7); }

/* =============================================================================
   RESPONSIVE
============================================================================= */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-inner,
  .tech-inner,
  .doc-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { display: none; }
  .ehp-hero { min-height: auto; padding: 80px 0 60px; }
  .treat-grid,
  .concern-grid,
  .ba-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .tech-badge { right: 16px; }
  /* Consistent section padding — tablet */
  .ehp-treatments,
  .ehp-videos,
  .ehp-concerns,
  .ehp-technology,
  .ehp-ba,
  .ehp-advanced-tech,
  .ehp-doctor,
  .ehp-reviews,
  .ehp-journey { padding: 60px 0; }
  .ehp-cta { padding: 64px 0; }
  .ehp-areas { padding: 36px 0; }
  .section-hd { margin-bottom: 44px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .ehp-hero { padding: 60px 0 48px; }
  .hero-text h1 { font-size: 36px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline { width: 100%; text-align: center; }
  .treat-grid,
  .concern-grid,
  .ba-grid,
  .reviews-grid,
  .tech-cards-grid,
  .journey-grid { grid-template-columns: 1fr; }
  .tech-inner,
  .doc-inner { grid-template-columns: 1fr; gap: 44px; }
  .tech-visual,
  .doc-visual { display: none; }
  .areas-inner { flex-direction: column; gap: 16px; }
  .areas-sep { display: none; }
  .area { padding: 4px 12px; font-size: 14px; }
  /* Consistent section padding — mobile */
  .ehp-treatments,
  .ehp-videos,
  .ehp-concerns,
  .ehp-technology,
  .ehp-ba,
  .ehp-advanced-tech,
  .ehp-doctor,
  .ehp-reviews,
  .ehp-journey { padding: 60px 0; }
  .ehp-cta { padding: 64px 0; }
  .ehp-areas { padding: 32px 0; }
  .section-hd { margin-bottom: 40px; }
  /* CTA p spacing */
  .ehp-cta p { margin-bottom: 36px; }
  /* CTA buttons stacked */
  .cta-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
  .cta-btns .btn-gold,
  .cta-btns .btn-wa,
  .cta-btns .btn-outline-white { width: 100%; justify-content: center; text-align: center; }
  /* Hero trust stats */
  .hero-trust { gap: 20px; }
  .footer-inner { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom__links { justify-content: center; }
  /* Mobile header — top bar sticks (nav bar is hidden) */
  .header-contact { display: none; }
  .header-social { display: none; }
  .header-top {
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  }
  .header-top__inner { justify-content: space-between; }
  .nav-toggle { display: flex; }
  .header-nav-bar { display: none; position: static; box-shadow: none; }

  /* Mobile nav panel — .header-nav-bar is a sibling of .site-header, use + combinator */
  .site-header.mobile-open + .header-nav-bar {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  }
  .site-header.mobile-open + .header-nav-bar .primary-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0 40px;
  }
  .site-header.mobile-open + .header-nav-bar .primary-nav > li {
    border-bottom: 1px solid var(--beige);
  }
  .site-header.mobile-open + .header-nav-bar .primary-nav > li > a {
    font-size: 14px;
    padding: 14px 24px;
    display: block;
  }
  .site-header.mobile-open + .header-nav-bar .primary-nav > li > a::before { display: none !important; }
  .site-header.mobile-open + .header-nav-bar .primary-nav > li > ul {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    padding: 0 24px 12px 36px;
  }
  .site-header.mobile-open + .header-nav-bar .primary-nav > li > ul a {
    padding: 7px 0;
    font-size: 13px;
    border-bottom: 1px solid #f0eeeb;
  }
  .site-header.mobile-open + .header-nav-bar .primary-nav .nav-cta > a {
    margin: 16px 24px;
    display: block;
    text-align: center;
    padding: 12px 18px !important;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  /* Section padding — small mobile */
  .ehp-treatments,
  .ehp-videos,
  .ehp-concerns,
  .ehp-technology,
  .ehp-ba,
  .ehp-advanced-tech,
  .ehp-doctor,
  .ehp-reviews,
  .ehp-journey { padding: 48px 0; }
  .ehp-cta { padding: 56px 0; }
  .ehp-areas { padding: 28px 0; }
  .section-hd { margin-bottom: 32px; }
  /* Hero */
  .ehp-hero { padding: 48px 0 36px; }
  .hero-trust { gap: 16px; padding-top: 24px; }
  .trust-item strong { font-size: 20px; }
  /* CTA */
  .ehp-cta p { margin-bottom: 28px; }
  .cta-btns { max-width: 100%; }
}

/* =============================================================================
   UTILITY
============================================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
