/* ==========================================================================
   ALETHEIA INTEGRATIVE — Main Stylesheet
   Design: Navy / Copper / Ivory — Playfair Display + DM Sans
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --navy: #1B2B4B;
  --navy-deep: #131f36;
  --navy-light: #2a4470;
  --copper: #C97B3E;
  --copper-light: #d4914f;
  --copper-glow: rgba(201,123,62,0.12);
  --sage: #8FA992;
  --sage-light: rgba(143,169,146,0.15);
  --ivory: #FAF8F5;
  --ivory-mid: #F0ECE6;
  --warm-white: #FFFEFA;
  --cream: #FAFAF7;
  --text: #1C2A3D;
  --text-light: #595959;
  --text-muted: #8E9AAA;
  --border: #E4DED6;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- GRAIN TEXTURE ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- FADE-IN ANIMATIONS ---------- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- NAVIGATION ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.site-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 30px rgba(28,42,61,0.04);
}
.nav-brand {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo { height: 72px; width: auto; }
.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--text-light);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 1.5px; background: var(--copper); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
  padding: 11px 26px; background: var(--navy); color: #fff;
  border-radius: 6px; text-decoration: none; letter-spacing: 0.04em;
  transition: all 0.35s ease;
}
.nav-cta:hover {
  background: var(--navy-deep); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(38,69,123,0.25);
}
.nav-cta-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.nav-cta-outline:hover {
  background: var(--navy); color: #fff;
}
.nav-cta-group {
  display: flex; align-items: center; gap: 10px;
}
.nav-phone {
  font-size: 0.82rem; font-weight: 500; color: var(--navy);
  text-decoration: none; letter-spacing: 0.02em;
}
/* Dropdown nav */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 4px; cursor: pointer;
}
.nav-dropdown-arrow {
  font-size: 0.6em; transition: transform 0.3s ease;
}
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 260px; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 0; list-style: none;
  box-shadow: 0 12px 40px rgba(28,42,61,0.1);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.25s ease; margin-top: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; margin-top: 4px;
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.82rem; font-weight: 500;
  color: var(--text-light); text-decoration: none; transition: all 0.2s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  background: var(--ivory); color: var(--navy);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  transition: all 0.3s ease;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1100; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
  background: var(--warm-white); z-index: 1200;
  padding: 32px 32px 32px; overflow-y: auto;
  transition: right 0.35s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mobile-menu.active { right: 0; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-menu-logo { height: 36px; width: auto; }
.mobile-menu-close {
  background: none; border: none; font-size: 2rem;
  color: var(--text); cursor: pointer; line-height: 1;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 0;
}
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 1rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border); transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--copper); }
.mobile-nav-phone { color: var(--navy) !important; font-weight: 600 !important; }
.mobile-nav-group { border-bottom: 1px solid var(--border); }
.mobile-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 0; font-size: 1rem; font-weight: 500;
  color: var(--text); background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
}
.mobile-nav-arrow { font-size: 0.7em; transition: transform 0.3s; }
.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-arrow { transform: rotate(180deg); }
.mobile-nav-submenu {
  display: none; padding-left: 16px; padding-bottom: 8px;
}
.mobile-nav-toggle[aria-expanded="true"] + .mobile-nav-submenu { display: block; }
.mobile-nav-submenu a {
  padding: 10px 0; font-size: 0.9rem; border-bottom: none;
  color: var(--text-light);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--navy); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  border: none; border-radius: 8px; cursor: pointer; text-decoration: none;
  letter-spacing: 0.03em; transition: all 0.35s ease;
}
.btn-primary:hover {
  background: var(--navy-deep); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(38,69,123,0.3); color: #fff;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; background: transparent; color: var(--navy);
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer;
  text-decoration: none; letter-spacing: 0.03em; transition: all 0.35s ease;
}
.btn-secondary:hover {
  border-color: var(--navy); background: rgba(38,69,123,0.03); color: var(--navy);
}
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; background: #fff; color: var(--navy);
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  border-radius: 8px; text-decoration: none; letter-spacing: 0.03em;
  transition: all 0.35s ease; position: relative; z-index: 1;
}
.btn-white:hover {
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); color: var(--navy);
}
.btn-copper {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--copper); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  border: none; border-radius: 8px; cursor: pointer; text-decoration: none;
  letter-spacing: 0.03em; transition: all 0.35s ease;
}
.btn-copper:hover {
  background: var(--copper-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(199,90,51,0.3); color: #fff;
}

/* ---------- SECTION DEFAULTS ---------- */
section { padding: 80px 60px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 32px; height: 1.5px; background: var(--copper);
}
.section-title {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 500;
  color: var(--navy); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-light); line-height: 1.75;
  max-width: 560px; font-weight: 300;
}

/* ---------- HERO ---------- */
.hero {
  display: flex; align-items: center;
  padding: 110px 60px 60px; position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1320px; margin: 0 auto; width: 100%;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--copper);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1.5px; background: var(--copper);
}
.hero h1 {
  font-family: var(--font-display); font-size: 2.9rem; font-weight: 500;
  line-height: 1.15; color: var(--navy); letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic; color: var(--copper); font-weight: 400;
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-light);
  max-width: 480px; margin-bottom: 16px; font-weight: 300;
}
.hero-promise {
  font-size: 0.92rem; line-height: 1.7; color: var(--text-light);
  max-width: 480px; margin-bottom: 28px; font-weight: 300;
  padding-left: 16px; border-left: 2px solid var(--copper);
  font-style: italic;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.hero-image {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(28,42,61,0.12);
}
.hero-image img {
  width: 100%; height: 520px; object-fit: cover; display: block;
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 16px;
}
.hero-badge {
  position: absolute; bottom: 24px; left: 40px;
  background: white; padding: 20px 28px; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(28,42,61,0.1);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge-icon {
  width: 44px; height: 44px; background: var(--copper-glow);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--copper); font-size: 1.2rem;
}
.hero-badge-text {
  font-size: 0.82rem; color: var(--text-light); line-height: 1.4;
}
.hero-badge-text strong {
  display: block; color: var(--navy); font-weight: 600; font-size: 0.9rem;
}

/* ---------- PROBLEM SECTION ---------- */
.problem { background: var(--ivory); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.problem-image {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(28,42,61,0.08);
}
.problem-image img {
  width: 100%; height: 440px; object-fit: cover; display: block;
}
.problem-points {
  margin-top: 36px; display: flex; flex-direction: column; gap: 20px;
}
.problem-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.problem-point:last-child { border-bottom: none; }
.problem-point-num {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--copper); min-width: 32px; line-height: 1.2;
}
.problem-point p {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.6;
}
.problem-point p strong { color: var(--text); font-weight: 600; }

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 30px;
  transition: all 0.4s ease; cursor: default;
  position: relative; overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column;
}
.service-card.has-image {
  padding: 0; background: #fff;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--copper); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease; z-index: 1;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,42,61,0.08);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-image {
  aspect-ratio: 3 / 2; overflow: hidden;
}
.service-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 28px 28px 32px; flex: 1;
  display: flex; flex-direction: column;
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(38,69,123,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--navy);
}
.has-image .service-icon {
  width: 40px; height: 40px; border-radius: 10px;
  margin-bottom: 14px;
}
.service-icon svg { width: 24px; height: 24px; }
.has-image .service-icon svg { width: 20px; height: 20px; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
}
.service-card .card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--copper);
  margin-top: auto; padding-top: 16px; transition: gap 0.3s ease;
}
.service-card:hover .card-arrow { gap: 10px; }

