/* ============================================================
   Patient Resources — shared styles
   ============================================================
   Powers the 6 pages under the "Patient Resources" nav dropdown:
     - PatientResources (landing, 5-card grid)
     - BeforeAfter
     - Reviews
     - NewPatient
     - Specials
     - Referrals
   All slim heroes follow the same Ivory pattern used by
   Shop / Payments / GiftCards across the corrected site.
   ============================================================ */

/* ---------- Slim hero (Ivory — LOCKED direction) — shared across all 6 ---------- */
.pr-hero {
  background: var(--c-ivory);
  color: var(--c-ink);
  padding-top: 96px;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .pr-hero { padding-top: 64px; padding-bottom: 48px; }
}
.pr-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}
.pr-hero-rule {
  position: absolute;
  left: -8px;
  top: 8px;
  width: 1px;
  height: 96px;
  background: var(--c-sea);
  opacity: 0.5;
}
@media (max-width: 767px) {
  .pr-hero-rule { left: 0; height: 64px; }
}
.pr-hero-wrap {
  padding-left: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .pr-hero-wrap { padding-left: 16px; }
}
.pr-hero .eyebrow { margin-bottom: 20px; color: var(--c-sea-text); }
.pr-hero .eyebrow::before { background: var(--c-sea); }
.pr-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  margin: 0 0 20px;
  max-width: 20ch;
}
@media (max-width: 767px) {
  .pr-hero h1 { font-size: 38px; line-height: 1.1; }
}
.pr-hero-sub {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-slate);
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 767px) {
  .pr-hero-sub { font-size: 16px; }
}

/* ---------- Hero with a photo on the right (New Patient) ---------- */
.pr-hero--media .pr-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .pr-hero--media .pr-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
  }
  .pr-hero--media .pr-hero-sub { max-width: 42ch; }
}
.pr-hero-media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(12, 42, 46, 0.45);
}
.pr-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Generic section wrapper ---------- */
.pr-section {
  padding: 96px 24px;
}
@media (max-width: 767px) {
  .pr-section { padding: 72px 24px; }
}
.pr-section--ivory { background: var(--c-ivory); }
.pr-section--mint { background: var(--c-mint); }
.pr-section--pearl { background: var(--c-pearl); }
.pr-section--deep { background: var(--c-deep); color: var(--c-ivory); }

.pr-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pr-inner--narrow { max-width: 720px; }
.pr-inner--mid    { max-width: 960px; }

.pr-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.pr-section-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.pr-section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: var(--c-deep);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
@media (max-width: 767px) {
  .pr-section-head h2 { font-size: 28px; }
  .pr-section-head { margin-bottom: 40px; }
}
.pr-section-head p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0;
}
.pr-section--deep .pr-section-head h2 { color: var(--c-ivory); }
.pr-section--deep .pr-section-head p { color: rgba(246, 246, 247, 0.85); }

/* ---------- 5-card landing grid ---------- */
.pr-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .pr-landing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .pr-landing-grid { grid-template-columns: 1fr; }
}
.pr-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--c-ivory);
  border: 1px solid var(--c-stone);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition:
    transform var(--d-hover) var(--ease-out),
    border-color var(--d-hover) var(--ease-out),
    box-shadow var(--d-hover) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .pr-card:hover {
    transform: translateY(-3px);
    border-color: var(--c-sea);
    box-shadow: 0 12px 28px rgba(15, 79, 87, 0.10);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pr-card, .pr-card:hover { transform: none; transition: none; }
}
.pr-card:focus-visible {
  outline: 3px solid var(--c-deep);
  outline-offset: 3px;
}
.pr-card-accent {
  width: 32px;
  height: 2px;
  background: var(--c-sea);
  margin-bottom: 20px;
}
.pr-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--c-deep);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.pr-card p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-slate);
  margin: 0 0 24px;
  flex: 1;
}
.pr-card-cta {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pr-card:hover .pr-card-cta { color: var(--c-sea); }

/* ---------- Bottom consultation block ---------- */
.pr-consult {
  background: var(--c-mint);
  padding: 96px 24px;
  text-align: center;
}
.pr-consult--deep {
  background: var(--c-deep);
  color: var(--c-ivory);
}
@media (max-width: 767px) {
  .pr-consult { padding: 72px 24px; }
}
.pr-consult-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pr-consult .gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-gold);
  margin: 0 auto 24px;
}
.pr-consult h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: var(--c-deep);
  margin: 0 auto 16px;
  max-width: 22ch;
  letter-spacing: -0.005em;
}
.pr-consult--deep h2 { color: var(--c-ivory); }
@media (max-width: 767px) {
  .pr-consult h2 { font-size: 28px; }
}
.pr-consult p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0 auto 32px;
  max-width: 54ch;
}
.pr-consult--deep p { color: rgba(246, 246, 247, 0.85); }
@media (max-width: 767px) {
  .pr-consult p { font-size: 16px; }
}
.pr-consult-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
}

