:root{
  --primary:#559049;
  --primary-dark:#3f7138;
  --teal-bright:#2d9187;
  --blue:#6ca9d8;
  --blue-soft:#e8f4fc;
  --green:#559049;
  --green-soft:#ecf7e7;
  --action:#559049;
  --action-hover:#147a78;
  --action-text:#173333;
  --gold:#d5a63a;
  --gold-soft:#fff4d8;
  --charcoal:#404852;
  --ink:#173333;
  --muted:#637775;
  --paper:#fffdfa;
  --soft:#eef8f4;
  --mint:#dff3ee;
  --rose:#f7e9e3;
  --line:#dbe9e5;
  --white:#fff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 8% 8%,rgba(79,159,216,.12),transparent 28%),
    radial-gradient(circle at 92% 18%,rgba(105,184,70,.1),transparent 24%),
    var(--paper);
  line-height:1.65;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
section{padding:92px 0}
.title{font-family:"Playfair Display",Georgia,serif;letter-spacing:0}
.text-muted-2{color:var(--muted)}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--primary);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.eyebrow:before{content:"";width:34px;height:2px;background:var(--gold)}
.btn{font-weight:400}
.btn-primary{
  --bs-btn-color:#fff;
  --bs-btn-bg:var(--action);
  --bs-btn-border-color:var(--action);
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-bg:var(--action-hover);
  --bs-btn-hover-border-color:var(--action-hover);
  --bs-btn-active-color:#fff;
  --bs-btn-active-bg:var(--action-hover);
  --bs-btn-active-border-color:var(--action-hover);
}
.btn-outline-primary{
  --bs-btn-color:var(--primary);
  --bs-btn-border-color:var(--primary);
  --bs-btn-hover-bg:var(--primary);
  --bs-btn-hover-border-color:var(--primary);
}

.site-header{
  background:rgba(255,253,250,.94);
  border-bottom:1px solid rgba(15,124,124,.13);
  backdrop-filter:blur(14px);
}
.navbar-brand img{width:230px;max-height:84px;height:auto;object-fit:contain}
.nav-link{font-weight:600;color:var(--ink)}
.nav-link:hover,.nav-link.active{color:var(--primary)}
.nav-cta{white-space:nowrap}

.hero{
  min-height:calc(100vh - 20px);
  padding:132px 0 78px;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(255,253,250,.98) 0%,rgba(255,253,250,.9) 44%,rgba(255,253,250,.25) 72%),
    url("../images/hero-meditation.jpg") center right/cover no-repeat;
}
.hero:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:130px;
  background:linear-gradient(180deg,rgba(255,253,250,0),var(--paper));
}
.hero .container{position:relative;z-index:1}
.hero h1{font-size:clamp(2.8rem,6.8vw,6.4rem);line-height:.98;max-width:820px}
.hero-copy{max-width:670px;font-size:1.15rem}
.hero-panel{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,124,124,.16);
  border-radius:10px;
  box-shadow:0 24px 70px rgba(10,78,77,.15);
}
.hero-logo-card{
  max-width:420px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:18px;
  box-shadow:0 20px 50px rgba(23,51,51,.08);
}
.hero-logo-card img{width:100%;height:auto}
.quick-stat{border-left:3px solid var(--gold);padding-left:16px}
.quick-stat strong{display:block;font-size:1.55rem;line-height:1;color:var(--primary-dark)}