/* ---------- ABOUT / DOCTOR ---------- */
.about { background: var(--navy); color: #fff; overflow: hidden; }
.about .section-label { color: var(--copper-light); }
.about .section-label::before { background: var(--copper-light); }
.about .section-title { color: #fff; }
.about .section-desc { color: rgba(255,255,255,0.7); }
.about-grid {
  display: grid; grid-template-columns: 400px 1fr;
  gap: 80px; align-items: center; margin-top: 50px;
}
.about-portrait {
  border-radius: 14px; overflow: hidden; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.about-portrait img {
  width: 100%; height: 500px; object-fit: cover; object-position: top; display: block;
}
.about-portrait::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
}
.about-content { position: relative; }
.about-quote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 32px;
  padding-left: 24px; border-left: 3px solid var(--copper);
}
.about-name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  margin-bottom: 6px;
}
.about-title {
  font-size: 0.88rem; color: var(--copper-light);
  margin-bottom: 24px; letter-spacing: 0.04em;
}
.about-bio {
  font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.8;
  margin-bottom: 32px;
}
.about-stats {
  display: flex; gap: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.about-stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600;
  color: var(--copper-light);
}
.about-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em; margin-top: 4px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--ivory); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 36px;
}
.testimonial-card {
  background: white; border-radius: 14px; padding: 36px 32px;
  border: 1px solid var(--border); transition: all 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,42,61,0.06);
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 18px;
  color: var(--copper); font-size: 0.9rem;
}
.testimonial-text {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author {
  font-weight: 600; font-size: 0.85rem; color: var(--navy);
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(199,90,51,0.08);
}
.cta-band h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
}
.cta-band p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 36px;
  position: relative; z-index: 1;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; margin-top: 60px;
}
.contact-item {
  padding: 32px; background: var(--ivory); border-radius: 12px;
  border: 1px solid var(--border); text-align: center;
}
.contact-item-icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  background: rgba(38,69,123,0.06); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.contact-item-icon svg { width: 24px; height: 24px; }
.contact-item h4 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.contact-item p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.6;
}
.contact-item a {
  color: var(--copper); text-decoration: none; font-weight: 500;
}
.contact-item a:hover { text-decoration: underline; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.6);
  padding: 60px 60px 40px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px;
}
.footer-brand { max-width: 320px; }
.footer-logo { height: 120px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; }
.footer-social {
  display: flex; gap: 12px; margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6); transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--copper); color: var(--copper);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.3s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-size: 0.78rem;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding: 160px 60px 80px; background: var(--ivory);
  text-align: center;
}
.page-header .section-label { justify-content: center; }
.page-header .section-title { max-width: 700px; margin: 0 auto 20px; }
.page-header .section-desc { max-width: 600px; margin: 0 auto; }

/* ---------- CONTENT AREA ---------- */
/* -- Generic entry-content -- */
.entry-content {
  padding: 80px 60px;
}
.entry-content > * { max-width: 800px; margin-left: auto; margin-right: auto; }
.entry-content h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  color: var(--navy); margin: 48px auto 16px; line-height: 1.3;
}
.entry-content h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  color: var(--navy); margin: 36px auto 12px;
}
.entry-content p {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-light);
  margin-bottom: 20px; font-weight: 300;
}
.entry-content ul, .entry-content ol {
  margin: 0 auto 24px; color: var(--text-light); line-height: 1.8;
  max-width: 800px;
}
.entry-content li { margin-bottom: 8px; font-size: 1rem; }
.entry-content blockquote {
  margin: 40px auto; padding: 24px 32px;
  border-left: 3px solid var(--copper);
  background: var(--ivory); border-radius: 0 8px 8px 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; color: var(--navy); line-height: 1.6;
}

/* -- Service content (structured layout) -- */
.service-content { counter-reset: service-section; }

.service-content-section {
  padding: 80px 60px;
}
.service-content-section:nth-child(even) {
  background: var(--ivory);
}
.service-content-section-inner {
  max-width: 1000px; margin: 0 auto;
}

.service-content-section h2 {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 500;
  color: var(--navy); margin: 0 0 24px; line-height: 1.3;
  padding-bottom: 16px; border-bottom: 2px solid var(--copper-glow);
  position: relative;
}
.service-content-section h2::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 60px; height: 2px; background: var(--copper);
}

.service-content-section h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  color: var(--navy); margin: 28px 0 12px;
}

.service-content-section p {
  font-size: 0.98rem; line-height: 1.8; color: var(--text-light);
  margin-bottom: 16px; font-weight: 300; max-width: 780px;
}

.service-content-section ul {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px;
}
.service-content-section ul li {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.65;
  padding: 10px 0 10px 28px; position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.service-content-section ul li::before {
  content: '\2713'; position: absolute; left: 0; top: 10px;
  color: var(--copper); font-weight: 700; font-size: 0.85rem;
}
.service-content-section ul li strong {
  color: var(--navy); font-weight: 600; display: block;
  font-size: 0.95rem;
}

/* Single-column list variant for shorter lists */
.service-content-section ul:has(li:nth-child(4)):not(:has(li:nth-child(7))) {
  grid-template-columns: 1fr;
  max-width: 600px;
}

/* Highlight box for important paragraphs with strong lead */
.service-content-section p strong:first-child {
  color: var(--navy); font-weight: 600;
}

/* ---------- SERVICE PAGE ---------- */
.service-hero {
  padding: 140px 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1320px; margin: 0 auto;
  align-items: center;
}
.service-hero-content .section-label { margin-bottom: 12px; }
.service-hero h1 {
  font-family: var(--font-display); font-size: 3rem; font-weight: 500;
  color: var(--navy); line-height: 1.2; margin-bottom: 24px;
}
.service-hero-desc {
  font-size: 1.1rem; color: var(--text-light); line-height: 1.75;
  margin-bottom: 32px; font-weight: 300;
}
.service-hero-image {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(28,42,61,0.1);
}
.service-hero-image img {
  width: 100%; height: 440px; object-fit: cover;
}

/* Service features list */
.service-features {
  padding: 100px 60px; background: var(--ivory);
}
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; margin-top: 48px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.feature-item {
  display: flex; gap: 20px; padding: 28px; background: white;
  border-radius: 12px; border: 1px solid var(--border);
}
.feature-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--copper-glow); display: flex; align-items: center;
  justify-content: center; color: var(--copper);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-item h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.feature-item p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.6;
}

/* ---------- CHERRY PAYMENT WIDGET ---------- */
.cherry-widget-section {
  padding: 0 60px 80px;
  background: var(--warm-white);
}
.cherry-widget-wrap {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}

/* ---------- GHL FORM EMBED ---------- */
.ghl-form-section {
  padding: 0 60px 80px;
  background: var(--warm-white);
}
.ghl-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- SERVICES LISTING PAGE ---------- */
.services-listing { padding: 60px 60px 120px; }
.services-category {
  max-width: 1200px; margin: 0 auto 60px;
}
.services-category:last-child { margin-bottom: 0; }
.services-category h2 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 500;
  color: var(--navy); margin-bottom: 8px;
}
.services-category > p {
  font-size: 0.95rem; color: var(--text-light); margin-bottom: 32px;
}

