/*
 * Recharge Physio · Full-site styles.
 * Layered on top of styles.css (the embed/Objection Wall base).
 * All scoped under .rp-root.rp-site so the embed.html keeps its own scope clean.
 */

.rp-root.rp-site {
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
}
.rp-root.rp-site .rp-page { background: transparent; }

/* Sensible default for inline copy links — wins only if no more specific rule.
   Wrapped entirely in :where() so total specificity is (0,0,1) and any class-based
   link rule (e.g. .rp-footer__col a) wins. */
:where(.rp-root.rp-site p > a, .rp-root.rp-site address > a) {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--rp-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
:where(.rp-root.rp-site p > a, .rp-root.rp-site address > a):hover {
  text-decoration-color: var(--rp-red);
}

/* ---------- a11y skip ---------- */

.rp-skip {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  z-index: 100;
}
.rp-skip:focus {
  left: 16px;
  top: 16px;
}

/* ---------- nav ---------- */

.rp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.rp-nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.rp-nav__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.rp-nav__brand img { height: 36px; width: auto; display: block; }

/* "Recharge" charging-battery animation: thin red bar fills left-to-right
   under the wordmark, holds at full, fades, rests, loops. Width and offset
   roughly match the "Recharge" red portion of the logo image. */
.rp-nav__logo-wrap { position: relative; display: inline-block; line-height: 0; }
.rp-nav__charge {
  position: absolute;
  left: 14.7%;
  bottom: -3px;
  width: 47.2%;
  height: 2px;
  background: var(--rp-red);
  border-radius: 1px;
  transform-origin: left center;
  transform: scaleX(0);
  animation: rp-charging 5.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rp-charging {
  0%   { transform: scaleX(0);   opacity: 0.55; }
  55%  { transform: scaleX(1);   opacity: 1; }
  72%  { transform: scaleX(1);   opacity: 1; }
  80%  { transform: scaleX(1);   opacity: 0; }
  100% { transform: scaleX(0);   opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .rp-nav__charge { animation: none; transform: scaleX(0); }
}

/* Scroll progress bar — gradient red→blue, fills as user scrolls page */
.rp-progress {
  position: relative;
  height: 3px;
  background: rgba(26, 29, 35, 0.06);
  overflow: hidden;
}
.rp-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--rp-red) 0%, var(--rp-blue) 100%);
  transition: width 80ms linear;
}

.rp-nav__menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.rp-nav__menu a {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.rp-nav__menu a:hover {
  color: var(--rp-red);
  border-bottom-color: var(--rp-red);
}
.rp-nav__menu a[aria-current="page"] {
  color: var(--rp-red);
  border-bottom-color: var(--rp-red);
}
.rp-nav__cta {
  display: inline-flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  background: var(--rp-red);
  color: #fff !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  border: 0 !important;
  transition: background 0.15s ease;
}
.rp-nav__cta:hover {
  background: var(--rp-red-deep) !important;
  border-bottom-color: transparent !important;
  color: #fff !important;
}
.rp-nav__cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.92;
}
.rp-nav__cta-num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.rp-nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.rp-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.rp-nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rp-nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.rp-nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- buttons ---------- */

.rp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.rp-btn--primary {
  background: var(--rp-red);
  color: #fff;
}
.rp-btn--primary:hover {
  background: var(--rp-red-deep);
  transform: translateY(-1px);
}
.rp-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(26, 29, 35, 0.18);
  flex-direction: row;
  gap: 8px;
  font-size: 14.5px;
}
.rp-btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.rp-btn--large {
  padding: 18px 30px;
}
.rp-btn__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.92;
}
.rp-btn__num {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
}
.rp-btn--large .rp-btn__num { font-size: 22px; }

/* ---------- hero (home) ---------- */

.rp-hero-home {
  padding: 60px 24px 70px;
}
.rp-hero-home__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.rp-hero-home__copy {
  min-width: 0;
}
.rp-hero-home__title {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 14px;
  margin-bottom: 22px;
}
.rp-hero-home__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 28px;
}
.rp-hero-home__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.rp-hero-home__trust {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.rp-hero-home__portrait {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 50px rgba(26, 29, 35, 0.12);
}
.rp-hero-home__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03);
}
.rp-hero-home__portrait figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12.5px;
  line-height: 1.4;
}
.rp-hero-home__portrait figcaption strong {
  font-size: 15px;
  font-weight: 700;
}

