/* =============================================================================
   page: telehealth  (assets/css/pages/telehealth.css)
   Linked AFTER main.css. Page-specific styles only; reuses shared components.
   ========================================================================== */

/* ---- 1. SPLIT HERO: serif headline + sage subhead + italic tagline / portrait ---- */
.th-hero { background: var(--linen); overflow: hidden; }
.th-hero-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(28px, 4vw, 56px);
}
.th-hero-copy {
  padding: clamp(40px, 6vw, 92px) 0 clamp(40px, 6vw, 92px) var(--gutter);
  align-self: center;
  max-width: 620px;
}
.th-hero-copy h1 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); line-height: 1.1; }
.th-hero-copy .rule { margin: 26px 0 22px; }
.th-hero-name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--sage-deep);
  line-height: 1.2;
}
.th-hero-sub { margin-top: 10px; color: var(--body); font-size: 1.0625rem; }
.th-hero-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--sage-deep);
  line-height: 1.4;
  margin-top: 26px;
  max-width: 22ch;
}
.th-hero-photo {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 56px) var(--gutter) clamp(28px, 4vw, 56px) 0;
}
.th-hero-photo .frame-mat { max-width: 460px; width: 100%; }
.th-hero-photo img { width: 100%; height: auto; }

@media (max-width: 900px) {
  .th-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .th-hero-copy { padding: clamp(36px, 8vw, 60px) var(--gutter) 8px; max-width: none; order: 1; }
  .th-hero-photo { order: 2; justify-content: center; padding: 8px var(--gutter) clamp(36px, 8vw, 56px); }
  .th-hero-photo .frame-mat { max-width: 380px; }
  .th-hero-tag { max-width: none; }
}

/* ---- 2. CENTERED INTRO PARAGRAPH BAND ---- */
.th-intro { background: var(--ivory); text-align: center; }
.th-intro .wrap-narrow { margin-inline: auto; }
.th-intro p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--body);
}
.th-intro .th-psypact {
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--sage-deep);
  margin-top: 22px;
}

/* ---- 3. THE BENEFITS OF TELEHEALTH: 5 divided smallcap columns ---- */
.divided-cols.cols-5 { grid-template-columns: repeat(5, 1fr); }
.benefit-col { text-align: center; }
.benefit-col h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink);
  margin-bottom: 16px;
}
.benefit-col p { font-size: .9375rem; line-height: 1.65; color: var(--body); }
@media (max-width: 900px) {
  .divided-cols.cols-5 { grid-template-columns: 1fr 1fr 1fr; gap: 36px 0; }
  .divided-cols.cols-5 > * { padding-block: 8px; }
  .divided-cols.cols-5 > *:nth-child(3n+1) { border-left: 0; }
}
@media (max-width: 620px) {
  .divided-cols.cols-5 { grid-template-columns: 1fr 1fr; }
  .divided-cols.cols-5 > * { border-left: 0 !important; border-top: 1px solid var(--line); padding-block: 24px; }
  .divided-cols.cols-5 > *:nth-child(-n+2) { border-top: 0; }
}

/* ---- 4. WHO I WORK WITH: 3 photo cards ---- */
.work-cards { margin-top: clamp(36px, 5vw, 60px); }
.work-card { text-align: center; }
.work-card .work-photo { border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
.work-card .work-photo img { width: 100%; height: 240px; object-fit: cover; display: block; }
.work-card h3 { font-size: 1.45rem; margin: 22px 0 10px; }
.work-card p { font-size: .95rem; color: var(--body); }
@media (max-width: 860px) {
  .work-card .work-photo img { height: 260px; }
}

/* ---- 5. HOW TELEHEALTH THERAPY WORKS: 01/02/03 ordinal columns ---- */
.th-steps { margin-top: clamp(36px, 5vw, 56px); }
.th-step { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.th-step .th-ordinal {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--sage);
  line-height: .9;
  font-weight: 500;
}
.th-step h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink);
  margin: 6px 0 10px;
}
.th-step p { font-size: .95rem; color: var(--body); line-height: 1.65; }
@media (max-width: 860px) {
  .divided-cols.th-steps { grid-template-columns: 1fr; gap: 8px 0; }
  .divided-cols.th-steps > * + * { border-left: 0; border-top: 1px solid var(--line); }
  .th-step { padding-block: 26px; }
}

/* ---- 6. TESTIMONIAL QUOTE BAND (sage, decorative marks, soft botanical) ---- */
.th-testimonial {
  position: relative;
  background: var(--sage);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}
.th-testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: no-repeat left center / cover url("../../img/palm1.jpg");
  opacity: .18;
}
.th-testimonial .wrap { position: relative; text-align: center; }
.th-tq {
  max-width: 760px;
  margin-inline: auto;
  position: relative;
  padding: 6px clamp(20px, 5vw, 40px);
}
.th-tq .tq-open, .th-tq .tq-close {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(251, 248, 241, .55);
  position: absolute;
}
.th-tq .tq-open { top: -18px; left: 0; }
.th-tq .tq-close { bottom: -34px; right: 4px; }
.th-tq blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.4;
  color: var(--ivory);
}
.th-tq cite {
  display: block;
  margin-top: 22px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251, 248, 241, .82);
}

/* ---- 7. CLOSING CTA ---- */
.th-cta { background: var(--linen-2); text-align: center; }
.th-cta h2 { margin-bottom: 14px; }
.th-cta p { color: var(--body); margin-bottom: 26px; }
.th-cta .btn { font-size: 1rem; }