/* ---------- ABOUT PAGE ---------- */
.about-page-hero {
  padding: 140px 60px 80px; background: var(--ivory);
}
.about-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center;
}
.about-mission { padding: 100px 60px; }
.about-mission-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.about-values { padding: 100px 60px; background: var(--ivory); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.value-card {
  padding: 36px 28px; background: white; border-radius: 14px;
  border: 1px solid var(--border); text-align: center;
}
.value-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.value-card p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
}

/* ---------- PROVIDERS (About Page) ---------- */
.providers-section { padding: 100px 60px; }
.provider-card {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 60px auto 0;
  background: white; border-radius: 16px; padding: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(28,42,61,0.04);
}
.provider-card-reverse { grid-template-columns: 1fr 340px; }
.provider-card-reverse .provider-portrait { order: 2; }
.provider-card-reverse .provider-content { order: 1; }
.provider-portrait {
  border-radius: 12px; overflow: hidden;
}
.provider-portrait img {
  width: 100%; height: 420px; object-fit: cover; object-position: top; display: block;
  border-radius: 12px;
}
.provider-name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.provider-title {
  font-size: 0.85rem; color: var(--copper);
  margin-bottom: 24px; letter-spacing: 0.03em; font-weight: 500;
}
.provider-bio {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.8;
  margin-bottom: 16px;
}
.provider-bio:last-of-type { margin-bottom: 24px; }
.provider-quote {
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic;
  color: var(--navy); line-height: 1.6; margin-bottom: 28px;
  padding-left: 20px; border-left: 3px solid var(--copper);
}
.provider-stats {
  display: flex; gap: 36px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.provider-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--copper);
}
.provider-stat-label {
  font-size: 0.75rem; color: var(--text-light);
  letter-spacing: 0.04em; margin-top: 4px;
}

/* ---------- TESTIMONIALS PAGE ---------- */
.testimonials-page-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
  padding: 0 60px 120px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-page { padding: 60px 60px 120px; }
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1200px; margin: 0 auto;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text); background: white;
  transition: border-color 0.3s;
  margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--navy);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em;
}
.contact-info-block {
  padding: 32px; background: var(--ivory); border-radius: 14px;
  border: 1px solid var(--border); margin-bottom: 24px;
}
.contact-info-block h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--navy); margin-bottom: 16px;
}

/* ---------- PAYMENT PLANS ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1200px; margin: 60px auto 0;
}
.pricing-card {
  padding: 40px 32px; background: white; border-radius: 14px;
  border: 1px solid var(--border); text-align: center;
  transition: all 0.4s ease; position: relative;
}
.pricing-card.featured {
  border-color: var(--copper); transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(28,42,61,0.1);
}
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--copper); color: white;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 20px; border-radius: 20px;
}
.pricing-card h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: var(--navy); margin: 20px 0 8px;
}
.pricing-amount span {
  font-size: 1rem; font-weight: 400; color: var(--text-muted);
}
.pricing-desc {
  font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px;
}
.pricing-features {
  list-style: none; text-align: left; margin-bottom: 32px;
}
.pricing-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-light);
  display: flex; gap: 10px; align-items: flex-start;
}
.pricing-features li::before {
  content: '\2713'; color: var(--copper); font-weight: 700; flex-shrink: 0;
}

/* ---------- YOUR JOURNEY PAGE ---------- */
.journey-split {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 48px; max-width: 900px; margin: 0 auto; align-items: start;
}
.journey-icon-block { text-align: center; }
.journey-icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: var(--copper-glow); color: var(--copper);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.journey-icon svg { width: 32px; height: 32px; }
.journey-tag {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  background: var(--copper); color: white;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.journey-list li {
  font-size: 0.9rem; color: var(--text-light); line-height: 1.6;
  padding-left: 22px; position: relative;
}
.journey-list li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--copper); font-weight: 700;
}
.journey-pathways {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.journey-pathways a {
  display: inline-block; padding: 8px 16px; border-radius: 8px;
  background: white; border: 1px solid var(--border);
  font-size: 0.82rem; color: var(--navy); font-weight: 500;
  text-decoration: none; transition: all 0.3s;
}
.journey-pathways a:hover {
  border-color: var(--copper); color: var(--copper);
}
.journey-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 1000px; margin: 48px auto 0;
}
.journey-step {
  text-align: center; padding: 40px 28px;
  background: var(--ivory); border-radius: 14px;
  border: 1px solid var(--border);
}
.journey-step-num {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 700; color: var(--copper); margin-bottom: 16px;
}
.journey-step h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; color: var(--navy); margin-bottom: 12px;
}
.journey-step p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
}
.journey-peaks {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; max-width: 900px; margin: 48px auto 0; text-align: center;
}
.journey-peak h4 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; margin-bottom: 8px;
}
.journey-peak p {
  font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.65;
}

/* ---------- 404 PAGE ---------- */
.page-404 {
  min-height: 80vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 120px 32px;
}
.page-404 h1 {
  font-family: var(--font-display); font-size: 6rem; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
}
.page-404 p {
  font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px;
}

/* ---------- HERO SUPPORT TEXT ---------- */
.hero-support {
  font-size: 0.88rem; color: var(--text-muted); margin-top: 12px;
  font-weight: 300;
}

/* ---------- WHY ALETHEIA — 4-Card Grid ---------- */
.why-aletheia { background: var(--ivory); }
.why-cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.why-card {
  text-align: center; padding: 32px 24px;
  background: white; border-radius: 14px;
  border: 1px solid var(--border); transition: all 0.35s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,42,61,0.06);
}
.why-card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage-light); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: color 0.3s;
}
.why-card:hover .why-card-icon { color: var(--copper); }
.why-card-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px; line-height: 1.35;
}
.why-card p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
}

/* ---------- PAIN-POINT INTERACTIVE GRID ---------- */
.pain-cards { background: var(--ivory); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 36px;
}
.pain-box {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 28px 24px; background: #fff; border-radius: 14px;
  border: 1px solid var(--border); text-decoration: none;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.pain-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--copper); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.pain-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,42,61,0.1);
  border-color: transparent;
}
.pain-box:hover::before { transform: scaleX(1); }
.pain-box-content { flex: 1; }
.pain-box-content h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--navy); line-height: 1.35; margin-bottom: 8px;
}
.pain-box-desc {
  font-size: 0.82rem; color: var(--text-light); line-height: 1.6;
  margin-bottom: 12px;
}
.pain-box-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.8rem; font-weight: 600; color: var(--copper);
  transition: gap 0.3s ease;
}
.pain-box:hover .pain-box-cta { gap: 8px; }
.pain-box-cta span { transition: transform 0.3s ease; }
.pain-box:hover .pain-box-cta span { transform: translateX(3px); }
.pain-box-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all 0.35s ease;
}
.pain-box:hover .pain-box-icon {
  background: var(--copper-glow); color: var(--copper);
}
.pain-box-icon svg { width: 26px; height: 26px; }

