




:root {
  --navy:           #0B1F3A;
  --navy-mid:       #132C50;
  --navy-light:     #1A3A65;
  --blue:           #1B5FA8;
  --blue-light:     #2470C4;
  --blue-pale:      #EBF2FB;
  --gold:           #C9A84C;
  --gold-light:     #E2C06A;
  --teal:           #2A9D8F;
  --teal-light:     #3AB5A6;
  --white:          #FFFFFF;
  --gray-50:        #F8FAFC;
  --gray-100:       #F1F5F9;
  --gray-200:       #E2E8F0;
  --gray-300:       #CBD5E1;
  --gray-500:       #64748B;
  --gray-600:       #475569;
  --gray-700:       #334155;
  --gray-900:       #0F172A;
  --text-body:      #2D3748;
  --text-muted:     #64748B;

  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;

  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-full:    9999px;

  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:         0 4px 16px rgba(11,31,58,.10);
  --shadow-md:      0 8px 32px rgba(11,31,58,.14);
  --shadow-lg:      0 20px 60px rgba(11,31,58,.18);

  --transition:     all .25s ease;
  --max-w:          1200px;
  --section-py:     96px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }


h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-body); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.text-gold   { color: var(--gold); }
.text-teal   { color: var(--teal); }
.text-blue   { color: var(--blue); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-left   { text-align: left; }


.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-sm  { max-width: 820px; margin-inline: auto; padding-inline: 24px; }
.container-lg  { max-width: 1400px; margin-inline: auto; padding-inline: 24px; }

section { padding-block: var(--section-py); }
section.section-sm { padding-block: 60px; }
section.section-lg { padding-block: 120px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }


.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header p { max-width: 680px; font-size: 1.05rem; color: var(--gray-600); margin-top: 16px; }
.section-header.centered p { margin-inline: auto; }
.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: 20px;
}
.section-header.centered .section-divider { margin-inline: auto; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27,95,168,.35);
}
.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 6px 20px rgba(27,95,168,.45);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(201,168,76,.30);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }


#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding-block: 22px;
}
#site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding-block: 14px;
}
#site-header.scrolled .nav-logo-name { color: var(--navy); }
#site-header.scrolled .nav-logo-tagline { color: var(--gray-500); }
#site-header.scrolled .nav-link { color: var(--gray-700); }
#site-header.scrolled .nav-link:hover { color: var(--blue); }
#site-header.scrolled .nav-phone { color: var(--navy); }
#site-header.scrolled .hamburger span { background: var(--navy); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-light), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav-logo-text {}
.nav-logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color .3s;
}
.nav-logo-tagline {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .3s;
}

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--blue-pale); color: var(--blue); }
.dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
}

/* Header CTA */
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color .3s;
}
.nav-phone:hover { color: var(--gold); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 100px 32px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-nav.open { transform: translateX(0); display: block; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }


.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: .08;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.8); }
.page-hero .section-label { color: var(--gold); }
.page-hero .section-label::before { background: var(--gold); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.75); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: .18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,31,58,.96) 0%,
    rgba(11,31,58,.88) 40%,
    rgba(27,95,168,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero .lead {
  color: rgba(255,255,255,.78);
  max-width: 580px;
  font-size: 1.15rem;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  margin-top: 4px;
}


.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding-block: 22px;
  box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid var(--gray-200);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item-icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}
.trust-item-text {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}


.doctor-intro { background: var(--gray-50); }
.doctor-intro-photo {
  position: relative;
}
.doctor-intro-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 580px;
}
.doctor-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 160px;
}
.doctor-badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.doctor-badge-label {
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: 4px;
  line-height: 1.4;
}
.doctor-credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.credential-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.credential-title { font-weight: 700; font-size: .9rem; color: var(--navy); }
.credential-desc { font-size: .82rem; color: var(--gray-500); }


.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue);
  transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--blue); color: var(--white); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--navy); }
.service-card p { font-size: .9rem; color: var(--gray-600); margin-bottom: 20px; }
.service-card-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service-card:hover .service-card-link { gap: 10px; }


