/* ============================================
   REGENEXX CAYMAN — Design Tokens
   Editorial, quiet-luxury aesthetic.
   Display: Fraunces (serif, editorial warmth)
   Body: Inter (clean, neutral, gets out of the way)
   ============================================ */

:root {
  /* Regenexx Cayman brand palette, per brand guidelines */
  --cream: #F2F2F1;       /* Light Grey */
  --cream-deep: #E8E6E0;  /* slightly deeper neutral for section banding */
  --navy: #15232C;        /* Dark Blue */
  --navy-soft: #223441;
  --teal: #2A9D95;        /* Accent Blue/turquoise, dialed back ~15% from #32BDB3 for text-on-cream contrast */
  --teal-bright: #32BDB3; /* full-strength accent, for large graphic elements only */
  --teal-soft: #E3F1EF;
  --beige: #E8E6E0;
  --ink: #22282E;
  --ink-soft: #5C6570;
  --line: rgba(21, 35, 44, 0.14);
  --line-light: rgba(242, 242, 241, 0.22);

  /* Display face reserved for short headlines on high-contrast backgrounds, per brand guide (max 1-2 lines) */
  --display: 'Bodoni Moda', 'Didot', Georgia, serif;
  /* Proxima Nova per brand guide; Montserrat is the closest freely-licensed substitute for this prototype */
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: var(--display); /* kept for backward compatibility within this file */

  --max-width: 1180px;
  --gutter: clamp(24px, 5vw, 80px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Typography ---------- */

/* Per brand guide: Proxima Nova (here, Montserrat as a free substitute) is the workhorse
   heading face. Diet Didot (here, Bodoni Moda) is reserved for single, short, high-impact
   statements on solid backgrounds — applied selectively below, not as the default. */
h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.display-statement {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: none;
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-decoration: none;
}

.nav-logo img { height: 34px; width: auto; }

.nav-logo .tagline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: sticky;
  top: 76px;
  z-index: 99;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.mobile-menu a {
  padding: 16px clamp(20px, 3vw, 48px);
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.mobile-menu a.btn-primary {
  margin: 12px clamp(20px, 3vw, 48px);
  border-top: none;
  text-align: center;
  justify-content: center;
}

.mobile-menu.open {
  max-height: 400px;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.nav-links a:hover { color: var(--teal); }

.breadcrumb {
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.breadcrumb .current { color: var(--teal); font-weight: 600; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 3px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--cream);
}

.btn-primary:hover { background: var(--navy); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--navy);
}

.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-on-dark {
  border: 1px solid var(--line-light);
  color: var(--cream);
}

.btn-on-dark:hover { border-color: var(--cream); background: rgba(247,244,238,0.08); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 22%;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,38,58,0.05) 0%, rgba(22,38,58,0.55) 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  width: 100%;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(40px, 6vw, 68px);
  color: #fff;
  line-height: 1.04;
  max-width: 16ch;
}

.hero .lede {
  color: rgba(255,255,255,0.88);
  margin-top: 18px;
  font-size: 18px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-actions .fine-print {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--navy);
  color: var(--cream);
}

.trust-bar .wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 32px;
}

.trust-item {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid var(--line-light);
}

.trust-item:last-child { border-right: none; padding-right: 0; }

.trust-item .t-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 5px;
}

.trust-item .t-sub {
  font-size: 12.5px;
  color: rgba(247,244,238,0.62);
  line-height: 1.4;
}

/* ---------- Sections ---------- */

section { padding: 108px 0; }

.section-beige { background: var(--cream-deep); }

.section-navy { background: var(--navy); color: var(--cream); }

.section-navy h2 { color: var(--cream); }

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.section-head { margin-bottom: 56px; max-width: 620px; }
.section-head.wide-head { max-width: none; }

.section-head h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin-top: 10px;
  line-height: 1.12;
}

.emphasis-large {
  font-size: 1.18em;
}

/* ---------- Body map ---------- */

.bodymap-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.bodymap-figure { display: flex; justify-content: center; }

.bodymap-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.bodymap-photo {
  width: 100%;
  display: block;
}

.region {
  position: absolute;
  width: 15px;
  height: 15px;
  margin-left: -7.5px;
  margin-top: -7.5px;
  border-radius: 50%;
  background: var(--teal-bright);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}

.region:hover, .region.active {
  transform: scale(1.4);
  background: var(--teal);
}

.region:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.region-row:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.pain-glow {
  position: absolute;
  inset: -13px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50,189,179,0.55) 0%, rgba(50,189,179,0) 70%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.region:hover .pain-glow, .region.active .pain-glow { opacity: 1; }

.region-list { display: flex; flex-direction: column; }

.region-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left 0.2s ease;
}

.region-row:first-child { border-top: 1px solid var(--line); }

.region-row:hover, .region-row.active { padding-left: 8px; }