.hero-carousel-section{
  padding:88px 0 0;
  background:var(--primary-dark);
}
.carousel-hero{
  height:80vh;
  min-height:620px;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  color:#fff;
  background-position:center;
  background-size:cover;
}
.carousel-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(36,71,34,.9),rgba(20,122,120,.58),rgba(36,71,34,.12));
}
.carousel-two:before{background:linear-gradient(90deg,rgba(36,71,34,.12),rgba(20,122,120,.5),rgba(36,71,34,.9))}
.carousel-three:before{background:linear-gradient(180deg,rgba(36,71,34,.24),rgba(36,71,34,.88))}
.carousel-hero .container{position:relative;z-index:1}
.carousel-copy{
  max-width:680px;
  padding:70px 0;
}
.carousel-copy h2{
  font-size:clamp(2.4rem,4vw,4.35rem);
  line-height:1.05;
  text-shadow:0 18px 44px rgba(0,0,0,.28);
}
.carousel-copy .lead{
  max-width:640px;
  font-size:clamp(1.05rem,1.4vw,1.28rem);
  text-shadow:0 12px 28px rgba(0,0,0,.22);
}
.carousel-one{background-image:url("../images/carousel-support.jpg")}
.carousel-two{background-image:url("../images/telehealth-hero.jpg")}
.carousel-three{background-image:url("../images/carousel-meditation.jpg")}
.carousel-fade .carousel-item{transition:opacity 1.1s ease-in-out}
.carousel-indicators{bottom:26px}
.carousel-indicators [data-bs-target]{
  width:46px;
  height:5px;
  border:0;
  border-radius:999px;
  background-color:rgba(255,255,255,.55);
}
.carousel-indicators .active{background-color:var(--action)}
.carousel-control-prev,.carousel-control-next{width:7%}
.carousel-control-prev-icon,.carousel-control-next-icon{
  width:3rem;
  height:3rem;
  padding:18px;
  border-radius:50%;
  background-color:rgba(7,84,82,.48);
  background-size:54%;
}