.longevity-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.longevity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576671081837-49000212a370?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  opacity: .06;
}
.longevity-section .section-label { color: var(--gold); }
.longevity-section .section-label::before { background: var(--gold); }
.longevity-section h2, .longevity-section h3 { color: var(--white); }
.longevity-section p { color: rgba(255,255,255,.75); }
.longevity-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; position: relative; z-index: 1; }
.longevity-pillar {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.longevity-pillar:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.longevity-pillar h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.longevity-pillar p { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0; }


.journey-section { background: var(--white); }
.journey-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.journey-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue), var(--blue-pale));
}
.journey-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(27,95,168,.35);
}
.journey-step h4 { font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.journey-step p { font-size: .82rem; color: var(--gray-500); }


.programs-section { background: var(--gray-50); }
.program-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-header {
  padding: 28px 24px 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
}
.program-card-header.tier-vitality    { background: linear-gradient(135deg, #1A3A65, #2470C4); }
.program-card-header.tier-glow        { background: linear-gradient(135deg, #2A9D8F, #1B5FA8); }
.program-card-header.tier-performance { background: linear-gradient(135deg, #0B1F3A, #1A3A65); }
.program-card-header.tier-metabolic   { background: linear-gradient(135deg, #7C3AED, #1B5FA8); }
.program-tier-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.program-card-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.program-card-header p { color: rgba(255,255,255,.75); font-size: .85rem; margin: 0; }
.program-card-body { padding: 24px; flex: 1; }
.program-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .875rem;
  color: var(--gray-700);
}
.program-feature-check { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.program-card-footer { padding: 0 24px 24px; }
.program-disclaimer { font-size: .75rem; color: var(--gray-500); margin-top: 12px; font-style: italic; }


.diagnostics-section { background: var(--white); }
.diagnostics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diagnostic-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  transition: var(--transition);
}
.diagnostic-card:hover { background: var(--white); box-shadow: var(--shadow); border-color: var(--blue); }
.diagnostic-card-icon { color: var(--teal); margin-bottom: 16px; }
.diagnostic-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.diagnostic-card p { font-size: .875rem; color: var(--gray-600); }


.telemedicine-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  padding-block: 80px;
}
.telemedicine-strip h2, .telemedicine-strip h3 { color: var(--white); }
.telemedicine-strip p { color: rgba(255,255,255,.85); }
.telemedicine-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.tele-feature {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.tele-feature-icon { color: rgba(255,255,255,.9); margin: 0 auto 16px; display: flex; justify-content: center; }
.tele-feature h4 { color: var(--white); font-size: .95rem; margin-bottom: 8px; }
.tele-feature p { font-size: .85rem; color: rgba(255,255,255,.75); margin: 0; }


.location-section { background: var(--gray-50); }
.location-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info-label { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.contact-info-value { font-size: .95rem; font-weight: 600; color: var(--navy); }
.contact-info-sub { font-size: .82rem; color: var(--gray-500); margin-top: 2px; }
.map-placeholder {
  width: 100%;
  height: 380px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500);
  font-size: .9rem;
  border: 2px dashed var(--gray-300);
}
.map-placeholder svg { opacity: .4; }


.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
  padding-block: 96px;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 16px auto 40px; }


.bio-section { background: var(--white); }
.bio-content { max-width: 760px; }
.bio-quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
  background: var(--gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.bio-quote p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
  line-height: 1.6;
}
.bio-quote cite { display: block; margin-top: 12px; font-size: .82rem; color: var(--gray-500); font-style: normal; font-weight: 600; }


.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.credential-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.credential-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}
.credential-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.credential-card p { font-size: .85rem; color: var(--gray-600); margin: 0; }


.affiliations-section { background: var(--gray-50); padding-block: 64px; }
.affiliations-title {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 36px;
}
.affiliations-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.affiliation-logo { filter: grayscale(1) opacity(.6); transition: var(--transition); max-height: 56px; width: auto; }
.affiliation-logo:hover { filter: none; opacity: 1; }


.faq-section { background: var(--white); }
.faq-list { max-width: 860px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
  background: none;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--blue-pale);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.8;
}


.contact-form-section { background: var(--gray-50); }
.contact-form-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  letter-spacing: .03em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,95,168,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-disclaimer { font-size: .78rem; color: var(--gray-500); margin-top: 16px; line-height: 1.6; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }


.content-section { background: var(--white); }
.content-section-alt { background: var(--gray-50); }
.content-block { max-width: 760px; }
.content-block h2, .content-block h3 { margin-bottom: 16px; }
.content-block ul, .content-block ol { padding-left: 20px; margin-bottom: 20px; }
.content-block li { margin-bottom: 8px; font-size: .95rem; color: var(--gray-700); }
.highlight-box {
  background: var(--blue-pale);
  border: 1px solid rgba(27,95,168,.2);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.highlight-box.gold-box {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.3);
}
.disclaimer-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.disclaimer-box p {
  font-size: .82rem;
  color: var(--gray-500);
  margin: 0;
  font-style: italic;
}
.feature-list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-list-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.feature-list-item h5 { font-size: .9rem; color: var(--navy); margin-bottom: 4px; }
.feature-list-item p { font-size: .85rem; color: var(--gray-600); margin: 0; }


.therapy-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.therapy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.therapy-card-top {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.therapy-card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.therapy-card-top h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.therapy-card-top p { font-size: .85rem; color: var(--gray-600); margin: 0; }
.therapy-card-body { padding: 20px 28px 28px; }
.therapy-card-body ul { padding-left: 18px; }
.therapy-card-body li { font-size: .875rem; color: var(--gray-700); margin-bottom: 6px; }
.therapy-disclaimer { font-size: .78rem; color: var(--gray-500); font-style: italic; margin-top: 14px; }


footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
  padding-bottom: 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-brand {}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  display: block;
}
.footer-logo-tagline {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-link:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,.75); transition: color .2s; }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-credit {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
}
.footer-credit a {
  color: rgba(255,255,255,.82);
  font-weight: 700;
  transition: color .2s;
}
.footer-credit a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  max-width: 860px;
}
.footer-legal-links { display: flex; gap: 16px; margin-top: 8px; }
.footer-legal-link { font-size: .78rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-legal-link:hover { color: rgba(255,255,255,.75); }


.mt-0  { margin-top: 0; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.pt-0  { padding-top: 0; }
.bg-navy  { background: var(--navy); }
.bg-white { background: var(--white); }
.bg-gray  { background: var(--gray-50); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }


.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 500;
  border: none;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); }


@media (max-width: 1100px) {
  .program-cards { grid-template-columns: repeat(2, 1fr); }
  .longevity-pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  :root { --section-py: 72px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diagnostics-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { grid-template-columns: repeat(3, 1fr); }
  .journey-steps::before { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .telemedicine-features { grid-template-columns: repeat(2, 1fr); }
  .therapy-cards { grid-template-columns: 1fr; }
  .doctor-badge { right: 0; bottom: -16px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-menu, .nav-cta .btn, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .program-cards { grid-template-columns: 1fr; }
  .longevity-pillars { grid-template-columns: 1fr 1fr; }
  .journey-steps { grid-template-columns: 1fr 1fr; }
  .diagnostics-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .trust-item { padding: 10px 16px; }
  .trust-item:nth-child(n+5) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .affiliations-logos { gap: 28px; }
  .telemedicine-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .longevity-pillars { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .trust-item:nth-child(n+5) { display: flex; }
  .form-card { padding: 28px 20px; }
}

/* ============================================================
   BOSMD-INSPIRED REDESIGN OVERRIDE
   Clean white doctor-profile foundation with subtle S&L blue.
   ============================================================ */
:root {
  --navy: #0B4074;
  --navy-mid: #123D68;
  --navy-light: #1F5F96;
  --blue: #0F7FBE;
  --blue-light: #8ED8F8;
  --blue-pale: #EEF9FE;
  --gold: #8ED8F8;
  --gold-light: #B9EAFE;
  --teal: #4FB6C8;
  --gray-50: #FAFCFD;
  --gray-100: #F3F8FA;
  --text-body: #111827;
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 0;
  --shadow: 0 14px 34px rgba(11, 64, 116, .08);
  --shadow-md: 0 20px 48px rgba(11, 64, 116, .10);
  --shadow-lg: 0 28px 70px rgba(11, 64, 116, .14);
}

body {
  background: #fff;
  color: #111;
  letter-spacing: .01em;
}

h1, h2, h3, h4, h5 {
  letter-spacing: -.04em;
  font-weight: 600;
}

h1 { font-size: clamp(3rem, 5vw, 4.65rem); line-height: 1.02; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1.05; }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.lead { font-size: clamp(1.05rem, 1.45vw, 1.28rem); line-height: 1.8; }

.container {
  max-width: 1280px;
}

#site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(15,127,190,.10);
  box-shadow: 0 6px 26px rgba(11,64,116,.05);
  padding-block: 16px;
  backdrop-filter: blur(16px);
}

#site-header.scrolled {
  padding-block: 10px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 10px 34px rgba(11,64,116,.09);
}

.header-inner { min-height: 58px; }

.nav-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: Georgia, serif;
  box-shadow: none;
}

.nav-logo-name,
#site-header.scrolled .nav-logo-name {
  color: #111;
  font-weight: 700;
  letter-spacing: -.02em;
}

.nav-logo-tagline,
#site-header.scrolled .nav-logo-tagline {
  color: #667085;
  letter-spacing: .08em;
}

.nav-link,
#site-header.scrolled .nav-link {
  color: #111;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-link::after {
  background: var(--blue-light);
  height: 2px;
}

.nav-link:hover,
.nav-link.active,
#site-header.scrolled .nav-link:hover {
  color: var(--navy);
}