.region-row:hover .region-name, .region-row.active .region-name { color: var(--teal); }

.region-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
  transition: color 0.2s ease;
}

.region-arrow {
  font-size: 13px;
  color: var(--ink-soft);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ---------- Photo triad ---------- */

.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.triad figure {
  position: relative;
  overflow: hidden;
}

.triad figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.triad img { height: 340px; object-fit: cover; width: 100%; }

.triad figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.35;
}

.triad-caption {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--navy-soft);
  text-align: center;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ---------- Diminuendo sequence (How Has Pain Changed You) ---------- */

.diminuendo {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 46px;
  padding: 140px 0;
}

.dim-line {
  font-family: var(--serif);
  opacity: 0.32;
  transition: opacity 0.6s ease, color 0.6s ease;
  max-width: 30ch;
}

.dim-line.behavioral { font-size: 19px; color: var(--ink-soft); font-family: var(--sans); font-weight: 400; }
.dim-line.pattern { font-size: 22px; color: var(--ink-soft); font-family: var(--sans); font-weight: 500; }
.dim-line.resignation { font-size: clamp(24px, 2.6vw, 28px); color: var(--navy-soft); font-family: var(--sans); font-weight: 600; }
.dim-line.existential {
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--navy);
  font-style: italic;
}

.dim-line.in-view { opacity: 1; }

.dim-prompt {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Why Cayman ---------- */

.why-cayman-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.cayman-points { display: flex; flex-direction: column; }

.cayman-point {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.cayman-point:last-child { border-bottom: 1px solid var(--line); }

.cayman-point .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--teal);
  padding-top: 3px;
}

.cayman-point .body-copy {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}

.cayman-point strong { color: var(--navy); }

.cayman-photo {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.cayman-closer {
  margin-top: 44px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  line-height: 1.4;
  max-width: 42ch;
}

/* ---------- Patient journey (text sequence, no icons) ---------- */

.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.journey-step {
  padding: 0 28px 0 0;
  border-right: 1px solid var(--line);
}

.journey-step:last-child { border-right: none; padding-right: 0; }

.journey-step:first-child { padding-left: 0; }

.journey-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 34px;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}

.journey-step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.journey-step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Contact card ---------- */

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 44px;
  scroll-margin-top: 100px;
}

.contact-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: flex; flex-direction: column; gap: 5px; }

.form-row label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.form-row input, .form-row textarea, .form-row select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--teal);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.form-consent input { margin-top: 3px; }
.form-consent a { color: var(--teal); }

.form-status {
  font-size: 13px;
  color: var(--teal);
  min-height: 18px;
  margin-top: -4px;
}

.contact-card h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.55;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.contact-methods a { color: var(--teal); font-weight: 600; }
.contact-methods .label { color: var(--ink-soft); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Testimonial (single, quiet) ---------- */

.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  color: var(--navy);
  line-height: 1.4;
  font-style: italic;
}

.testimonial .attribution {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ---------- Final CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 120px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,38,58,0.72);
}

.cta-band .wrap { position: relative; z-index: 2; }

.cta-band h2 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 48px);
}

.cta-band .lede {
  color: rgba(255,255,255,0.82);
  margin: 16px auto 32px;
  text-align: center;
}

/* ---------- Footer ---------- */

footer {
  background: var(--navy);
  color: rgba(247,244,238,0.6);
  padding: 48px 0;
  font-size: 13px;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- Checklist (condition pages) ---------- */

.check-list { display: flex; flex-direction: column; gap: 4px; }

.check-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16.5px;
  color: var(--ink);
  align-items: baseline;
}

.check-row .mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--teal);
  flex-shrink: 0;
}

/* ---------- Icons ---------- */

.icon {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle .icon { width: 24px; height: 24px; }

/* ---------- Trust bar with icons ---------- */

.trust-item.with-icon { display: flex; align-items: flex-start; gap: 12px; text-align: left; }
.trust-item.with-icon .icon { margin-top: 3px; }

/* ---------- Checklist with check-circle icons ---------- */

.check-list.icon-style .check-row { align-items: center; gap: 14px; }
.check-list.icon-style .mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: white; font-style: normal;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}

/* ---------- Process steps (icon + arrow) ---------- */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.process-step { text-align: center; }
.process-step .icon-circle { margin: 0 auto 16px; width: 64px; height: 64px; background: var(--navy); }
.process-step .icon-circle .icon { stroke: var(--teal-bright); width: 28px; height: 28px; }
.process-step h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Dark checklist section (Does This Sound Familiar) ---------- */

.section-navy {
  background: var(--navy);
  color: rgba(247,244,238,0.92);
  padding: 88px 0;
}

.section-navy .eyebrow { color: var(--teal-bright); }
.section-navy h2 { color: white; }

.familiar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}

.familiar-grid .check-list .check-row { border-bottom-color: rgba(247,244,238,0.14); color: rgba(247,244,238,0.88); }