/* ---------- Visually hidden helper ---------- */
.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===============================================================
   BEFORE & AFTER
   =============================================================== */
.pr-consent {
  background: var(--c-pearl);
  padding: 20px 24px;
  border-bottom: 1px solid var(--c-stone);
}
.pr-consent-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-slate);
}
.pr-consent-icon {
  flex-shrink: 0;
  color: var(--c-sea);
}
.pr-consent strong { color: var(--c-ink); font-weight: 600; }

.pr-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}
.pr-chip {
  appearance: none;
  border: 1px solid transparent;
  background: var(--c-pearl);
  color: var(--c-slate);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color var(--d-hover) var(--ease-out),
    color var(--d-hover) var(--ease-out),
    border-color var(--d-hover) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .pr-chip:hover { background: var(--c-stone); color: var(--c-ink); }
}
.pr-chip[aria-pressed="true"] {
  background: var(--c-sea);
  color: var(--c-ivory);
}
.pr-chip:focus-visible {
  outline: 2px solid var(--c-deep);
  outline-offset: 2px;
}

.pr-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .pr-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .pr-gallery { grid-template-columns: 1fr; }
}
.pr-gallery-item {
  background: var(--c-ivory);
  border: 1px solid var(--c-stone);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pr-gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pr-gallery-side {
  position: relative;
  background: var(--c-pearl);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pr-gallery-side + .pr-gallery-side {
  border-left: 1px solid var(--c-stone);
}
.pr-gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pr-gallery-composite { background: var(--c-pearl); }
.pr-gallery-composite img { width: 100%; height: auto; display: block; }
.pr-gallery-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ivory);
  background: var(--c-deep);
  padding: 4px 8px;
  border-radius: 4px;
}
.pr-gallery-placeholder {
  font-family: "SFMono-Regular", ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--c-slate);
  padding: 16px;
  text-align: center;
}
.pr-gallery-meta {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pr-gallery-cat {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-sea-text);
}
.pr-gallery-caption {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-slate);
  margin: 0;
}
.pr-gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  font-family: var(--font-sans);
  color: var(--c-slate);
  font-size: 15px;
}

/* ===============================================================
   REVIEWS
   =============================================================== */