.dropdown-menu {
  border-radius: 0;
  border: 1px solid #EAF2F6;
  box-shadow: 0 22px 50px rgba(17,24,39,.10);
}

.nav-phone,
#site-header.scrolled .nav-phone {
  color: #111;
  letter-spacing: .03em;
}

.btn {
  border-radius: 0;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  box-shadow: none;
}

.btn-gold {
  background: #92DDFB;
  color: #061D2E;
  border: 2px solid #92DDFB;
}

.btn-gold:hover {
  background: #0B4074;
  border-color: #0B4074;
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: #082F56;
  border-color: #082F56;
}

.btn-outline,
.btn-outline-white {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover,
.btn-outline-white:hover {
  background: var(--navy);
  color: #fff;
}

.section-label {
  color: #8A8F98;
  letter-spacing: .18em;
}

.section-label::before {
  background: #92DDFB;
}

.section-header.centered,
.section-heading.text-center {
  max-width: 900px;
  margin-inline: auto;
}

.section-divider {
  background: #92DDFB;
}

.hero {
  min-height: calc(100vh - 91px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 38%, rgba(255,255,255,.42) 60%, rgba(255,255,255,.08) 100%),
    #F3FAFE;
  color: #111;
}

.hero .container {
  display: flex;
  justify-content: flex-start;
}

.hero-bg {
  inset: 0 0 0 auto;
  width: 43%;
  background: url("../../Images/Dr.%20Schayes-Profile-Picture1.webp") center center/cover no-repeat;
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 50%, rgba(255,255,255,.80) 58%, rgba(255,255,255,.08) 78%, rgba(255,255,255,.02) 100%),
    radial-gradient(circle at 70% 46%, rgba(146,221,251,.12), transparent 38%);
}