/* ---------- page hero (non-home) ---------- */

.rp-page-hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--hairline);
  padding: 56px 24px 48px;
}
.rp-page-hero__inner {
  max-width: 880px;
  margin: 0 auto;
}
.rp-page-hero h1 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 10px;
  margin-bottom: 18px;
}
.rp-page-hero__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 26px;
}
.rp-page-hero__jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rp-page-hero__jump a {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.rp-page-hero__jump a:hover {
  border-color: var(--rp-red);
  color: var(--rp-red);
}

/* ---------- generic section ---------- */

.rp-section { padding: 64px 24px; }
.rp-section--tight { padding: 48px 24px; }
.rp-section__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.rp-section__head {
  max-width: 720px;
  margin-bottom: 36px;
}
.rp-section__title {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-top: 10px;
  margin-bottom: 14px;
}
.rp-section__lede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

.rp-section--alt {
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* ---------- prose layout (sidebar head + body) ---------- */

.rp-prose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: 56px;
  align-items: start;
}
.rp-prose-layout__head { padding-top: 4px; }
.rp-prose-layout__body { min-width: 0; }
.rp-prose-layout__body h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 28px 0 12px;
}
.rp-prose-layout__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.rp-prose-layout__body p:last-child { margin-bottom: 0; }

.rp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rp-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.rp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--rp-red);
}

.rp-callout {
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--rp-blue);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 18px !important;
}
.rp-callout strong { color: var(--ink); }
.rp-callout a {
  color: var(--rp-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.rp-callout--price {
  border-left-color: var(--rp-red);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
}
.rp-callout__price {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  color: var(--rp-red);
  letter-spacing: -0.03em;
}
.rp-callout__price-meta {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- fees ---------- */

.rp-fees {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.rp-fees__block {}
.rp-fees__heading {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 8px;
}
.rp-fees__intro {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.rp-fees__table {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
}
.rp-fees__row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding: 16px 22px;
  border-top: 1px solid var(--hairline);
  font-size: 15px;
  color: var(--ink);
}
.rp-fees__row:first-child { border-top: 0; }
.rp-fees__row--head {
  background: var(--cream-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 12px 22px;
}
.rp-fees__name {
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rp-fees__senior {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rp-blue);
  background: var(--rp-blue-tint);
  padding: 2px 7px;
  border-radius: 3px;
}
.rp-fees__price {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.rp-fees__single {
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--rp-red);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.rp-fees__single-price {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: var(--rp-red);
  letter-spacing: -0.035em;
}
.rp-fees__single-meta {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.rp-fees__single-meta a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--rp-blue);
}
.rp-fees__notes {
  background: var(--cream-deep);
  border-radius: 10px;
  padding: 24px 26px 26px;
}
.rp-fees__notes h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.rp-callout--policy {
  margin-top: 0 !important;
  border-left-color: var(--ink-soft);
}

/* ---------- blog index ---------- */

.rp-blog-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.rp-blog-card--feature {
  grid-column: span 2;
  background: var(--cream-deep);
  border-left: 4px solid var(--rp-red);
}
.rp-blog-card--feature h2 {
  font-size: clamp(22px, 2.6vw, 28px) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.028em !important;
}
.rp-blog-card--feature p {
  font-size: 16px !important;
  line-height: 1.55 !important;
}
.rp-blog-card__link {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.rp-blog-card h2 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 10px;
}
.rp-blog-card__meta {
  display: block;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ---------- blog post ---------- */

.rp-post-hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--hairline);
  padding: 48px 24px 44px;
}
.rp-post-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.rp-post-back {
  display: block;
  margin-bottom: 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rp-red);
  text-decoration: none;
}
.rp-post-back:hover { text-decoration: underline; text-underline-offset: 3px; }
.rp-post-hero__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--rp-blue);
  margin-bottom: 14px;
}
.rp-post-hero h1 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.034em;
  color: var(--ink);
  margin-bottom: 18px;
}
.rp-post-hero__meta {
  font-size: 13.5px;
  color: var(--ink-mute);
  font-weight: 500;
}
.rp-post-hero__meta strong { color: var(--ink); font-weight: 700; }

