/* =========================================================
   Ezzeddine Primary Care / Aspen View Urgent Care
   Design tokens + global styles
   ========================================================= */

:root {
  /* Brand palette (from client brand guide) */
  --teal-900: #0f4d5c;
  --teal: #146E82;
  --teal-700: #1a7f96;
  --teal-100: #E4F0F2;
  --teal-50: #EEF7F9;
  --orange: #F26522;
  --orange-600: #C24A11;
  --orange-100: #FBE0D3;
  --ink: #1F2430;
  --ink-soft: #4A5163;
  --gray: #8A93A3;
  --gray-100: #E1E4EA;
  --bg: #F7F8FB;
  --white: #FFFFFF;

  /* Typography */
  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --section-pad: 112px;
  --section-pad-mobile: 64px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(31, 36, 48, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 110, 130, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 110, 130, 0.14);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}
.section--tight { padding: 72px 0; }
.section--teal { background: var(--teal-50); }
.section--dark {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal) 55%, var(--orange-600) 130%);
  color: var(--white);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-header.align-left { margin: 0 0 48px; text-align: left; }
.section-header h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--gray); }

.divider {
  height: 1px;
  background: var(--gray-100);
  width: 100%;
  border: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 100px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(242, 101, 34, 0.32);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(242, 101, 34, 0.4); }
.btn-secondary {
  background: var(--white);
  color: var(--teal);
  border: 1.5px solid var(--gray-100);
}
.btn-secondary:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(20, 110, 130, 0.28);
}
.btn-teal:hover { background: var(--teal-900); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 14px; }

/* =========================================================
   Header
   ========================================================= */
.topbar {
  background: var(--teal-900);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 20px;
}
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar a:hover { color: var(--white); }
.topbar svg { width: 14px; height: 14px; opacity: .85; }
.topbar-hours { display: flex; align-items: center; gap: 6px; }
.topbar-hours .dot { width: 6px; height: 6px; border-radius: 50%; background: #6FDE9B; box-shadow: 0 0 0 3px rgba(111,222,155,0.25); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(31,36,48,0.08); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 18px;
  max-width: 1360px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 13px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  border-radius: 100px;
  white-space: nowrap;
  transition: color .2s, background-color .2s;
}
.nav-link:hover { color: var(--teal); background: var(--teal-50); }
.nav-link svg { width: 13px; height: 13px; transition: transform .2s; opacity: .6; }
.has-dropdown:hover .nav-link svg,
.has-dropdown:focus-within .nav-link svg { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: background-color .2s, color .2s;
}
.dropdown a:hover { background: var(--teal-50); color: var(--teal); }
.dropdown a .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown a .ic svg { width: 17px; height: 17px; }

/* Mega menu (Urgent Care / Primary Care) */
.mega-panel {
  left: 0;
  width: max-content;
  min-width: 640px;
  max-width: min(760px, 92vw);
  padding: 24px;
  display: grid;
  grid-template-columns: 226px 1fr;
  gap: 6px 28px;
}
.mega-col-main { display: flex; flex-direction: column; gap: 2px; border-right: 1px solid var(--gray-100); padding-right: 20px; }
.mega-col-main a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13.8px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background-color .2s, color .2s;
}
.mega-col-main a:hover { background: var(--teal-50); color: var(--teal); }
.mega-col-main a .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--teal-50); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mega-col-main a .ic svg { width: 15px; height: 15px; }
.mega-heading {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
  margin: 0 0 10px 6px;
}
.mega-col-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 1px 10px;
  max-height: 380px;
  overflow-y: auto;
}
.mega-col-grid a {
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12.7px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink-soft);
  transition: background-color .2s, color .2s;
}
.mega-col-grid a:hover { background: var(--teal-50); color: var(--teal); }

.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-aspenview-logo { height: 34px; width: auto; flex-shrink: 0; }
.header-cta .call-block { display: flex; flex-direction: column; text-align: right; flex-shrink: 0; white-space: nowrap; }
.header-cta .call-block small { font-size: 11.5px; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.header-cta .call-block a { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 15.5px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
}
.mobile-nav.is-open { visibility: visible; }
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 30, 0.5);
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-nav.is-open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 88vw);
  background: var(--white);
  padding: 24px 22px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav-top img { height: 34px; }