.hero-content {
  padding-top: 96px;
  padding-bottom: 54px;
  max-width: 540px !important;
  margin-left: 0 !important;
}

.hero-eyebrow {
  background: transparent;
  border: 0;
  border-bottom: 2px solid #92DDFB;
  border-radius: 0;
  padding: 0 0 14px;
  color: #111;
  letter-spacing: .16em;
  margin-bottom: 34px;
}

.hero h1 {
  color: #080B10;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--navy);
}

.hero .lead {
  color: #111;
  max-width: 610px;
  font-weight: 500;
  line-height: 1.75;
}

.hero-stats {
  border-top: 1px solid rgba(11,64,116,.18);
  gap: 54px;
  padding-top: 30px;
  margin-top: 48px;
}

.hero-stat-num {
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 2.25rem;
  letter-spacing: -.06em;
}

.hero-stat-label {
  color: #394150;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  max-width: 150px;
}

.trust-bar {
  border: 0;
  box-shadow: none;
  padding-block: 20px;
}

.trust-bar-inner {
  border-block: 1px solid #E4EEF3;
  padding-block: 18px;
}

.trust-item {
  border-right: 0;
  padding-inline: 18px;
}

.trust-item-icon {
  color: var(--blue);
}

.doctor-intro,
.programs-section,
.location-section,
.contact-form-section {
  background: #fff;
}

