/* ======================================
   Echelon-Health · Site Stylesheet
   UF Gator Blue #0021A5 · Orange #FA4616
   Fonts: Libre Baskerville + Source Sans 3
   ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --orange:      #FA4616;
  --orange-dark: #d93a10;
  --orange-pale: #fff2ed;
  --blue:        #0021A5;
  --blue-pale:   #eef0fc;
  --footer-bg:   #ede9e3;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --warm-gray:   #f2f0ec;
  --border:      #e2dfd8;
  --text:        #1a1a1a;
  --text-mid:    #484848;
  --text-light:  #717171;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--off-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

/* ── NAV ── */
.site-nav {
  background: var(--blue);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  width: 38px; height: 38px;
  border-radius: 4px;
  object-fit: contain;
  background: white;
  padding: 3px;
}
.nav-brand-name {
  font-family: 'Libre Baskerville', serif;
  font-size: .97rem;
  font-weight: 700;
  color: white;
  display: block;
  line-height: 1.15;
}
.nav-brand-sub {
  display: block;
  font-size: .6rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: .1rem;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 500;
  padding: .38rem .7rem;
  border-radius: 3px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,.1); }
.nav-links .nav-cta {
  background: var(--orange);
  color: white !important;
  padding: .42rem 1rem;
  margin-left: .4rem;
  border-radius: 3px;
}
.nav-links .nav-cta:hover { background: var(--orange-dark) !important; }

/* ── BUTTONS ── */
.btn-orange {
  display: inline-block;
  background: var(--orange); color: white;
  text-decoration: none; padding: .72rem 1.65rem;
  border-radius: 4px; font-size: .87rem; font-weight: 600;
  border: none; cursor: pointer; transition: background .15s;
}
.btn-orange:hover { background: var(--orange-dark); color: white; }

.btn-blue {
  display: inline-block;
  background: var(--blue); color: white;
  text-decoration: none; padding: .72rem 1.65rem;
  border-radius: 4px; font-size: .87rem; font-weight: 600;
  border: none; cursor: pointer; transition: background .15s;
}
.btn-blue:hover { background: var(--blue); color: white; }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--blue);
  text-decoration: none; padding: .7rem 1.6rem;
  border-radius: 4px; font-size: .87rem; font-weight: 600;
  border: 2px solid var(--blue); transition: all .15s;
}
.btn-outline:hover { background: var(--blue); color: white; }

/* ── PAGE HERO BAND ── */
.page-hero {
  background: var(--blue);
  padding: 4rem 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(250,70,22,.2);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.page-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.3rem; font-weight: 700;
  color: white; line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero p { font-size: .95rem; color: rgba(255,255,255,.72); line-height: 1.75; max-width: 500px; }

/* ── SECTIONS ── */
.section { padding: 4rem 2.5rem; }
.section-white  { background: white; }
.section-warm   { background: var(--warm-gray); }
.section-off    { background: var(--off-white); }
.section-blue   { background: var(--blue); }
.section-dark   { background: var(--blue); }

.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--blue); line-height: 1.25;
  margin-bottom: 1.2rem;
}
.section-sub { font-size: .93rem; color: var(--text-mid); line-height: 1.8; max-width: 580px; }

.orange-rule { width: 60px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 1.4rem; }

/* ── LOCATION BAND ── */
.location-band {
  background: var(--orange);
  padding: 2.25rem 2.5rem;
  text-align: center;
}
.location-band h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem; font-weight: 700;
  color: white; margin-bottom: .4rem;
}
.location-band p { font-size: .88rem; color: rgba(255,255,255,.88); line-height: 1.7; }
.location-band a { color: white; font-weight: 600; }

/* ── FOOTER ── */
.site-footer { background: var(--footer-bg); padding: 3rem 2.5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-logo { width: 44px; height: 44px; border-radius: 4px; object-fit: contain; background: white; padding: 3px; margin-bottom: .75rem; }
.footer-brand-name { font-family: 'Libre Baskerville', serif; font-size: 1rem; font-weight: 700; color: var(--blue); }
.footer-brand p { font-size: .8rem; color: var(--text-mid); line-height: 1.7; margin-top: .5rem; max-width: 240px; }
.footer-col h4 { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .9rem; font-weight: 700; }
.footer-col a { display: block; color: var(--text-mid); text-decoration: none; font-size: .82rem; margin-bottom: .45rem; transition: color .15s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
  font-size: .72rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
}

/* ── HERO (HOME) ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  min-height: 420px;
  background: white;
  border-bottom: 3px solid var(--orange);
}
.hero-left {
  padding: 3rem 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: white;
}
.hero-left::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(0,33,165,.08);
  pointer-events: none;
}
.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--blue); line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--text); }
.hero-subtitle { font-size: .97rem; color: var(--text-mid); line-height: 1.8; max-width: 440px; margin-bottom: 1.75rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-ghost {
  display: inline-block;
  background: transparent; color: var(--blue);
  text-decoration: none; padding: .72rem 1.6rem;
  border-radius: 4px; font-size: .87rem; font-weight: 600;
  border: 2px solid var(--blue); transition: all .15s;
}
.hero-ghost:hover { background: var(--blue); color: white; }

.hero-right {
  position: relative;
  overflow: hidden;
  background: white;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.25rem 1rem;
  border-left: 1px solid var(--border);
}
.hero-right img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.hero-img-caption {
  display: block;
  text-align: center;
  margin-top: .5rem;
  font-family: 'Libre Baskerville', serif;
  font-size: .78rem; font-style: italic;
  color: var(--text-mid);
  letter-spacing: .02em;
}

/* ── VALUE STRIP ── */
.value-strip {
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--orange);
}
.value-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: .9rem;
}
.value-item:last-child { border-right: none; }
.value-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.value-item h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: .88rem; font-weight: 700; color: var(--blue); margin-bottom: .18rem;
}
.value-item p { font-size: .77rem; color: var(--text-light); line-height: 1.6; }

