/* ============================================================
   Request Appointment  —  body.page-request-appointment
   Native BCB design system. Sections float transparent over the
   sitewide ombre (colors_and_type.css body default); content sits
   on frosted-white cards. Buttons reuse the global .btn system.
   ============================================================ */

/* This IS the booking page, so suppress the sitewide "Request Appointment"
   chrome CTAs that would only route the visitor back to this same page: the
   top-nav button, the mobile-drawer button, and the sticky mobile bar. The
   in-page buttons ("Start your intake") and the footer remain. The labels stay
   "Request Appointment" everywhere else (the canonical CTA that leads here). */
body.page-request-appointment .nav__cta,
body.page-request-appointment .navmenu__cta,
body.page-request-appointment .mobile-cta-bar {
  display: none !important;
}

/* The global .btn does not size its svg, so the external-link arrow in the
   intake buttons renders oversized and wraps the label onto multiple lines.
   Constrain it (flex:none, L-022) and keep the label on one line. */
body.page-request-appointment .btn svg {
  width: 16px;
  height: 16px;
  flex: none;
  position: relative;
  top: -1px; /* nudge to the optical center of the uppercase label */
}
body.page-request-appointment .btn {
  white-space: nowrap;
  line-height: 1; /* tighten the text line-box so caps align with the icon */
}

body.page-request-appointment .ra-hero,
body.page-request-appointment .ra-expect,
body.page-request-appointment .ra-steps,
body.page-request-appointment .ra-booking,
body.page-request-appointment .ra-helps,
body.page-request-appointment .ra-insurance,
body.page-request-appointment .ra-quotes,
body.page-request-appointment .ra-final {
  background: transparent;
}

/* Shared inner width */
body.page-request-appointment .ra-expect__card,
body.page-request-appointment .ra-steps,
body.page-request-appointment .ra-booking,
body.page-request-appointment .ra-helps,
body.page-request-appointment .ra-insurance,
body.page-request-appointment .ra-quotes,
body.page-request-appointment .ra-final {
  max-width: 1040px;
  margin-inline: auto;
}

body.page-request-appointment .ra-hero,
body.page-request-appointment .ra-expect,
body.page-request-appointment .ra-steps,
body.page-request-appointment .ra-booking,
body.page-request-appointment .ra-helps,
body.page-request-appointment .ra-insurance,
body.page-request-appointment .ra-quotes,
body.page-request-appointment .ra-final {
  padding-inline: clamp(20px, 5vw, 48px);
}

body.page-request-appointment p {
  color: var(--navy-500);
  font-size: clamp(15px, 1.02rem, 17px);
  line-height: 1.6;
}

body.page-request-appointment h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  color: var(--navy-700);
  margin: 0 0 20px;
}

body.page-request-appointment h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: -0.01em;
  color: var(--navy-700);
  margin: 0 0 10px;
}

/* Body links (not buttons) — scoped to page-content sections only, so the
   theme nav + footer menu links (which are <li><a>) are NOT affected. */