/* ---------- YOUR JOURNEY CALLOUT ---------- */
.journey-callout {
  background: var(--navy); color: #fff; position: relative;
  overflow: hidden; padding: 80px 60px 60px;
}
.journey-callout-inner {
  max-width: 800px; margin: 0 auto; position: relative; z-index: 2;
}
.journey-callout-title {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 500;
  color: #fff; margin-bottom: 28px; line-height: 1.2;
}
.journey-callout-body p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.8;
  margin-bottom: 16px; font-weight: 300;
}
.journey-callout .btn-primary {
  margin-top: 20px; background: var(--copper); color: #fff;
}
.journey-callout .btn-primary:hover {
  background: var(--copper-light);
}
.journey-callout-visual {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  height: 200px; opacity: 0.4; pointer-events: none;
}
.journey-mountain-svg {
  width: 100%; height: 100%;
}

/* ---------- ADDITIONAL WELLNESS SERVICES (IMC-style) ---------- */
.wellness-services-section {
  position: relative; min-height: 480px;
  display: flex; align-items: stretch;
  padding: 0; overflow: hidden;
}
.wellness-services-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(143,169,146,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(201,123,62,0.1) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, #0f1825 100%);
}
.wellness-services-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  mix-blend-mode: overlay; opacity: 0.35;
}
.wellness-services-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(27,43,75,0.3) 0%, rgba(27,43,75,0.15) 40%, transparent 100%);
}
.wellness-services-overlay {
  position: relative; z-index: 1;
  margin-left: auto; width: 50%; max-width: 600px;
  padding: 60px 60px 60px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.wellness-services-overlay .section-label::before {
  background: var(--copper-light);
}
.wellness-services-title {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 500;
  color: #fff; line-height: 1.2; margin-bottom: 12px;
}
.wellness-services-desc {
  font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 20px; font-weight: 300;
}
.wellness-services-list {
  list-style: none; padding: 0; margin: 0 0 8px;
  display: flex; flex-direction: column; gap: 10px;
}
.wellness-services-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 500; color: #fff;
}
.wellness-services-list li svg {
  width: 18px; height: 18px; color: var(--copper-light); flex-shrink: 0;
}

/* ---------- MODALITIES SECTION (legacy) ---------- */
.modalities-section {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}
.modalities-list {
  list-style: none; padding: 0; margin: 36px 0 32px;
  max-width: 720px;
}
.modalities-list li {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.7;
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.modalities-list li strong {
  color: var(--navy); font-weight: 600;
}
.modalities-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--copper);
  text-decoration: none; transition: gap 0.3s ease;
}
.modalities-cta:hover { gap: 10px; }

/* ---------- MEET THE TEAM (Homepage) ---------- */
.meet-team { background: var(--warm-white); }
.team-grid {
  display: flex; flex-direction: column;
  gap: 32px; margin-top: 36px;
  max-width: 1000px; margin-left: auto; margin-right: auto;
}
.team-card {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 40px; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 36px; overflow: hidden; transition: all 0.35s ease;
}
.team-card:nth-child(even) {
  grid-template-columns: 1fr 280px;
}
.team-card:nth-child(even) .team-card-portrait { order: 2; }
.team-card:nth-child(even) .team-card-info { order: 1; }
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,42,61,0.06);
}
.team-card-portrait {
  border-radius: 12px; overflow: hidden;
}
.team-card-portrait img {
  width: 100%; height: 380px; object-fit: cover; object-position: top;
  display: block; border-radius: 12px;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-portrait img { transform: scale(1.03); }
.team-card-info {}
.team-card-info h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.team-card-title {
  font-size: 0.82rem; font-weight: 500; color: var(--copper);
  letter-spacing: 0.02em; margin-bottom: 16px;
}
.team-card-bio {
  font-size: 0.9rem; color: var(--text-light); line-height: 1.7;
  margin-bottom: 18px;
}
.team-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.82rem; font-weight: 600; color: var(--copper);
  text-decoration: none; transition: gap 0.3s ease;
}
.team-card-link:hover { gap: 8px; }

/* ---------- READ MORE LINK ---------- */
.read-more-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--copper);
  text-decoration: none; transition: gap 0.3s ease;
}
.read-more-link:hover { gap: 10px; }

/* ---------- LET'S TALK CTA ---------- */
.lets-talk {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.lets-talk::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(199,90,51,0.08);
}
.lets-talk h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
}
.lets-talk-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px;
  position: relative; z-index: 1;
}
.lets-talk-fine {
  font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 20px;
  position: relative; z-index: 1;
}

/* ---------- PAIN-POINT LANDING PAGE ---------- */
.pain-hero {
  padding: 160px 60px 100px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--warm-white) 100%);
}
.pain-hero h1 {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 24px;
  font-style: italic;
}
.pain-hero-desc {
  font-size: 1.1rem; color: var(--text-light); line-height: 1.75;
  max-width: 640px; margin: 0 auto 40px; font-weight: 300;
}
.pain-hero-actions {
  display: flex; gap: 16px; justify-content: center; align-items: center;
}

.pain-how-section { padding: 100px 60px; }
.pain-related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.pain-related-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 32px 28px; text-decoration: none;
  transition: all 0.4s ease; display: flex; flex-direction: column;
}
.pain-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,42,61,0.08);
  border-color: transparent;
}
.pain-related-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.pain-related-card p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65; flex: 1;
}
.pain-related-card .card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--copper);
  margin-top: 16px; transition: gap 0.3s ease;
}
.pain-related-card:hover .card-arrow { gap: 10px; }

.pain-trust { background: var(--ivory); padding: 100px 60px; }
.pain-trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pain-trust-item {
  text-align: center; padding: 36px 28px;
  background: white; border-radius: 14px;
  border: 1px solid var(--border);
}
.pain-trust-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600;
  color: var(--copper); margin-bottom: 12px;
}
.pain-trust-item h4 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.pain-trust-item p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
}

.pain-testimonials { padding: 100px 60px; }
.pain-testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pain-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 100px 60px; position: relative; overflow: hidden;
}
.pain-cta::before {
  content: ''; position: absolute; top: -50%; left: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(199,90,51,0.08);
}
.pain-cta h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
}
.pain-cta p {
  font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px;
  position: relative; z-index: 1;
}
.pain-cta-phone {
  font-size: 0.92rem; color: rgba(255,255,255,0.5); margin-top: 20px;
  position: relative; z-index: 1;
}
.pain-cta-phone a {
  color: var(--copper-light); text-decoration: none; font-weight: 600;
}
.pain-cta-phone a:hover { text-decoration: underline; }

/* ---------- PAIN-POINT 6-SECTION (pp-*) ---------- */

/* 1 · Hero */
.pp-hero {
  padding: 160px 60px 100px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--warm-white) 100%);
  text-align: center;
}
.pp-hero-inner { max-width: 800px; }
.pp-hero-quote {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin-bottom: 24px;
  font-style: italic;
}
.pp-hero-sub {
  font-size: 1.1rem; color: var(--text-light); line-height: 1.75;
  max-width: 640px; margin: 0 auto 40px; font-weight: 300;
}
.pp-hero-actions {
  display: flex; gap: 16px; justify-content: center; align-items: center;
}

/* Shared content block for sections 2-4 */
.pp-content-block { max-width: 780px; }
.pp-body {
  max-width: 720px; font-size: 1.05rem; line-height: 1.8; font-weight: 300;
}