/* ── HOME BODY GRID ── */
.home-body {
  background: white;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.home-narrative p { font-size: .95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.25rem; }

/* ── HEART AD UNIT ── */
.heart-ad {
  background: var(--warm-gray);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.heart-ad-header {
  background: var(--orange);
  padding: .7rem 1.25rem;
  display: flex; align-items: center; gap: .6rem;
}
.heart-ad-header-label {
  font-family: 'Libre Baskerville', serif;
  font-size: .8rem; font-weight: 700;
  color: white; letter-spacing: .04em;
  text-transform: uppercase;
}
.heart-ad-body { padding: 1.25rem 1.25rem .9rem; }
.heart-ad-stat {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); line-height: 1.3;
  margin-bottom: .55rem;
}
.heart-ad-stat span { color: var(--orange); }
.heart-ad-sub { font-size: .78rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.heart-scans {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: .4rem;
}
.heart-tile {
  border-radius: 5px; overflow: hidden;
  aspect-ratio: 1; background: var(--border);
  border: 1px solid var(--border);
}
.heart-tile img { width: 100%; height: 100%; object-fit: cover; }
.heart-ad-footer {
  padding: .6rem 1.25rem .85rem;
  font-size: .68rem;
  color: var(--text-light);
  letter-spacing: .06em; text-transform: uppercase;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* ── TEAM ── */
.team-layout { display: grid; grid-template-columns: 360px 1fr; gap: 3rem; align-items: start; }
.team-photo { border-radius: 8px; overflow: hidden; border: 3px solid var(--border); }
.team-member { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.team-member:last-child { border: none; margin: 0; padding: 0; }
.team-name { font-family: 'Libre Baskerville', serif; font-size: 1.1rem; font-weight: 700; color: var(--blue); margin-bottom: .18rem; }
.team-title { font-size: .7rem; color: var(--orange); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .55rem; }
.team-bio { font-size: .86rem; color: var(--text-mid); line-height: 1.75; }
.team-bio a { color: var(--blue); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.2rem; margin-top: 2.25rem; }
.service-card {
  background: white; border: 1px solid var(--border);
  border-radius: 6px; padding: 1.6rem;
  transition: border-color .2s, box-shadow .2s;
}
.service-card:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(250,70,22,.07); }
.svc-icon {
  width: 38px; height: 38px; background: var(--orange-pale);
  border-radius: 5px; display: flex; align-items: center;
  justify-content: center; margin-bottom: .9rem; color: var(--orange);
}
.service-card h3 { font-family: 'Libre Baskerville', serif; font-size: .95rem; font-weight: 700; color: var(--blue); margin-bottom: .45rem; }
.service-card p { font-size: .8rem; color: var(--text-mid); line-height: 1.7; margin-bottom: .7rem; }
.tags { display: flex; flex-wrap: wrap; gap: .28rem; }
.tag { font-size: .65rem; color: var(--blue); background: var(--blue-pale); padding: .18rem .48rem; border-radius: 3px; font-weight: 500; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 620px; margin-top: 2.25rem; }
.price-card { border: 2px solid var(--border); border-radius: 8px; padding: 2rem; background: white; position: relative; }
.price-card.featured { border-color: var(--orange); }
.featured-pill {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .8rem; border-radius: 20px; white-space: nowrap;
}
.price-lbl { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: .55rem; }
.price-amt { font-family: 'Libre Baskerville', serif; font-size: 2.4rem; font-weight: 700; color: var(--blue); line-height: 1; }
.price-per { font-size: .82rem; color: var(--text-light); font-weight: 400; margin-left: 2px; }
.price-feats { list-style: none; margin: 1.1rem 0 1.4rem; }
.price-feats li {
  font-size: .82rem; color: var(--text-mid); padding: .38rem 0;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .45rem;
}
.price-feats li:last-child { border: none; }
.price-feats li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── WHAT TO EXPECT ── */
.expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 2.25rem; }
.expect-item { display: flex; gap: .9rem; align-items: flex-start; }
.expect-num { font-family: 'Libre Baskerville', serif; font-size: 1.9rem; font-weight: 700; color: var(--orange); line-height: 1; min-width: 38px; }
.expect-item h4 { font-family: 'Libre Baskerville', serif; font-size: .92rem; font-weight: 700; color: var(--blue); margin-bottom: .28rem; }
.expect-item p { font-size: .82rem; color: var(--text-mid); line-height: 1.7; }
.expect-item a { color: var(--blue); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin-top: 2.25rem; }
.faq-item { padding: 1.6rem 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border: none; }
.faq-q { font-family: 'Libre Baskerville', serif; font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: .65rem; display: flex; align-items: flex-start; gap: .7rem; }
.faq-mark { color: var(--orange); flex-shrink: 0; }
.faq-a { font-size: .88rem; color: var(--text-mid); line-height: 1.82; padding-left: 1.65rem; }
.faq-a a { color: var(--blue); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-det { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-det:last-of-type { border: none; }
.cdet-icon { width: 32px; height: 32px; background: var(--blue); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: white; }
.cdet-lbl { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); font-weight: 600; margin-bottom: .12rem; }
.cdet-val { font-size: .88rem; color: var(--text); font-weight: 500; }
.cdet-val a { color: var(--blue); font-size: .82rem; }
.contact-form-box { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 2rem; }
.contact-form-box h3 { font-family: 'Libre Baskerville', serif; font-size: 1.15rem; font-weight: 700; color: var(--blue); margin-bottom: .35rem; }
.contact-form-box p { font-size: .8rem; color: var(--text-light); margin-bottom: 1.4rem; }
.form-lbl { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-bottom: .32rem; }
.form-inp { width: 100%; padding: .62rem .82rem; border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Source Sans 3', sans-serif; font-size: .88rem; color: var(--text); background: var(--off-white); outline: none; margin-bottom: .9rem; transition: border-color .15s; }
.form-inp:focus { border-color: var(--blue); background: white; }
textarea.form-inp { min-height: 105px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }

/* ── ABOUT ── */
.about-layout { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
.about-text p { font-size: .93rem; color: var(--text-mid); line-height: 1.88; margin-bottom: 1.2rem; }

/* ── SLIDESHOW ── */
.slideshow-wrap { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--off-white); }
.slideshow-frame {
  position: relative; aspect-ratio: 4/3;
  background: #1a2a40;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.slideshow-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  opacity: 0; transition: opacity .55s ease;
}
.slideshow-frame img.active { opacity: 1; }
.slideshow-caption { padding: .8rem 1.1rem; font-size: .78rem; color: var(--text-mid); font-style: italic; background: white; min-height: 2.8rem; border-top: 1px solid var(--border); }
.slideshow-controls { display: flex; align-items: center; justify-content: space-between; padding: .6rem 1rem; background: var(--warm-gray); border-top: 1px solid var(--border); }
.slide-btn { background: var(--blue); border: none; border-radius: 3px; color: white; width: 28px; height: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: background .15s; }
.slide-btn:hover { background: var(--blue); }
.slide-dots { display: flex; gap: .35rem; flex-wrap: wrap; justify-content: center; max-width: 200px; }
.slide-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background .2s; border: none; padding: 0; }
.slide-dot.active { background: var(--orange); }
.slideshow-credit { font-size: .72rem; color: var(--text-light); margin-top: .6rem; text-align: center; font-style: italic; }

/* ── MEDICARE NOTE BOX ── */
.medicare-note {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
  font-size: .88rem; color: var(--text-mid); line-height: 1.75;
  margin-top: 1.5rem;
  max-width: 680px;
}
.medicare-note strong { color: var(--blue); }

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  width: 32px; height: 32px;
  font-size: .95rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: .85;
  transition: opacity .15s;
}
.nav-toggle:hover { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px; left: 0; right: 0;
    background: var(--blue);
    padding: .75rem 1.5rem 1.25rem;
    gap: .1rem;
    border-top: 2px solid var(--orange);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .55rem .5rem; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a:last-child { border: none; }
  .nav-links .nav-cta { margin-left: 0; margin-top: .5rem; text-align: center; }

  .site-nav { position: relative; }

  .hero { grid-template-columns: 1fr; min-height: auto; border-bottom: 3px solid var(--orange); }
  .hero-right { display: none; }
  .hero-left { padding: 2.5rem 1.5rem; border-left: none; }
  .hero-title { font-size: 2rem; color: var(--blue); }
  .hero-ghost { color: var(--blue); border-color: var(--blue); }
  .home-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .heart-ad { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-strip { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .value-item:last-child { border: none; }
  .expect-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.9rem; }
  .page-hero h1 { font-size: 1.8rem; }
}