.page-hero{
  padding:142px 0 82px;
  background:
    linear-gradient(90deg,rgba(7,84,82,.95),rgba(26,163,154,.74)),
    url("../images/page-hero-wellness.jpg") center/cover no-repeat;
  color:#fff;
}
.page-hero .eyebrow{color:#fff}
.page-hero .eyebrow:before{background:#fff}
.page-hero p{color:#e7f7f4}

.section-intro{max-width:760px}
.care-card,.service-card,.value-card,.resource-card{
  height:100%;
  background:linear-gradient(180deg,#fff 0%,#fffdfa 100%);
  border:1px solid var(--line);
  border-radius:10px;
  padding:28px;
  box-shadow:0 18px 48px rgba(23,51,51,.06);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.care-card:hover,.service-card:hover,.value-card:hover,.resource-card:hover{
  transform:translateY(-5px);
  border-color:rgba(15,124,124,.35);
  box-shadow:0 24px 58px rgba(23,51,51,.1);
}
.row > [class*="col"]:nth-child(3n+1) .care-card,
.row > [class*="col"]:nth-child(3n+1) .service-card,
.row > [class*="col"]:nth-child(3n+1) .value-card{border-top:4px solid var(--primary)}
.row > [class*="col"]:nth-child(3n+2) .care-card,
.row > [class*="col"]:nth-child(3n+2) .service-card,
.row > [class*="col"]:nth-child(3n+2) .value-card{border-top:4px solid var(--blue)}
.row > [class*="col"]:nth-child(3n) .care-card,
.row > [class*="col"]:nth-child(3n) .service-card,
.row > [class*="col"]:nth-child(3n) .value-card{border-top:4px solid var(--green)}
.care-icon{
  width:50px;
  height:50px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:var(--mint);
  color:var(--primary-dark);
  font-size:1.35rem;
  margin-bottom:20px;
}
.row > [class*="col"]:nth-child(3n+2) .care-icon{background:var(--blue-soft);color:#246f9f}
.row > [class*="col"]:nth-child(3n) .care-icon{background:var(--green-soft);color:#3e812b}
.soft-band{background:var(--soft);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.soft-band:nth-of-type(even){background:linear-gradient(135deg,var(--soft),var(--blue-soft))}
.image-frame{background:#fff;border:10px solid #fff;border-radius:10px;overflow:hidden;box-shadow:0 24px 60px rgba(23,51,51,.12)}
.image-frame img{width:100%;height:100%;object-fit:cover}
.provider-photo{height:auto!important;max-height:none;object-fit:contain;object-position:center top;background:#f7fbf5}
.split-note{background:#fff;border-left:5px solid var(--gold);padding:28px;border-radius:10px;box-shadow:0 16px 42px rgba(23,51,51,.07)}
.feature-strip{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 18px 48px rgba(23,51,51,.06);
  overflow:hidden;
}
.feature-strip .feature-cell{padding:28px;border-right:1px solid var(--line)}
.feature-strip .feature-cell:last-child{border-right:0}
.pattern-feature-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 18%,rgba(85,144,73,.18),transparent 24%),
    radial-gradient(circle at 88% 16%,rgba(213,166,58,.18),transparent 24%),
    linear-gradient(135deg,#f5fbf1,#eef8f4);
}
.pattern-feature-section:before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.35;
  background-image:
    linear-gradient(30deg,rgba(85,144,73,.16) 12%,transparent 12.5%,transparent 87%,rgba(85,144,73,.16) 87.5%,rgba(85,144,73,.16)),
    linear-gradient(150deg,rgba(85,144,73,.16) 12%,transparent 12.5%,transparent 87%,rgba(85,144,73,.16) 87.5%,rgba(85,144,73,.16));
  background-size:46px 80px;
}
.pattern-feature-section .container{position:relative;z-index:1}
.story-mosaic{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.story-mosaic img{
  width:100%;
  min-height:220px;
  height:100%;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 18px 42px rgba(23,51,51,.09);
}
.story-mosaic img:first-child{grid-row:span 2}
.shape-photo{
  position:relative;
  isolation:isolate;
  padding:34px;
}
.shape-photo img{
  position:relative;
  z-index:2;
  width:100%;
  min-height:480px;
  object-fit:cover;
  border-radius:20px 80px 20px 80px;
  box-shadow:0 28px 70px rgba(23,51,51,.16);
}
.shape-photo .shape{
  position:absolute;
  z-index:1;
  border-radius:999px;
}
.shape-photo .shape-one{
  width:210px;
  height:210px;
  left:0;
  bottom:0;
  background:var(--green);
}
.shape-photo .shape-two{
  width:150px;
  height:150px;
  right:2px;
  top:8px;
  border:22px solid var(--gold);
}
.identity-gallery{
  position:relative;
  min-height:430px;
}
.gallery-card{
  position:absolute;
  overflow:hidden;
  border:10px solid #fff;
  border-radius:18px;
  box-shadow:0 24px 64px rgba(23,51,51,.14);
}
.gallery-card img{width:100%;height:100%;object-fit:cover}
.gallery-large{
  left:0;
  top:30px;
  width:62%;
  height:330px;
  border-radius:70px 18px 70px 18px;
}
.gallery-small{
  right:0;
  top:0;
  width:46%;
  height:260px;
  border-radius:18px 70px 18px 70px;
}
.identity-note{
  position:absolute;
  right:8%;
  bottom:14px;
  z-index:3;
  max-width:360px;
  padding:24px;
  background:#fff;
  border-left:6px solid var(--gold);
  border-radius:12px;
  box-shadow:0 22px 60px rgba(23,51,51,.14);
}
.identity-note strong{display:block;color:var(--ink);margin-bottom:6px}
.identity-note span{display:block;color:var(--muted)}
.condition-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 15px;
  font-weight:600;
  color:var(--primary-dark);
}
.condition-chip:nth-child(3n+1){border-color:rgba(15,124,124,.2);background:var(--mint)}
.condition-chip:nth-child(3n+2){border-color:rgba(79,159,216,.25);background:var(--blue-soft)}
.condition-chip:nth-child(3n){border-color:rgba(200,168,93,.28);background:var(--gold-soft)}
.condition-chip i{color:var(--green)}
.process-step{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:18px;
  height:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:24px;
}
.process-number{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--blue));
  color:#fff;
  font-weight:800;
}
.provider-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(23,51,51,.08);
}
.provider-profile-card{
  border-radius:18px;
  box-shadow:0 28px 78px rgba(23,51,51,.11);
}
.home-provider-image{
  height:100%;
  min-height:520px;
  background:linear-gradient(145deg,var(--green-soft),#fff);
}
.home-provider-image .provider-photo{
  height:100%!important;
  min-height:520px;
  object-fit:cover;
  object-position:center top;
}
.profile-spotlight-section{
  background:
    radial-gradient(circle at 10% 12%,rgba(85,144,73,.14),transparent 28%),
    radial-gradient(circle at 88% 12%,rgba(213,166,58,.12),transparent 28%),
    linear-gradient(135deg,#fffdfa,#f1faf4);
}
.profile-intro-card,.connect-card,.practice-card{
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 24px 70px rgba(23,51,51,.09);
}
.profile-intro-card{padding:34px}
.profile-identity{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:26px;
  align-items:center;
}
.profile-headshot{
  width:150px;
  height:180px;
  object-fit:cover;
  object-position:center top;
  border-radius:10px;
  border:1px solid var(--line);
}
.verified-dot{
  display:inline-grid;
  place-items:center;
  width:28px;
  height:28px;
  color:#fff;
  background:var(--blue);
  border-radius:50%;
}
.profile-title{
  color:var(--ink);
  font-size:1.1rem;
  text-decoration:underline;
  text-decoration-style:dotted;
  text-underline-offset:4px;
}
.profile-story{
  font-size:1.08rem;
  color:var(--ink);
}
.profile-alert{
  padding:18px 20px;
  background:linear-gradient(135deg,var(--blue-soft),#f4f9ff);
  border-left:4px solid var(--blue);
  border-radius:12px;
  color:var(--ink);
}
.profile-alert a,.quote-card a,.mini-contact-card a{color:var(--primary-dark);font-weight:600}
.stacked-panel{
  display:grid;
  gap:24px;
  position:sticky;
  top:118px;
}
.connect-card{
  position:relative;
  padding:26px;
  overflow:hidden;
}
.connect-card img{
  position:absolute;
  right:26px;
  top:26px;
  width:78px;
  height:78px;
  object-fit:cover;
  object-position:center top;
  border-radius:50%;
  border:4px solid var(--green-soft);
}
.connect-phone{
  display:block;
  color:var(--ink);
  font-size:clamp(1.8rem,4vw,2.4rem);
  font-weight:600;
  line-height:1.1;
  text-decoration:none;
  padding-right:96px;
}
.connect-phone:hover{color:var(--primary)}
.practice-card{padding:30px}
.practice-list{
  display:grid;
  gap:0;
  list-style:none;
  margin:0;
  padding:0;
}
.practice-list li{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:start;
  padding:16px 0;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}
.practice-list li:first-child{padding-top:0}
.practice-list li:last-child{border-bottom:0}
.practice-list i{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  color:var(--primary);
  background:var(--green-soft);
  border-radius:50%;
}
.quick-actions{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:22px;
}
.quick-actions a{
  display:grid;
  place-items:center;
  min-height:46px;
  padding:10px 12px;
  color:var(--ink);
  text-decoration:none;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:.92rem;
  font-weight:500;
}
.quick-actions a:hover{
  color:#fff;
  background:var(--primary);
  border-color:var(--primary);
}
.provider-showcase-section{
  background:
    radial-gradient(circle at 12% 20%,rgba(85,144,73,.14),transparent 26%),
    radial-gradient(circle at 86% 28%,rgba(213,166,58,.16),transparent 24%),
    linear-gradient(135deg,#fffdfa,#eef8f4);
}
.provider-showcase{
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:22px;
  padding:44px;
  box-shadow:0 28px 78px rgba(23,51,51,.12);
}
.provider-showcase:before{
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width:320px;
  height:320px;
  border:46px solid rgba(85,144,73,.13);
  border-radius:50%;
}
.provider-showcase .row{position:relative;z-index:1}
.provider-portrait-card{
  position:relative;
  padding:18px 18px 82px;
  background:#fff;
  border-radius:18px 70px 18px 70px;
  box-shadow:0 24px 64px rgba(23,51,51,.16);
}
.provider-portrait-card:before{
  content:"";
  position:absolute;
  left:-20px;
  bottom:34px;
  width:120px;
  height:120px;
  background:var(--green);
  border-radius:50%;
  z-index:0;
}
.provider-photo-styled{
  position:relative;
  z-index:1;
  width:100%;
  max-height:520px;
  object-fit:contain;
  object-position:center top;
  border-radius:14px 54px 14px 54px;
  background:#f7fbf5;
}
.provider-nameplate{
  position:absolute;
  left:42px;
  right:28px;
  bottom:22px;
  z-index:2;
  padding:18px 20px;
  color:#fff;
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  border-left:5px solid var(--gold);
  border-radius:12px;
  box-shadow:0 18px 48px rgba(23,51,51,.18);
}
.provider-nameplate strong{display:block;font-size:1.2rem}
.provider-nameplate span{display:block;color:#e9f6eb;font-size:.95rem}
.profile-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.profile-badges span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 13px;
  background:var(--green-soft);
  color:var(--primary-dark);
  border:1px solid rgba(85,144,73,.2);
  border-radius:999px;
  font-weight:500;
  font-size:.92rem;
}
.profile-badges i{color:var(--primary)}
.provider-highlight{
  height:100%;
  padding:20px;
  background:linear-gradient(180deg,#fff,var(--green-soft));
  border:1px solid var(--line);
  border-radius:14px;
}
.provider-highlight i{display:block;color:var(--primary);font-size:1.45rem;margin-bottom:12px}
.provider-highlight strong{display:block;color:var(--ink);margin-bottom:4px}
.provider-highlight span{display:block;color:var(--muted);font-size:.94rem}
.provider-note{
  display:flex;
  gap:12px;
  align-items:center;
  padding:18px 20px;
  background:var(--gold-soft);
  border-radius:14px;
  color:var(--ink);
}
.provider-note i{color:var(--gold);font-size:1.2rem}
.profile-detail-section{
  background:#fffdfa;
}
.profile-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:30px;
  box-shadow:0 18px 48px rgba(23,51,51,.07);
}
.glance-list{
  display:grid;
  gap:14px;
}
.glance-list div{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}
.glance-list div:last-child{border-bottom:0;padding-bottom:0}
.glance-list strong{color:var(--ink)}
.glance-list span{color:var(--muted);text-align:right}
.chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.chip-grid span{
  display:inline-flex;
  align-items:center;
  padding:10px 15px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--primary-dark);
  font-weight:500;
  box-shadow:0 10px 28px rgba(23,51,51,.05);
}
.advanced-card{
  background:linear-gradient(135deg,#fff,var(--gold-soft));
  border:1px solid rgba(213,166,58,.25);
  border-left:5px solid var(--gold);
  border-radius:16px;
  padding:26px;
}
.info-card{
  height:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  box-shadow:0 18px 48px rgba(23,51,51,.06);
}
.info-card i{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  margin-bottom:16px;
  color:var(--primary);
  background:var(--green-soft);
  border-radius:12px;
  font-size:1.25rem;
}
.info-card strong{display:block;color:var(--ink);margin-bottom:6px}
.info-card span{display:block;color:var(--muted)}
.clean-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.clean-list li{margin-bottom:8px}
.clean-list li:last-child{margin-bottom:0}
.insurance-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.insurance-grid span{
  padding:12px 14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  color:var(--primary-dark);
  font-weight:500;
  text-align:center;
}
.quote-card,.mini-contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:30px;
  box-shadow:0 18px 48px rgba(23,51,51,.07);
}
.quote-card{
  position:sticky;
  top:118px;
}
.quote-card.compact{position:relative;top:auto}
.quote-card>i{
  display:block;
  color:rgba(85,144,73,.26);
  font-size:3rem;
  line-height:1;
  margin-bottom:12px;
}
.quote-card p{
  color:var(--ink);
  font-size:1.05rem;
}
.quote-author{
  display:flex;
  gap:14px;
  align-items:center;
}
.quote-author img{
  width:58px;
  height:58px;
  object-fit:cover;
  object-position:center top;
  border-radius:50%;
  border:3px solid var(--green-soft);
}
.quote-author strong{display:block;color:var(--ink)}
.quote-author span{display:block;color:var(--muted);font-size:.9rem}
.nearby-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.nearby-grid strong{
  display:block;
  color:var(--ink);
  margin-bottom:8px;
}
.nearby-grid span{
  display:block;
  color:var(--muted);
}
.endorsement-carousel .carousel-inner{overflow:visible}
.endorsement-nav{
  display:flex;
  justify-content:flex-end;
  gap:12px;
}
.endorsement-nav button{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  color:var(--ink);
  background:#fff;
  border:1px solid var(--line);
  border-radius:50%;
  transition:.2s ease;
}
.endorsement-nav button:hover{
  color:#fff;
  background:var(--primary);
  border-color:var(--primary);
}
.endorsement-card{
  height:100%;
  background:#fff;
  border:1px solid var(--line);
  border-top:4px solid var(--primary);
  border-radius:16px;
  padding:24px;
  box-shadow:0 18px 48px rgba(23,51,51,.07);
}
.endorsement-card strong{display:block;color:var(--ink);font-size:1.05rem;margin-bottom:4px}
.endorsement-card span{display:block;color:var(--primary);font-weight:500;font-size:.9rem;margin-bottom:14px}
.endorsement-card p{
  color:var(--muted);
  margin-bottom:0;
  font-style:italic;
}
.endorsement-person{
  display:flex;
  gap:14px;
  align-items:center;
  min-height:76px;
  margin-bottom:18px;
}
.endorsement-avatar{
  flex:0 0 auto;
  width:68px;
  height:68px;
  object-fit:cover;
  border-radius:50%;
  border:4px solid var(--green-soft);
  box-shadow:0 10px 28px rgba(23,51,51,.08);
}
.endorsement-person strong{margin-bottom:2px}
.endorsement-person span{margin-bottom:0}
.credential{height:100%;padding:18px;border-radius:10px;background:var(--soft)}
.credential:nth-child(even){background:var(--blue-soft)}
.service-list{list-style:none;padding:0;margin:0}
.service-list li{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid var(--line)}
.service-list li:last-child{border-bottom:0}
.service-list i{color:var(--primary)}
.testimonial{
  position:relative;
  height:100%;
  overflow:hidden;
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  color:#e9fbf7;
  border-radius:10px;
  padding:32px;
}
.testimonial:before{
  content:"\"";
  position:absolute;
  right:22px;
  top:-40px;
  font-family:"Playfair Display",Georgia,serif;
  font-size:11rem;
  color:rgba(255,255,255,.08);
  line-height:1;
}
.resource-card{padding:0;overflow:hidden}
.resource-card img{height:210px;width:100%;object-fit:cover}
.resource-card .body{padding:24px}
.quote-panel{
  background:linear-gradient(135deg,var(--primary-dark),var(--primary),var(--blue));
  color:#fff;
  border-radius:12px;
  padding:44px;
  position:relative;
  overflow:hidden;
}
.quote-panel:after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-80px;
  width:240px;
  height:240px;
  border:38px solid rgba(255,255,255,.08);
  border-radius:50%;
}
.service-detail{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:30px;
  height:100%;
  box-shadow:0 18px 48px rgba(23,51,51,.06);
}
.service-detail .number{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--mint),var(--blue-soft));
  color:var(--primary-dark);
  font-weight:800;
  margin-bottom:18px;
}
.poster-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:22px;
  box-shadow:0 18px 48px rgba(23,51,51,.07);
}
.poster-card img{border-radius:8px;background:#fff}
.cta-band{
  background:
    linear-gradient(90deg,rgba(7,84,82,.96),rgba(15,124,124,.82),rgba(79,159,216,.55)),
    url("../images/cta-path.jpg") center/cover no-repeat;
  color:#fff;
  border-radius:10px;
  overflow:hidden;
}
.contact-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 18px 48px rgba(23,51,51,.08);
}
.form-control,.form-select{border-color:#cddbd7;border-radius:8px;padding:13px 14px}
.form-control:focus,.form-select:focus{border-color:var(--primary);box-shadow:0 0 0 .2rem rgba(15,124,124,.14)}
.accordion-button{font-weight:700;color:var(--ink);padding:20px 22px}
.accordion-button:not(.collapsed){color:var(--primary-dark);background:linear-gradient(90deg,var(--mint),var(--blue-soft));box-shadow:none}
.accordion-item{border-color:var(--line)}

.site-footer{background:linear-gradient(135deg,#102422,#0a4e4d 58%,#315b75);color:#cde1dc;padding:62px 0 30px}
.site-footer img{width:280px;max-width:100%;background:#fff;border-radius:8px;padding:10px}
.site-footer a{color:#e7f4f1;text-decoration:none}
.site-footer a:hover{color:#fff}
.footer-note{font-size:.92rem;color:#a9c7c0}

@media(max-width:991px){
  .hero{
    min-height:auto;
    background:
      linear-gradient(180deg,rgba(255,253,250,.96),rgba(255,253,250,.88)),
      url("../images/hero-meditation-mobile.jpg") center/cover no-repeat;
  }
  .navbar-brand img{width:180px;max-height:70px}
  .hero-carousel-section{padding-top:76px}
  .carousel-hero{height:80vh;min-height:560px}
  .carousel-copy{padding:54px 44px}
  .carousel-copy.ms-lg-auto{margin-left:0!important}
  .feature-strip .feature-cell{border-right:0;border-bottom:1px solid var(--line)}
  .feature-strip .feature-cell:last-child{border-bottom:0}
  .identity-gallery{min-height:600px}
  .gallery-large{width:72%;height:330px}
  .gallery-small{width:52%;height:250px;top:240px}
  .identity-note{left:8%;right:auto;bottom:0}
  .stacked-panel,.quote-card{position:relative;top:auto}
  .home-provider-image,.home-provider-image .provider-photo{min-height:440px}
  .profile-identity{grid-template-columns:130px 1fr}
  .profile-headshot{width:130px;height:160px}
  .provider-showcase{padding:32px}
  .insurance-grid{grid-template-columns:repeat(2,1fr)}
  .nearby-grid{grid-template-columns:1fr}
}
@media(max-width:767px){
  section{padding:68px 0}
  .hero{padding:108px 0 62px}
  .hero h1{font-size:clamp(2.45rem,15vw,4.2rem)}
  .page-hero{padding:118px 0 64px}
  .process-step{grid-template-columns:1fr}
  .hero-carousel-section{padding-top:70px}
  .carousel-hero{height:80vh;min-height:520px}
  .carousel-copy{padding:42px 22px}
  .carousel-copy h2{font-size:clamp(2rem,10vw,3rem)}
  .carousel-copy .lead{font-size:1rem}
  .carousel-control-prev,.carousel-control-next{display:none}
  .story-mosaic{grid-template-columns:1fr}
  .story-mosaic img:first-child{grid-row:auto}
  .shape-photo{padding:18px}
  .shape-photo img{min-height:360px;border-radius:16px 52px 16px 52px}
  .shape-photo .shape-one{width:130px;height:130px}
  .shape-photo .shape-two{width:100px;height:100px;border-width:15px}
  .identity-gallery{min-height:auto;display:grid;gap:18px}
  .gallery-card,.identity-note{position:relative;left:auto;right:auto;top:auto;bottom:auto;width:100%;height:auto}
  .gallery-card img{height:250px}
  .profile-intro-card,.connect-card,.practice-card,.quote-card,.mini-contact-card{padding:22px;border-radius:14px}
  .profile-identity{grid-template-columns:1fr}
  .profile-headshot{width:132px;height:156px}
  .profile-story{font-size:1rem}
  .connect-card img{position:relative;right:auto;top:auto;margin-bottom:18px}
  .connect-phone{padding-right:0;font-size:1.8rem}
  .quick-actions{grid-template-columns:1fr}
  .home-provider-image,.home-provider-image .provider-photo{min-height:360px}
  .endorsement-nav{justify-content:flex-start}
  .endorsement-nav button{width:46px;height:46px}
  .endorsement-person{align-items:flex-start}
  .provider-showcase{padding:22px;border-radius:18px}
  .provider-portrait-card{padding:12px 12px 88px;border-radius:16px 44px 16px 44px}
  .provider-nameplate{left:22px;right:18px}
  .glance-list div{display:block}
  .glance-list span{text-align:left}
  .insurance-grid{grid-template-columns:1fr}
}