body.page-request-appointment .ra-expect a:not(.btn),
body.page-request-appointment .ra-steps a:not(.btn),
body.page-request-appointment .ra-booking a:not(.btn),
body.page-request-appointment .ra-helps a:not(.btn),
body.page-request-appointment .ra-insurance a:not(.btn),
body.page-request-appointment .ra-quotes a:not(.btn),
body.page-request-appointment .ra-final a:not(.btn) {
  color: var(--pink-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.page-request-appointment .ra-expect a:not(.btn):hover,
body.page-request-appointment .ra-steps a:not(.btn):hover,
body.page-request-appointment .ra-booking a:not(.btn):hover,
body.page-request-appointment .ra-helps a:not(.btn):hover,
body.page-request-appointment .ra-insurance a:not(.btn):hover,
body.page-request-appointment .ra-quotes a:not(.btn):hover,
body.page-request-appointment .ra-final a:not(.btn):hover {
  color: var(--pink-700);
}

/* Frosted card surface (unified site treatment) */
body.page-request-appointment .ra-expect__card,
body.page-request-appointment .ra-step,
body.page-request-appointment .ra-booking__card,
body.page-request-appointment .ra-booking__sub,
body.page-request-appointment .ra-quote {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
  backdrop-filter: blur(8px) saturate(110%);
  border: 1px solid rgba(41, 52, 72, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

/* ---------- Section 1: Hero ---------- */
/* L-015: beat the global body.full-width-content section padding (0,1,2)
   with a (0,2,0) selector so the hero gets its own breathing room. */
body.full-width-content .ra-hero {
  padding-block: clamp(40px, 6vw, 80px);
}
body.page-request-appointment .ra-hero {
  text-align: center;
}
body.page-request-appointment .ra-hero__inner {
  max-width: 760px;
  margin-inline: auto;
}
body.page-request-appointment .ra-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.02em;
  color: var(--pink-500);
  margin: 0 0 16px;
}
body.page-request-appointment .ra-hero__subhead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--navy-600);
  max-width: 620px;
  margin: 0 auto 14px;
}
body.page-request-appointment .ra-hero__priming {
  color: var(--navy-400);
  max-width: 560px;
  margin: 0 auto 24px;
}
body.page-request-appointment .ra-hero__cta {
  margin: 0 0 14px;
}
body.page-request-appointment .ra-hero__coverage {
  font-size: 15px;
  color: var(--navy-400);
  max-width: 520px;
  margin: 0 auto 18px;
}
body.page-request-appointment .ra-hero__coverage a {
  color: var(--pink-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.page-request-appointment .ra-hero__coverage a:hover {
  color: var(--pink-700);
}
body.page-request-appointment .ra-hero__contact {
  font-size: 15px;
  color: var(--navy-500);
  margin: 0;
}
body.page-request-appointment .ra-hero__contact a {
  color: var(--navy-600);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
body.page-request-appointment .ra-hero__contact a:hover {
  color: var(--pink-600);
}

/* ---------- Section 2: What you can expect ---------- */
body.page-request-appointment .ra-expect__card {
  padding: clamp(26px, 3.4vw, 40px);
}
body.page-request-appointment .ra-expect__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 12px;
}
body.page-request-appointment .ra-expect__list li {
  position: relative;
  padding-left: 30px;
  color: var(--navy-600);
  line-height: 1.5;
}
body.page-request-appointment .ra-expect__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink-400);
}
body.page-request-appointment .ra-expect__support {
  margin: 0;
  color: var(--navy-500);
}

/* ---------- Section 3: Steps ---------- */
body.page-request-appointment .ra-steps h2 {
  text-align: center;
}
body.page-request-appointment .ra-steps__grid {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
body.page-request-appointment .ra-step {
  padding: clamp(22px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
}
body.page-request-appointment .ra-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-500);
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
body.page-request-appointment .ra-step p {
  margin: 0;
}
body.page-request-appointment .ra-steps__closing {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--navy-500);
}
body.page-request-appointment .ra-steps__cta,
body.page-request-appointment .ra-final__cta {
  text-align: center;
  margin: 0;
}
/* heads-up note uses the sitewide .secure-form-note class (colors_and_type.css) */

/* ---------- Section 4: Booking by location ---------- */
body.page-request-appointment .ra-booking h2 {
  text-align: center;
}
body.page-request-appointment .ra-booking__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
}
/* Soonest-appointments panel (BCB Availability [bcb_soonest_office region=…]):
   three labelled rows (Houston area / San Antonio / Telehealth). The widget
   span itself is plugin-styled. Replaces the per-office grid. */
