/* =========================================================================
   ACCESSIBLE PHYSICAL THERAPY — page-specific components
   ========================================================================= */

/* ---- THERAPIST BLOCK ----------------------------------------------------- */

.therapists-intro { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px, 4vw, 72px); align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.therapists-intro h2 { max-width: 18ch; }
.therapists-intro .lead { color: var(--ink); }

.therapist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); }
.therapist-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-soft);
}
.therapist-card__photo {
  aspect-ratio: 4 / 3; background: var(--reach-tint);
  position: relative; overflow: hidden;
}
.therapist-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.therapist-card__photo--mono {
  display: grid; place-items: center;
  background: linear-gradient(155deg, var(--reach) 0%, var(--reach-deep) 100%);
}
.therapist-card__mono {
  display: grid; place-items: center; text-align: center; gap: 8px; color: #fff;
}
.therapist-card__mono .mono-initials {
  width: 96px; height: 96px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 38px; font-weight: 400; color: #fff;
  background: rgba(255,255,255,.12);
}
.therapist-card__mono .mono-label {
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.62);
}
.therapist-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--bone); color: var(--ink);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
}
.therapist-card__body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.therapist-card__name { font-family: var(--f-display); font-size: clamp(26px, 2.4vw, 32px); line-height: 1.05; margin: 0 0 6px; }
.therapist-card__name span { color: var(--reach-deep); font-size: .65em; vertical-align: super; margin-left: 4px; }
.therapist-card__role { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--reach); margin: 0 0 18px; }
.therapist-card__bio { color: var(--ink-mute); margin: 0 0 22px; font-size: 15.5px; line-height: 1.6; }
.therapist-card__meta { border-top: 1px solid var(--rule); padding-top: 18px; }
.therapist-card__meta dt { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 4px; }
.therapist-card__meta dd { margin: 0 0 14px; font-size: 14.5px; }
.therapist-card__meta ul { margin: 0; padding-left: 18px; font-size: 14.5px; line-height: 1.7; color: var(--ink); }
@media (max-width: 880px) { .therapists-intro { grid-template-columns: 1fr; } .therapist-grid { grid-template-columns: 1fr; } }

/* ---- PHILOSOPHY (dark band) ---------------------------------------------- */

.philosophy { background: linear-gradient(160deg, var(--gulf) 0%, #122336 100%); color: #fff; padding: var(--section-y) 0; position: relative; overflow: hidden; }
.philosophy .wrap { position: relative; z-index: 2; }
.philosophy h2 { color: #fff; max-width: 24ch; margin-bottom: 56px; }
.philosophy .eyebrow { color: var(--reach-tint); }
.philosophy .eyebrow::before { background: var(--reach-tint); }
.philosophy__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); }
.philosophy__cell { border-top: 1px solid rgba(208,237,230,.28); padding: 24px 0 0; }
.philosophy__cell dt { font-family: var(--f-display); font-size: clamp(22px, 2vw, 28px); line-height: 1.1; margin: 0 0 14px; color: var(--reach-tint); }
.philosophy__cell dd { margin: 0; color: rgba(237,232,223,.82); font-size: 15.5px; line-height: 1.65; }
@media (max-width: 880px) { .philosophy__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .philosophy__grid { grid-template-columns: 1fr; } }

/* ---- CONDITIONS GRID ----------------------------------------------------- */

.conditions-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 4vw, 64px); align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.conditions-head h2 { max-width: 16ch; }
.conditions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.condition {
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 28px 24px 32px; background: var(--bone); transition: background .25s ease;
}
.condition:hover { background: var(--bone-soft); }
.condition__num { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--reach); margin-bottom: 18px; }
.condition__name { font-family: var(--f-display); font-size: clamp(20px, 1.8vw, 24px); line-height: 1.15; margin: 0 0 12px; }
.condition__blurb { color: var(--ink-mute); margin: 0; font-size: 14.5px; line-height: 1.6; }
@media (max-width: 1100px) { .conditions { grid-template-columns: repeat(2, 1fr); } .conditions-head { grid-template-columns: 1fr; } }
@media (max-width: 540px)  { .conditions { grid-template-columns: 1fr; } }