.doctor-intro .grid-2 {
  align-items: center;
}

.doctor-intro-photo img {
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.doctor-badge {
  border-radius: 0;
  border: 1px solid #E6EEF3;
  box-shadow: 0 18px 42px rgba(11,64,116,.10);
}

.doctor-badge-num {
  color: var(--navy);
  font-family: var(--font-body);
}

.credential-item {
  border-left: 0;
  border-top: 3px solid #92DDFB;
  border-radius: 0;
  box-shadow: none;
  background: #F8FCFE;
}

.credential-icon {
  color: var(--blue);
}

.affiliations-logos {
  background: #FAFCFD;
  border-block: 1px solid #E6EEF3;
  padding-block: 30px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 280px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(11,64,116,.05), rgba(11,64,116,.82)),
    linear-gradient(135deg, #DDF4FD, #FFFFFF);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.service-card:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(11,64,116,.02), rgba(11,64,116,.78)),
    linear-gradient(135deg, #F5FBFE, #D8F1FB);
}

.service-card::before {
  display: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(11,64,116,.14);
}

.service-card-icon {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.32);
}

.service-card:hover .service-card-icon {
  background: #92DDFB;
  color: var(--navy);
}

.service-card h3,
.service-card p,
.service-card-link {
  color: #fff;
}

.service-card p {
  color: rgba(255,255,255,.82);
}

.program-card,
.feature-card,
.diagnostic-card,
.therapy-card,
.form-card,
.contact-info-item,
.faq-item {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #E4EEF3;
}

.program-card:hover,
.feature-card:hover,
.diagnostic-card:hover,
.therapy-card:hover {
  box-shadow: 0 18px 44px rgba(11,64,116,.10);
}

.program-card-header.tier-vitality,
.program-card-header.tier-glow,
.program-card-header.tier-performance,
.program-card-header.tier-metabolic {
  background: var(--navy);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.78)),
    url("../../Images/Dr.%20Schayes-Profile-Picture2.png") right center/auto 115% no-repeat,
    #F2FAFE !important;
  min-height: 440px;
  color: #111;
}

.page-hero::before {
  display: none;
}

.page-hero h1 {
  color: #080B10;
  max-width: 760px;
}

.page-hero .lead {
  color: #111 !important;
  max-width: 700px;
}

.page-hero .section-label {
  color: #111 !important;
}

.page-hero .section-label::before {
  background: #92DDFB !important;
}

.breadcrumb {
  color: #667085 !important;
}

.breadcrumb a {
  color: var(--navy) !important;
}

.cta-section {
  background: #0B4074;
}

.cta-card {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

footer {
  background: #0B4074;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90)),
      #F3FAFE;
  }

  .hero-bg {
    position: relative;
    display: block;
    min-height: 360px;
    background: url("../../Images/Dr.%20Schayes-Profile-Picture2.png") center top/cover no-repeat;
    order: -1;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.75));
  }

  .hero-content {
    padding-top: 68px;
  }

  .page-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82)),
      url("../../Images/Dr.%20Schayes-Profile-Picture2.png") center top/cover no-repeat,
      #F2FAFE !important;
    padding-top: 150px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #site-header {
    padding-block: 12px;
  }

  .hamburger span,
  #site-header.scrolled .hamburger span {
    background: #111;
  }

  .nav-logo-name {
    font-size: .95rem;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .hero {
    display: block;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    min-height: 0;
    opacity: .18;
    background-position: center top;
  }

  .hero-overlay {
    background: rgba(255,255,255,.86);
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 54px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 230px;
  }
}