.mobile-close { width: 40px; height: 40px; border-radius: 10px; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.mobile-close svg { width: 18px; height: 18px; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.mobile-nav-list > li { border-bottom: 1px solid var(--gray-100); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.mobile-nav-link svg { width: 16px; height: 16px; transition: transform .25s; color: var(--gray); flex-shrink: 0; }
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  display: flex;
  flex-direction: column;
  padding-left: 6px;
}
.mobile-submenu.is-open { max-height: 2400px; }
[data-toggle].is-open svg { transform: rotate(180deg); }
.mobile-submenu a {
  padding: 11px 8px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.mobile-subtoggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 8px;
  margin-top: 4px;
  border-top: 1px solid var(--gray-100);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
}
.mobile-submenu--nested { padding-left: 10px; }
.mobile-submenu--nested a { font-size: 13.5px; padding: 9px 8px; }
.mobile-nav-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-info { margin-top: 20px; font-size: 13.5px; color: var(--gray); line-height: 1.8; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 76px 0 100px;
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.14), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 40px);
  margin-bottom: 22px;
}
.hero-copy .lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-fineprint { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--gray); margin-bottom: 36px; }
.hero-fineprint svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: -26px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero-float-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-card .ic svg { width: 22px; height: 22px; }
.hero-float-card strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.hero-float-card span { font-size: 12.5px; color: var(--gray); }

.hero-top-card {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-top-card .stars { color: var(--orange); display: flex; gap: 2px; }
.hero-top-card .stars svg { width: 14px; height: 14px; }
.hero-top-card strong { font-family: var(--font-head); font-size: 14px; color: var(--ink); }

/* =========================================================
   Feature grid / Why choose
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.why-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 26, 30, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--white);
}
.why-visual-badge strong { font-family: var(--font-head); font-size: 16px; }
.why-visual-badge span { font-size: 13px; opacity: .85; }

.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-item .num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal-50);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item .num svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 18px; margin-bottom: 5px; }
.feature-item p { font-size: 15px; color: var(--gray); margin: 0; }

/* =========================================================
   Service cards (hover glow — mouse-tracked spotlight border)
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), var(--orange) 0%, var(--teal) 55%, transparent 75%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
  pointer-events: none;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(242, 101, 34, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before,
.service-card:hover::after { opacity: 1; }
.service-card-inner { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; }
.service-card .ic {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--teal-50);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color .35s ease, color .35s ease, transform .35s ease;
}
.service-card:hover .ic { background: var(--orange); color: var(--white); transform: scale(1.06) rotate(-4deg); }
.service-card .ic svg { width: 25px; height: 25px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--gray); flex: 1; margin-bottom: 16px; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--teal);
}
.service-card .learn-more svg { width: 14px; height: 14px; transition: transform .25s ease; }
.service-card:hover .learn-more svg { transform: translateX(4px); }

/* =========================================================
   StemWave / pain relief illustration section
   ========================================================= */
.stemwave-section {
  background: linear-gradient(135deg, var(--teal-900), var(--teal) 60%);
  border-radius: var(--radius-lg);
  padding: 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stemwave-section::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
}
.stemwave-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.stemwave-section .eyebrow { color: var(--orange); }
.stemwave-section h2 { color: var(--white); font-size: clamp(26px, 3vw, 34px); margin-bottom: 16px; }
.stemwave-section p { color: rgba(255,255,255,0.82); font-size: 16px; margin-bottom: 24px; }
.stemwave-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.stemwave-tags span {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}
.wave-graphic { position: relative; width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.wave-ring {
  position: absolute;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  animation: wave-pulse 3.2s ease-out infinite;
}
.wave-ring:nth-child(1) { width: 40%; height: 40%; animation-delay: 0s; }
.wave-ring:nth-child(2) { width: 40%; height: 40%; animation-delay: .8s; }
.wave-ring:nth-child(3) { width: 40%; height: 40%; animation-delay: 1.6s; }
.wave-core {
  position: relative;
  z-index: 2;
  width: 38%;
  height: 38%;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 14px rgba(242,101,34,0.18);
}
.wave-core svg { width: 46%; height: 46%; color: var(--white); }
@keyframes wave-pulse {
  0% { transform: scale(1); opacity: .9; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* =========================================================
   Doctor / trust bar
   ========================================================= */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-50); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item .ic svg { width: 21px; height: 21px; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 15.5px; color: var(--ink); }
.trust-item span { font-size: 13px; color: var(--gray); }

.doctor-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 56px; align-items: center; }
.doctor-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/4; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-credentials {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255,255,255,0.94);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.doctor-credentials .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doctor-credentials .ic svg { width: 18px; height: 18px; }
.doctor-credentials strong { font-family: var(--font-head); font-size: 13.5px; color: var(--ink); display: block; }
.doctor-credentials span { font-size: 12px; color: var(--gray); }
.doctor-copy h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 8px; }
.doctor-copy .role { font-family: var(--font-head); color: var(--teal); font-weight: 600; font-size: 15px; margin-bottom: 20px; display: block; }
.doctor-copy p { margin-bottom: 18px; font-size: 16px; }
.doctor-stats { display: flex; gap: 32px; margin: 28px 0; flex-wrap: wrap; }
.doctor-stats div strong { display: block; font-family: var(--font-head); font-size: 26px; color: var(--teal); }
.doctor-stats div span { font-size: 13px; color: var(--gray); }

/* =========================================================
   Testimonials — infinite marquee
   ========================================================= */
.testimonial-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
}
.testimonial-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track.reverse { animation-direction: reverse; animation-duration: 50s; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.t-card {
  flex: 0 0 auto;
  width: 340px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.t-card .stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 14px; }
.t-card .stars svg { width: 15px; height: 15px; }
.t-card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }
.t-card .who { display: flex; align-items: center; gap: 12px; }
.t-card .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.t-card .who strong { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--ink); }
.t-card .who span { font-size: 12.5px; color: var(--gray); }
.testimonial-note { text-align: center; font-size: 12.5px; color: var(--gray); margin-top: 26px; }