/* ---- TREATMENT APPROACH -------------------------------------------------- */

.treatments-head { max-width: 60ch; margin: 0 auto clamp(48px, 6vw, 88px); text-align: center; }
.treatments-head h2 { margin: 16px auto 18px; }
.treatments-head .eyebrow { display: inline-flex; }
.treatments-head .eyebrow::before { background: var(--terra); }

.treatment-row {
  display: grid; grid-template-columns: 100px 1fr 1.4fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--rule); align-items: start;
}
.treatment-row:last-of-type { border-bottom: 1px solid var(--rule); }
.treatment-row__num { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--reach); padding-top: 6px; }
.treatment-row__name { font-family: var(--f-display); font-size: clamp(24px, 2.2vw, 30px); line-height: 1.15; }
.treatment-row__blurb { color: var(--ink); font-size: 16px; line-height: 1.65; margin: 0; }
@media (max-width: 880px) {
  .treatment-row { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .treatment-row__num { padding: 0; }
}

/* ---- PANEL QUOTE --------------------------------------------------------- */

.panel-quote {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
  background: var(--bone-soft); border-left: 4px solid var(--reach);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.panel-quote p { font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 30px); font-style: italic; line-height: 1.35; margin: 0 0 14px; color: var(--ink); font-variation-settings: "SOFT" 80, "opsz" 144; }
.panel-quote cite { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--reach); font-style: normal; }

/* ---- PHOTO STRIP --------------------------------------------------------- */

.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.5vw, 20px); margin: clamp(28px, 4vw, 56px) 0; }
.strip__tile { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4 / 3; background: var(--reach-tint); }
.strip__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.strip__tile:hover img { transform: scale(1.04); }
@media (max-width: 680px) { .strip { grid-template-columns: 1fr; } }

/* ---- NEW PATIENT --------------------------------------------------------- */

.np-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 72px); align-items: start; }
.np-grid h2 { margin-bottom: 20px; }
.np-steps { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 0; }
.np-step { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid var(--rule); align-items: start; }
.np-step:last-child { border-bottom: 1px solid var(--rule); }
.np-step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--reach); color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 18px; font-weight: 400;
  flex-shrink: 0;
}
.np-step h4 { margin: 0 0 6px; font-size: 17px; }
.np-step p { margin: 0; color: var(--ink-mute); font-size: 15px; line-height: 1.6; }
.np-photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 4; background: var(--reach-tint); box-shadow: var(--shadow-card); }
.np-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .np-grid { grid-template-columns: 1fr; } .np-photo { display: none; } }

/* ---- INSURANCE ----------------------------------------------------------- */

.insurance { background: var(--bone-soft); }
.insurance__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.insurance__notes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2vw, 32px); margin-top: 32px; }
.insurance__note { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-md); padding: 24px 22px; }
.insurance__note h4 { margin: 0 0 10px; color: var(--reach-deep); font-size: 16px; }
.insurance__note p { margin: 0; font-size: 14.5px; color: var(--ink-mute); line-height: 1.6; }
.insurance__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.insurance__list li { padding: 13px 0; border-bottom: 1px solid var(--rule); font-size: 15.5px; display: flex; align-items: center; gap: 10px; }
.insurance__list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--reach); flex-shrink: 0; }
@media (max-width: 880px) { .insurance__inner { grid-template-columns: 1fr; } .insurance__notes { grid-template-columns: 1fr; } }

/* ---- REVIEWS ------------------------------------------------------------- */

.reviews-head { text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.star { color: var(--ember); font-size: 22px; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2vw, 32px); }
.review {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--shadow-soft);
}
.review__mark { font-family: var(--f-display); font-size: 64px; line-height: .6; color: var(--reach-tint); margin-bottom: 18px; font-variation-settings: "SOFT" 100, "opsz" 144; }
.review p { color: var(--ink); font-size: 15.5px; line-height: 1.65; margin: 0 0 20px; }
.review__by { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--reach); }
@media (max-width: 680px) { .review-grid { grid-template-columns: 1fr; } }

/* ---- FAQ ----------------------------------------------------------------- */