.pr-reviews-section {
  --review-star: #E8A400;
  background: var(--c-ivory);
  color: var(--c-ink);
  padding: 88px 24px 104px;
}
.pr-reviews-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.pr-reviews-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 56px;
}
.pr-reviews-heading {
  min-width: 0;
  padding-top: 12px;
}
.pr-reviews-heading .eyebrow {
  color: var(--c-sea-text);
  margin-bottom: 24px;
}
.pr-reviews-heading .eyebrow::before {
  background: var(--c-sea);
}
.pr-reviews-heading h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--c-deep);
  margin: 0 0 20px;
}
.pr-reviews-heading > p {
  max-width: 58ch;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-slate);
}
.pr-summary-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pr-summary {
  box-sizing: border-box;
  width: 100%;
  background: var(--c-ivory);
  border: 1px solid var(--c-stone);
  border-radius: 8px;
  padding: 22px 24px 24px;
  box-shadow: 0 12px 32px rgba(15, 79, 87, 0.035);
}
.pr-summary > .pr-review-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.pr-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}
.pr-summary-stats > div {
  min-width: 0;
  text-align: center;
  padding: 0 16px;
}
.pr-summary-stats > div + div {
  border-left: 1px solid var(--c-stone);
}
.pr-summary-stats dt {
  min-height: 34px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
  color: var(--c-slate);
}
.pr-summary-stats dt span,
.pr-summary-stats dt.pr-summary-google {
  font-size: 26px;
  color: var(--c-deep);
}
.pr-summary-stats dd {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-slate);
}
.pr-summary-cta {
  min-width: 264px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 22px;
  border: 1px solid var(--c-sea);
  border-radius: 6px;
  color: var(--c-deep);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    color var(--d-hover) var(--ease-out),
    background-color var(--d-hover) var(--ease-out);
}
.pr-summary-cta:focus-visible,
.pr-review-expand:focus-visible,
.pr-carousel-arrow:focus-visible,
.pr-carousel-dot:focus-visible {
  outline: 3px solid var(--c-deep);
  outline-offset: 3px;
}

.pr-review-layout {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px 22px;
  align-items: stretch;
}
.pr-featured-review,
.pr-review {
  border: 1px solid var(--c-stone);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15, 79, 87, 0.03);
}
.pr-featured-review {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 48px 48px 42px;
  background: #EEF3F2;
}
.pr-featured-mark {
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 104px;
  line-height: 1;
  color: var(--c-sea);
  opacity: 0.12;
  pointer-events: none;
}
.pr-featured-rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 34px;
}
.pr-featured-rating time {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--c-slate);
}
.pr-featured-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pr-featured-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.25vw, 33px);
  font-style: italic;
  line-height: 1.45;
  color: var(--c-deep);
}
.pr-featured-quote::before { content: "“"; }
.pr-featured-quote::after { content: "”"; }
.pr-featured-review .pr-review-full {
  font-size: 15px;
  line-height: 1.72;
}
.pr-review-full {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.62;
  color: var(--c-ink);
}
.pr-review-full p {
  margin: 0 0 14px;
}
.pr-review-full p:last-child {
  margin-bottom: 0;
}
.pr-review-expand {
  appearance: none;
  margin: 18px 0 0;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--c-sea-text);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.pr-featured-review > .pr-review-tag {
  margin-top: 26px;
}
.pr-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--c-stone);
}
.pr-featured-meta > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}
.pr-featured-meta strong {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-deep);
}
.pr-featured-meta span {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.4;
  color: var(--c-slate);
}

.pr-compact-carousel {
  min-width: 0;
}
.pr-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  height: 100%;
}
.pr-review {
  min-width: 0;
  min-height: 314px;
  padding: 22px 20px 20px;
  background: var(--c-ivory);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform var(--d-hover) var(--ease-out),
    border-color var(--d-hover) var(--ease-out),
    box-shadow var(--d-hover) var(--ease-out);
}
.pr-review-stars {
  display: inline-flex;
  flex: none;
  gap: 3px;
  color: var(--review-star);
}
.pr-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.pr-review-quote {
  flex: 1;
  margin: 14px 0 0;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.62;
  color: var(--c-ink);
}
.pr-review-quote::before { content: "“"; }
.pr-review-quote::after { content: "”"; }
.pr-review-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--c-mint);
  color: var(--c-sea-text);
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pr-review-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--c-stone);
}
.pr-review-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-deep);
}
.pr-google {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
}
.pr-carousel-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}
.pr-carousel-arrow {
  appearance: none;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-sea);
  border-radius: 50%;
  background: transparent;
  color: var(--c-deep);
  cursor: pointer;
  transition:
    color var(--d-hover) var(--ease-out),
    background-color var(--d-hover) var(--ease-out);
}
.pr-carousel-arrow:last-child {
  justify-self: end;
}
.pr-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.pr-carousel-dot {
  appearance: none;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--c-stone);
  cursor: pointer;
}
.pr-carousel-dot[aria-current="page"] {
  background: var(--c-sea);
}