/* =========================================================
   Hours + FAQ
   ========================================================= */
.hours-faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.hours-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  align-self: start;
}
.hours-card h3 { font-size: 20px; margin-bottom: 22px; }
.hours-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 15px; }
.hours-row:last-of-type { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; color: var(--ink); font-family: var(--font-head); font-size: 14.5px; }
.hours-row.is-today { color: var(--teal); }
.hours-card .contact-lines { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.hours-card .contact-lines a { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink); }
.hours-card .contact-lines svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; }
.hours-card .btn { margin-top: 22px; }

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background-color .3s ease, color .3s ease;
}
.faq-question .plus svg { width: 14px; height: 14px; }
.faq-item.is-open .faq-question .plus { background: var(--orange); color: var(--white); transform: rotate(135deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 22px 22px; font-size: 15px; color: var(--gray); }

/* =========================================================
   Map + Payment
   ========================================================= */
.map-payment-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: stretch; }
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  min-height: 420px;
  position: relative;
}
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.map-address-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.map-address-card strong { display: block; font-family: var(--font-head); font-size: 15px; margin-bottom: 6px; color: var(--ink); }
.map-address-card p { font-size: 13.5px; color: var(--gray); margin-bottom: 12px; }
.map-address-card a { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }

.payment-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.payment-card h3 { font-size: 20px; margin-bottom: 6px; }
.payment-card > p { font-size: 14.5px; color: var(--gray); margin-bottom: 22px; }
.payment-options { display: flex; gap: 16px; flex: 1; }
.payment-option {
  flex: 1;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.payment-option:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.payment-option .qr-frame {
  width: 100%;
  max-width: 176px;
  aspect-ratio: 1/1;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  margin-bottom: 14px;
}
.payment-option img { width: 100%; height: 100%; object-fit: contain; display: block; }
.payment-option strong { font-family: var(--font-head); font-size: 14px; color: var(--ink); display: block; margin-bottom: 2px; }
.payment-option span { font-size: 12px; color: var(--gray); }
.payment-card .note { font-size: 12px; color: var(--gray); margin-top: 18px; text-align: center; }
.payment-card .note a { color: var(--teal); font-weight: 600; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-600) 60%, var(--teal-900) 130%);
  padding: 64px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.16), transparent 55%);
}
.cta-banner-copy { position: relative; z-index: 1; max-width: 560px; }
.cta-banner-copy h2 { color: var(--white); font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.cta-banner-copy p { color: rgba(255,255,255,0.9); font-size: 16px; }
.cta-banner-actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-top: 88px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr; gap: 40px; padding-bottom: 56px; }
.footer-logos { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-logos img { height: 38px; width: auto; display: block; }
.footer-logos .ezzeddine-mark { filter: brightness(0) invert(1); }
.footer-logos .logo-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.16); }
.footer-brand p { font-size: 14.5px; line-height: 1.75; margin-bottom: 22px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background-color .2s; }
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; font-family: var(--font-head); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; margin-bottom: 16px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-sitemap { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-geo { font-size: 13px; color: rgba(255,255,255,0.45); padding-bottom: 28px; line-height: 1.8; }

/* =========================================================
   Sticky mobile CTA
   ========================================================= */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -8px 30px rgba(31,36,48,0.12);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-mobile-cta .btn { flex: 1; padding: 14px 16px; font-size: 14px; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: var(--white);
  padding: 10px 16px;
  z-index: 300;
  border-radius: 8px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1340px) {
  .main-nav, .header-cta .call-block, .header-aspenview-logo { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 1080px) {
  .hero-grid, .why-grid, .doctor-grid, .stemwave-grid, .hours-faq-grid, .map-payment-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --section-pad: var(--section-pad-mobile); }
  .topbar-hours { display: none; }
  .header-cta .btn span { display: none; }
  .cta-banner { flex-direction: column; text-align: center; padding: 48px 30px; }
  .cta-banner-actions { justify-content: center; }
  .stemwave-section { padding: 44px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
  .hero-top-card, .hero-float-card { position: static; margin-top: 16px; max-width: none; }
  .hero-visual { display: flex; flex-direction: column; }
  .trust-bar { justify-content: center; text-align: left; }
  .payment-options { flex-direction: column; }
  .doctor-stats { justify-content: center; }
  .section-header.align-left { text-align: center; }
}

@media (max-width: 500px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* =========================================================
   INTERIOR PAGES  (added for the full site build)
   Page hero · breadcrumb · article + rail · FAQ · PAA · related
   ========================================================= */

/* ---------- Header: 8 nav items must not squash the logo ----------
   The header is one flex row. With the two extra tabs the nav grew, and the
   brand was the item absorbing the shrink, so the logo was being compressed
   horizontally (aspect ratio broken). Lock the logo and let the header shed
   its optional pieces at narrower widths instead. */
.brand { flex: 0 0 auto; }
.brand img { height: 44px; width: auto; max-width: none; flex-shrink: 0; }
.main-nav { min-width: 0; }
.main-nav > ul { flex-wrap: nowrap; }
.header-cta .btn-sm { flex-shrink: 0; }

/* 8 tabs need a slightly wider header rail and a slightly tighter nav */
.site-header .container { max-width: 1440px; }
.nav-link { padding: 9px 10px; font-size: 14.2px; }
.main-nav > ul { gap: 0; }
.header-cta { gap: 13px; }

@media (max-width: 1479px) {
  /* not enough rail for the Aspen View mark here; it still shows in the footer */
  .header-aspenview-logo { display: none; }
}

/* ---------- Mega dropdown ----------
   Three fixes:
   1. The left column was 262px with white-space:nowrap, so "Remote Patient
      Monitoring (RPM)" (257px) and "Bioidentical Hormone Therapy (BHRT)" (286px)
      spilled across the divider. Column widened to 312px, and wrapping is now
      allowed as a safety net instead of overflowing.
   2. Rows were 47px fixed with a 1px gap and top-aligned text, so two-line
      labels nearly touched the row below.
   3. The panel was anchored to its own nav item, which pushed it 105px off the
      right edge of the screen at 1341px. It is now anchored to the header
      container and centred, so it can never leave the viewport. */
.site-header .container { position: relative; }
.has-dropdown.has-mega { position: static; }

.mega-panel {
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(6px);
  min-width: 920px;
  width: min(1140px, calc(100vw - 48px));
  max-width: none;
  grid-template-columns: 334px 1fr;
  gap: 6px 26px;
  padding: 26px 24px;
}
.has-dropdown:hover .mega-panel,
.has-dropdown:focus-within .mega-panel { transform: translateX(-50%) translateY(0); }

.mega-col-main a {
  white-space: normal;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  line-height: 1.3;
}
.mega-col-grid {
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 4px 10px;
  grid-auto-rows: auto;
  align-content: start;
  max-height: 430px;
}
.mega-col-grid a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  font-size: 13px;
  line-height: 1.32;
}

/* ---------- Footer service-area block ---------- */
.footer-geo {
  padding: 4px 0 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.geo-block { padding: 4px 0 32px; }
.geo-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.geo-heading svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }
.geo-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.geo-cities span {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
.geo-zips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}
.geo-zips strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.geo-zips code {
  font-family: var(--font-body);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
@media (max-width: 560px) {
  .geo-cities { gap: 6px; }
  .geo-cities span { padding: 5px 11px; font-size: 12.5px; }
}

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  padding: 40px 0 84px;
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.13), transparent 70%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 30px;
}
.breadcrumb a { color: var(--teal); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 13px; height: 13px; color: var(--gray-100); flex-shrink: 0; }
.breadcrumb span[aria-current] { color: var(--ink-soft); }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}
.page-hero-copy h1 { font-size: clamp(30px, 3.9vw, 42px); margin-bottom: 20px; }
.page-hero-copy .lede { font-size: 17.5px; color: var(--ink-soft); margin-bottom: 30px; }
.page-hero-copy .lede a { color: var(--teal); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.page-hero-copy .hero-actions { margin-bottom: 28px; }

.page-hero-visual { position: relative; }
.page-hero-visual .hero-visual-frame img { aspect-ratio: 4 / 3.2; object-fit: cover; width: 100%; }

/* ---------- "Plan your visit" card (hero right, no-photo pages) ---------- */
.visit-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 32px 30px;
}
.visit-card .eyebrow { margin-bottom: 8px; }
.visit-card-title { font-size: 22px; margin-bottom: 10px; }
.visit-hours { margin: 14px 0 4px; }
.visit-card .contact-lines { margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.visit-card .contact-lines a { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.45; }
.visit-card .contact-lines a:hover { color: var(--teal); }
.visit-card .contact-lines svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.visit-card .btn { margin-top: 22px; }
.visit-note { text-align: center; font-size: 12.5px; color: var(--gray); margin-top: 12px; }

/* ---------- Article + side rail ---------- */
.article-section { padding: 88px 0; }
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 60px;
  align-items: start;
}