/* 2 · Validation */
.pp-validation {
  padding: 100px 60px; background: var(--ivory);
}

/* 3 · Root Cause */
.pp-root-cause {
  padding: 100px 60px; background: var(--warm-white);
}

/* 4 · Approach */
.pp-approach {
  padding: 100px 60px; background: var(--ivory);
}
.pp-approach-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 0;
  max-width: 720px;
}
.pp-approach-list li {
  font-size: 0.98rem; color: var(--text-light); line-height: 1.7;
  padding: 14px 0 14px 32px; position: relative;
  border-bottom: 1px solid var(--border);
}
.pp-approach-list li:last-child { border-bottom: none; }
.pp-approach-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 14px;
  color: var(--copper); font-weight: 700; font-size: 0.9rem;
}
.pp-approach-footer {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); font-style: italic;
  padding-top: 8px;
}

/* 5 · Paths */
.pp-paths {
  padding: 100px 60px; background: var(--warm-white);
}
.pp-paths-header {
  margin-bottom: 40px;
}
.pp-paths-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pp-path-tile {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 36px 32px; text-decoration: none;
  display: flex; flex-direction: column;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.pp-path-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--copper); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.pp-path-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,42,61,0.08);
  border-color: transparent;
}
.pp-path-tile:hover::before { transform: scaleX(1); }
.pp-path-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.pp-path-desc {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.7;
  flex: 1; margin-bottom: 20px;
}
.pp-path-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--copper);
  transition: gap 0.3s ease;
}
.pp-path-tile:hover .pp-path-link { gap: 10px; }

/* 6 · Final CTA */
.pp-final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 100px 60px; text-align: center; position: relative; overflow: hidden;
}
.pp-final-cta::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(199,90,51,0.08);
}
.pp-final-cta-inner { max-width: 700px; }
.pp-final-cta h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
}
.pp-final-cta p {
  font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px;
  position: relative; z-index: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .site-nav { padding: 0 32px; }
  .nav-links { display: none; }
  .nav-cta-group { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 32px; }
  .hero { padding: 100px 32px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-image img { height: 380px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait img { height: 360px; }
  .footer-inner { flex-wrap: wrap; }
  .footer-brand { flex: 1 1 100%; margin-bottom: 20px; }
  .service-hero { grid-template-columns: 1fr; padding: 120px 32px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .testimonials-page-grid { grid-template-columns: 1fr; padding: 0 32px 80px; }
  .journey-split { grid-template-columns: 1fr; gap: 24px; }
  .journey-icon-block { text-align: left; display: flex; align-items: center; gap: 12px; }
  .journey-icon { margin: 0; }
  .journey-list { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-peaks { grid-template-columns: 1fr; gap: 32px; }
  .cherry-widget-section { padding: 0 32px 60px; }
  .ghl-form-section { padding: 0 32px 60px; }
  .page-header { padding: 140px 32px 60px; }
  .entry-content { padding: 60px 32px; }
  .service-content-section { padding: 60px 32px; }
  .service-content-section ul { grid-template-columns: 1fr; }
  .services-listing { padding: 40px 32px 80px; }
  .values-grid { grid-template-columns: 1fr; }
  .provider-card,
  .provider-card-reverse { grid-template-columns: 1fr; padding: 32px; }
  .provider-card-reverse .provider-portrait { order: 0; }
  .provider-card-reverse .provider-content { order: 0; }
  .provider-portrait img { height: 320px; }
  .providers-section { padding: 80px 32px; }
  .provider-stats { gap: 24px; }
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .wellness-services-section { min-height: 420px; }
  .wellness-services-overlay { width: 60%; padding: 48px 32px 48px 32px; }
  .wellness-services-title { font-size: 1.8rem; }
  .team-card { grid-template-columns: 1fr; padding: 0; }
  .team-card:nth-child(even) { grid-template-columns: 1fr; }
  .team-card:nth-child(even) .team-card-portrait { order: 0; }
  .team-card:nth-child(even) .team-card-info { order: 0; }
  .team-card-portrait img { height: 300px; border-radius: 14px 14px 0 0; }
  .team-card-info { padding: 24px 28px 28px; }
  .journey-callout { padding: 60px 32px 50px; }
  .journey-callout-title { font-size: 2rem; }
  .lets-talk { padding: 60px 32px; }
  .pain-hero { padding: 120px 32px 80px; }
  .pain-how-section { padding: 80px 32px; }
  .pain-trust { padding: 80px 32px; }
  .pain-trust-grid { grid-template-columns: 1fr; }
  .pain-testimonials { padding: 80px 32px; }
  .pain-testimonials-grid { grid-template-columns: 1fr; }
  .pain-cta { padding: 80px 32px; }
  .pain-hero-actions { flex-direction: column; }
  /* pp-* responsive (tablet) */
  .pp-hero { padding: 120px 32px 80px; }
  .pp-hero-quote { font-size: 2.2rem; }
  .pp-hero-actions { flex-direction: column; }
  .pp-validation,
  .pp-root-cause,
  .pp-approach,
  .pp-paths,
  .pp-final-cta { padding: 80px 32px; }
  .pp-paths-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-stats { flex-direction: column; gap: 20px; }
  .provider-stats { flex-direction: column; gap: 16px; }
  .hero-badge { left: 20px; right: 20px; bottom: -16px; }
  .nav-logo { height: 48px; }
  .footer-logo { height: 100px; }
  .cta-band h2 { font-size: 1.8rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .service-hero h1 { font-size: 2.2rem; }
  .why-cards-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-box-icon { width: 44px; height: 44px; }
  .pain-box-icon svg { width: 22px; height: 22px; }
  .wellness-services-section { min-height: auto; flex-direction: column; }
  .wellness-services-bg { height: 180px; }
  .wellness-services-overlay { width: 100%; max-width: 100%; padding: 36px 24px; }
  .wellness-services-title { font-size: 1.6rem; }
  .team-grid { gap: 24px; }
  .team-card-portrait img { height: 260px; }
  .journey-callout-title { font-size: 1.6rem; }
  .lets-talk h2 { font-size: 1.8rem; }
  .pain-hero h1 { font-size: 2rem; }
  .pain-cta h2 { font-size: 1.8rem; }
  /* pp-* responsive (mobile) */
  .pp-hero-quote { font-size: 1.8rem; }
  .pp-final-cta h2 { font-size: 1.8rem; }
}

/* ---------- IMI OVERVIEW PAGE ---------- */
.imi-hero.imi-hero--overview {
  padding: 160px 60px 80px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--warm-white) 100%);
}
.imi-hero h1 {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 500;
  color: var(--navy); line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.imi-hero-sub {
  font-size: 1.05rem; line-height: 1.75; color: var(--text-light);
  max-width: 600px; margin: 0 auto 16px; font-weight: 300;
}
.imi-hero-support {
  font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px;
  font-weight: 300;
}

/* How an IMI Works — reuses .why-card from homepage */
.imi-how-it-works { background: var(--ivory); }
.imi-how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}

/* IMI Programs section */
.imi-programs { padding: 80px 60px; }

/* Featured FHS tile */
.imi-featured-tile {
  display: block; text-decoration: none;
  background: var(--navy-light); color: #fff;
  border-radius: 14px; padding: 48px 40px;
  margin-top: 48px; position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.imi-featured-tile::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(201,123,62,0.1); pointer-events: none;
}
.imi-featured-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28,42,61,0.2);
  color: #fff;
}
.imi-featured-badge {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  background: var(--copper); color: #fff;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.imi-featured-tile h3 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 600;
  margin-bottom: 12px; position: relative;
}
.imi-featured-tile p {
  font-size: 1.05rem; line-height: 1.7; opacity: 0.8;
  max-width: 600px; font-weight: 300; position: relative;
}
.imi-featured-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--copper-light);
  margin-top: 20px; position: relative;
  transition: gap 0.3s ease;
}
.imi-featured-tile:hover .imi-featured-cta { gap: 10px; }