@media (hover: hover) and (pointer: fine) {
  .pr-summary-cta:hover,
  .pr-carousel-arrow:hover {
    background: var(--c-deep);
    color: var(--c-ivory);
  }
  .pr-review:hover {
    transform: translateY(-3px);
    border-color: var(--c-sea);
    box-shadow: 0 14px 32px rgba(15, 79, 87, 0.08);
  }
  .pr-review-expand:hover {
    color: var(--c-deep);
  }
}

@media (max-width: 1100px) {
  .pr-reviews-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pr-summary-wrap {
    width: min(100%, 620px);
    align-items: flex-start;
  }
  .pr-summary-cta {
    align-self: center;
  }
  .pr-review-layout {
    grid-template-columns: 1fr;
  }
  .pr-featured-review {
    padding: 44px;
  }
  .pr-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pr-review {
    min-height: 292px;
  }
}

@media (max-width: 639px) {
  .pr-reviews-section {
    padding: 64px 18px 72px;
  }
  .pr-reviews-intro {
    gap: 32px;
    margin-bottom: 40px;
  }
  .pr-reviews-heading {
    padding-top: 0;
  }
  .pr-reviews-heading h1 {
    font-size: 42px;
  }
  .pr-reviews-heading > p {
    font-size: 15px;
  }
  .pr-summary {
    padding: 20px 12px;
  }
  .pr-summary-stats > div {
    padding: 0 8px;
  }
  .pr-summary-stats dt span,
  .pr-summary-stats dt.pr-summary-google {
    font-size: 21px;
  }
  .pr-summary-stats dd {
    font-size: 7px;
  }
  .pr-summary-cta {
    width: 100%;
    min-width: 0;
  }
  .pr-featured-review {
    padding: 34px 24px 28px;
  }
  .pr-featured-mark {
    top: 10px;
    left: 16px;
    font-size: 82px;
  }
  .pr-featured-rating {
    justify-content: space-between;
    margin-bottom: 28px;
  }
  .pr-featured-quote {
    font-size: 25px;
  }
  .pr-reviews-grid {
    grid-template-columns: 1fr;
  }
  .pr-review {
    min-height: 0;
    padding: 26px 24px 24px;
  }
  .pr-review-quote {
    font-size: 14px;
  }
  .pr-carousel-controls {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    margin-top: 12px;
  }
  .pr-carousel-dots {
    gap: 7px;
    flex-wrap: wrap;
  }
  .pr-carousel-dot {
    width: 7px;
    height: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pr-review,
  .pr-summary-cta,
  .pr-carousel-arrow {
    transition: none;
  }
  .pr-review:hover {
    transform: none;
  }
}

/* ===============================================================
   NEW PATIENT
   =============================================================== */
.pr-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .pr-steps { grid-template-columns: 1fr; gap: 40px; }
}
.pr-step {
  position: relative;
}
.pr-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--c-sea);
  color: var(--c-sea);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 18px;
}
.pr-step h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-deep);
  margin: 0 0 8px;
}
.pr-step p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-slate);
  margin: 0;
}

.pr-prose {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-ink);
}
.pr-prose p { margin: 0 0 18px; }
.pr-prose p:last-child { margin-bottom: 0; }
.pr-prose strong { color: var(--c-deep); font-weight: 600; }
.pr-prose ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.pr-prose li {
  margin-bottom: 6px;
}

.pr-placeholder-box {
  background: var(--c-pearl);
  border: 1px dashed var(--c-stone);
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 24px;
  font-family: "SFMono-Regular", ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: var(--c-slate);
  letter-spacing: 0.04em;
}

/* ===============================================================
   SPECIALS
   =============================================================== */