/* Hero direction v2: city backdrop with centered physician portrait */
.hero {
  min-height: 640px;
  background: #0B243F;
  text-align: center;
}

.hero .container {
  justify-content: center;
}

.hero-bg {
  inset: 0;
  width: 100%;
  background:
    url("https://images.unsplash.com/photo-1534430480872-3498386e7856?auto=format&fit=crop&w=2200&q=85") center center/cover no-repeat;
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(11,31,58,.55), rgba(11,31,58,.72)),
    linear-gradient(90deg, rgba(11,31,58,.38), rgba(11,31,58,.18), rgba(11,31,58,.38));
}

.hero-content {
  max-width: 930px !important;
  margin-inline: auto !important;
  padding-top: 58px;
  padding-bottom: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content::before {
  content: "";
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: url("../../Images/Dr.%20Schayes-Profile-Picture3.jpg") center center/cover no-repeat;
  border: 6px solid #fff;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  margin-bottom: 18px;
}

.hero-eyebrow {
  color: rgba(255,255,255,.92);
  border-bottom-color: #92DDFB;
  justify-content: center;
  margin-bottom: 20px;
}

.hero h1 {
  color: #fff;
  max-width: 980px;
  font-weight: 400;
  letter-spacing: -.055em;
  text-shadow: 0 3px 22px rgba(0,0,0,.22);
  font-size: clamp(2.6rem, 4.4vw, 4.15rem);
  margin-bottom: 18px;
}

.hero h1 em {
  color: #92DDFB;
}

.hero .lead {
  color: rgba(255,255,255,.90);
  max-width: 760px;
  font-weight: 400;
  margin-inline: auto;
  margin-bottom: 26px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.65;
}

.hero .btn-outline-white {
  border-color: rgba(255,255,255,.88);
  color: #fff;
}

.hero .btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
}

.hero-stats {
  justify-content: center;
  border-top-color: rgba(255,255,255,.24);
  margin-top: 28px;
  padding-top: 24px;
}

.hero-stat-num {
  color: #fff;
  font-size: 1.85rem;
}

.hero-stat-label {
  color: rgba(255,255,255,.76);
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero-bg {
    opacity: 1;
    background-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(11,31,58,.70), rgba(11,31,58,.82));
  }

  .hero-content::before {
    width: 104px;
    height: 104px;
    margin-bottom: 22px;
  }

  .hero .lead {
    color: rgba(255,255,255,.88);
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

/* Targeted contrast/spacing fixes from live review screenshots */
.cta-section {
  scroll-margin-top: 110px;
  padding-top: 118px;
  padding-bottom: 108px;
  overflow: visible;
}

.cta-section h2,
.cta-card h2 {
  color: #fff !important;
  line-height: 1.08;
  margin-top: 0;
  padding-top: 0;
}

.cta-section p,
.cta-card p {
  color: rgba(255,255,255,.88) !important;
}

footer .footer-logo-name,
footer .footer-col-title {
  color: #fff !important;
}

footer .footer-logo-tagline {
  color: #9BE1FB !important;
}

footer .footer-desc,
footer .footer-link,
footer .footer-contact-text,
footer .footer-disclaimer,
footer .footer-copyright,
footer .footer-credit {
  color: rgba(255,255,255,.82) !important;
}

footer .footer-credit,
footer .footer-credit a {
  color: #fff !important;
}

footer .footer-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer .footer-social-link {
  color: #fff !important;
  border-color: rgba(255,255,255,.42) !important;
  background: transparent !important;
}

footer .footer-social-link:hover {
  color: #073B66 !important;
  border-color: #9BE1FB !important;
  background: #9BE1FB !important;
}

.cta-section .btn-outline-white {
  color: #fff !important;
  border-color: #fff !important;
}

.cta-section .btn-outline-white:hover {
  color: #073B66 !important;
  background: #fff !important;
  border-color: #fff !important;
}

footer .footer-social-link i[data-lucide] {
  display: none;
}

footer .footer-social-link::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: currentColor;
}