.rp-post {
  max-width: 720px;
  margin: 0 auto;
}
.rp-post p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.rp-post p:first-child {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
}
.rp-post h2 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 38px 0 16px;
}
.rp-post h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 28px 0 12px;
}
.rp-post ul, .rp-post ol {
  margin: 0 0 22px 0;
  padding: 0 0 0 22px;
}
.rp-post li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.rp-post blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--cream-deep);
  border-left: 4px solid var(--rp-red);
  border-radius: 6px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.rp-post a {
  color: var(--rp-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.rp-post-foot {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.rp-post-foot__author {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-soft);
}
.rp-post-foot__author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.rp-post-foot__author strong { color: var(--ink); display: block; font-size: 16px; }

.rp-related {
  max-width: 1080px;
  margin: 48px auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.rp-related h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}
.rp-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ---------- resources: video grid ---------- */

.rp-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
}
.rp-video-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.rp-video-card:hover {
  border-color: var(--rp-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rp-video-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}
.rp-video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.2s ease;
}
.rp-video-card:hover .rp-video-card__thumb img {
  transform: scale(1.04);
}
.rp-video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rp-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: background 0.18s ease, transform 0.18s ease;
}
.rp-video-card__play svg { width: 22px; height: 22px; margin-left: 2px; }
.rp-video-card:hover .rp-video-card__play {
  background: var(--rp-red-deep);
  transform: translate(-50%, -50%) scale(1.06);
}
.rp-video-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rp-video-card__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--rp-blue);
  margin-bottom: 8px;
}
.rp-video-card h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.rp-video-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- resources: stretch guide cards ---------- */

.rp-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.rp-guide-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.rp-guide-card:hover {
  border-color: var(--rp-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rp-guide-card__thumb {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--cream-deep);
  border-bottom: 1px solid var(--hairline);
}
.rp-guide-card__thumb svg { width: 64px; height: 64px; }
.rp-guide-card__thumb--neck         { background: #ffe7e3; color: var(--rp-red); }
.rp-guide-card__thumb--lower-back   { background: var(--rp-blue-tint); color: var(--rp-blue-deep); }
.rp-guide-card__thumb--hip          { background: #ffe7e3; color: var(--rp-red); }
.rp-guide-card__thumb--shoulder     { background: var(--rp-blue-tint); color: var(--rp-blue-deep); }
.rp-guide-card__body {
  padding: 14px 16px 18px;
}
.rp-guide-card__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--rp-blue);
  margin-bottom: 6px;
}
.rp-guide-card h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 6px;
}
.rp-guide-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.rp-guide-foot {
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* ---------- resources: programs ---------- */

.rp-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.rp-program-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--rp-red);
  border-radius: 10px;
  padding: 24px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rp-program-card--upcoming {
  border-left-color: var(--rp-blue);
  background: var(--cream-deep);
}
.rp-program-card__status {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--rp-red);
  background: #ffe7e3;
  padding: 4px 9px;
  border-radius: 3px;
}
.rp-program-card--upcoming .rp-program-card__status {
  color: var(--rp-blue);
  background: var(--rp-blue-tint);
}
.rp-program-card h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.026em;
  color: var(--ink);
  margin-top: 4px;
}
.rp-program-card__sub {
  font-size: 13.5px !important;
  font-weight: 600;
  color: var(--rp-blue) !important;
  letter-spacing: 0.01em;
  text-transform: none;
}
.rp-program-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.rp-program-card .rp-btn { align-self: flex-start; margin-top: 6px; }

/* ---------- contact ---------- */