.faq-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 4vw, 64px); align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.faq-list { max-width: 800px; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  padding: 20px 8px 20px 0; cursor: pointer;
  font-family: var(--f-display); font-size: clamp(17px, 1.4vw, 20px); font-weight: 360; line-height: 1.3;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--f-body); font-size: 22px; font-weight: 300;
  color: var(--reach); flex-shrink: 0; transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > p { padding: 0 8px 20px; margin: 0; color: var(--ink-mute); font-size: 15.5px; line-height: 1.65; }
@media (max-width: 880px) { .faq-head { grid-template-columns: 1fr; } }

/* ---- BOOK / CONTACT ------------------------------------------------------ */

.book { background: var(--bone); }
.book__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.book__intro { color: var(--ink-mute); font-size: 16.5px; line-height: 1.6; margin: 0 0 28px; }
.book__phone {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-radius: var(--r-md);
  background: var(--reach-tint); border: 1px solid rgba(46,139,116,.2);
  margin-bottom: 28px;
}
.book__phone svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--reach-deep); }
.book__phone small { display: block; font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 3px; }
.book__phone strong { font-family: var(--f-display); font-size: 24px; color: var(--ink); font-weight: 400; }

.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row--single { grid-template-columns: 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); }
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--rule);
  border-radius: var(--r-sm); background: var(--white); color: var(--ink);
  font-family: var(--f-body); font-size: 15.5px;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none; border-color: var(--reach); box-shadow: 0 0 0 3px rgba(46,139,116,.15);
}
.form__field textarea { min-height: 100px; resize: vertical; }
.form__notice {
  padding: 13px 16px; border-radius: var(--r-sm);
  background: var(--bone-soft); border: 1px solid var(--rule);
  font-size: 13.5px; color: var(--ink-mute); line-height: 1.5;
}
@media (max-width: 880px) { .book__grid { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } }

/* ---- VISIT SECTION ------------------------------------------------------- */

.visit__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 5vw, 80px); }
.visit__details { display: flex; flex-direction: column; gap: 0; }
.visit__row { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid var(--rule); align-items: start; }
.visit__row dt { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); padding-top: 4px; }
.visit__row dd { margin: 0; font-size: 15.5px; line-height: 1.6; }
.visit__row dd small { display: block; color: var(--ink-mute); font-size: 13.5px; margin-top: 4px; }
.visit__hours { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.visit__hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.visit__map { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4 / 3; background: var(--reach-tint); }
.visit__map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 880px) { .visit__grid { grid-template-columns: 1fr; } }

/* ---- CTA BAND ------------------------------------------------------------ */

.cta-band { background: linear-gradient(135deg, var(--reach) 0%, var(--reach-deep) 100%); color: #fff; padding: clamp(56px, 8vw, 112px) 0; }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 26ch; }
.cta-band h2 em { color: var(--ember-tint); }
.cta-band .lead { color: rgba(255,255,255,.85); margin: 0; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 880px) { .cta-band__inner { flex-direction: column; align-items: flex-start; } }

/* ---- PT MOTIF DIVIDER (full-bleed wave transition) ----------------------- */

.pt-divider { line-height: 0; margin: 0; padding: 0; display: block; }
.pt-divider svg { display: block; width: 100%; height: auto; }
.pt-divider--out { transform: none; }

/* ---- PAGE HERO ----------------------------------------------------------- */

.page-hero {
  padding: clamp(110px, 14vw, 168px) 0 clamp(64px, 8vw, 96px);
  background: var(--sand);
}
.page-hero .eyebrow::before { background: var(--ember); }
.page-hero h1 { max-width: 20ch; margin: 20px 0 24px; }
.page-hero .lead { max-width: 52ch; }

/* ---- CTA BAND eyebrow + text overrides ---------------------------------- */

.cta-band { text-align: center; }
.cta-band .eyebrow { color: var(--reach-tint); display: inline-flex; }
.cta-band .eyebrow::before { background: var(--reach-tint); }
.cta-band h2 { margin: 14px auto 28px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---- CONDITION CARD (services page variant) ----------------------------- */

.condition-card {
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 28px 24px 32px; background: var(--sand); transition: background .25s ease;
}
.condition-card:hover { background: var(--sand-soft); }
.condition-num { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--reach); display: block; margin-bottom: 16px; }
.condition-card h3 { font-family: var(--f-display); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.2; margin: 0 0 10px; }
.condition-card p { color: var(--ink-mute); margin: 0; font-size: 14.5px; line-height: 1.6; }

/* ---- TREATMENT ROW (services page 2-col variant) ------------------------ */

.treatment-row .treatment-num { font-family: var(--f-mono); font-size: 18px; color: var(--reach-tint); padding-top: 4px; opacity: .7; }
.treatment-body h3 { font-family: var(--f-display); font-size: clamp(20px, 2vw, 26px); line-height: 1.2; margin: 0 0 10px; }
.treatment-body p { color: var(--ink-mute); margin: 0; font-size: 15.5px; line-height: 1.65; }
.treatments .treatment-row { grid-template-columns: 40px 1fr; gap: 24px; }

/* ---- NOTE CARD (insurance section) -------------------------------------- */

.note-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-md); padding: 24px 22px; }
.note-card h4 { margin: 0 0 10px; color: var(--reach-deep); font-size: 15.5px; }
.note-card p { margin: 0; font-size: 14px; color: var(--ink-mute); line-height: 1.6; }