footer .footer-social-link[aria-label="Instagram"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10c2.76 0 5 2.24 5 5v10c0 2.76-2.24 5-5 5H7c-2.76 0-5-2.24-5-5V7c0-2.76 2.24-5 5-5Zm0 2C5.35 4 4 5.35 4 7v10c0 1.65 1.35 3 3 3h10c1.65 0 3-1.35 3-3V7c0-1.65-1.35-3-3-3H7Zm5 3.5A4.5 4.5 0 1 1 12 16.5 4.5 4.5 0 0 1 12 7.5Zm0 2A2.5 2.5 0 1 0 12 14.5 2.5 2.5 0 0 0 12 9.5ZM17.75 6a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10c2.76 0 5 2.24 5 5v10c0 2.76-2.24 5-5 5H7c-2.76 0-5-2.24-5-5V7c0-2.76 2.24-5 5-5Zm0 2C5.35 4 4 5.35 4 7v10c0 1.65 1.35 3 3 3h10c1.65 0 3-1.35 3-3V7c0-1.65-1.35-3-3-3H7Zm5 3.5A4.5 4.5 0 1 1 12 16.5 4.5 4.5 0 0 1 12 7.5Zm0 2A2.5 2.5 0 1 0 12 14.5 2.5 2.5 0 0 0 12 9.5ZM17.75 6a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

footer .footer-social-link[aria-label="LinkedIn"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.98 3.5C4.98 4.88 3.86 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1s2.48 1.12 2.48 2.5ZM.5 8h4V23h-4V8Zm7.5 0h3.84v2.05h.05c.54-1.02 1.85-2.1 3.81-2.1 4.07 0 4.82 2.68 4.82 6.16V23h-4v-7.89c0-1.88-.03-4.3-2.62-4.3-2.62 0-3.02 2.05-3.02 4.16V23h-4V8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.98 3.5C4.98 4.88 3.86 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1s2.48 1.12 2.48 2.5ZM.5 8h4V23h-4V8Zm7.5 0h3.84v2.05h.05c.54-1.02 1.85-2.1 3.81-2.1 4.07 0 4.82 2.68 4.82 6.16V23h-4v-7.89c0-1.88-.03-4.3-2.62-4.3-2.62 0-3.02 2.05-3.02 4.16V23h-4V8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

footer .footer-social-link[aria-label="Facebook"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 3h4V0h-4c-3.31 0-6 2.69-6 6v3H5v4h4v11h4V13h4l1-4h-5V6c0-1.1.9-2 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 3h4V0h-4c-3.31 0-6 2.69-6 6v3H5v4h4v11h4V13h4l1-4h-5V6c0-1.1.9-2 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.doctor-intro {
  padding-top: clamp(76px, 8vw, 112px);
  padding-bottom: clamp(76px, 8vw, 112px);
}

.doctor-intro .grid-2 {
  align-items: start;
  gap: clamp(48px, 5vw, 72px);
}

.doctor-intro-photo {
  max-width: 620px;
  padding-bottom: 0 !important;
  margin-top: 8px;
}

.doctor-intro-photo img {
  height: clamp(430px, 34vw, 520px);
  object-fit: cover;
  object-position: center top;
}

.doctor-intro h2 {
  max-width: 660px;
  font-size: clamp(2.45rem, 3.15vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.doctor-intro .lead {
  max-width: 660px;
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  line-height: 1.65;
}

.doctor-intro p:not(.lead) {
  max-width: 660px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .cta-section {
    scroll-margin-top: 92px;
    padding-top: 86px;
    padding-bottom: 78px;
  }

  .doctor-intro h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .doctor-intro-photo img {
    height: clamp(320px, 92vw, 430px);
  }
}