.rp-contact {
  max-width: 1080px;
  margin: 0 auto;
}
.rp-contact__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.rp-contact__card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 22px 22px 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.rp-contact__card:hover {
  border-color: var(--rp-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rp-contact__primary {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.022em;
  font-variant-numeric: tabular-nums;
}
.rp-contact__sub {
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.rp-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.rp-contact__block {
  background: var(--cream-deep);
  border-radius: 10px;
  padding: 24px 24px 26px;
}
.rp-contact__heading {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 12px;
}
.rp-contact__addr {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.rp-contact__addr strong { color: var(--ink); }
.rp-contact__block p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.rp-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.rp-hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--hairline);
}
.rp-hours li:last-child { border-bottom: 0; }
.rp-hours li span:first-child { font-weight: 600; color: var(--ink); }
.rp-hours li span:last-child { font-variant-numeric: tabular-nums; }
.rp-hours__closed { color: var(--ink-mute); font-style: italic; }
.rp-hours__closed span:first-child { color: var(--ink-mute) !important; }

.rp-contact__map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  aspect-ratio: 16 / 7;
  background: var(--cream-deep);
}
.rp-contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- wall as full page ---------- */

.rp-wall-page {
  max-width: 760px;
  margin: 0 auto;
}
.rp-wall-page .rp-wall {
  margin-bottom: 32px;
}
.rp-wall-disclaimer {
  margin-top: 28px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  font-style: italic;
  text-align: center;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}

/* ---------- bg-image variants with parallax + dark overlay ---------- */

/* Parallax via background-attachment: fixed on desktop. iOS Safari ignores
   this and falls back to scroll, which is fine. */
.rp-page-hero--image,
.rp-section--bg {
  position: relative;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}
.rp-page-hero--image::before,
.rp-section--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 29, 35, 0.62) 0%, rgba(26, 29, 35, 0.78) 100%);
  pointer-events: none;
  z-index: 0;
}
.rp-page-hero--image > *,
.rp-section--bg > * { position: relative; z-index: 1; }

/* Light text overrides inside bg-image variants */
.rp-page-hero--image h1,
.rp-section--bg .rp-section__title { color: #fff; }
.rp-page-hero--image .rp-eyebrow,
.rp-section--bg .rp-eyebrow { color: #fff; opacity: 0.85; }
.rp-page-hero--image .rp-page-hero__lede,
.rp-section--bg .rp-section__lede,
.rp-section--bg .rp-prose-layout__body p { color: rgba(255, 255, 255, 0.86); }
.rp-section--bg .rp-prose-layout__body h3 { color: #fff; }
.rp-section--bg .rp-list li { color: rgba(255, 255, 255, 0.86); }
.rp-section--bg .rp-list li::before { background: var(--rp-red); }
.rp-page-hero--image .rp-page-hero__jump a {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(4px);
}
.rp-page-hero--image .rp-page-hero__jump a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.rp-section--bg .rp-callout {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}
.rp-section--bg .rp-callout strong { color: #fff; }
.rp-section--bg .rp-callout a { color: #fff; text-decoration-color: var(--rp-red); }

/* Disable fixed parallax on touch devices — both for performance and because
   iOS Safari renders fixed-bg incorrectly inside transformed/overflow contexts. */
@media (hover: none), (max-width: 880px) {
  .rp-page-hero--image,
  .rp-section--bg { background-attachment: scroll; }
}

/* ---------- bio (team detail row) ---------- */

.rp-bio {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: start;
}
.rp-bio--reverse {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.7fr);
}
.rp-bio--reverse .rp-bio__portrait { order: 2; }
.rp-bio__portrait {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
  box-shadow: 0 12px 36px rgba(26, 29, 35, 0.10);
}
.rp-bio__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03);
}
.rp-bio__name {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.032em;
  color: var(--ink);
  margin-top: 8px;
  margin-bottom: 8px;
}
.rp-bio__role {
  font-size: 14px;
  font-weight: 600;
  color: var(--rp-blue);
  letter-spacing: 0.02em;
  margin-bottom: 22px !important;
}
.rp-bio__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.rp-social {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.rp-social li { display: inline-block; }
.rp-social a,
.rp-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--hairline);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.rp-social svg {
  width: 18px;
  height: 18px;
}
.rp-social a:hover {
  background: var(--rp-blue);
  color: #fff;
  border-color: var(--rp-blue);
  transform: translateY(-1px);
}
.rp-social--placeholder span {
  background: var(--cream-deep);
  opacity: 0.55;
  cursor: not-allowed;
}
.rp-social--footer {
  margin-top: 16px;
}
.rp-social--footer a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
}
.rp-social--footer a:hover {
  background: var(--rp-red);
  color: #fff;
  border-color: var(--rp-red);
}
.rp-social--footer svg { width: 17px; height: 17px; }

.rp-bio__personal {
  font-style: italic;
  color: var(--ink-mute) !important;
  border-top: 1px dashed var(--hairline);
  padding-top: 16px;
  margin-top: 10px !important;
}

/* ---------- framework ---------- */

.rp-framework {
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.rp-stages {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.rp-stage {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 22px 22px 24px;
  position: relative;
}
.rp-stage__num {
  display: inline-block;
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  color: var(--rp-blue);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.rp-stage__name {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.rp-stage p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- services strip ---------- */

.rp-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.rp-service {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 24px 24px 22px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.rp-service:hover {
  border-color: var(--rp-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rp-service__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--rp-blue);
  margin-bottom: 10px;
}
.rp-service h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
  color: var(--ink);
}
.rp-service p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}
.rp-service__more {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rp-red);
  letter-spacing: -0.005em;
}

/* ---------- trust strip ---------- */

.rp-trust {
  background: var(--ink);
  color: #fff;
  padding: 48px 24px;
}
.rp-trust__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}
.rp-trust__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rp-trust__num {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--rp-red);
}
.rp-trust__plus {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--rp-blue);
  letter-spacing: 0;
  margin-left: 4px;
  vertical-align: super;
}
.rp-trust__label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 24ch;
}