/* 8 IMI program tiles */
.imi-tile-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 32px;
}
.imi-tile {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.imi-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--copper); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.imi-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,42,61,0.08);
  border-color: transparent;
}
.imi-tile:hover::before { transform: scaleX(1); }
.imi-tile h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.imi-tile p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
  flex: 1;
}
.imi-tile .card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--copper);
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: gap 0.3s ease;
}
.imi-tile:hover .card-arrow { gap: 10px; }

/* Not sure which program */
.imi-not-sure {
  background: var(--ivory); padding: 80px 60px;
}

/* FAQ section */
.imi-faq { padding: 80px 60px; }
.imi-faq-list {
  display: flex; flex-direction: column; gap: 0;
}
.imi-faq-item {
  border-bottom: 1px solid var(--border);
}
.imi-faq-item:first-child {
  border-top: 1px solid var(--border);
}
.imi-faq-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); text-align: left; line-height: 1.4;
}
.imi-faq-toggle:hover { color: var(--copper); }
.imi-faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.imi-faq-item.open .imi-faq-chevron {
  transform: rotate(180deg);
}
.imi-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.imi-faq-item.open .imi-faq-answer {
  max-height: 200px; padding-bottom: 20px;
}
.imi-faq-answer p {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.75;
  font-weight: 300;
}

/* IMI Overview responsive */
@media (max-width: 1024px) {
  .imi-hero.imi-hero--overview { padding: 140px 32px 60px; }
  .imi-how-grid { grid-template-columns: repeat(2, 1fr); }
  .imi-programs { padding: 60px 32px; }
  .imi-featured-tile { padding: 36px 28px; }
  .imi-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .imi-not-sure { padding: 60px 32px; }
  .imi-faq { padding: 60px 32px; }
}
@media (max-width: 640px) {
  .imi-hero h1 { font-size: 2rem; }
  .imi-how-grid { grid-template-columns: 1fr; }
  .imi-tile-grid { grid-template-columns: 1fr; }
  .imi-featured-tile h3 { font-size: 1.4rem; }
}

/* ---------- DPC PAGE ---------- */
:root {
  --light-navy: #E8ECF3;
}

/* DPC Hero */
.dpc-hero { padding: 0; }
.dpc-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1320px; margin: 0 auto;
  padding: 140px 60px 80px; align-items: center;
}
.dpc-hero-content { position: relative; z-index: 2; }
.dpc-hero-image {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(28,42,61,0.1);
}
.dpc-hero-image img {
  width: 100%; height: 440px; object-fit: cover; display: block;
}
.dpc-hero h1 {
  font-family: var(--font-display); font-size: 3rem; font-weight: 500;
  color: var(--navy); line-height: 1.2; margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* DPC Base Camp Intro */
.dpc-basecamp { padding: 80px 60px; background: var(--warm-white); }
.dpc-basecamp .section-title { margin-bottom: 28px; }
.dpc-basecamp-body { max-width: 780px; }
.dpc-basecamp-body p {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-light);
  margin-bottom: 20px; font-weight: 300;
}

/* DPC Different — reuses .why-cards-grid from homepage */
.dpc-different { background: var(--ivory); }

/* DPC How It Works — Stacked Cards */
.dpc-how-it-works { background: var(--light-navy); }
.dpc-stacked-cards {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.dpc-stacked-card {
  background: #fff; border-radius: 14px; padding: 36px 36px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.dpc-stacked-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(28,42,61,0.06);
}
.dpc-stacked-card h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.dpc-stacked-card p {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.75;
  font-weight: 300;
}

/* DPC Audience — Who DPC Is For */
.dpc-audience { background: var(--cream); }
.dpc-audience .section-title { margin-bottom: 12px; }
.dpc-audience .section-desc { margin-bottom: 0; }
.dpc-audience-tiles {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 40px; max-width: 840px;
}
.dpc-audience-tile {
  background: #fff; border-radius: 14px; padding: 32px 32px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.dpc-audience-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28,42,61,0.05);
}
.dpc-audience-tile h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.dpc-audience-tile p {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.7;
  font-weight: 300;
}

/* DPC What's Included — 2-column */
.dpc-included { background: var(--warm-white); }
.dpc-included .section-title { margin-bottom: 36px; }
.dpc-included-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 8px;
}
.dpc-included-col h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--copper-glow);
}
.dpc-included-col ul {
  list-style: none; padding: 0; margin: 0;
}
.dpc-included-col ul li {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.65;
  padding: 12px 0 12px 28px; position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.dpc-included-col ul li::before {
  content: '\2713'; position: absolute; left: 0; top: 12px;
  color: var(--copper); font-weight: 700; font-size: 0.85rem;
}

/* DPC What It's NOT */
.dpc-not { background: var(--ivory); }
.dpc-not-inner { max-width: 780px; }
.dpc-not-inner .section-title { margin-bottom: 20px; }
.dpc-not-inner p {
  font-size: 0.98rem; line-height: 1.8; color: var(--text-light);
  margin-bottom: 16px; font-weight: 300;
}
.dpc-not-inner ul {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.dpc-not-inner ul li {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.65;
  padding: 10px 0 10px 28px; position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.dpc-not-inner ul li::before {
  content: '\2717'; position: absolute; left: 0; top: 10px;
  color: var(--text-muted); font-weight: 700; font-size: 0.85rem;
}
.dpc-not-inner .read-more-link { margin-top: 8px; }

/* DPC Pricing */
.dpc-pricing { background: var(--warm-white); }
.dpc-pricing-inner { max-width: 640px; }
.dpc-pricing-inner .section-title { margin-bottom: 16px; }
.dpc-pricing-inner p {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-light);
  margin-bottom: 28px; font-weight: 300;
}
.dpc-pricing-subline {
  font-size: 0.88rem !important; color: var(--text-muted) !important;
  margin-top: 16px !important;
}

/* DPC How to Join — Step Cards */
.dpc-join { background: var(--ivory); }
.dpc-join-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.dpc-join-step {
  text-align: center; padding: 40px 28px;
  background: #fff; border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.dpc-join-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,42,61,0.06);
}
.dpc-join-step-num {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 700; color: var(--copper); margin-bottom: 16px;
}
.dpc-join-step h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; color: var(--navy); margin-bottom: 12px;
}
.dpc-join-step p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
}

