/* ==========================================================================
   Wellstone Primary Care — Global Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1D3A2F;
  --accent: #7BBFAA;
  --linen: #F2EDE6;
  --bg: #FDFCFA;
  --text: #1A1A1A;
  --muted: #6B7280;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --shadow-card: 0 8px 32px rgba(29, 58, 47, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(29, 58, 47, 0.14);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-btn: 8px;

  --section-pad: 120px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 64px; }
h2 { font-size: 46px; }
h3 { font-size: 30px; }

p { color: var(--text); }

.section { padding: var(--section-pad) 0; }
.bg-white { background: var(--bg); }
.bg-linen { background: var(--linen); }
.bg-forest { background: var(--primary); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-header.align-left { margin-left: 0; text-align: left; }

.section-header h2 { margin-bottom: 18px; }
.section-header p { color: var(--muted); font-size: 18px; }

.on-dark .section-label { color: var(--accent); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark p { color: rgba(255,255,255,0.82); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: #14291f;
  box-shadow: 0 10px 28px rgba(29,58,47,0.32);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: #67ab95;
  box-shadow: 0 10px 28px rgba(123,191,170,0.4);
  transform: translateY(-2px);
}

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

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

.btn-sage-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.btn-sage-outline:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-block { width: 100%; }

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 6px 28px rgba(29,58,47,0.10);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links > li { position: relative; }

.nav-links a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Services dropdown */

.has-dropdown > a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover > a::after { transform: rotate(225deg); margin-top: 3px; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card-hover);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary);
}

.dropdown-menu li a:hover {
  background: var(--linen);
  color: var(--primary);
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.35s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile drawer */

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 84vw);
  height: 100vh;
  background: var(--primary);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  padding: 110px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
}

.mobile-drawer.open { right: 0; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.drawer-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.mobile-drawer a {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-drawer a:hover,
.mobile-drawer a.active { color: var(--accent); }

.mobile-drawer .drawer-sub {
  margin-top: 14px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid rgba(123,191,170,0.3);
}

.mobile-drawer .drawer-sub a { font-size: 16.5px; font-weight: 500; }

.mobile-drawer .btn { margin-top: 10px; text-align: center; }

@media (max-width: 900px) {
  .nav-right > .nav-links, .nav-right > .btn { display: none; }
  .hamburger { display: flex; }
}

/* ==========================================================================
   Hero — Home
   ========================================================================== */

.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29,58,47,0.88) 0%, rgba(29,58,47,0.75) 32%, rgba(29,58,47,0.15) 68%, rgba(29,58,47,0) 100%);
}

.hero-home .container {
  position: relative;
  z-index: 2;
}

.hero-home-content { max-width: 640px; }

.hero-home h1 {
  color: var(--white);
  font-size: 64px;
  margin-bottom: 24px;
}