/* ---------- team strip ---------- */

.rp-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.rp-team__card {
  background: var(--cream-deep);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.rp-team__card:hover {
  border-color: var(--rp-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rp-team__portrait {
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.rp-team__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03);
}
.rp-team__card h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.022em;
  padding: 18px 20px 4px;
}
.rp-team__card > p {
  font-size: 13px;
  font-weight: 600;
  color: var(--rp-blue);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0 20px 6px;
}
.rp-team__meta {
  font-size: 13px;
  font-weight: 500 !important;
  color: var(--ink-soft) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding: 0 20px 20px !important;
  line-height: 1.5;
}

/* ---------- reviews / testimonials ---------- */

.rp-reviews {
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.rp-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.rp-quote {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.rp-quote:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rp-quote__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--rp-red);
}
.rp-quote__stars svg {
  width: 18px;
  height: 18px;
  display: block;
}
.rp-quote__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.rp-quote__attr {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 4px;
}
.rp-quote__name {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.rp-quote__source {
  font-size: 12px;
  font-weight: 600;
  color: var(--rp-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- wall teaser ---------- */

.rp-wall-teaser {
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.rp-wall-preview {
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--rp-red);
  border-radius: 10px;
  padding: 24px 26px 26px;
  max-width: 760px;
}
.rp-wall-preview__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.rp-wall-preview__num {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  color: var(--rp-blue);
  letter-spacing: -0.02em;
}
.rp-wall-preview__q {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.rp-wall-preview__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.rp-wall-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  max-width: 760px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--rp-red);
  border-radius: 10px;
  overflow: hidden;
}
.rp-wall-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-top: 1px solid var(--hairline);
}
.rp-wall-list li:first-child { border-top: 0; }
.rp-wall-list__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);
  letter-spacing: -0.02em;
  line-height: 1;
}
.rp-wall-list__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-wall-list__cta { align-self: flex-start; }

@media (max-width: 560px) {
  .rp-wall-list li {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 14px 16px;
  }
  .rp-quotes { grid-template-columns: 1fr; gap: 14px; }
  .rp-quote { padding: 22px 22px 20px; }
  .rp-quote__mark { font-size: 50px; }
  .rp-wall-list__num { font-size: 18px; }
  .rp-wall-list__q { font-size: 16px; }
}

/* ---------- blog strip ---------- */

.rp-blog-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.rp-blog-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 22px 22px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.rp-blog-card:hover {
  border-color: var(--rp-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rp-blog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--rp-blue);
  margin-bottom: 12px;
}
.rp-blog-card h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
  color: var(--ink);
}
.rp-blog-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.rp-blog-strip__more {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--rp-red);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.rp-blog-strip__more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- big CTA band ---------- */

.rp-cta-band {
  background: var(--cream);
}
.rp-cta-band__panel {
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 42px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}
.rp-cta-band__copy h2 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: #fff;
  margin-bottom: 10px;
}
.rp-cta-band__copy p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 50ch;
}
.rp-cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.rp-cta-band__phone {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.32);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.rp-cta-band__phone:hover {
  color: #fff;
  text-decoration-color: var(--rp-red);
}

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

