/* ==========================================================================
   Core Chiro Rehab — Testimonials Page Redesign
   Namespaced under `.chc-landing` (loaded together with home-redesign.css).
   ========================================================================== */

/* ---------- hero ---------- */
.tst-hero{
  position:relative; overflow:hidden; background:var(--c-mint);
  min-height:calc(100vh - var(--chc-total-header-h, 133px));
  min-height:calc(100svh - var(--chc-total-header-h, 133px));
  display:flex; align-items:center; padding:56px 0;
}
.tst-hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center; position:relative; z-index:1; }
.tst-hero__crumbs{ display:flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color:var(--c-ink-soft); margin-bottom:20px; }
.tst-hero__crumbs a{ color:var(--c-ink-soft); text-decoration:none; }
.tst-hero__crumbs a:hover{ color:var(--c-orange-dark); }
.tst-hero__crumbs i{ font-size:10px; color:var(--c-border); }
.tst-hero__crumbs span{ color:var(--c-ink); font-weight:700; }
.tst-hero h1{ font-size:clamp(30px, 3.4vw, 44px); font-weight:800; line-height:1.18; letter-spacing:-.01em; margin-bottom:22px; }
.tst-hero__trust{ display:flex; align-items:center; gap:14px; margin-bottom:6px; }
.tst-hero__trust .chc-hero__stars{ color:var(--c-gold); font-size:15px; display:flex; gap:3px; }
.tst-hero__trust span{ font-size:13.5px; font-weight:600; color:var(--c-ink-soft); }
.tst-hero__trust strong{ color:var(--c-ink); }
.tst-hero__cta{ display:flex; flex-wrap:wrap; gap:16px; margin-top:28px; }
.tst-hero__media{ position:relative; }
.tst-hero__media .chc-dotgrid{ width:200px; height:200px; top:-36px; right:-36px; border-radius:20px; }
.tst-hero__frame{ position:relative; border-radius:28px; overflow:hidden; box-shadow:var(--c-shadow-md); }
.tst-hero__frame img{ width:100%; height:auto; aspect-ratio:1/1; object-fit:cover; display:block; }

/* ---------- reviews ---------- */
.tst-reviews{ padding:110px 0; background:#fff; }
.tst-reviews__grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
.tst-card{
  background:var(--c-mint); border-radius:22px; padding:34px 30px; display:flex; flex-direction:column;
  box-shadow:var(--c-shadow-sm); transition:transform .35s ease, box-shadow .35s ease;
}
.tst-card:hover{ transform:translateY(-6px); box-shadow:var(--c-shadow-md); }
.tst-card__quote{ font-size:30px; color:var(--c-orange); opacity:.35; margin-bottom:10px; }
.tst-card__stars{ display:flex; gap:4px; color:var(--c-gold); margin-bottom:16px; font-size:13px; }
.tst-card__text{
  font-size:15px; line-height:1.8; color:var(--c-ink); font-weight:500; margin-bottom:18px; flex:1;
  display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:6; overflow:hidden;
}
.tst-card__text.is-expanded{ -webkit-line-clamp:unset; overflow:visible; }
.tst-card__toggle{
  align-self:flex-start; background:none; border:none; padding:0; margin:-6px 0 18px; cursor:pointer;
  font-family:var(--f-head); font-weight:700; font-size:13px; color:var(--c-orange-dark);
}
.tst-card__toggle:hover{ text-decoration:underline; }
.tst-card__author{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.tst-avatar{
  width:42px; height:42px; border-radius:50%; background:var(--c-orange); color:#fff; display:flex;
  align-items:center; justify-content:center; font-family:var(--f-head); font-weight:800; font-size:14px; flex-shrink:0;
}
.tst-card__author strong{ display:block; font-size:14.5px; color:var(--c-ink); }

/* ---------- closing cta band ---------- */
.chc-cta-band{
  padding:100px 0; background:linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-dark) 100%);
  text-align:center; position:relative; overflow:hidden;
}
.chc-cta-band__inner{ max-width:620px; margin:0 auto; position:relative; z-index:1; }
.chc-cta-band h2{ color:#fff; margin-bottom:14px; }
.chc-cta-band p{ color:rgba(255,255,255,.9); font-size:16.5px; line-height:1.8; margin-bottom:30px; }
.chc-cta-band__cta{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.chc-cta-band .chc-btn--primary{ background:#fff; color:var(--c-orange-dark); box-shadow:0 18px 38px -14px rgba(0,0,0,.35); }
.chc-cta-band .chc-btn--primary:hover{ background:var(--c-ink); color:#fff; }
.chc-cta-band .chc-btn--ghost-light:hover{ background:#fff; color:var(--c-orange-dark); border-color:#fff; }

@media (max-width:1199px){
  .tst-hero__grid{ grid-template-columns:1fr; }
  .tst-hero__media{ order:-1; max-width:420px; margin:0 auto; }
  .tst-reviews__grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:767px){
  .tst-hero{
    min-height:calc(100vh - var(--chc-total-header-h, 74px));
    min-height:calc(100svh - var(--chc-total-header-h, 74px));
    padding:56px 0;
  }
  .tst-hero__cta{ flex-direction:column; align-items:stretch; }
  .tst-hero__cta .chc-btn{ justify-content:center; }
  .tst-reviews{ padding:70px 0; }
  .tst-reviews__grid{ grid-template-columns:1fr; }
  .chc-cta-band{ padding:60px 0; }
  .chc-cta-band__cta{ flex-direction:column; align-items:stretch; }
  .chc-cta-band .chc-btn{ justify-content:center; }
}