.hero-home .hero-sub {
  color: #DCEDE5;
  font-size: 19px;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-badge {
  position: absolute;
  right: 40px;
  bottom: 48px;
  z-index: 3;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  padding: 16px 24px;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-card-hover);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ==========================================================================
   Hero — Inner Pages
   ========================================================================== */

.hero-page {
  padding: 180px 0 100px;
  text-align: center;
}

.hero-page.dark { background: var(--primary); }
.hero-page.light { background: var(--linen); }

.hero-page h1 { font-size: 58px; margin-bottom: 18px; }
.hero-page.dark h1 { color: var(--white); }
.hero-page.light h1 { color: var(--primary); }

.hero-page .hero-sub {
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto;
}
.hero-page.dark .hero-sub { color: var(--accent); }
.hero-page.light .hero-sub { color: var(--accent); font-weight: 600; }

.hero-image-wrap {
  margin-top: 56px;
}
.hero-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */

.trust-strip {
  background: var(--linen);
  padding: 34px 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

.trust-item .icon-circle {
  width: 34px; height: 34px;
  flex-shrink: 0;
}

/* ==========================================================================
   Icon circles (shared)
   ========================================================================== */

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(123,191,170,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
  flex-shrink: 0;
}

.icon-circle svg { width: 28px; height: 28px; }

.icon-circle.sm { width: 34px; height: 34px; border-radius: 10px; }
.icon-circle.sm svg { width: 18px; height: 18px; }

.icon-circle.on-forest {
  background: rgba(123,191,170,0.22);
  color: var(--accent);
}

/* ==========================================================================
   Welcome / Split Sections
   ========================================================================== */

.welcome-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: center;
}

.welcome-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.welcome-content p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
.welcome-content h2 { margin-bottom: 22px; }

/* Reversed split (image on right) */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-row.reverse .split-image { order: 2; }
.split-row.reverse .split-content { order: 1; }

.split-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.split-content p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.split-content h2, .split-content h3 { margin-bottom: 20px; }

/* ==========================================================================
   Service Cards
   ========================================================================== */

.services-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.services-grid-sub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 42px 34px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card h3 { margin-bottom: 14px; font-size: 25px; }
.service-card p { color: var(--muted); margin-bottom: 20px; }

.service-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.service-link:hover { gap: 10px; }

.service-card.small {
  padding: 30px 26px;
  text-align: left;
}
.service-card.small h4 { color: var(--primary); font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.service-card.small p { font-size: 14.5px; margin-bottom: 0; }
.service-card.small .icon-circle { width: 48px; height: 48px; margin-bottom: 16px; }
.service-card.small .icon-circle svg { width: 22px; height: 22px; }

/* Alternating service detail rows (services.html) */

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid rgba(29,58,47,0.08);
}
.service-detail-row:last-child { border-bottom: none; }
.service-detail-row.reverse .sd-image { order: 2; }
.service-detail-row.reverse .sd-content { order: 1; }

.sd-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.sd-content .section-label { margin-bottom: 12px; }
.sd-content h3 { font-size: 34px; margin-bottom: 18px; }
.sd-content p { color: var(--muted); margin-bottom: 14px; font-size: 16.5px; }
.sd-content ul { margin: 20px 0 26px; display: flex; flex-direction: column; gap: 10px; }
.sd-content ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: 15.5px; }
.sd-content ul li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); width: 18px; height: 18px; }

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats-section {
  background: var(--primary);
  padding: 150px 0 110px;
  clip-path: polygon(0% 4%, 8% 1.5%, 20% 0%, 35% 1.2%, 50% 2.4%, 65% 1.2%, 80% 0%, 92% 1.5%, 100% 4%, 100% 100%, 0% 100%);
  margin-top: -40px;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--white);
  font-weight: 600;
  font-size: 15.5px;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.why-grid h3, .values-grid h3 { font-size: 24px; margin-bottom: 14px; }