.pr-specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .pr-specials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .pr-specials-grid { grid-template-columns: 1fr; }
}
.pr-special {
  background: var(--c-ivory);
  border: 1px solid var(--c-stone);
  border-radius: 10px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform var(--d-hover) var(--ease-out),
    border-color var(--d-hover) var(--ease-out),
    box-shadow var(--d-hover) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .pr-special:hover {
    transform: translateY(-3px);
    border-color: var(--c-sea);
    box-shadow: 0 12px 28px rgba(15, 79, 87, 0.10);
  }
}
.pr-special-ribbon {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--c-sea);
  color: var(--c-ivory);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(15, 79, 87, 0.15);
}
.pr-special h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--c-deep);
  margin: 12px 0 12px;
  letter-spacing: -0.005em;
}
.pr-special-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-slate);
  margin: 0 0 16px;
  flex: 1;
}
.pr-special-price {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-deep);
  margin: 0 0 4px;
}
.pr-special-expires {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--c-slate);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.pr-special-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--c-deep);
  color: var(--c-ivory);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition:
    transform var(--d-hover) var(--ease-out),
    box-shadow var(--d-hover) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .pr-special-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 79, 87, 0.18);
  }
}

.pr-empty {
  background: var(--c-pearl);
  border: 1px solid var(--c-stone);
  border-radius: 10px;
  padding: 56px 32px;
  text-align: center;
  font-family: var(--font-sans);
  color: var(--c-slate);
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}
.pr-empty a {
  color: var(--c-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pr-rewards {
  background: var(--c-pearl);
  padding: 32px 24px;
  border-top: 1px solid var(--c-stone);
  border-bottom: 1px solid var(--c-stone);
}
.pr-rewards-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-slate);
}
.pr-rewards strong { color: var(--c-ink); font-weight: 600; }

.pr-membership-cross {
  background: var(--c-mint);
  padding: 80px 24px;
}
.pr-membership-cross-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pr-membership-cross h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: var(--c-deep);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.pr-membership-cross p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0 0 28px;
}

/* ===============================================================
   REFERRALS
   =============================================================== */
.pr-offer-band {
  background: var(--c-mint);
  padding: 96px 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .pr-offer-band { padding: 72px 24px; }
}
.pr-offer {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: var(--c-deep);
  letter-spacing: -0.005em;
}
@media (max-width: 767px) {
  .pr-offer { font-size: 26px; }
}
.pr-offer-discount {
  display: inline-block;
  color: var(--c-deep);
  font-weight: 500;
  position: relative;
  padding: 0 8px;
}
.pr-offer-discount::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background: var(--c-seafoam);
  opacity: 0.7;
  border-radius: 2px;
  z-index: -1;
}
.pr-offer-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-slate);
  margin: 24px auto 0;
  max-width: 56ch;
}

.pr-fine {
  background: var(--c-pearl);
  padding: 64px 24px;
}
.pr-fine-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pr-fine .eyebrow { margin-bottom: 16px; }
.pr-fine h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--c-deep);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.pr-fine ul {
  margin: 0;
  padding-left: 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
}
.pr-fine li { margin-bottom: 8px; }

/* ===============================================================
   REFERRALS — friends photo beside "How it works"
   Arch-top frame matches the site-wide portrait motif.
   =============================================================== */
.ref-how-grid { display: grid; grid-template-columns: 56fr 44fr; gap: 64px; align-items: center; }
@media (max-width: 1023px) { .ref-how-grid { grid-template-columns: 1fr; gap: 48px; } }
.ref-photo { margin: 0; max-width: 660px; overflow: hidden; border-radius: 50% 50% 12px 12px / 18% 18% 12px 12px; background: var(--c-stone); box-shadow: 0 1px 2px rgba(15, 79, 87, 0.06); }
@media (max-width: 1023px) { .ref-photo { max-width: 520px; margin: 0 auto; } }
.ref-photo img { display: block; width: 100%; aspect-ratio: 4/3.2; object-fit: cover; object-position: center 50%; filter: saturate(0.95) hue-rotate(-2deg); }
.ref-how-head { text-align: left; margin: 0 0 40px; max-width: none; }
.ref-how-head .eyebrow { justify-content: flex-start; }
.ref-steps { grid-template-columns: 1fr; gap: 32px; max-width: 52ch; }