.rp-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 24px 24px;
  border-top: 4px solid var(--rp-red);
}
.rp-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 38px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.rp-footer__brand img {
  margin-bottom: 14px;
  filter: brightness(1.02);
}
.rp-footer__brand p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 28ch;
}
.rp-footer h4 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.rp-footer__col p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.rp-footer__col a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.15s ease;
}
.rp-footer__col a:hover { color: var(--rp-red); }
.rp-footer__base {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.rp-footer__built a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.rp-footer__built a:hover { color: var(--rp-red); }

/* Icon-only watermark (pulsing, accent-coloured) */
.rp-footer__mark-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  outline: none;
}
.rp-footer__mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--rp-red);
  -webkit-mask: url('../assets/pb-mark.svg') center / contain no-repeat;
          mask: url('../assets/pb-mark.svg') center / contain no-repeat;
  animation: rp-mark-pulse 3.6s ease-in-out infinite;
}
.rp-footer__mark-link:focus-visible .rp-footer__mark {
  outline: 2px solid var(--rp-red);
  outline-offset: 4px;
}
@keyframes rp-mark-pulse {
  0%, 55%, 100% { opacity: 0.45; transform: scale(1); }
  28%           { opacity: 1;    transform: scale(1.10); }
}

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

@media (max-width: 880px) {
  .rp-prose-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rp-bio,
  .rp-bio--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
    margin: 0 auto;
  }
  .rp-bio--reverse .rp-bio__portrait { order: 0; }
  .rp-fees__row {
    padding: 12px 14px;
    font-size: 13.5px;
  }
  .rp-fees__row--head { font-size: 10.5px; padding: 10px 14px; }
  .rp-fees__name { font-size: 14px; gap: 6px; }
  .rp-fees__price { font-size: 16px; }
  .rp-fees__single { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rp-fees__single-price { font-size: 36px; }
  .rp-contact__methods { grid-template-columns: 1fr; }
  .rp-contact__grid { grid-template-columns: 1fr; gap: 18px; }
  .rp-blog-index { grid-template-columns: 1fr; }
  .rp-blog-card--feature { grid-column: span 1; }
  .rp-related__grid { grid-template-columns: 1fr; }
  .rp-video-grid { grid-template-columns: 1fr; gap: 14px; }
  .rp-guide-grid { grid-template-columns: repeat(2, 1fr); }
  .rp-program-grid { grid-template-columns: 1fr; }
  .rp-program-card h3 { font-size: 20px; }
  .rp-hero-home__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rp-hero-home__portrait { max-width: 360px; }
  .rp-stages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rp-services { grid-template-columns: 1fr; }
  .rp-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .rp-team { grid-template-columns: 1fr; }
  .rp-blog-cards { grid-template-columns: 1fr; }
  .rp-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .rp-nav__inner { padding: 12px 18px; gap: 12px; }
  .rp-nav__toggle { display: inline-flex; }
  .rp-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
    padding: 12px 18px 18px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .rp-nav__menu[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .rp-nav__menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--hairline);
    border-radius: 0;
  }
  .rp-nav__menu a:last-child { border-bottom: 0; }
  .rp-nav__cta {
    margin-top: 8px;
    align-items: center;
    border-radius: 8px;
  }

  .rp-hero-home { padding: 36px 20px 48px; }
  .rp-hero-home__title { font-size: clamp(30px, 8vw, 40px); }
  .rp-hero-home__lede { font-size: 16px; }
  .rp-hero-home__ctas { flex-direction: column; align-items: stretch; }
  .rp-btn { width: 100%; }
  .rp-btn--ghost { flex-direction: row; }

  .rp-section { padding: 48px 20px; }
  .rp-section__head { margin-bottom: 28px; }
  .rp-stages { grid-template-columns: 1fr; gap: 14px; }
  .rp-trust__grid { grid-template-columns: 1fr; gap: 24px; }

  .rp-cta-band__panel {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 20px;
  }
  .rp-cta-band__actions { align-items: stretch; }
  .rp-cta-band__phone { text-align: center; }

  .rp-footer { padding: 44px 20px 18px; }
  .rp-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .rp-footer__base { flex-direction: column; }
}