/* Insurance layout override on services page */
.insurance > .insurance__list { padding-right: 0; }
.insurance { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.insurance .insurance__notes { display: flex; flex-direction: column; gap: 16px; }
.insurance .insurance__list ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.insurance .insurance__list li { padding: 13px 0; border-bottom: 1px solid var(--rule); font-size: 15.5px; display: flex; align-items: center; gap: 10px; }
.insurance .insurance__list li:first-child { border-top: 1px solid var(--rule); }
.insurance .insurance__list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--reach); flex-shrink: 0; }
@media (max-width: 880px) { .insurance { grid-template-columns: 1fr; } }

/* ---- PHILOSOPHY PILLARS (therapists page) -------------------------------- */

.philosophy__pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 48px); margin-top: 48px; }
.pillar { border-top: 1px solid rgba(208,237,230,.28); padding: 24px 0 0; }
.pillar h3 { font-family: var(--f-display); font-size: clamp(20px, 1.8vw, 26px); line-height: 1.2; color: var(--reach-tint); margin: 0 0 14px; }
.pillar p { color: rgba(237,232,223,.8); margin: 0; font-size: 15px; line-height: 1.65; }
@media (max-width: 680px) { .philosophy__pillars { grid-template-columns: 1fr; } }

/* ---- CREDENTIALS GRID (therapists page) ---------------------------------- */

.credentials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 48px); margin-top: 40px; }
.cred-block { padding: 28px; background: var(--sand-soft); border-radius: var(--r-md); border: 1px solid var(--rule); }
.cred-block__label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--reach); margin: 0 0 10px; }
.cred-block__value { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink); }
@media (max-width: 680px) { .credentials-grid { grid-template-columns: 1fr; } }

/* ---- CRED TAGS ----------------------------------------------------------- */

.therapist-feature__credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.cred-tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); background: var(--reach-tint); color: var(--reach-deep); border: 1px solid rgba(46,139,116,.2); }

/* ---- THERAPIST FEATURE (therapists page) --------------------------------- */

.therapist-feature { display: grid; grid-template-columns: 340px 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.therapist-feature__photo .therapist-card { width: 100%; }
.therapist-card--large .therapist-card__mono {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--reach) 0%, var(--reach-deep) 100%);
  border-radius: var(--r-lg); display: grid; place-items: center;
  font-family: var(--f-display); font-size: 72px; color: rgba(255,255,255,.45);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.therapist-feature__bio h2 { margin: 12px 0 6px; }
.therapist-feature__bio .lead { color: var(--ink-mute); margin: 0 0 20px; }
.therapist-feature__bio p { font-size: 15.5px; line-height: 1.7; color: var(--ink-mute); }
@media (max-width: 880px) { .therapist-feature { grid-template-columns: 1fr; } .therapist-feature__photo { max-width: 280px; } }

/* ---- NEW PATIENT STEPS (new-patient.html variant) ----------------------- */