.why-grid p, .values-grid p { color: var(--muted); font-size: 16px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 34px;
  box-shadow: var(--shadow-card);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.testimonial-text {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stars { color: var(--accent); font-size: 15px; margin-top: 4px; letter-spacing: 2px; }

/* ==========================================================================
   Insurance
   ========================================================================== */

.insurance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.insurance-badge {
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29,58,47,0.82);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 { color: var(--white); font-size: 44px; margin-bottom: 18px; }
.cta-section p { color: var(--accent); font-size: 18px; margin-bottom: 38px; max-width: 620px; margin-left: auto; margin-right: auto; }

.cta-section .btn-primary {
  border: 2px solid var(--accent);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--primary);
  position: relative;
  padding-top: 0;
}

.footer-wave { display: block; width: 100%; height: auto; }

.footer-top {
  text-align: center;
  padding: 20px 24px 70px;
  max-width: 760px;
  margin: 0 auto;
}

.footer-top .section-label { justify-content: center; display: block; }

.footer-top h2 {
  color: var(--white);
  font-size: 48px;
  margin: 18px 0 22px;
}

.footer-top p {
  color: rgba(220,237,229,0.85);
  font-size: 17px;
  margin-bottom: 36px;
}

.footer-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-buttons .btn { border-radius: 100px; }

.footer-divider {
  height: 1px;
  background: rgba(123,191,170,0.2);
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 48px;
}

.footer-col img { height: 48px; margin-bottom: 20px; }

.footer-col p {
  color: rgba(220,237,229,0.75);
  font-size: 15px;
  margin-bottom: 22px;
}

.footer-col h4 {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-col ul { display: flex; flex-direction: column; gap: 13px; }

.footer-col ul li a {
  color: var(--white);
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-col a { transition: color 0.3s ease; }
.footer-col p a { color: var(--white); font-weight: 600; }
.footer-col p a:hover { color: var(--accent); }
.footer-col .hours-text { color: rgba(220,237,229,0.75); font-size: 14px; line-height: 1.8; }

.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(123,191,170,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom-line {
  height: 1px;
  background: rgba(123,191,170,0.2);
}

.footer-bottom {
  text-align: center;
  padding: 26px 24px;
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
}

.footer-bottom a { color: rgba(255,255,255,0.6); transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--accent); }

/* ==========================================================================
   Mission / Pull Quote
   ========================================================================== */

.pull-quote-wrap { max-width: 860px; margin: 0 auto; text-align: center; }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.pull-quote-cite {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Founder Card
   ========================================================================== */

.founder-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.founder-card h3 { font-size: 36px; margin-bottom: 8px; }
.founder-card .founder-title { color: var(--accent); font-weight: 700; margin-bottom: 22px; display: block; }
.founder-card .founder-creds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.founder-card .founder-creds span {
  background: var(--linen);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
}
.founder-card p { color: var(--muted); font-size: 16.5px; text-align: left; }

/* ==========================================================================
   Info Cards (Who We Serve, etc.)
   ========================================================================== */

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.info-card h4 { font-size: 21px; margin-bottom: 10px; }
.info-card p { color: var(--muted); font-size: 15px; }

/* ==========================================================================
   Checklist
   ========================================================================== */

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  font-weight: 600;
  font-size: 16px;
}

.checklist li .check-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(123,191,170,0.18);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checklist li .check-icon svg { width: 16px; height: 16px; }

/* ==========================================================================
   Steps
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.steps-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.step-item { text-align: center; }

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.step-item h4 { font-size: 21px; margin-bottom: 10px; }
.step-item p { color: var(--muted); font-size: 15px; }

.approach-steps .step-number { background: var(--primary); }

/* ==========================================================================
   Preventive Grid (3x2), Conditions Grid
   ========================================================================== */

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.feature-card h4 { font-size: 22px; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 15.5px; }

/* ==========================================================================
   Screening Table
   ========================================================================== */

.screening-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.screening-table th {
  background: var(--primary);
  color: var(--white);
  text-align: left;
  padding: 20px 26px;
  font-size: 15px;
  letter-spacing: 0.4px;
}

.screening-table td {
  padding: 20px 26px;
  border-bottom: 1px solid rgba(29,58,47,0.08);
  color: var(--text);
  font-size: 15.5px;
}

.screening-table tr:last-child td { border-bottom: none; }
.screening-table tr:nth-child(even) { background: rgba(242,237,230,0.4); }

.screening-table td:first-child { font-weight: 700; color: var(--primary); }

/* ==========================================================================
   Locations
   ========================================================================== */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.location-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.location-card-body { padding: 38px; }

.location-card-body h3 { font-size: 27px; margin-bottom: 14px; }

.location-card-body address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.6;
}

.location-card-body .loc-phone {
  display: block;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.location-card-body .loc-hours {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.map-embed {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--primary);
  text-align: left;
}

.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(123,191,170,0.18);
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 20px;
}

.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 0.3s ease;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; }

.faq-item.open .faq-toggle::after { transform: rotate(90deg) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 28px 26px;
  color: var(--muted);
  font-size: 15.5px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--accent);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(29,58,47,0.16);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--linen);
  box-shadow: 0 0 0 4px rgba(123,191,170,0.18);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.radio-group {
  display: flex;
  gap: 26px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  cursor: pointer;
}