body.page-request-appointment .ra-soonest {
  max-width: 640px;
  margin: 0 auto 16px;
  padding: 6px 26px;
  background: var(--card-lift-bg);
  -webkit-backdrop-filter: var(--card-lift-blur);
  backdrop-filter: var(--card-lift-blur);
  border: 1px solid rgba(31,45,64,0.08);
  border-radius: var(--radius-lg);
}
body.page-request-appointment .ra-soonest__lead {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-500);
  margin: 12px 0 4px;
}
body.page-request-appointment .ra-soonest__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.page-request-appointment .ra-soonest__row {
  padding: 16px 0;
  text-align: left;
  border-bottom: 1px dashed var(--gray-200);
}
body.page-request-appointment .ra-soonest__row:last-child {
  border-bottom: 0;
}
body.page-request-appointment .ra-soonest__label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-700);
  margin-bottom: 8px;
}
body.page-request-appointment .ra-soonest__val {
  font-size: 15px;
  color: var(--navy-600);
}
/* The plugin widget span: time text + "Book now" on one line, button to the right. */
body.page-request-appointment .ra-soonest .bcb-next-avail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
/* "Book now" (and the fallback link) rendered as a pill button. */
body.page-request-appointment .ra-soonest .bcb-next-avail a {
  display: inline-block;
  background: var(--pink-500);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
body.page-request-appointment .ra-soonest .bcb-next-avail a:hover,
body.page-request-appointment .ra-soonest .bcb-next-avail a:focus {
  filter: brightness(0.95);
  color: #fff;
}
body.page-request-appointment .ra-booking__note {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy-500);
}
body.page-request-appointment .ra-booking__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
body.page-request-appointment .ra-booking__card {
  padding: clamp(24px, 2.8vw, 32px);
}
body.page-request-appointment .ra-booking__offices {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}
body.page-request-appointment .ra-booking__offices li {
  position: relative;
  padding-left: 22px;
  color: var(--navy-600);
  font-weight: 600;
}
body.page-request-appointment .ra-booking__offices li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-500);
}
body.page-request-appointment .ra-booking__card p {
  margin: 0;
  color: var(--navy-500);
}
body.page-request-appointment .ra-booking__sub {
  padding: clamp(22px, 2.6vw, 30px);
  margin-top: 16px;
}
body.page-request-appointment .ra-booking__sub p {
  margin: 0 0 16px;
}
body.page-request-appointment .ra-booking__sub .ra-booking__sub-label {
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--navy-600);
}
body.page-request-appointment .ra-booking__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Section 5: What lactation visits help with ---------- */
body.page-request-appointment .ra-helps h2 {
  text-align: center;
}
body.page-request-appointment .ra-helps__intro {
  text-align: center;
  margin: 0 auto 24px;
  max-width: 640px;
}
body.page-request-appointment .ra-helps__list {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
}
body.page-request-appointment .ra-helps__list li {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(41, 52, 72, 0.08);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-600);
}
body.page-request-appointment .ra-helps__closing {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--navy-500);
}

/* ---------- Section 6: Insurance and payment ---------- */
body.page-request-appointment .ra-insurance h2 {
  text-align: center;
}
body.page-request-appointment .ra-insurance__body {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
body.page-request-appointment .ra-ins__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
body.page-request-appointment .ra-ins__logo {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(41, 52, 72, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body.page-request-appointment .ra-ins__logo img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
body.page-request-appointment .ra-ins__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-600);
  text-align: center;
  line-height: 1.3;
}
body.page-request-appointment .ra-ins__name small {
  display: block;
  font-weight: 500;
  color: var(--navy-400);
  font-size: 11px;
}
body.page-request-appointment .ra-insurance__selfpay {
  text-align: center;
  max-width: 760px;
  margin: 28px auto 8px;
  color: var(--navy-500);
}
body.page-request-appointment .ra-insurance__payment {
  text-align: center;
  margin: 0 auto;
  color: var(--navy-500);
}

/* ---------- Section 7: What families tell us ---------- */
body.page-request-appointment .ra-quotes h2 {
  text-align: center;
}
body.page-request-appointment .ra-quotes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
body.page-request-appointment .ra-quote {
  padding: clamp(24px, 2.8vw, 34px);
  margin: 0;
}
body.page-request-appointment .ra-quote p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--navy-600);
  margin: 0 0 14px;
}
body.page-request-appointment .ra-quote__cite {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-600);
}

/* ---------- Section 8: Final CTA ---------- */
body.page-request-appointment .ra-final {
  text-align: center;
}
body.page-request-appointment .ra-final__closing {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--navy-600);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  body.page-request-appointment .ra-steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body.page-request-appointment .ra-booking__grid,
  body.page-request-appointment .ra-quotes__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.page-request-appointment .ra-ins__logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  body.page-request-appointment .ra-hero__contact a {
    white-space: normal;
  }
}

/* Closer (.ra-final) is already light. Enable the Case-A footer fade. */
body.page-request-appointment .footer-ombre-blend { display: block; }