.prose { max-width: 760px; }
.prose h2 {
  font-size: clamp(23px, 2.5vw, 29px);
  margin: 46px 0 16px;
  padding-top: 4px;
}
.prose > h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 30px 0 12px; }
.prose p { font-size: 16.5px; margin-bottom: 18px; color: var(--ink-soft); }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.prose a:hover { color: var(--orange-600); }

.prose-list {
  display: grid;
  gap: 12px;
  margin: 6px 0 26px;
}
.prose-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  background: var(--teal-50);
  border: 1px solid rgba(20, 110, 130, 0.09);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
}
.prose-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--teal);
  stroke-width: 2.6;
}
.prose-list li strong { color: var(--ink); font-weight: 600; }

/* ---------- Side rail ---------- */
.side-rail {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rail-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.rail-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.rail-links { display: flex; flex-direction: column; max-height: 420px; overflow-y: auto; }
.rail-links li a {
  display: block;
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--gray-100);
  transition: color .18s, padding-left .18s;
}
.rail-links li:last-child a { border-bottom: none; }
.rail-links li a:hover { color: var(--teal); padding-left: 5px; }
.rail-links li a.is-current { color: var(--teal); font-weight: 700; }

.rail-card--cta {
  background: linear-gradient(150deg, var(--teal-900) 0%, var(--teal) 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}
.rail-card--cta .ic {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rail-card--cta .ic svg { width: 24px; height: 24px; }
.rail-card--cta h3 { color: var(--white); border-bottom: none; padding-bottom: 0; margin-bottom: 10px; font-size: 19px; }
.rail-card--cta p { font-size: 14px; margin-bottom: 18px; }
.rail-card--cta .btn { margin-bottom: 10px; }
.rail-card--cta .btn-secondary { background: rgba(255, 255, 255, 0.12); color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.rail-card--cta .btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }

/* ---------- FAQ block ---------- */
.faq-wrap { max-width: 900px; }
.faq-wrap .section-header { margin-bottom: 40px; }
.faq-wrap .section-header h2 { font-size: clamp(25px, 2.9vw, 34px); }
.faq-list .faq-item { box-shadow: var(--shadow-sm); }
.faq-answer-inner a { color: var(--teal); font-weight: 600; text-decoration: underline; }

/* ---------- People Also Ask ---------- */
.paa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.paa-card {
  background: var(--white);
  border: 1px solid rgba(20, 110, 130, 0.1);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-sm);
}
.paa-card h3 { font-size: 16.5px; margin-bottom: 10px; line-height: 1.4; }
.paa-card p { font-size: 15px; color: var(--gray); }
.paa-card a { color: var(--teal); font-weight: 600; text-decoration: underline; }

/* ---------- Related links ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.related-card svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.related-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--teal);
}

/* ---------- Lab / Immigration highlight strip ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.spotlight-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.spotlight-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--teal-50);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.spotlight-card .ic svg { width: 26px; height: 26px; }
.spotlight-card h3 { font-size: 18px; margin-bottom: 8px; }
.spotlight-card p { font-size: 15px; color: var(--gray); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .article-grid { grid-template-columns: 1fr; gap: 48px; }
  .side-rail { position: static; flex-direction: row; flex-wrap: wrap; }
  .side-rail .rail-card { flex: 1 1 300px; }
  .rail-links { max-height: none; }
}
@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 28px 0 60px; }
  .article-section { padding: 60px 0; }
  .prose h2 { margin-top: 36px; }
}
@media (max-width: 640px) {
  .visit-card { padding: 26px 22px; }
  .rail-card { padding: 22px 20px; }
  .side-rail { flex-direction: column; }
  .breadcrumb { margin-bottom: 22px; font-size: 12.5px; }
  .paa-card, .spotlight-card { padding: 22px 20px; }
}

/* ---------- Active nav state + small polish ---------- */
.nav-link[aria-current="page"] { color: var(--teal); background: var(--teal-50); }
.why-visual-badge strong { display: block; }
.why-visual-badge span { display: block; }
.map-card iframe { width: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- Vertical rhythm on interior pages ---------- */
.page-hero { padding-bottom: 68px; }
.article-section { padding: 68px 0 60px; }
#faq.section { padding-top: 68px; }

/* ---------- Top bar: tidy wrap on small phones ---------- */
@media (max-width: 620px) {
  .topbar { font-size: 12.5px; }
  .topbar .container { justify-content: center; gap: 16px; }
  .topbar-left { gap: 16px; }
  .topbar-left:last-child a:first-child { display: none; } /* Payment Options lives in the nav */
}

/* Contact channel labels in the footer. Added so patients can tell the
   urgent care, primary care, fax and text lines apart at a glance. */
.footer .contact-label,
.site-footer .contact-label,
.contact-label{
  display:inline-block;
  font-weight:700;
  opacity:.85;
  margin-right:.15em;
}
.contact-label::after{content:":"}