.familiar-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: white;
  border-left: 2px solid var(--teal-bright);
  padding-left: 28px;
}

/* ---------- Outcome data (joint-specific registry stats) ---------- */

.outcome-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.outcome-stat {
  text-align: center;
  padding: 24px 12px;
  background: var(--cream-deep);
  border-radius: 4px;
}
.outcome-stat .stat-number {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.outcome-stat .stat-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 8px;
  display: block;
}
.outcome-stat .stat-sub {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  display: block;
}
.outcome-stat .stat-footnote {
  font-family: var(--sans);
  font-size: 10px;
  font-style: italic;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-top: 4px;
  display: block;
}
.outcome-conditions {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.outcome-disclaimer {
  margin-top: 32px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-top: 1px solid rgba(15,30,45,0.12);
  padding-top: 20px;
}

@media (max-width: 900px) {
  .outcome-stats { grid-template-columns: repeat(2, 1fr); }
  .outcome-conditions { grid-template-columns: 1fr; }
}

/* ---------- Facility grid ---------- */

.facility-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  height: 480px;
}

.facility-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; display: block; }
.facility-main { grid-row: 1 / 3; }
.facility-small-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; height: 100%; }

.asset-pending {
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  background: var(--cream-deep); color: var(--ink-soft);
  font-size: 12px; text-align: center; padding: 12px;
  border-radius: 4px; height: 100%;
}

.asset-pending .icon { stroke: var(--ink-soft); opacity: 0.5; width: 26px; height: 26px; }

/* ---------- Patient story video-style cards ---------- */

.patient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.patient-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.patient-card figure { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; background: var(--cream-deep); }
.patient-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.patient-card figcaption { margin-top: 12px; font-size: 14px; }
.patient-card figcaption strong { display: block; font-size: 15px; }

.patient-quote {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
}

.play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
}
.play-badge .icon { stroke: var(--navy); fill: var(--navy); width: 16px; height: 16px; }

.pending-card {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 13px; text-align: center; padding: 16px;
  position: relative;
}

.patient-card figure.has-video { cursor: pointer; }
.patient-card figure.has-video:hover .play-badge { transform: translate(-50%, -50%) scale(1.08); }
.play-badge { transition: transform 0.15s ease; }

.video-pending-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(20,30,40,0.72); color: #fff;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.02em; padding: 5px 10px; border-radius: 4px;
}

/* ---------- Video modal ---------- */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,16,22,0.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.open { display: flex; }

.video-modal-inner {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 16/9;
  background: #000;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(247,244,238,0.14);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Why choose grid (checklist + photo) ---------- */

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}

.why-choose-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; aspect-ratio: 4/3; }

/* ---------- Review carousel ---------- */

.review-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-top: 32px;
  scroll-snap-type: x proximity;
}

.review-scroll::-webkit-scrollbar { height: 6px; }
.review-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.review-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.review-card .stars { color: #F0A500; font-size: 15px; letter-spacing: 2px; margin-bottom: 8px; }
.review-card .reviewer { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.review-card .reviewer-sub { font-size: 12px; color: var(--ink-soft); margin-bottom: 12px; }
.review-card .snippet { font-size: 14px; line-height: 1.55; color: var(--ink); }

.review-more-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 32px auto 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.review-more-toggle .chevron { transition: transform 0.2s ease; }
.review-more-toggle.open .chevron { transform: rotate(180deg); }

.review-full-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.review-full-grid.open { display: grid; }

.review-full-card {
  background: var(--cream-deep);
  border-radius: 8px;
  padding: 22px;
}

.review-full-card .reviewer { font-weight: 600; font-size: 14.5px; margin-bottom: 2px; }
.review-full-card .reviewer-sub { font-size: 12px; color: var(--teal); margin-bottom: 10px; }
.review-full-card p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-links { gap: 12px; }
  .nav-links .breadcrumb, .nav-links > a:not(.btn-primary) { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .trust-bar .wrap { flex-wrap: wrap; }
  .trust-item { flex: 1 1 40%; border-right: none; padding-right: 0; margin-bottom: 20px; }
  .bodymap-layout { grid-template-columns: 1fr; }
  .why-cayman-grid { grid-template-columns: 1fr; }
  .triad { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .journey-step { border-right: none; }
  .contact-card { grid-template-columns: 1fr; text-align: center; }
  .contact-methods { align-items: center; }
  .process-steps { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .familiar-grid { grid-template-columns: 1fr; gap: 32px; }
  .facility-grid { grid-template-columns: 1fr; }
  .facility-main { grid-row: auto; }
  .patient-grid { grid-template-columns: 1fr; }
  .patient-grid.cols-2 { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; gap: 32px; }
  .review-full-grid.open { grid-template-columns: 1fr; }
  .diminuendo { padding: 80px 24px; gap: 32px; min-height: unset; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