/* DPC Employer Partnerships */
.dpc-employer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.dpc-employer::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(201,123,62,0.08); pointer-events: none;
}
.dpc-employer .section-title { color: #fff; }
.dpc-employer-subhead {
  font-size: 1.15rem; color: var(--copper-light);
  font-weight: 500; max-width: 700px; margin: 0 auto;
}
.dpc-employer-body {
  max-width: 780px; margin: 36px auto 0; text-align: center;
}
.dpc-employer-body p {
  font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.75);
  font-weight: 300;
}
.dpc-employer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 40px; position: relative; z-index: 1;
}
.dpc-employer-col h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--copper-light); margin-bottom: 20px;
}
.dpc-employer-col ul {
  list-style: none; padding: 0; margin: 0;
}
.dpc-employer-col ul li {
  font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.65;
  padding: 10px 0 10px 28px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dpc-employer-col ul li::before {
  content: '\2713'; position: absolute; left: 0; top: 10px;
  color: var(--copper-light); font-weight: 700; font-size: 0.85rem;
}
.dpc-employer-callout {
  background: rgba(255,255,255,0.08); border-radius: 14px;
  padding: 32px 36px; margin-top: 36px; position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,0.1);
}
.dpc-employer-callout p {
  font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.85);
  font-weight: 300; font-style: italic; text-align: center;
}
.dpc-employer-cta-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  margin-top: 12px; position: relative; z-index: 1;
}

/* DPC Page Responsive */
@media (max-width: 1024px) {
  .dpc-hero-inner { grid-template-columns: 1fr; padding: 120px 32px 60px; }
  .dpc-basecamp { padding: 60px 32px; }
  .dpc-included-grid { grid-template-columns: 1fr; }
  .dpc-join-steps { grid-template-columns: 1fr; }
  .dpc-employer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .dpc-hero h1 { font-size: 2.2rem; }
  .dpc-hero-image img { height: 320px; }
  .dpc-stacked-card { padding: 28px 24px; }
  .dpc-audience-tile { padding: 24px 24px; }
  .dpc-employer-callout { padding: 24px 24px; }
  .dpc-employer-subhead { font-size: 1rem; }
}

/* ==========================================================================
   WELLNESS SERVICE PAGES (infusion-therapy, hbot, nir, thermography, vasectomies)
   ========================================================================== */

/* ---------- WS HERO ---------- */
.ws-hero {
  padding: 0;
}
.ws-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1320px; margin: 0 auto;
  padding: 140px 60px 80px; align-items: center;
}
.ws-hero-content .section-label { margin-bottom: 12px; }
.ws-hero h1 {
  font-family: var(--font-display); font-size: 3rem; font-weight: 500;
  color: var(--navy); line-height: 1.2; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.ws-hero-sub {
  font-size: 1.05rem; color: var(--text-light); line-height: 1.75;
  margin-bottom: 16px; font-weight: 300; max-width: 520px;
}
.ws-hero-support {
  font-size: 0.92rem; line-height: 1.7; color: var(--text-light);
  max-width: 480px; margin-bottom: 28px; font-weight: 300;
  padding-left: 16px; border-left: 2px solid var(--copper);
  font-style: italic;
}
.ws-hero-image {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(28,42,61,0.1);
}
.ws-hero-image img {
  width: 100%; height: 440px; object-fit: cover; display: block;
}

/* ---------- WS WHAT IT IS ---------- */
.ws-what { background: var(--ivory); }
.ws-what-inner { max-width: 760px; }
.ws-what h2 { margin-bottom: 24px; }
.ws-what p {
  font-size: 1.02rem; line-height: 1.8; color: var(--text-light);
  margin-bottom: 16px; font-weight: 300;
}
.ws-what p:last-child { margin-bottom: 0; }

/* ---------- WS BENEFITS GRID ---------- */
.ws-benefits { background: var(--warm-white); }
.ws-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 36px;
}
.ws-benefit-tile {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 32px 28px; transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.ws-benefit-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--copper); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.ws-benefit-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,42,61,0.08);
  border-color: transparent;
}
.ws-benefit-tile:hover::before { transform: scaleX(1); }
.ws-benefit-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--copper-glow); color: var(--copper);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all 0.35s ease;
}
.ws-benefit-tile:hover .ws-benefit-icon {
  background: var(--copper); color: #fff;
}
.ws-benefit-icon svg { width: 22px; height: 22px; }
.ws-benefit-tile h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px; line-height: 1.35;
}
.ws-benefit-tile p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
}

/* ---------- WS INFUSION MENU ---------- */
.ws-menu { background: var(--ivory); }
.ws-menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 36px;
}
.ws-menu-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 32px 28px; transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.ws-menu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--copper); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.ws-menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,42,61,0.06);
  border-color: transparent;
}
.ws-menu-card:hover::before { transform: scaleX(1); }
.ws-menu-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 16px; line-height: 1.3;
}
.ws-menu-detail {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
  margin-bottom: 10px;
}
.ws-menu-detail:last-child { margin-bottom: 0; }
.ws-menu-label {
  font-weight: 600; color: var(--navy); font-size: 0.82rem;
  letter-spacing: 0.02em; display: block; margin-bottom: 2px;
}

/* ---------- WS STEPS ---------- */
.ws-steps { background: var(--warm-white); }
.ws-steps-list {
  max-width: 800px; margin: 36px auto 0;
  display: flex; flex-direction: column; gap: 0;
}
.ws-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.ws-step:last-child { border-bottom: none; }
.ws-step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.ws-step-body h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.ws-step-body p {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.7;
  font-weight: 300;
}

/* ---------- WS FAQ ---------- */
.ws-faq { background: var(--ivory); }
.ws-faq-list {
  max-width: 800px; margin: 36px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ws-faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: all 0.35s ease;
}
.ws-faq-item:hover {
  box-shadow: 0 4px 20px rgba(28,42,61,0.06);
}
.ws-faq-item[open] {
  border-color: var(--copper);
  box-shadow: 0 4px 20px rgba(28,42,61,0.06);
}
.ws-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--navy); line-height: 1.4;
  transition: color 0.3s;
}
.ws-faq-q::-webkit-details-marker { display: none; }
.ws-faq-q::marker { display: none; content: ''; }
.ws-faq-toggle {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--ivory); display: flex; align-items: center;
  justify-content: center; transition: all 0.35s ease;
}
.ws-faq-toggle svg { width: 18px; height: 18px; color: var(--navy); transition: transform 0.35s ease; }
.ws-faq-item[open] .ws-faq-toggle { background: var(--copper-glow); }
.ws-faq-item[open] .ws-faq-toggle svg { transform: rotate(180deg); color: var(--copper); }
.ws-faq-a {
  padding: 0 24px 20px;
}
.ws-faq-a p {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.75;
  font-weight: 300;
}

/* ---------- WS CTA BAND ---------- */
.ws-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.ws-cta-band::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(199,90,51,0.08);
}
.ws-cta-band h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: #fff; margin-bottom: 28px; position: relative; z-index: 1;
}
.ws-cta-fine {
  font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 20px;
  position: relative; z-index: 1;
}

/* ---------- WS EXPLORE MORE ---------- */
.ws-explore { background: var(--warm-white); }

/* ---------- WS RESPONSIVE — 1024 ---------- */
@media (max-width: 1024px) {
  .ws-hero-inner {
    grid-template-columns: 1fr; padding: 120px 32px 60px;
  }
  .ws-hero h1 { font-size: 2.4rem; }
  .ws-hero-image img { height: 340px; }
  .ws-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-menu-grid { grid-template-columns: 1fr; }
  .ws-cta-band { padding: 60px 32px; }
  .ws-faq-q { font-size: 1rem; padding: 18px 20px; }
  .ws-faq-a { padding: 0 20px 18px; }
}

