/*
 * Recharge Physio · Objection Wall.
 * Brand surface: warm cream + ink charcoal + Recharge red/blue accents.
 * Editorial layout designed around styled BW practitioner portraits.
 *
 * Scoped under .rp-root so the embed.html version can be iframed
 * into the clinic's site without inheriting host styles.
 */

.rp-root *, .rp-root *::before, .rp-root *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

.rp-root {
  --cream: #f8f4ec;
  --cream-deep: #efe8d8;
  --ink: #1a1d23;
  --ink-soft: #4a5260;
  --ink-mute: #7a808b;
  --rp-red: #ee3826;
  --rp-red-deep: #c52e1e;
  --rp-blue: #3b98d3;
  --rp-blue-deep: #2a7daf;
  --rp-blue-tint: rgba(59, 152, 211, 0.10);
  --hairline: rgba(26, 29, 35, 0.10);
  --hairline-strong: rgba(26, 29, 35, 0.18);
  --shadow: 0 10px 30px rgba(26, 29, 35, 0.08);

  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
  background: var(--cream);
  min-height: 100%;
}

.rp-page { padding: 0; }

.rp-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 24px 36px;
}

/* ---------- demo strip ---------- */

.rp-demo-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--rp-blue-tint);
  border: 1px solid rgba(59, 152, 211, 0.20);
  border-radius: 8px;
  padding: 9px 14px;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.rp-demo-strip__tag {
  background: var(--rp-blue);
  color: #fff;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
}

/* ---------- logo bar ---------- */

.rp-logo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--hairline);
}
.rp-logo-bar__mark {
  height: 42px;
  width: auto;
  display: block;
}
.rp-logo-bar__loc {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.4;
}

/* ---------- hero ---------- */

.rp-hero {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 28px;
}
.rp-hero__portrait {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.rp-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02);
}
.rp-hero__body { padding-top: 4px; }

.rp-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rp-blue);
  margin-bottom: 12px;
}
.rp-hero__title {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 14px;
}
.rp-hero__lede {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- the wall ---------- */

.rp-wall {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.rp-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.rp-card:hover {
  border-color: var(--hairline-strong);
}
.rp-card[data-open="true"] {
  border-color: var(--rp-red);
  box-shadow: var(--shadow);
}

.rp-card__head {
  width: 100%;
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.rp-card__head:focus-visible {
  outline: 2px solid var(--rp-blue);
  outline-offset: -2px;
}
.rp-card__num {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  color: var(--rp-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rp-card__q {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.rp-card__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink-soft);
  transition: transform 0.22s ease, background 0.18s ease, color 0.18s ease;
}
.rp-card__chevron svg { width: 14px; height: 14px; }
.rp-card[data-open="true"] .rp-card__chevron {
  transform: rotate(180deg);
  background: var(--rp-red);
  color: #fff;
}

.rp-card__body {
  padding: 0 18px 20px 76px;
  animation: rp-reveal 0.28s ease both;
}
.rp-card__body p {
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink-soft);
}
.rp-card__provenance {
  margin-top: 12px;
  font-size: 12.5px !important;
  line-height: 1.4 !important;
  color: var(--ink-mute) !important;
  font-style: italic;
  padding-top: 10px;
  border-top: 1px dashed var(--hairline);
}

@keyframes rp-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.rp-cta {
  position: relative;
  background: var(--cream-deep);
  color: var(--ink);
  border-radius: 12px;
  border-left: 4px solid var(--rp-red);
  padding: 26px 28px 24px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  row-gap: 14px;
}
.rp-cta__copy { min-width: 0; }
.rp-cta__title {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.022em;
  margin-bottom: 8px;
  color: var(--ink);
}
.rp-cta__lede {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
}
.rp-cta__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  background: var(--rp-red);
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.12s ease;
}
.rp-cta__phone:hover {
  background: var(--rp-red-deep);
  transform: translateY(-1px);
}
.rp-cta__phone-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}
.rp-cta__phone-number {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
}
.rp-cta__alt {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 29, 35, 0.10);
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.rp-cta__alt a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rp-blue);
  text-underline-offset: 3px;
}
.rp-cta__alt a:hover {
  text-decoration-color: var(--rp-red);
}

/* ---------- footer ---------- */

.rp-foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
}
.rp-foot__disclaimer {
  color: var(--ink-soft);
  font-weight: 500;
}
.rp-foot__illustrative {
  font-style: italic;
  color: var(--ink-mute);
}
.rp-foot__built strong {
  color: var(--ink);
  font-weight: 700;
}

/* ---------- mobile ---------- */

@media (max-width: 560px) {
  .rp-shell { padding: 22px 18px 30px; }
  .rp-logo-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 18px;
    margin-bottom: 20px;
  }
  .rp-logo-bar__mark { height: 34px; }
  .rp-logo-bar__loc { text-align: left; font-size: 11px; }
  .rp-hero {
    grid-template-columns: 88px 1fr;
    gap: 16px;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
  .rp-hero__title { font-size: clamp(22px, 6vw, 28px); }
  .rp-hero__lede { font-size: 14.5px; }
  .rp-card__head {
    grid-template-columns: 36px 1fr 26px;
    gap: 10px;
    padding: 16px 14px 16px 14px;
  }
  .rp-card__num { font-size: 19px; }
  .rp-card__q { font-size: 16px; }
  .rp-card__body { padding: 0 16px 18px 60px; }
  .rp-cta {
    grid-template-columns: 1fr;
    padding: 22px 20px 20px;
    gap: 18px;
  }
  .rp-cta__title { font-size: 20px; }
  .rp-cta__phone { width: 100%; align-items: center; padding: 14px 18px; }
  .rp-cta__phone-number { font-size: 20px; }
}