.contact-info-card {
  background: var(--linen);
  border-radius: var(--radius-md);
  padding: 44px;
}

.contact-info-card h3 { margin-bottom: 26px; }

.contact-info-block { margin-bottom: 22px; }
.contact-info-block .label { font-weight: 700; color: var(--primary); display: block; margin-bottom: 6px; font-size: 15px; }
.contact-info-block span, .contact-info-block a { color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.contact-info-card a.accent-link { color: var(--accent); font-weight: 700; }

.emergency-note {
  background: rgba(29,58,47,0.06);
  border-left: 3px solid var(--primary);
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--primary);
  font-size: 14.5px;
  font-weight: 600;
  margin-top: 10px;
}

.contact-info-image {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.contact-info-image img { width: 100%; height: 220px; object-fit: cover; }

/* ==========================================================================
   Modal
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,30,25,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 24px;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-md);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-card-hover);
}

.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-header {
  background: var(--primary);
  padding: 34px;
  text-align: center;
}

.modal-check {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.modal-check svg { width: 30px; height: 30px; }

.modal-header h4 {
  color: var(--white);
  font-size: 22px;
}

.modal-body { padding: 34px; text-align: center; }
.modal-body p { color: var(--muted); margin-bottom: 26px; font-size: 15.5px; }

.modal-close-btn {
  background: var(--accent);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 100px;
  font-weight: 700;
}
.modal-close-btn:hover { background: #67ab95; }

/* ==========================================================================
   Scroll To Top
   ========================================================================== */

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.3s ease;
  z-index: 900;
}

.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: #14291f; }
.scroll-top-btn svg { width: 22px; height: 22px; }

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Privacy / HIPAA Note Box
   ========================================================================== */

.notice-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--linen);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ==========================================================================
   Portal Section
   ========================================================================== */

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.portal-features { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.portal-feature { display: flex; gap: 14px; align-items: flex-start; }
.portal-feature svg { color: var(--accent); width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; }
.portal-feature span { color: var(--text); font-weight: 600; }

/* ==========================================================================
   Tips Grid
   ========================================================================== */

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.tip-card {
  background: var(--linen);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.tip-card h4 { font-size: 20px; margin-bottom: 10px; }
.tip-card p { color: var(--muted); font-size: 15px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  :root { --section-pad: 90px; }
  h1 { font-size: 50px; }
  h2 { font-size: 36px; }
  .hero-home h1 { font-size: 48px; }
  .welcome-grid, .split-row, .service-detail-row, .portal-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-row.reverse .split-image, .service-detail-row.reverse .sd-image { order: 1; }
  .split-row.reverse .split-content, .service-detail-row.reverse .sd-content { order: 2; }
  .services-grid-main, .grid-3col, .why-grid, .values-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-sub, .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid, .steps-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 45px; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  .hero-home { min-height: 92vh; }
  .hero-home h1 { font-size: 38px; }
  .hero-page { padding: 140px 0 60px; }
  .hero-page h1 { font-size: 38px; }
  .hero-badge { right: 20px; bottom: 24px; left: 20px; justify-content: center; }
  .services-grid-main, .services-grid-sub, .grid-3col, .why-grid, .values-grid, .testimonial-grid, .info-cards-grid, .checklist, .form-row, .locations-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding: 50px 28px; }
  .footer-top h2 { font-size: 32px; }
  .contact-form-card, .contact-info-card, .founder-card { padding: 30px 24px; }
  .steps-grid, .steps-grid.cols-4 { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .screening-table { font-size: 13px; }
  .screening-table th, .screening-table td { padding: 14px 12px; }
}

@media (max-width: 480px) {
  .hero-home h1, .hero-page h1 { font-size: 32px; }
  .footer-buttons { flex-direction: column; width: 100%; }
  .footer-buttons .btn { width: 100%; }
  .radio-group { flex-direction: column; gap: 14px; }
}