/* ---------- WS RESPONSIVE — 640 ---------- */
@media (max-width: 640px) {
  .ws-hero-inner { padding: 100px 24px 48px; }
  .ws-hero h1 { font-size: 2rem; }
  .ws-hero-image img { height: 280px; }
  .ws-benefits-grid { grid-template-columns: 1fr; }
  .ws-step { gap: 16px; padding: 22px 0; }
  .ws-step-num { width: 40px; height: 40px; font-size: 1rem; }
  .ws-cta-band h2 { font-size: 1.8rem; }
  .ws-faq-q { font-size: 0.95rem; padding: 16px 18px; }
  .ws-faq-toggle { width: 28px; height: 28px; }
  .ws-faq-toggle svg { width: 16px; height: 16px; }
  .ws-menu-card { padding: 24px 20px; }
}

/* ==========================================================================
   IMI SINGLE PROGRAM PAGES
   ========================================================================== */

/* ---------- IMI HERO ---------- */
.imi-hero { padding: 0; }
.imi-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1320px; margin: 0 auto;
  padding: 140px 60px 80px; align-items: center;
}
.imi-hero-content { position: relative; z-index: 2; }
.imi-hero h1 {
  font-family: var(--font-display); font-size: 3rem; font-weight: 500;
  color: var(--navy); line-height: 1.2; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.imi-hero-sub {
  font-size: 1.1rem; color: var(--text-light); line-height: 1.75;
  margin-bottom: 16px; font-weight: 300; max-width: 520px;
}
.imi-hero-support {
  font-size: 0.92rem; line-height: 1.7; color: var(--text-light);
  max-width: 480px; margin-bottom: 28px; font-weight: 300;
  padding-left: 16px; border-left: 2px solid var(--copper);
  font-style: italic;
}
.imi-hero-cta-sub {
  font-size: 0.82rem; color: var(--text-muted); margin-top: 12px;
}
.imi-hero-image {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(28,42,61,0.1);
}
.imi-hero-image img {
  width: 100%; height: 440px; object-fit: cover; display: block;
}

/* ---------- IMI WHO THIS IS FOR ---------- */
.imi-who { background: var(--ivory); }
.imi-who .section-title { margin-bottom: 16px; }
.imi-who-lead {
  font-size: 1.02rem; color: var(--text-light); line-height: 1.8;
  max-width: 780px; font-weight: 300; margin-bottom: 0;
}
.imi-who-tiles {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 40px;
}
.imi-who-tile {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border-radius: 12px; padding: 24px 24px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.imi-who-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28,42,61,0.05);
}
.imi-who-tile-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--copper-glow);
  color: var(--copper); font-size: 0.8rem; font-weight: 700;
  margin-top: 1px;
}
.imi-who-tile p {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.65;
  font-weight: 300; margin: 0;
}

/* ---------- IMI PILLARS ---------- */
.imi-pillars { background: var(--warm-white); }
.imi-pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.imi-pillar-card {
  background: #fff; border-radius: 14px; padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.imi-pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,42,61,0.06);
}
.imi-pillar-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.imi-pillar-card p {
  font-size: 0.9rem; color: var(--text-light); line-height: 1.7;
  font-weight: 300;
}

/* ---------- IMI WHAT'S INCLUDED ---------- */
.imi-included { background: var(--ivory); }
.imi-included .section-title { margin-bottom: 36px; }
.imi-included-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 8px;
}
.imi-included-col h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--copper-glow);
}
.imi-included-col ul {
  list-style: none; padding: 0; margin: 0;
}
.imi-included-col ul li {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.65;
  padding: 12px 0 12px 28px; position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-weight: 300;
}
.imi-included-col ul li::before {
  content: '\2713'; position: absolute; left: 0; top: 12px;
  color: var(--copper); font-weight: 700; font-size: 0.85rem;
}

/* ---------- IMI WHAT IT'S NOT ---------- */
.imi-not { background: var(--warm-white); }
.imi-not-inner { max-width: 780px; }
.imi-not-inner .section-title { margin-bottom: 20px; }
.imi-not-inner p {
  font-size: 0.98rem; line-height: 1.8; color: var(--text-light);
  margin-bottom: 16px; font-weight: 300;
}
.imi-not-inner ul {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.imi-not-inner ul li {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.65;
  padding: 10px 0 10px 28px; position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-weight: 300;
}
.imi-not-inner ul li::before {
  content: '\2717'; position: absolute; left: 0; top: 10px;
  color: var(--text-muted); font-weight: 700; font-size: 0.85rem;
}
.imi-not-bridge {
  font-style: italic; margin-top: 8px;
}

/* ---------- IMI HOW TO ENROLL ---------- */
.imi-enroll { background: var(--ivory); }
.imi-enroll-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.imi-enroll-step {
  text-align: center; padding: 40px 28px;
  background: #fff; border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.imi-enroll-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,42,61,0.06);
}
.imi-enroll-step-num {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 700; color: var(--copper); margin-bottom: 16px;
}
.imi-enroll-step h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; color: var(--navy); margin-bottom: 12px;
}
.imi-enroll-step p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
  font-weight: 300;
}

/* ---------- IMI EXPLORE MORE ---------- */
.imi-explore { background: var(--warm-white); }
.imi-explore-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 36px;
}
.imi-explore-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 14px; padding: 32px 28px;
  border: 1px solid var(--border); text-decoration: none;
  transition: all 0.35s ease; position: relative; overflow: hidden;
}
.imi-explore-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.imi-explore-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,42,61,0.06);
}
.imi-explore-card:hover::before { transform: scaleX(1); }
.imi-explore-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.imi-explore-card p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
  font-weight: 300; flex: 1;
}
.imi-explore-card .card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--copper);
  margin-top: 16px; transition: gap 0.3s ease;
}
.imi-explore-card:hover .card-arrow { gap: 10px; }

/* ---------- IMI RESPONSIVE — 1024 ---------- */
@media (max-width: 1024px) {
  .imi-hero-inner { grid-template-columns: 1fr; padding: 120px 32px 60px; }
  .imi-who-tiles { grid-template-columns: 1fr; }
  .imi-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .imi-included-grid { grid-template-columns: 1fr; }
  .imi-enroll-steps { grid-template-columns: 1fr; }
  .imi-explore-grid { grid-template-columns: 1fr; }
}

/* ---------- IMI RESPONSIVE — 640 ---------- */
@media (max-width: 640px) {
  .imi-hero-inner { padding: 100px 24px 48px; }
  .imi-hero h1 { font-size: 2.2rem; }
  .imi-hero-image img { height: 320px; }
  .imi-hero-sub { font-size: 1rem; }
  .imi-pillars-grid { grid-template-columns: 1fr; }
  .imi-pillar-card { padding: 28px 24px; }
  .imi-who-tile { padding: 20px 18px; }
  .imi-enroll-step { padding: 32px 20px; }
  .imi-explore-card { padding: 24px 20px; }
  .imi-not-inner { padding: 0; }
}

/* ---------- WORDPRESS ADMIN BAR FIX ---------- */
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 46px; }
}