.np-steps { display: flex; flex-direction: column; margin-top: 40px; }
.np-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--rule); align-items: start; }
.np-step:last-child { border-bottom: 1px solid var(--rule); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--reach); color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 22px; font-weight: 400; flex-shrink: 0;
}
.step-body h3 { font-family: var(--f-display); font-size: clamp(18px, 1.8vw, 22px); margin: 0 0 10px; }
.step-body p { margin: 0 0 10px; color: var(--ink-mute); font-size: 15.5px; line-height: 1.65; }
.step-body p:last-child { margin: 0; }
.step-note { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; color: var(--reach); }

/* ---- NP SPLIT (what to bring / what to wear) ----------------------------- */

.np-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
.np-col h2 { margin: 16px 0 24px; }
.np-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.np-list li { padding: 12px 0; border-bottom: 1px solid rgba(208,237,230,.35); font-size: 15.5px; color: var(--sand); display: flex; align-items: center; gap: 10px; }
.np-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--reach-tint); flex-shrink: 0; }
.np-note { margin-top: 24px; font-size: 14px; color: rgba(237,232,223,.65); line-height: 1.6; }
@media (max-width: 880px) { .np-split { grid-template-columns: 1fr; } }

/* ---- FAQ body (new-patient page details element) ------------------------- */

.faq { display: flex; flex-direction: column; margin-top: 32px; }
.faq .faq-item { border-top: 1px solid var(--rule); }
.faq .faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-body { padding: 0 8px 20px; }
.faq-body p { margin: 0 0 10px; color: var(--ink-mute); font-size: 15.5px; line-height: 1.65; }
.faq-body p:last-child { margin: 0; }

/* ---- BOOK PAGE (full-page layout) --------------------------------------- */

.book__form { }
.book__form h2 { margin: 12px 0 16px; }
.book__sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-card, .hours-card, .locations-card, .insurance-card {
  padding: 24px 22px; border-radius: var(--r-md);
  background: var(--sand-soft); border: 1px solid var(--rule);
}
.contact-card h3, .hours-card h3, .locations-card h4 { font-family: var(--f-display); font-size: clamp(20px, 2vw, 26px); margin: 12px 0 10px; }
.contact-card h3 em, .hours-card h3 em, .locations-card h4 em { color: var(--reach-deep); }
.contact-card p, .hours-card p, .locations-card p, .insurance-card p { font-size: 14.5px; color: var(--ink-mute); line-height: 1.6; margin: 0 0 8px; }
.contact-card__phone { display: block; font-family: var(--f-display); font-size: clamp(26px, 3vw, 36px); color: var(--reach-deep); text-decoration: none; margin: 8px 0 12px; line-height: 1; }
.contact-card__phone:hover { color: var(--reach); }
.hours-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 14.5px; }
.hours-list li:first-child { border-top: 1px solid var(--rule); }
.hours-day { font-weight: 500; }
.hours-time { color: var(--ink-mute); }
@media (max-width: 880px) { .book__grid { grid-template-columns: 1fr; } }

/* ---- FORM COMPONENTS (book.html) ---------------------------------------- */

.form__phi-notice {
  padding: 12px 14px; border-radius: var(--r-sm);
  background: var(--ember-tint); border: 1px solid rgba(212,122,66,.2);
  font-size: 13px; color: var(--ember-deep); line-height: 1.5; margin-bottom: 20px;
}
.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); }
.form__input {
  width: 100%; padding: 13px 14px; border: 1px solid var(--rule);
  border-radius: var(--r-sm); background: var(--white); color: var(--ink);
  font-family: var(--f-body); font-size: 15.5px;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none;
}
.form__input:focus { outline: none; border-color: var(--reach); box-shadow: 0 0 0 3px rgba(46,139,116,.15); }
.form__select { cursor: pointer; }
.form__textarea { min-height: 110px; resize: vertical; }
.form__after {
  margin-top: 16px; padding: 16px 18px; border-radius: var(--r-md);
  background: var(--reach-tint); border: 1px solid rgba(46,139,116,.3);
  font-size: 15px; color: var(--reach-deep); line-height: 1.55;
}
.btn--full { width: 100%; justify-content: center; }
@media (max-width: 680px) { .form__row { grid-template-columns: 1fr; } }
