:root {
  --bg: #f4efe8;
  --bg-2: #ece4da;
  --paper: rgba(255, 255, 255, 0.66);
  --paper-strong: #fffdf9;
  --paper-deep: #e9dfd1;
  --ink: #161616;
  --muted: #605c57;
  --line: rgba(22, 22, 22, 0.08);
  --teal: #1d4d4a;
  --teal-2: #2c6f69;
  --navy: #17252c;
  --sand: #d6c4ac;
  --shadow: 0 24px 80px rgba(16, 20, 24, 0.10);
  --shadow-strong: 0 40px 120px rgba(14, 18, 23, 0.18);
  --radius: 28px;
  --radius-lg: 40px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(44, 111, 105, 0.12), transparent 32%),
    radial-gradient(circle at 100% 14%, rgba(23, 37, 44, 0.09), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, #f6f1ea 38%, #efe7dd 100%);
  line-height: 1.55;
}

body::selection { background: rgba(29, 77, 74, 0.18); }
a { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.25) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 2px;
  background: rgba(255,255,255,0.22);
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(29,77,74,0.95), rgba(214,196,172,0.72));
  box-shadow: 0 0 18px rgba(29,77,74,0.20);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section { padding: 4.75rem 0; }
body.homepage .section { padding: 4rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(244, 239, 232, 0.74);
  border-bottom: 1px solid rgba(22, 22, 22, 0.06);
}

.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--teal-2));
  box-shadow: var(--shadow);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong { font-size: 0.98rem; }
.brand-text small { color: var(--muted); font-size: 0.75rem; }

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: rgba(22,22,22,0.82);
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255,255,255,0.42);
}

.nav-label { line-height: 1; }

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(29,77,74,0.18);
  transform: scale(0.8);
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.site-nav a.is-active {
  color: #161616;
  background: rgba(255,255,255,0.56);
}

.site-nav a.is-active .nav-dot {
  background: var(--teal);
  transform: scale(1.16);
  box-shadow: 0 0 0 5px rgba(29,77,74,0.10);
}

.site-nav a:hover .nav-dot,
.site-nav a[aria-current="page"] .nav-dot {
  background: rgba(29,77,74,0.56);
  transform: scale(1.02);
  box-shadow: 0 0 0 4px rgba(29,77,74,0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(29, 77, 74, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(29, 77, 74, 0.26);
}

.button-small { min-height: 44px; padding: 0 1rem; }
.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(22,22,22,0.14);
  box-shadow: none;
}
.button-ghost.dark {
  color: white;
  border-color: rgba(255,255,255,0.18);
}

.hero-secondary-action {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  border-color: rgba(18, 27, 32, 0.10);
  box-shadow: 0 16px 36px rgba(16, 20, 24, 0.10);
  backdrop-filter: blur(14px);
}

.hero-secondary-action:hover {
  box-shadow: 0 20px 42px rgba(16, 20, 24, 0.14);
}

.hero {
  padding-top: 2.2rem;
}

main#top {
  background: #ffffff;
}
.hero-wrap { position: relative; }
.hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: none;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
}

.hero-stage::before,
.hero-stage::after {
  display: none;
}

.hero-stage-overlay {
  min-height: clamp(620px, 74vw, 840px);
  background:
    linear-gradient(180deg, rgba(7, 15, 22, 0.20) 0%, rgba(7, 15, 22, 0.10) 22%, rgba(7, 15, 22, 0.18) 48%, rgba(7, 15, 22, 0.42) 74%, rgba(7, 15, 22, 0.66) 100%),
    linear-gradient(90deg, rgba(7, 15, 22, 0.72) 0%, rgba(7, 15, 22, 0.54) 28%, rgba(7, 15, 22, 0.18) 56%, rgba(7, 15, 22, 0.08) 100%),
    image-set(url("assets/hero-overlay-reference.webp") type("image/webp"), url("assets/hero-overlay-reference.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,0.78);
}

.hero-stage-overlay::before,
.hero-stage-overlay::after {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  filter: none;
}

.hero-stage-overlay::before {
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 237, 212, 0.52), transparent 24%),
    radial-gradient(circle at 22% 24%, rgba(110, 183, 176, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.02) 100%);
}

.hero-stage-overlay::after {
  background:
    linear-gradient(180deg, rgba(6, 12, 17, 0) 34%, rgba(6, 12, 17, 0.08) 52%, rgba(6, 12, 17, 0.34) 76%, rgba(6, 12, 17, 0.54) 100%),
    linear-gradient(90deg, rgba(6, 12, 17, 0.18) 0%, rgba(6, 12, 17, 0.02) 40%, rgba(6, 12, 17, 0) 62%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.56fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.8rem, 5vw, 4rem);
}

.hero-grid-clean {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}


.hero-copy-clean {
  max-width: min(100%, 46rem);
}

.hero-grid-overlay {
  min-height: inherit;
  align-items: end;
  padding: clamp(2.8rem, 5vw, 4rem);
}

.hero-copy-overlay {
  max-width: min(100%, 39rem);
  padding: 0;
}

.hero-copy-overlay .eyebrow {
  color: rgba(255,255,255,0.97);
  text-shadow: 0 8px 24px rgba(4, 10, 14, 0.28);
}

.hero-copy-overlay h1 {
  max-width: 8.6ch;
  color: #f7f1ea;
  text-shadow: 0 14px 34px rgba(4, 10, 14, 0.34);
}

.hero-copy-overlay .hero-text {
  max-width: 35rem;
  color: rgba(247, 241, 234, 0.84);
  text-shadow: 0 10px 26px rgba(4, 10, 14, 0.28);
}

.hero-actions-clean {
  margin-bottom: 0;
}

.hero-actions-direct {
  margin-bottom: 0;
}

.hero-actions-direct .button:not(.button-ghost) {
  box-shadow: 0 16px 36px rgba(8, 14, 19, 0.24);
}

.hero-actions-direct .button:not(.button-ghost):hover {
  box-shadow: 0 20px 40px rgba(8, 14, 19, 0.28);
}

.hero-actions-direct .hero-secondary-action {
  background: rgba(255, 255, 255, 0.10);
  color: #f7f1ea;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-actions-direct .hero-secondary-action:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hero-aside-direct {
  align-self: end;
  justify-self: end;
  width: min(100%, 18rem);
  padding-bottom: 0.25rem;
}

.hero-summary-direct {
  gap: 0.25rem;
}

.hero-summary-direct .hero-dark-item {
  padding: 0.95rem 0;
  border-top-color: rgba(255,255,255,0.18);
}

.hero-summary-direct .hero-dark-item p,
.hero-summary-direct .hero-dark-label {
  text-shadow: 0 8px 22px rgba(4, 10, 14, 0.26);
}

.hero-summary-direct .hero-dark-item p {
  color: rgba(247, 241, 234, 0.96);
}

.hero-summary-direct .hero-dark-label {
  color: rgba(255,255,255,0.72);
}

.eyebrow,
.card-kicker,
.visual-topline,
.float-label,
.testimonial-tag {
  display: inline-flex;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal);
}

.eyebrow.light { color: rgba(255,255,255,0.72); }

h1, h2, h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3.6rem, 8vw, 7rem);
}

h2 { font-size: clamp(2rem, 4.2vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }

.hero-text,
.manifesto-copy p,
.section-head p,
.mosaic-card p,
.dark-copy p,
.experience-card p,
.location-card p,
.faq-list p,
.cta-panel h2,
.outcomes-panel p,
.visual-card p,
.approach-card p,
.content-panel p,
.glass-panel p,
.service-detail p,
.review-cta-card p,
.testimonial-card blockquote,
.testimonial-spotlight blockquote {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-text {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  font-size: 1.15rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.trust-ribbon {
  margin-top: 0.9rem;
  margin-inline: auto;
  width: min(100% - 2rem, 980px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  padding: 1.15rem 1.75rem;
  border-radius: 26px;
  background: rgba(244,248,250,0.62);
  border: 1px solid rgba(15,23,29,0.08);
  box-shadow: 0 18px 50px rgba(16, 20, 24, 0.08);
}

.trust-ribbon span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
  color: rgba(22,22,22,0.74);
}

.trust-ribbon span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 1.4rem;
  border-radius: 50%;
  background: rgba(29,77,74,0.24);
  flex: 0 0 auto;
}

.hero-aside.hero-dark-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 320px);
  padding: 1.15rem 1.25rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 100%),
    linear-gradient(145deg, #24353d 0%, #141c22 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 22px 54px rgba(9, 14, 18, 0.22);
}

.hero-dark-columns { display: grid; gap: 0.25rem; }
.hero-dark-item { padding: 0.85rem 0; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-dark-item:first-child { padding-top: 0; border-top: 0; }
.hero-dark-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.hero-dark-item p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.15vw, 1.32rem);
  line-height: 1.18;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.manifesto-grid,
.dark-band-grid,
.location-grid,
.faq-grid,
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.manifesto { padding-top: 4rem; }
.manifesto-intro .about-label {
  font-size: clamp(2.15rem, 4.4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
  color: var(--muted);
}
.manifesto-intro h2 { max-width: 11ch; }
.manifesto-copy {
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.74);
  box-shadow: var(--shadow);
}

.quiet-section { background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0)); }
.homepage-approach-stack {
  display: grid;
  gap: 1.6rem;
}
.homepage-approach-copy {
  width: min(100%, 42rem);
  margin-bottom: 0;
}
.homepage-approach-copy h2 {
  max-width: 10ch;
  margin-bottom: 1.2rem;
}
.homepage-approach-body {
  max-width: 34rem;
}
.homepage-approach-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(244,236,226,0.98) 100%);
  border: 1px solid rgba(35, 27, 18, 0.08);
  box-shadow: 0 18px 40px rgba(28, 20, 12, 0.08);
  overflow: hidden;
}
.homepage-approach-step {
  position: relative;
  min-height: 164px;
  padding: 1.65rem 1.8rem 1.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
}
.homepage-approach-step + .homepage-approach-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(35, 27, 18, 0), rgba(35, 27, 18, 0.1), rgba(35, 27, 18, 0));
}
.homepage-approach-step p {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  margin: 0;
  color: #16130f;
  font-size: 1rem;
  line-height: 1.45;
}
.homepage-approach-step-number {
  display: block;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #a7b7b9;
}
.homepage-approach-step-text {
  display: block;
  max-width: 18ch;
  color: rgba(22, 19, 15, 0.92);
  font-size: 1.04rem;
  font-weight: 500;
}
.approach-immersive-section { padding-top: 2.5rem; }
.approach-immersive-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: clamp(560px, 64vw, 720px);
  border-radius: 40px;
  background: linear-gradient(135deg, #1a2a31 0%, #10171c 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.approach-immersive-stage::before,
.approach-immersive-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.approach-immersive-stage::before {
  inset: -6%;
  background-image:
    linear-gradient(112deg, rgba(7, 12, 16, 0.96) 0%, rgba(7, 12, 16, 0.84) 33%, rgba(7, 12, 16, 0.34) 62%, rgba(7, 12, 16, 0.78) 100%),
    image-set(url("assets/about-drdavid-updated.webp") type("image/webp"), url("assets/about-drdavid-updated.png") type("image/png"));
  background-repeat: no-repeat;
  background-size: cover, min(58%, 760px) auto;
  background-position: center, right 2% center;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.04);
  animation: approach-pan 24s ease-in-out infinite alternate;
  z-index: -3;
}

.approach-immersive-stage::after {
  background:
    radial-gradient(circle at 20% 24%, rgba(41, 107, 101, 0.34), transparent 26%),
    radial-gradient(circle at 80% 16%, rgba(214, 196, 172, 0.2), transparent 24%),
    radial-gradient(circle at 74% 70%, rgba(102, 142, 138, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  opacity: 0.95;
  animation: approach-glow 18s ease-in-out infinite alternate;
  z-index: -2;
}

.approach-story-panel {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, 700px);
  margin: clamp(1.5rem, 3.5vw, 2.4rem);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(10, 16, 20, 0.78), rgba(10, 16, 20, 0.56));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 80px rgba(4, 8, 12, 0.32);
  backdrop-filter: blur(16px);
}

.approach-story-panel h2,
.approach-story-panel p,
.approach-story-panel .eyebrow {
  color: white;
}

.approach-story-panel h2 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
}

.approach-script {
  max-width: 42rem;
  margin: 0;
  color: rgba(245, 247, 248, 0.84) !important;
  font-size: 1.06rem;
}

.approach-script + .approach-script {
  margin-top: 1rem;
}

.approach-story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.approach-story-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@keyframes approach-pan {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
    background-position: center, right 2% center;
  }
  100% {
    transform: scale(1.11) translate3d(-1.5%, -1%, 0);
    background-position: center, right 7% top 38%;
  }
}

@keyframes approach-glow {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.82;
  }
  100% {
    transform: scale(1.04) translate3d(1.5%, -1.5%, 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .approach-immersive-stage::before,
  .approach-immersive-stage::after {
    animation: none;
    transform: none;
  }
}

.compact-head h2 { max-width: 12ch; }
.approach-steps,
.experience-stack,
.process-column,
.review-cta-stack { display: grid; gap: 1rem; }

.approach-card {
  padding: 1.55rem 1.65rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
}

.approach-card strong {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--teal);
}

.approach-card h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  margin-bottom: 0.65rem;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.mosaic-section {
  position: relative;
}

.service-section-head {
  margin-bottom: 1.5rem;
}

.service-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr) minmax(250px, 0.82fr);
  gap: 1rem;
  align-items: stretch;
  grid-template-areas:
    "a a c"
    "b d e";
}

.mosaic-card,
.experience-card,
.outcomes-panel,
.location-card,
.cta-panel,
.testimonial-card,
.testimonial-spotlight,
.review-cta-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.66);
  box-shadow: var(--shadow);
}

.mosaic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 232px;
  padding: 1.72rem;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255,255,255,0.7);
}

.mosaic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0));
  opacity: 0.75;
}

.mosaic-card > * {
  position: relative;
  z-index: 1;
}

.mosaic-card .card-kicker {
  margin: 0;
}

.mosaic-card h3 {
  max-width: 12ch;
  line-height: 1.02;
}

.mosaic-card p {
  margin: 0;
  max-width: 30rem;
}

.card-link-card {
  display: flex;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.card-link-card:hover,
.card-link-card:focus-visible {
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 28px 72px rgba(16, 20, 24, 0.14);
}

.mosaic-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.mosaic-feature {
  background: linear-gradient(180deg, rgba(214,196,172,0.16), rgba(255,255,255,0.9));
}

.mosaic-feature.dark {
  color: white;
  background: linear-gradient(145deg, #22353d 0%, #141d24 100%);
  box-shadow: 0 32px 90px rgba(10, 14, 18, 0.18);
}

.mosaic-feature.dark::before {
  background:
    radial-gradient(circle at 84% 14%, rgba(214,196,172,0.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  opacity: 1;
}

.mosaic-feature.dark p,
.mosaic-feature.dark .card-kicker,
.mosaic-feature.dark a,
.dark-card p,
.dark-card a,
.dark-card h3,
.dark-card .card-kicker { color: white; }

.mosaic-prp { grid-area: a; }
.mosaic-prolotherapy { grid-area: b; }
.mosaic-supportive { grid-area: c; }
.mosaic-scar { grid-area: d; }
.mosaic-ozone { grid-area: e; }

.mosaic-prp {
  min-height: 318px;
}

.mosaic-prp-frame {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 1rem;
}

.mosaic-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.mosaic-topline-note {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mosaic-prp-copy {
  display: grid;
  gap: 0.68rem;
  max-width: 42rem;
}

.mosaic-prp-copy h3 {
  max-width: 8ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.mosaic-prp-copy p {
  max-width: 31rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.08rem;
}

.mosaic-prp-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.mosaic-prp-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.28rem;
  padding: 0.5rem 0.76rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.mosaic-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(22,22,22,0.08);
  color: rgba(22,22,22,0.78);
}

.mosaic-feature.dark .mosaic-card-footer {
  border-top-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
}

.mosaic-footer-label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.mosaic-footer-arrow {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(22,22,22,0.06);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.mosaic-feature.dark .mosaic-footer-arrow {
  background: rgba(255,255,255,0.1);
}

.card-link-card:hover .mosaic-footer-arrow,
.card-link-card:focus-visible .mosaic-footer-arrow {
  transform: translate(2px, -2px);
  background: rgba(29,77,74,0.12);
}

.mosaic-feature.dark.card-link-card:hover .mosaic-footer-arrow,
.mosaic-feature.dark.card-link-card:focus-visible .mosaic-footer-arrow {
  background: rgba(255,255,255,0.16);
}

.mosaic-prolotherapy,
.mosaic-scar,
.mosaic-ozone {
  width: 100%;
  min-height: 256px;
}

@media (min-width: 1101px) {
  .mosaic-prolotherapy,
  .mosaic-scar,
  .mosaic-ozone {
    max-width: 348px;
  }

  .mosaic-prolotherapy {
    justify-self: start;
  }

  .mosaic-scar {
    justify-self: center;
  }

  .mosaic-ozone {
    justify-self: end;
  }
}

.mosaic-supportive {
  min-height: 318px;
}

.mosaic-prp,
.mosaic-supportive {
  padding: 1.56rem;
}

.mosaic-prolotherapy p,
.mosaic-ozone p,
.mosaic-scar p,
.supportive-card p {
  font-size: 0.98rem;
}

.tall {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(214,196,172,0.14), rgba(255,255,255,0.88));
}

.supportive-card {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(234,225,214,0.96) 100%);
}

.supportive-card::before,
.scar-card::before,
.muted::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0));
}

.supportive-card p,
.supportive-card .card-kicker,
.supportive-card a,
.supportive-card h3 { color: inherit; }

.supportive-card h3,
.scar-card h3,
.mosaic-ozone h3 {
  max-width: 10ch;
}

.supportive-card .micro-links {
  margin-top: auto;
}

.supportive-card .micro-links-inline {
  justify-content: center;
  gap: 0.45rem;
}

.supportive-card .micro-links a {
  background: rgba(255,255,255,0.6);
  border-color: rgba(22,22,22,0.08);
  box-shadow: none;
}

.supportive-card .micro-links a:hover {
  background: rgba(255,255,255,0.84);
  box-shadow: 0 10px 24px rgba(16, 20, 24, 0.08);
}

.scar-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(239,231,223,0.98));
}

.muted {
  background: rgba(233,223,209,0.78);
}

.dark-band {
  color: white;
  background: linear-gradient(135deg, #1e3038 0%, #121a20 100%);
}
.dark-band .dark-copy p,
.dark-band h2,
.review-cta-card h3,
.review-cta-card p,
.review-cta-card .card-kicker,
.review-cta-card strong { color: white; }

.experience-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

.experience-card span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.experience-card.accent,
.review-cta-card.accent {
  background: linear-gradient(135deg, rgba(29,77,74,0.86), rgba(214,196,172,0.42));
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.location-card { padding: 1.7rem; background: rgba(255,255,255,0.74); }
.location-card-clickable {
  position: relative;
  cursor: pointer !important;
}
.location-card-clickable * {
  cursor: pointer !important;
}
.location-card-clickable:focus-visible {
  outline: 2px solid rgba(45, 109, 104, 0.35);
  outline-offset: 4px;
}
.location-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.35rem 0;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}
.dark-card a {
  color: #f3e4cf;
}
.dark-card { background: linear-gradient(135deg, #203740 0%, #131d23 100%); }

.faq-section { background: rgba(255,255,255,0.24); }
.homepage-faq-section { padding-bottom: 6.25rem; }
.homepage-faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 2rem;
  align-items: start;
}
.homepage-faq-intro {
  position: sticky;
  top: 7rem;
  max-width: 28rem;
}
.homepage-faq-eyebrow {
  font-size: 1rem !important;
  line-height: 0.95 !important;
}
.homepage-faq-intro h2 {
  margin-bottom: 0;
  max-width: 11.5ch;
}
.homepage-faq-intro-copy {
  margin: 1rem 0 0;
  max-width: 32ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.homepage-faq-groups {
  display: grid;
  gap: 1.6rem;
}
.homepage-faq-group {
  --faq-accent: var(--teal);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.homepage-faq-group-head {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  margin-bottom: 0;
  padding: 0 2rem 1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(22,22,22,0.08);
  background: transparent;
  cursor: pointer;
  list-style: none;
  text-align: left;
}
.homepage-faq-group-head::-webkit-details-marker {
  display: none;
}
.homepage-faq-group-head::after {
  content: '+';
  position: absolute;
  top: -0.05rem;
  right: 0;
  color: var(--faq-accent);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.22s ease;
}
.homepage-faq-group.is-open .homepage-faq-group-head::after {
  transform: rotate(45deg);
}
.homepage-faq-group {
  overflow: hidden;
}
.homepage-faq-group .homepage-faq-items {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 820ms cubic-bezier(0.16, 1, 0.3, 1);
}
.homepage-faq-group .homepage-faq-items-inner {
  overflow: hidden;
  min-height: 0;
  padding-top: 0;
}
.homepage-faq-group.is-open .homepage-faq-items {
  grid-template-rows: 1fr;
}
.homepage-faq-group.is-open .homepage-faq-items-inner {
  padding-top: 0.85rem;
}
.homepage-faq-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.36rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: var(--faq-accent);
  box-shadow: 0 0 0 5px rgba(22,22,22,0.04);
}
.homepage-faq-group-copy {
  min-width: 0;
}
.homepage-faq-group-kicker {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.homepage-faq-group h3 {
  margin: 0;
  color: #284f56;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}
.homepage-faq-items details,
.faq-list details {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.homepage-faq-items details:last-child,
.faq-list details:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.homepage-faq-items summary,
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}
.homepage-faq-items summary {
  position: relative;
  padding-right: 2rem;
  line-height: 1.42;
  color: #1d2528;
}
.homepage-faq-items summary::after {
  content: '+';
  position: absolute;
  top: -0.05rem;
  right: 0;
  color: var(--faq-accent);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.22s ease;
}
.homepage-faq-items details[open] summary::after {
  transform: rotate(45deg);
}
.homepage-faq-items summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker { display: none; }
.homepage-faq-items p,
.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.homepage-faq-disclaimer {
  grid-column: 2;
  margin-top: 0.15rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(22,22,22,0.08);
  background: linear-gradient(180deg, rgba(243,239,233,0.86), rgba(248,245,240,0.96));
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}
.homepage-faq-disclaimer strong {
  color: var(--ink);
}
.homepage-faq-items {
  display: grid;
}
.homepage-faq-entry {
  position: relative;
  overflow: visible;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(22,22,22,0.08);
  background: transparent;
  box-shadow: none;
  transition:
    border-color 240ms ease,
    background-color 240ms ease;
}
.homepage-faq-entry::before {
  display: none;
}
.homepage-faq-entry:hover {
  border-color: rgba(22,22,22,0.12);
  background: rgba(255,255,255,0.28);
  transform: none;
}
.homepage-faq-entry.is-open {
  border-color: rgba(22,22,22,0.12);
  background: rgba(255,255,255,0.18);
  box-shadow: none;
  transform: none;
}
.homepage-faq-toggle {
  width: 100%;
  appearance: none;
  border: 0;
  padding: 0.88rem 0;
  margin: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.8rem;
  cursor: pointer;
}
.homepage-faq-toggle:focus-visible {
  outline: 2px solid rgba(47, 107, 105, 0.28);
  outline-offset: 3px;
}
.homepage-faq-question {
  display: block;
  min-width: 0;
  padding-right: 0.2rem;
  color: #1d2528;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.34;
  text-wrap: balance;
}
.homepage-faq-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.98rem;
  height: 0.98rem;
  color: var(--faq-accent);
  transition:
    color 240ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease;
}
.homepage-faq-toggle-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.homepage-faq-entry.is-open .homepage-faq-toggle-icon {
  color: var(--faq-accent);
  transform: rotate(180deg);
}
.homepage-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 680ms cubic-bezier(0.16, 1, 0.3, 1);
}
.homepage-faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}
.homepage-faq-entry.is-open .homepage-faq-panel {
  grid-template-rows: 1fr;
}
.homepage-faq-answer {
  margin: 0;
  padding: 0 2rem 0.92rem 0;
  border-top: 0;
  opacity: 0;
  transform: translateY(0.45rem);
  transition:
    opacity 280ms ease 120ms,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}
.homepage-faq-entry.is-open .homepage-faq-answer {
  opacity: 1;
  transform: translateY(0);
}
.homepage-faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}
.homepage-faq-answer p + p {
  margin-top: 0.75rem;
}

.final-cta { padding-top: 1.6rem; padding-bottom: 5rem; }
.cta-panel {
  padding: 2rem;
  background: linear-gradient(135deg, #1f3440 0%, #121c23 100%);
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.cta-panel .eyebrow,
.cta-panel h2 { color: white; }
.cta-panel h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.interior-hero {
  padding-top: 2.2rem;
  padding-bottom: 3rem;
}

.interior-hero-grid,
.two-column-layout,
.service-detail-grid,
.contact-card-grid,
.support-card-grid,
.service-link-grid,
.about-hero-grid,
.testimonial-showcase,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.interior-hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
}
.about-hero-section { padding-bottom: 3.5rem; }
.about-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.82fr);
  gap: clamp(1.4rem, 2.4vw, 2rem);
  align-items: stretch;
}
.about-hero-copy,
.about-portrait-panel { min-width: 0; }
.about-hero-copy {
  padding: clamp(2rem, 3.5vw, 3rem);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(214, 196, 172, 0.3), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.84) 0%, rgba(236,228,218,0.76) 100%);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow-strong);
}
.about-hero-copy .hero-text { max-width: 42rem; }
.about-hero-note {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(22,22,22,0.1);
}
.about-hero-note p {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
}
.about-portrait-panel { display: grid; gap: 1rem; align-self: stretch; }
.about-portrait-frame {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(233,223,209,0.86));
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: var(--shadow-strong);
}
.about-portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(18,28,35,0.14));
  pointer-events: none;
}
.about-portrait-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center top;
}
.about-portrait-card {
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(236,228,218,0.94));
}
.about-portrait-card h3 { margin-bottom: 0.65rem; }

.homepage-about-copy .about-label {
  margin-bottom: 1.15rem;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}
.homepage-about-copy h2 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
}
.homepage-about-copy .hero-text {
  max-width: 36rem;
}
.homepage-about-copy .hero-text + .hero-text {
  margin-top: 1rem;
}

.interior-title {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.glass-panel,
.content-panel,
.service-detail,
.process-step,
.contact-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.66);
  box-shadow: var(--shadow);
}
.glass-panel,
.content-panel,
.service-detail,
.contact-card {
  padding: 1.7rem;
  background: rgba(255,255,255,0.7);
}
.stat-panel { background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(233,223,209,0.84)); }
.two-column-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.align-start { align-items: start; }
.soft-panel { background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(236,228,218,0.92)); }
.check-list,
.service-points {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
}
.check-list li,
.service-points li { margin-bottom: 0.7rem; }
.tall-copy p + p { margin-top: 1rem; }
.service-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.featured-service { background: linear-gradient(180deg, rgba(214,196,172,0.24), rgba(255,255,255,0.86)); }
.dark-service {
  color: white;
  background: linear-gradient(135deg, #21353d 0%, #141f26 100%);
}
.dark-service p,
.dark-service li,
.dark-service .card-kicker,
.light-link { color: white; }
.support-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1rem; }
.compact-gap { margin-bottom: 1rem; }
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.process-step strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
}
.process-step span {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}
.contact-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-card { min-height: 100%; }
.primary-contact { background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(214,196,172,0.28)); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.contact-path-grid { margin-top: 1rem; }
.contact-path-card { min-height: 100%; }
.contact-path-card h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
}
.contact-intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 1rem;
  align-items: start;
}
.intake-form-panel {
  padding: clamp(1.8rem, 3vw, 2.4rem);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(236,228,218,0.92));
}
.intake-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.preview-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(29,77,74,0.08);
  border: 1px solid rgba(29,77,74,0.12);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.intake-intro {
  max-width: 44rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.intake-form {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field-group {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}
.field-group.full-span { grid-column: 1 / -1; }
.choice-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.field-label {
  padding: 0;
  color: rgba(22,22,22,0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.field-help {
  color: var(--muted);
  font-size: 0.92rem;
}
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(22,22,22,0.1);
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.intake-form textarea {
  min-height: 160px;
  resize: vertical;
}
.intake-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(22,22,22,0.54) 50%),
    linear-gradient(135deg, rgba(22,22,22,0.54) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: rgba(22,22,22,0.42);
}
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: rgba(29,77,74,0.28);
  box-shadow: 0 0 0 4px rgba(29,77,74,0.08);
  background: rgba(255,255,255,0.96);
}
.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.choice-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22,22,22,0.08);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 24px rgba(16,20,24,0.06);
  color: rgba(22,22,22,0.82);
  font-size: 0.95rem;
  font-weight: 600;
}
.choice-chip input {
  width: 1rem;
  height: 1rem;
  min-height: 0;
  margin: 0;
  accent-color: var(--teal);
}
.form-note {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(29,77,74,0.12);
  background: rgba(29,77,74,0.06);
  color: var(--muted);
  font-size: 0.96rem;
}
.form-note strong { color: var(--ink); }
.intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}
.button[disabled],
.button.is-disabled {
  opacity: 0.56;
  transform: none;
  box-shadow: none;
  pointer-events: none;
  cursor: not-allowed;
}
.contact-aside-stack {
  display: grid;
  gap: 1rem;
  align-self: start;
}
.location-meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22,22,22,0.08);
}
.location-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}
.dark-card .location-meta {
  border-top-color: rgba(255,255,255,0.12);
}
.dark-card .location-meta span { color: rgba(255,255,255,0.72); }
.response-card,
.contact-support-panel {
  padding: 1.7rem;
}
.response-card h3,
.contact-support-panel h3 {
  margin-bottom: 0.65rem;
}
.process-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.process-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}
.process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.contact-support-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.84), rgba(233,223,209,0.9));
}
.contact-support-panel .contact-actions { margin-top: 1rem; }

@media (max-width: 1100px) {
  .contact-intake-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .intake-panel-head { flex-direction: column; }
  .preview-pill { white-space: normal; }
  .form-row { grid-template-columns: 1fr; }
  .choice-grid { gap: 0.55rem; }
  .choice-chip {
    width: 100%;
    justify-content: flex-start;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-faq-entry,
  .homepage-faq-panel,
  .homepage-faq-answer,
  .homepage-faq-toggle-icon {
    transition: none;
  }

  .homepage-faq-entry:hover,
  .homepage-faq-entry.is-open,
  .homepage-faq-entry.is-open .homepage-faq-answer,
  .homepage-faq-entry.is-open .homepage-faq-toggle-icon {
    transform: none;
  }
}

.body-scroll-fade-target,
.body-scroll-fade-card {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.86s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.body-scroll-fade-target.is-visible,
.body-scroll-fade-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 760px) {
  .body-scroll-fade-target,
  .body-scroll-fade-card {
    transform: translate3d(0, 28px, 0);
    transition:
      opacity 0.76s ease,
      transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .body-scroll-fade-target,
  .body-scroll-fade-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.prp-highlight { background: linear-gradient(180deg, rgba(214,196,172,0.18), rgba(255,255,255,0.9)); }
.micro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.micro-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.85rem;
  margin-top: 0;
  border-radius: 999px;
  border: 1px solid rgba(22, 22, 22, 0.10);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(16, 20, 24, 0.08);
  color: #161616;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.micro-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(29, 77, 74, 0.22);
  box-shadow: 0 14px 28px rgba(16, 20, 24, 0.1);
}
.micro-links-inline { flex-wrap: nowrap; gap: 0.45rem; }
.micro-links-inline a {
  padding: 0.4rem 0.72rem;
  font-size: 0.76rem;
  white-space: nowrap;
}
.service-link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-link-card { min-height: 100%; }
.about-values-grid { margin-top: 1rem; }
.approach-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.quote-panel {
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
  min-height: 100%;
  background: linear-gradient(145deg, rgba(29, 77, 74, 0.1), rgba(255, 255, 255, 0.86));
}
.quote-panel p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.quote-panel span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-page-hero { padding-bottom: 2rem; }

.experiences-hero-grid { align-items: stretch; }
.experiences-stat-panel strong { color: var(--ink); }
.testimonial-showcase {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}
.testimonial-spotlight {
  padding: clamp(1.8rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at top left, rgba(214,196,172,0.32), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(236,228,218,0.88));
}
.testimonial-spotlight blockquote,
.testimonial-card blockquote {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.testimonial-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.76);
}
.testimonial-card.premium {
  background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(214,196,172,0.3));
}
.testimonial-card.soft-light {
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(236,228,218,0.95));
}
.testimonial-card blockquote {
  font-size: clamp(1.22rem, 1.8vw, 1.65rem);
  line-height: 1.1;
}
.testimonial-meta {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22,22,22,0.08);
}
.testimonial-meta strong {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.testimonial-meta span {
  color: var(--muted);
  font-size: 0.84rem;
}
.testimonial-placeholder-note {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px dashed rgba(22,22,22,0.12);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.testimonial-card.is-placeholder,
.testimonial-spotlight.is-placeholder {
  position: relative;
}
.testimonial-card.is-placeholder::after,
.testimonial-spotlight.is-placeholder::after {
  content: "Awaiting approved testimonial copy";
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(29,77,74,0.08);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-cta-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.review-cta-card .button { margin-top: 0.8rem; }


.site-footer {
  margin-top: 2rem;
  padding: 3.4rem 0;
  color: #f3eee7;
  background:
    radial-gradient(circle at top left, rgba(214,196,172,0.12), transparent 26%),
    linear-gradient(180deg, #18242b 0%, #10161b 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}
.footer-brand {
  margin-bottom: 1rem;
}
.site-footer .brand-text strong,
.site-footer .brand-text small {
  color: #f3eee7;
}
.site-footer .brand-text small {
  color: rgba(243,238,231,0.68);
}
.footer-copy,
.footer-note {
  max-width: 32rem;
  margin: 0;
  color: rgba(243,238,231,0.72);
  font-size: 0.98rem;
}
.footer-copy + .footer-note {
  margin-top: 0.9rem;
}
.footer-note {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(243,238,231,0.82);
  font-size: 0.84rem;
  font-weight: 600;
}
.footer-link-group {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}
.footer-heading {
  display: inline-flex;
  margin-bottom: 0.15rem;
  color: rgba(243,238,231,0.54);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-link-group a {
  color: rgba(243,238,231,0.82);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-link-group a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-cta-link {
  margin-top: 0.45rem;
  color: #ffffff;
}

body.prp-therapy-page main,
body.prolotherapy-page main,
body.neural-page main,
body.ozone-page main,
body.nad-page main,
body.nutritional-iv-page main,
body.iron-page main {
  background: #fff;
}

body.prp-therapy-page {
  background: #fff !important;
}


@media (max-width: 760px) {
  body.prp-therapy-page .footer-grid {
    padding-top: 1.3rem !important;
  }

  body.prp-therapy-page .footer-brand {
    margin-top: 0.7rem !important;
  }
}

body.prp-therapy-page .site-footer {
  margin-top: 4.4rem !important;
  padding-top: 3.4rem !important;
}


body.prp-therapy-page .site-footer {
  background: linear-gradient(180deg, #18242b 0%, #10161b 100%) !important;
  border-top: 0 !important;
}


body.prp-therapy-page .footer-grid {
  margin-top: -1.75rem !important;
  padding-top: 0.8rem !important;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .homepage-faq-shell {
    grid-template-columns: 1fr;
  }
  .homepage-faq-intro {
    position: static;
    max-width: none;
  }
  .homepage-faq-disclaimer {
    grid-column: 1;
  }
  .hero-grid,
  .manifesto-grid,
  .dark-band-grid,
  .location-grid,
  .faq-grid,
  .approach-grid,
  .split-head,
  .cta-panel,
  .interior-hero-grid,
  .two-column-layout,
  .service-detail-grid,
  .contact-card-grid,
  .support-card-grid,
  .about-hero-grid,
  .testimonial-showcase,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding: 2.5rem; }
  .homepage-approach-step {
    padding: 1.6rem 1.5rem;
  }
  .approach-immersive-stage::before {
    background-size: cover, min(72%, 760px) auto;
    background-position: center, right -2% center;
  }
  .approach-story-panel {
    width: min(100% - 2.5rem, 640px);
  }
  .about-portrait-panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    align-items: stretch;
  }
  .about-portrait-image { min-height: 520px; }
  .service-section-head {
    margin-bottom: 1.25rem;
  }
  .service-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a a"
      "b c"
      "d e";
  }
  .mosaic-card {
    padding: 1.5rem;
  }
  .mosaic-card-topline {
    align-items: flex-start;
  }
  .mosaic-prp {
    min-height: 286px;
  }
  .location-cards { grid-template-columns: 1fr; }
  .service-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 2.8rem 0; }

  body.prolotherapy-page .site-footer,
  body.neural-page .site-footer,
  body.ozone-page .site-footer,
  body.nad-page .site-footer,
  body.nutritional-iv-page .site-footer,
  body.iron-page .site-footer {
    margin-top: 0 !important;
    padding: 0.45rem 0 1.5rem !important;
  }

  body.prp-therapy-page .site-footer {
    margin-top: 8.5rem !important;
    padding: 4rem 0 1.5rem !important;
  }

  body.nutritional-iv-page .site-footer {
    padding-top: 0 !important;
    margin-top: -0.72rem !important;
  }

  body.nutritional-iv-page .footer-grid {
    padding-top: 0.64rem !important;
  }

  body.nutritional-iv-page .footer-brand-block {
    margin-top: 0 !important;
  }

  body.prp-therapy-page .footer-grid,
  body.prolotherapy-page .footer-grid,
  body.neural-page .footer-grid,
  body.ozone-page .footer-grid,
  body.nad-page .footer-grid,
  body.nutritional-iv-page .footer-grid,
  body.iron-page .footer-grid {
    gap: 0.95rem !important;
    align-items: start !important;
  }


  body.ozone-page .site-footer {
    padding-top: 3.4rem !important;
  }

  body.ozone-page .footer-grid {
    padding-top: 2rem !important;
  }

  body.prp-therapy-page .footer-brand,
  body.prolotherapy-page .footer-brand,
  body.neural-page .footer-brand,
  body.ozone-page .footer-brand,
  body.nad-page .footer-brand,
  body.nutritional-iv-page .footer-brand,
  body.iron-page .footer-brand {
    margin-bottom: 0.5rem !important;
  }


  body.prp-therapy-page .footer-link-group,
  body.prolotherapy-page .footer-link-group,
  body.neural-page .footer-link-group,
  body.ozone-page .footer-link-group,
  body.nad-page .footer-link-group,
  body.nutritional-iv-page .footer-link-group,
  body.iron-page .footer-link-group {
    gap: 0.58rem !important;
  }

  body.prp-therapy-page main,
  body.prolotherapy-page main,
  body.neural-page main,
  body.ozone-page main,
  body.nad-page main,
  body.nutritional-iv-page main,
  body.iron-page main {
    padding-bottom: 0 !important;
  }

  body.prp-therapy-page main > section:last-of-type,
  body.prolotherapy-page main > section:last-of-type,
  body.neural-page main > section:last-of-type,
  body.ozone-page main > section:last-of-type,
  body.nad-page main > section:last-of-type,
  body.nutritional-iv-page main > section:last-of-type,
  body.iron-page main > section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .section { padding: 4rem 0; }
  .homepage-approach-strip {
    grid-template-columns: 1fr;
  }
  .homepage-approach-step {
    min-height: auto;
    padding: 1.45rem 1.5rem;
  }
  .homepage-approach-step + .homepage-approach-step::before {
    left: 1.5rem;
    right: 1.5rem;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(35, 27, 18, 0), rgba(35, 27, 18, 0.12), rgba(35, 27, 18, 0));
  }
  .nav-row {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 1rem 0;
  }
  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav a { flex: 0 0 auto; }
  .nav-cta { display: none; }
  h1 { max-width: 9.5ch; font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-grid { padding: 1.4rem; }
  .trust-ribbon {
    border-radius: 24px;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 0.9rem;
  }
  .trust-ribbon span { white-space: normal; }
  .trust-ribbon span + span::before { margin-right: 0.7rem; }
  .approach-immersive-section { padding-top: 1rem; }
  .approach-immersive-stage {
    min-height: 620px;
    border-radius: 28px;
  }
  .approach-immersive-stage::before {
    inset: -10%;
    background-image:
      linear-gradient(180deg, rgba(7, 12, 16, 0.18) 0%, rgba(7, 12, 16, 0.3) 14%, rgba(7, 12, 16, 0.72) 48%, rgba(7, 12, 16, 0.92) 76%, rgba(7, 12, 16, 0.96) 100%),
      image-set(url("assets/about-drdavid-updated.webp") type("image/webp"), url("assets/about-drdavid-updated.png") type("image/png"));
    background-size: cover, 118% auto;
    background-position: center, center top;
  }
  .approach-story-panel {
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 1.25rem;
    border-radius: 24px;
  }
  .approach-story-panel h2 {
    max-width: 9ch;
  }
  .approach-story-points span {
    width: 100%;
    justify-content: flex-start;
  }
  .service-mosaic {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e";
  }
  .mosaic-card {
    min-height: auto;
    padding: 1.35rem;
  }
  .mosaic-prp {
    min-height: auto;
  }
  .mosaic-prp-frame {
    gap: 1.1rem;
  }
  .mosaic-prp-copy h3 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }
  .mosaic-prp-points span {
    width: 100%;
    justify-content: flex-start;
  }
  .mosaic-card-footer {
    padding-top: 0.85rem;
  }
  .service-link-grid { grid-template-columns: 1fr; }
  .micro-links-inline { flex-wrap: wrap; }
  .about-hero-copy { padding: 1.5rem; border-radius: 28px; }
  .about-portrait-panel { grid-template-columns: 1fr; }
  .about-portrait-frame,
  .about-portrait-card { border-radius: 28px; }
  .about-portrait-image { min-height: 420px; }
  .testimonial-spotlight blockquote { font-size: clamp(1.55rem, 7vw, 2.2rem); }
  .testimonial-card blockquote { font-size: 1.22rem; }

  .experiences-page .testimonial-grid,
  .experiences-page .support-card-grid {
    grid-template-columns: 1fr;
  }

  .experiences-page .review-cta-stack {
    grid-template-columns: 1fr;
  }
}

body.experiences-page {
  --exp-text: #e5ece8;
  --exp-text-strong: #f1f5f3;
  --exp-text-soft: rgba(229, 236, 232, 0.72);
  --exp-text-muted: rgba(216, 224, 221, 0.62);
  --exp-accent: #8f9f97;
  --exp-accent-soft: rgba(143, 159, 151, 0.16);
  --exp-accent-border: rgba(143, 159, 151, 0.24);
  --exp-border: rgba(213, 223, 221, 0.08);
  --exp-border-strong: rgba(213, 223, 221, 0.12);
  --exp-shadow: 0 26px 80px rgba(4, 9, 14, 0.34);
  --exp-card-shadow: 0 20px 44px rgba(5, 10, 16, 0.28);
  color: var(--exp-text);
  background:
    radial-gradient(circle at 16% 0%, rgba(82, 99, 107, 0.16), transparent 30%),
    radial-gradient(circle at 92% 4%, rgba(72, 92, 86, 0.12), transparent 25%),
    linear-gradient(180deg, #0d141a 0%, #121a21 38%, #182128 100%);
}

body.experiences-page::selection { background: rgba(143, 159, 151, 0.22); }

.experiences-page .noise {
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
}

.experiences-page .site-header {
  background: rgba(10, 15, 20, 0.8);
  border-bottom: 1px solid rgba(213, 223, 221, 0.05);
}

.experiences-page .brand-text strong,
.experiences-page .brand-text small,
.experiences-page .site-nav a {
  color: rgba(229, 236, 232, 0.8);
}

.experiences-page .site-nav a:hover,
.experiences-page .site-nav a[aria-current="page"] {
  background: rgba(213, 223, 221, 0.05);
  color: var(--exp-text-strong);
}

.experiences-page .button {
  background: linear-gradient(135deg, rgba(68, 83, 91, 0.34) 0%, rgba(41, 53, 60, 0.22) 100%);
  color: var(--exp-text-strong);
  border-color: var(--exp-border-strong);
  box-shadow: 0 14px 34px rgba(4, 10, 14, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.experiences-page .button-review {
  background: linear-gradient(135deg, rgba(87, 106, 100, 0.4) 0%, rgba(58, 75, 70, 0.24) 100%);
  color: var(--exp-text-strong);
  border-color: rgba(143, 159, 151, 0.28);
  box-shadow: 0 14px 34px rgba(14, 28, 28, 0.24);
}

.experiences-page .button-review:hover {
  box-shadow: 0 18px 38px rgba(14, 28, 28, 0.28);
}

.experiences-page .button-ghost {
  color: var(--exp-text);
  border-color: var(--exp-border-strong);
  background: linear-gradient(135deg, rgba(213, 223, 221, 0.07) 0%, rgba(213, 223, 221, 0.03) 100%);
  box-shadow: 0 12px 28px rgba(4, 10, 14, 0.16);
}

.experiences-page .button-ghost.dark {
  color: var(--exp-text);
  border-color: var(--exp-border-strong);
}

.experiences-page .eyebrow,
.experiences-page .card-kicker,
.experiences-page .testimonial-tag {
  color: rgba(161, 177, 170, 0.82);
}

.experiences-page .hero-text,
.experiences-page .split-head p,
.experiences-page .review-rail-copy p,
.experiences-page .testimonial-meta span,
.experiences-page .cta-panel h2 {
  color: var(--exp-text-muted);
}

.experiences-page .interior-title,
.experiences-page h2,
.experiences-page h3,
.experiences-page .testimonial-meta strong {
  color: var(--exp-text-strong);
}

.experiences-page .experiences-hero {
  padding-top: 2.5rem;
  padding-bottom: 1.75rem;
}

.experiences-page .experiences-hero-grid {
  gap: 1.25rem;
  align-items: stretch;
  grid-template-columns: 1fr;
}

.experiences-page .experiences-hero-copy,
.experiences-page .testimonial-spotlight,
.experiences-page .testimonial-card,
.experiences-page .cta-panel {
  border-radius: 32px;
  border: 1px solid var(--exp-border);
  box-shadow: var(--exp-shadow);
}

.experiences-page .experiences-hero-copy {
  padding: clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at top left, rgba(92, 111, 119, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(20, 29, 36, 0.96) 0%, rgba(15, 22, 29, 0.98) 100%);
}

.experiences-page .experiences-review-rail {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
  max-width: 44rem;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--exp-border-strong);
  background: linear-gradient(180deg, rgba(28, 38, 46, 0.94) 0%, rgba(18, 26, 33, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.experiences-page .review-rail-copy {
  display: grid;
  gap: 0.5rem;
}

.experiences-page .review-rail-copy p {
  margin: 0;
  max-width: 36rem;
}

.experiences-page .review-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.experiences-page .split-head,
.experiences-page .cta-panel {
  gap: 1.25rem;
}

.experiences-page .experiences-testimonial-grid {
  margin-top: 1.5rem;
  align-items: start;
  grid-auto-flow: dense;
}

.experiences-page .testimonial-card {
  min-height: 100%;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(26, 35, 43, 0.96) 0%, rgba(17, 24, 31, 0.98) 100%);
}

.experiences-page .testimonial-card.premium {
  background:
    radial-gradient(circle at top left, rgba(92, 111, 119, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(30, 40, 48, 0.98) 0%, rgba(19, 27, 34, 0.98) 100%);
}

.experiences-page .testimonial-card.soft-light {
  background:
    radial-gradient(circle at top left, rgba(101, 120, 111, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(35, 46, 47, 0.98) 0%, rgba(22, 31, 32, 0.98) 100%);
}

.experiences-page .testimonial-entry {
  display: grid;
  align-content: start;
  gap: 0.15rem;
  border-color: var(--exp-border);
  transition:
    border-color 360ms ease,
    box-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms ease;
}

.experiences-page .testimonial-entry.is-featured-card {
  grid-column: 1 / -1;
}

.experiences-page .testimonial-entry:hover {
  border-color: rgba(143, 159, 151, 0.16);
  transform: translateY(-1px);
}

.experiences-page .testimonial-entry.is-open {
  border-color: rgba(143, 159, 151, 0.2);
  box-shadow: var(--exp-card-shadow);
  transform: translateY(-1px);
  background:
    radial-gradient(circle at top left, rgba(117, 136, 126, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(37, 47, 53, 0.98) 0%, rgba(24, 32, 37, 0.98) 100%);
}

.experiences-page .testimonial-toggle {
  width: 100%;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  display: grid;
  gap: 0.95rem;
  cursor: pointer;
}

.experiences-page .testimonial-toggle:focus-visible {
  outline: 2px solid rgba(143, 159, 151, 0.42);
  outline-offset: 0.35rem;
  border-radius: 24px;
}

.experiences-page .testimonial-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.experiences-page .testimonial-preview {
  margin: 0;
  max-width: 34ch;
  color: var(--exp-text-soft);
  font-size: 0.93rem;
  line-height: 1.6;
}

.experiences-page .testimonial-card-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.experiences-page .testimonial-card-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.experiences-page .testimonial-entry.is-open .testimonial-card-panel {
  grid-template-rows: 1fr;
}

.experiences-page .testimonial-entry blockquote {
  margin-top: 1.3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(213, 223, 221, 0.07);
  color: rgba(231, 237, 234, 0.84);
  font-family: inherit;
  font-weight: 400;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.experiences-page .testimonial-card blockquote {
  font-size: clamp(1.06rem, 1.2vw, 1.24rem);
  line-height: 1.58;
}

.experiences-page .testimonial-entry.is-featured-card blockquote {
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  line-height: 1.54;
}

.experiences-page .testimonial-quote-inner {
  max-width: 58ch;
  opacity: 0;
  transform: translateY(0.8rem);
  transition:
    opacity 360ms ease 170ms,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 170ms;
}

.experiences-page .testimonial-entry.is-featured-card .testimonial-quote-inner {
  max-width: 70ch;
}

.experiences-page .testimonial-entry.is-open .testimonial-quote-inner {
  opacity: 1;
  transform: translateY(0);
}

.experiences-page .testimonial-card-action {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(213, 223, 221, 0.12);
  background: rgba(213, 223, 221, 0.03);
  color: rgba(229, 236, 232, 0.66);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    border-color 320ms ease,
    background-color 320ms ease,
    color 320ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.experiences-page .testimonial-entry.is-open .testimonial-card-action {
  border-color: rgba(143, 159, 151, 0.2);
  background: rgba(143, 159, 151, 0.08);
  color: rgba(241, 245, 243, 0.84);
  transform: translateY(0.5px);
}

.experiences-page .testimonial-meta {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

@media (prefers-reduced-motion: reduce) {
  .experiences-page .testimonial-entry,
  .experiences-page .testimonial-card-panel,
  .experiences-page .testimonial-quote-inner,
  .experiences-page .testimonial-card-action {
    transition: none;
  }

  .experiences-page .testimonial-entry:hover,
  .experiences-page .testimonial-entry.is-open,
  .experiences-page .testimonial-entry.is-open .testimonial-card-action,
  .experiences-page .testimonial-entry.is-open .testimonial-quote-inner {
    transform: none;
  }
}

.experiences-page .cta-panel {
  background:
    radial-gradient(circle at top left, rgba(92, 111, 119, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(19, 28, 35, 0.96) 0%, rgba(14, 21, 27, 0.98) 100%);
}


.experiences-page .site-footer {
  background:
    radial-gradient(circle at top left, rgba(101, 120, 111, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(8, 13, 18, 0.98) 0%, rgba(10, 16, 21, 1) 100%);
}

body.about-page {
  background:
    radial-gradient(circle at 14% 0%, rgba(214, 196, 172, 0.18), transparent 30%),
    radial-gradient(circle at 96% 10%, rgba(29, 77, 74, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f2eb 0%, #f5efe7 40%, #efe6db 100%);
}

.about-page .site-header {
  background: rgba(247, 242, 235, 0.82);
}

.about-page .about-page-hero {
  padding-bottom: 4rem;
}

.about-page .about-stage {
  background:
    radial-gradient(circle at 84% 18%, rgba(214, 196, 172, 0.34), transparent 20%),
    radial-gradient(circle at 12% 0%, rgba(29, 77, 74, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(247,242,235,0.8) 48%, rgba(233,223,209,0.78) 100%);
}

.about-page .about-stage-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: stretch;
}

.about-page .about-stage-copy {
  align-self: center;
}

.about-page .about-stage-copy .interior-title {
  max-width: 12ch;
}

.about-page .about-stage-copy .hero-text {
  max-width: 40rem;
}

.about-page .about-stage-note {
  max-width: 36rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(22,22,22,0.1);
}

.about-page .about-stage-note p {
  margin: 0;
}

.about-page .about-stage-aside {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.about-page .about-stage-portrait {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(233,223,209,0.92));
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-strong);
}

.about-page .about-stage-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(18,28,35,0.12));
  pointer-events: none;
}

.about-page .about-stage-portrait .about-portrait-image {
  min-height: 600px;
}

.about-page .about-stage-summary {
  padding: 1.2rem 1.3rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%),
    linear-gradient(145deg, #293c44 0%, #18242b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 54px rgba(9, 14, 18, 0.18);
}

.about-page .about-summary-item {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.about-page .about-summary-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-page .about-summary-item p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.02rem, 1.1vw, 1.22rem);
  line-height: 1.2;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.about-page .about-trust-ribbon {
  width: min(100% - 2rem, 1020px);
  margin-top: 1rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.78);
}

.about-page .about-manifesto {
  padding-top: 0;
}

.about-page .about-story-grid {
  margin-top: 1rem;
}

.about-page .about-story-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(241,234,226,0.94));
}

.about-page .about-secondary-stack {
  display: grid;
  gap: 1rem;
}

.about-page .about-quote-card {
  background: linear-gradient(145deg, rgba(29, 77, 74, 0.1), rgba(255,255,255,0.9));
}

.about-page .about-fit-section {
  padding-top: 2.5rem;
}

.about-page .about-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-page .about-fit-card {
  min-height: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(241,234,226,0.92));
}

.about-page .about-fit-card.featured {
  background: linear-gradient(145deg, rgba(214,196,172,0.22), rgba(255,255,255,0.92));
}

.about-page .about-fit-card.emphasis {
  background: linear-gradient(145deg, rgba(29,77,74,0.1), rgba(255,255,255,0.88));
}

body.experiences-page {
  --exp-text: #e8efeb;
  --exp-text-strong: #f5f8f6;
  --exp-text-soft: rgba(232, 239, 235, 0.78);
  --exp-text-muted: rgba(221, 230, 226, 0.7);
  --exp-accent: #aabbb2;
  --exp-accent-soft: rgba(170, 187, 178, 0.16);
  --exp-accent-border: rgba(170, 187, 178, 0.26);
  --exp-border: rgba(221, 230, 226, 0.1);
  --exp-border-strong: rgba(221, 230, 226, 0.14);
  --exp-shadow: 0 26px 80px rgba(6, 12, 18, 0.24);
  --exp-card-shadow: 0 20px 44px rgba(8, 14, 20, 0.22);
  color: var(--exp-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(123, 143, 139, 0.14), transparent 30%),
    radial-gradient(circle at 96% 6%, rgba(214, 196, 172, 0.08), transparent 24%),
    linear-gradient(180deg, #152127 0%, #1b2730 38%, #22303a 100%);
}

.experiences-page .site-header {
  background: rgba(18, 27, 34, 0.76);
  border-bottom: 1px solid rgba(221, 230, 226, 0.06);
}

.experiences-page .site-nav a:hover .nav-dot,
.experiences-page .site-nav a[aria-current="page"] .nav-dot {
  background: rgba(170, 187, 178, 0.92);
  box-shadow: 0 0 0 4px rgba(170, 187, 178, 0.12);
}

.experiences-page .experiences-hero {
  padding-top: 2.2rem;
  padding-bottom: 2.25rem;
}

.experiences-page .experiences-stage {
  background:
    radial-gradient(circle at 16% 0%, rgba(123, 143, 139, 0.18), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(214, 196, 172, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(31, 43, 51, 0.98) 0%, rgba(21, 30, 37, 0.98) 100%);
  border-color: rgba(221, 230, 226, 0.08);
  box-shadow: 0 34px 90px rgba(6, 12, 18, 0.26);
}

.experiences-page .experiences-stage-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  align-items: stretch;
  padding: clamp(2.4rem, 4vw, 3.35rem);
}

.experiences-page .experiences-stage-copy {
  align-self: center;
}

.experiences-page .experiences-stage-copy .hero-text {
  max-width: 40rem;
}

.experiences-page .experiences-stage-aside {
  display: grid;
  gap: 0.9rem;
  align-self: center;
}

.experiences-page .experiences-editorial-card {
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(221, 230, 226, 0.1);
  background: linear-gradient(180deg, rgba(233, 239, 236, 0.08) 0%, rgba(233, 239, 236, 0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.experiences-page .experiences-editorial-card.soft {
  background: linear-gradient(180deg, rgba(233, 239, 236, 0.06) 0%, rgba(214, 196, 172, 0.04) 100%);
}

.experiences-page .experiences-editorial-card p {
  margin: 0;
  color: var(--exp-text);
  font-size: 1rem;
  line-height: 1.48;
}

.experiences-page .experiences-review-rail {
  max-width: none;
  margin: 0 clamp(2.4rem, 4vw, 3.35rem) clamp(2.2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--exp-border-strong);
  background: linear-gradient(180deg, rgba(38, 50, 58, 0.94) 0%, rgba(25, 35, 42, 0.96) 100%);
}

.experiences-page .experiences-trust-ribbon {
  width: min(100% - 2rem, 1040px);
  margin-top: 1rem;
  background: rgba(233, 239, 236, 0.06);
  border: 1px solid rgba(221, 230, 226, 0.1);
  box-shadow: 0 18px 50px rgba(6, 12, 18, 0.18);
}

.experiences-page .experiences-trust-ribbon span {
  color: rgba(232, 239, 235, 0.78);
}

.experiences-page .experiences-trust-ribbon span + span::before {
  background: rgba(170, 187, 178, 0.32);
}

.experiences-page .experiences-intro-section {
  padding-top: 1.25rem;
}

.experiences-page .experiences-manifesto-copy {
  background: linear-gradient(145deg, rgba(233, 239, 236, 0.08), rgba(233, 239, 236, 0.04));
  border: 1px solid var(--exp-border-strong);
}

.experiences-page .manifesto-intro .about-label {
  color: rgba(232, 239, 235, 0.58);
}

.experiences-page .experiences-support-grid {
  margin-top: 1.25rem;
}

.experiences-page .experiences-support-grid .experience-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(32, 44, 52, 0.84), rgba(23, 34, 41, 0.92));
  border-color: rgba(221, 230, 226, 0.09);
}

.experiences-page .experiences-support-grid .experience-card.accent {
  background: linear-gradient(135deg, rgba(76, 95, 90, 0.62), rgba(214, 196, 172, 0.18));
}

.experiences-page .testimonial-card,
.experiences-page .cta-panel {
  border-color: rgba(221, 230, 226, 0.1);
  box-shadow: 0 22px 54px rgba(8, 14, 20, 0.18);
}

.experiences-page .testimonial-card {
  background: linear-gradient(180deg, rgba(35, 47, 55, 0.96) 0%, rgba(26, 36, 43, 0.98) 100%);
}

.experiences-page .testimonial-card.premium {
  background:
    radial-gradient(circle at top left, rgba(123, 143, 139, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(38, 51, 59, 0.98) 0%, rgba(28, 39, 46, 0.98) 100%);
}

.experiences-page .testimonial-card.soft-light {
  background:
    radial-gradient(circle at top left, rgba(214, 196, 172, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(39, 51, 52, 0.98) 0%, rgba(28, 38, 39, 0.98) 100%);
}

.experiences-page .testimonial-entry.is-open {
  border-color: rgba(170, 187, 178, 0.22);
  box-shadow: var(--exp-card-shadow);
  background:
    radial-gradient(circle at top left, rgba(170, 187, 178, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(42, 55, 62, 0.98) 0%, rgba(30, 41, 48, 0.98) 100%);
}

.experiences-page .testimonial-entry blockquote {
  border-top-color: rgba(221, 230, 226, 0.1);
  color: rgba(241, 245, 243, 0.88);
}

.experiences-page .cta-panel {
  background:
    radial-gradient(circle at top left, rgba(123, 143, 139, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(27, 38, 45, 0.96) 0%, rgba(20, 29, 35, 0.98) 100%);
}

.experiences-page .site-footer {
  background:
    radial-gradient(circle at top left, rgba(123, 143, 139, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(13, 20, 26, 0.98) 0%, rgba(16, 24, 30, 1) 100%);
}

@media (max-width: 1100px) {
  .about-page .about-stage-grid,
  .about-page .about-fit-grid,
  .experiences-page .experiences-stage-grid,
  .experiences-page .experiences-review-rail {
    grid-template-columns: 1fr;
  }

  .about-page .about-stage-portrait .about-portrait-image {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .about-page .about-stage-grid,
  .experiences-page .experiences-stage-grid {
    padding: 1.5rem;
  }

  .about-page .about-stage-portrait,
  .about-page .about-stage-summary,
  .experiences-page .experiences-editorial-card {
    border-radius: 24px;
  }

  .about-page .about-stage-portrait .about-portrait-image {
    min-height: 420px;
  }

  .experiences-page .experiences-review-rail {
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
  }

  .experiences-page .experiences-trust-ribbon {
    width: calc(100% - 1rem);
  }
}


/* Homepage-integrated experiences section */
.homepage-experiences {
  --exp-text: #e8efeb;
  --exp-text-strong: #f5f8f6;
  --exp-text-soft: rgba(232, 239, 235, 0.78);
  --exp-text-muted: rgba(221, 230, 226, 0.7);
  --exp-accent: #aabbb2;
  --exp-accent-soft: rgba(170, 187, 178, 0.16);
  --exp-accent-border: rgba(170, 187, 178, 0.26);
  --exp-border: rgba(221, 230, 226, 0.1);
  --exp-border-strong: rgba(221, 230, 226, 0.14);
  --exp-shadow: 0 26px 80px rgba(6, 12, 18, 0.24);
  --exp-card-shadow: 0 20px 44px rgba(8, 14, 20, 0.22);
  color: var(--exp-text);
  padding: 1.7rem 0 1.45rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(123, 143, 139, 0.14), transparent 30%),
    radial-gradient(circle at 96% 6%, rgba(214, 196, 172, 0.08), transparent 24%),
    linear-gradient(180deg, #152127 0%, #1b2730 38%, #22303a 100%);
}

.homepage-experiences-shell {
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
}

.homepage-experiences .hero-stage {
  background:
    radial-gradient(circle at 16% 0%, rgba(123, 143, 139, 0.18), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(214, 196, 172, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(31, 43, 51, 0.98) 0%, rgba(21, 30, 37, 0.98) 100%);
  border-color: rgba(221, 230, 226, 0.08);
  box-shadow: 0 34px 90px rgba(6, 12, 18, 0.26);
}

.homepage-experiences .hero-stage::before {
  width: 420px;
  height: 420px;
  right: -110px;
  top: -110px;
  background: radial-gradient(circle, rgba(92, 111, 119, 0.24), transparent 64%);
}

.homepage-experiences .hero-stage::after {
  width: 360px;
  height: 360px;
  left: -90px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(101, 120, 111, 0.28), transparent 68%);
}

.homepage-experiences .homepage-experiences-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  align-items: stretch;
  padding: clamp(1.9rem, 3.2vw, 2.55rem);
}

.homepage-experiences .homepage-experiences-copy,
.homepage-experiences .experiences-stage-aside {
  align-self: center;
}

.homepage-experiences .homepage-experiences-copy h2 {
  max-width: 12ch;
}

.homepage-experiences .homepage-experiences-copy .hero-text {
  max-width: 41rem;
}

.homepage-experiences .eyebrow,
.homepage-experiences .card-kicker,
.homepage-experiences .testimonial-tag {
  color: rgba(161, 177, 170, 0.82);
}

.homepage-experiences .eyebrow {
  font-size: 1rem !important;
  line-height: 1.05;
}

.homepage-experiences h2,
.homepage-experiences h3,
.homepage-experiences .testimonial-meta strong {
  color: var(--exp-text-strong);
}

.homepage-experiences .hero-text,
.homepage-experiences .split-head p,
.homepage-experiences .review-rail-copy p,
.homepage-experiences .manifesto-copy p,
.homepage-experiences .testimonial-meta span {
  color: var(--exp-text-muted);
}

.homepage-experiences .experiences-stage-aside {
  display: grid;
  gap: 0.7rem;
}

.homepage-experiences .experiences-editorial-card {
  padding: 0.95rem 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(221, 230, 226, 0.1);
  background: linear-gradient(180deg, rgba(233, 239, 236, 0.08) 0%, rgba(233, 239, 236, 0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.homepage-experiences .experiences-editorial-card.soft {
  background: linear-gradient(180deg, rgba(233, 239, 236, 0.06) 0%, rgba(214, 196, 172, 0.04) 100%);
}

.homepage-experiences .experiences-editorial-card p {
  margin: 0;
  color: var(--exp-text);
  font-size: 0.97rem;
  line-height: 1.42;
}

.homepage-experiences .button {
  background: linear-gradient(135deg, rgba(68, 83, 91, 0.34) 0%, rgba(41, 53, 60, 0.22) 100%);
  color: var(--exp-text-strong);
  border-color: var(--exp-border-strong);
  box-shadow: 0 14px 34px rgba(4, 10, 14, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.homepage-experiences .button-review {
  background: linear-gradient(135deg, rgba(87, 106, 100, 0.4) 0%, rgba(58, 75, 70, 0.24) 100%);
  color: var(--exp-text-strong);
  border-color: rgba(143, 159, 151, 0.28);
  box-shadow: 0 14px 34px rgba(14, 28, 28, 0.24);
}

.homepage-experiences .button-review:hover {
  box-shadow: 0 18px 38px rgba(14, 28, 28, 0.28);
}

.homepage-experiences .button-ghost,
.homepage-experiences .button-ghost.dark {
  color: var(--exp-text);
  border-color: var(--exp-border-strong);
  background: linear-gradient(135deg, rgba(213, 223, 221, 0.07) 0%, rgba(213, 223, 221, 0.03) 100%);
  box-shadow: 0 12px 28px rgba(4, 10, 14, 0.16);
}

.homepage-experiences .experiences-review-rail {
  margin: 0 clamp(1.9rem, 3.2vw, 2.55rem) clamp(0.85rem, 2vw, 1.1rem);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 24px;
  border: 1px solid var(--exp-border-strong);
  background: linear-gradient(180deg, rgba(38, 50, 58, 0.94) 0%, rgba(25, 35, 42, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.homepage-experiences .review-rail-copy {
  display: grid;
  gap: 0.5rem;
}

.homepage-experiences .review-rail-copy p {
  margin: 0;
  max-width: 36rem;
}

.homepage-experiences .review-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.homepage-experiences .homepage-experiences-stage-simple {
  display: grid;
  gap: 0.7rem;
  padding: 0 0 clamp(0.72rem, 1.5vw, 0.95rem);
  border-bottom: 1px solid rgba(246, 240, 232, 0.12);
}

.homepage-experiences .homepage-experiences-simple-head {
  display: grid;
  gap: 0.6rem;
  max-width: 34rem;
}

.homepage-experiences .homepage-experiences-simple-head h2 {
  max-width: 10ch;
}

.homepage-experiences .homepage-experiences-actions {
  align-items: center;
}

.homepage-experiences .experiences-trust-ribbon {
  width: min(100% - 2rem, 1040px);
  margin-top: 0;
  background: rgba(233, 239, 236, 0.06);
  border: 1px solid rgba(221, 230, 226, 0.1);
  box-shadow: 0 18px 50px rgba(6, 12, 18, 0.18);
}

.homepage-experiences .experiences-trust-ribbon span {
  color: rgba(232, 239, 235, 0.78);
}

.homepage-experiences .experiences-trust-ribbon span + span::before {
  background: rgba(170, 187, 178, 0.32);
}

.homepage-experiences .homepage-experiences-intro {
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
}

.homepage-experiences .experiences-manifesto-copy {
  padding: 1.7rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(233, 239, 236, 0.08), rgba(233, 239, 236, 0.04));
  border: 1px solid var(--exp-border-strong);
  box-shadow: 0 18px 48px rgba(8, 14, 20, 0.14);
}

.homepage-experiences .manifesto-intro .about-label {
  color: rgba(232, 239, 235, 0.58);
}

.homepage-experiences .experiences-support-grid {
  margin-top: 0;
}

.homepage-experiences .experiences-support-grid .experience-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(32, 44, 52, 0.84), rgba(23, 34, 41, 0.92));
  border-color: rgba(221, 230, 226, 0.09);
}

.homepage-experiences .experiences-support-grid .experience-card.accent {
  background: linear-gradient(135deg, rgba(76, 95, 90, 0.62), rgba(214, 196, 172, 0.18));
}

.homepage-experiences .experience-card span {
  color: rgba(232, 239, 235, 0.62);
}

.homepage-experiences .experience-card p {
  color: var(--exp-text-soft);
}

.homepage-experiences .homepage-experiences-head {
  margin-top: clamp(1rem, 2vw, 1.75rem);
  gap: 0.9rem;
}

.homepage-experiences .experiences-testimonial-grid {
  margin-top: 0;
  align-items: start;
  grid-auto-flow: dense;
}

.homepage-experiences .testimonial-card {
  min-height: 100%;
  padding: 1.3rem;
  border-radius: 28px;
  border-color: var(--exp-border);
  box-shadow: 0 22px 54px rgba(8, 14, 20, 0.18);
  background: linear-gradient(180deg, rgba(26, 35, 43, 0.96) 0%, rgba(17, 24, 31, 0.98) 100%);
}

.homepage-experiences .testimonial-card.premium {
  background:
    radial-gradient(circle at top left, rgba(92, 111, 119, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(30, 40, 48, 0.98) 0%, rgba(19, 27, 34, 0.98) 100%);
}

.homepage-experiences .testimonial-card.soft-light {
  background:
    radial-gradient(circle at top left, rgba(101, 120, 111, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(35, 46, 47, 0.98) 0%, rgba(22, 31, 32, 0.98) 100%);
}

.homepage-experiences .testimonial-entry {
  display: grid;
  align-content: start;
  gap: 0.15rem;
  transition:
    border-color 360ms ease,
    box-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms ease;
}

.homepage-experiences .testimonial-entry.is-featured-card {
  grid-column: 1 / -1;
}

.homepage-experiences .testimonial-entry:hover {
  border-color: rgba(143, 159, 151, 0.16);
  transform: translateY(-1px);
}

.homepage-experiences .testimonial-entry.is-open {
  border-color: rgba(143, 159, 151, 0.2);
  box-shadow: var(--exp-card-shadow);
  transform: translateY(-1px);
  background:
    radial-gradient(circle at top left, rgba(117, 136, 126, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(37, 47, 53, 0.98) 0%, rgba(24, 32, 37, 0.98) 100%);
}

.homepage-experiences .testimonial-toggle {
  width: 100%;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  display: grid;
  gap: 0.7rem;
  cursor: pointer;
}

.homepage-experiences .testimonial-toggle:focus-visible {
  outline: 2px solid rgba(143, 159, 151, 0.42);
  outline-offset: 0.35rem;
  border-radius: 24px;
}

.homepage-experiences .testimonial-card-topline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
}

.homepage-experiences .testimonial-preview {
  margin: 0;
  max-width: 34ch;
  color: var(--exp-text-soft);
  font-size: 0.93rem;
  line-height: 1.6;
}

.homepage-experiences .testimonial-card-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.homepage-experiences .testimonial-card-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.homepage-experiences .testimonial-entry.is-open .testimonial-card-panel {
  grid-template-rows: 1fr;
}

.homepage-experiences .testimonial-entry blockquote {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(213, 223, 221, 0.07);
  color: rgba(231, 237, 234, 0.84);
  font-family: inherit;
  font-weight: 400;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.homepage-experiences .testimonial-card blockquote {
  font-size: clamp(1.06rem, 1.2vw, 1.24rem);
  line-height: 1.58;
}

.homepage-experiences .testimonial-entry.is-featured-card blockquote {
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  line-height: 1.54;
}

.homepage-experiences .testimonial-quote-inner {
  max-width: 58ch;
  opacity: 0;
  transform: translateY(0.8rem);
  transition:
    opacity 360ms ease 170ms,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 170ms;
}

.homepage-experiences .testimonial-entry.is-featured-card .testimonial-quote-inner {
  max-width: 70ch;
}

.homepage-experiences .testimonial-entry.is-open .testimonial-quote-inner {
  opacity: 1;
  transform: translateY(0);
}

.homepage-experiences .testimonial-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: rgba(229, 236, 232, 0.72);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  transition: color 320ms ease, transform 320ms ease;
}

.homepage-experiences .testimonial-entry.is-open .testimonial-card-action {
  color: rgba(241, 245, 243, 0.92);
  transform: rotate(180deg);
}

.homepage-experiences .testimonial-entry {
  overflow: hidden;
}

.homepage-experiences .testimonial-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name arrow"
    "detail detail";
  align-items: center;
  column-gap: 0.8rem;
  row-gap: 0.2rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.homepage-experiences .testimonial-meta strong {
  grid-area: name;
}

.homepage-experiences .testimonial-meta .testimonial-card-action {
  grid-area: arrow;
}

.homepage-experiences .testimonial-meta span:not(.testimonial-card-action) {
  grid-area: detail;
}

@media (prefers-reduced-motion: reduce) {
  .homepage-experiences .testimonial-entry,
  .homepage-experiences .testimonial-card-panel,
  .homepage-experiences .testimonial-quote-inner,
  .homepage-experiences .testimonial-card-action {
    transition: none;
  }

  .homepage-experiences .testimonial-entry:hover,
  .homepage-experiences .testimonial-entry.is-open,
  .homepage-experiences .testimonial-entry.is-open .testimonial-card-action,
  .homepage-experiences .testimonial-entry.is-open .testimonial-quote-inner {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .homepage-experiences .homepage-experiences-grid,
  .homepage-experiences .experiences-review-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .homepage-experiences {
    padding: 1.8rem 0 1.5rem;
  }

  .homepage-experiences .homepage-experiences-grid {
    padding: 1.5rem;
  }

  .homepage-experiences .experiences-editorial-card,
  .homepage-experiences .testimonial-card {
    border-radius: 24px;
  }

  .homepage-experiences .experiences-review-rail {
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
  }

  .homepage-experiences .experiences-trust-ribbon {
    width: calc(100% - 1rem);
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .hero-actions-direct .hero-secondary-action {
    background: rgba(255, 255, 255, 0.16);
  }

  .hero-copy-card {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.76) 0%, rgba(255, 249, 242, 0.7) 100%);
  }
}

@media (max-width: 1100px) {
  .hero-stage-overlay {
    min-height: clamp(560px, 82vw, 760px);
  }

  .hero-grid-overlay {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: end;
  }

  .hero-copy-overlay,
  .hero-aside-direct {
    max-width: min(100%, 38rem);
  }

  .hero-aside-direct {
    justify-self: start;
    width: 100%;
    padding-bottom: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 1.2rem;
  }

  .hero-stage,
  .hero-stage-overlay {
    border-radius: 30px;
  }

  .hero-stage-overlay {
    min-height: clamp(540px, 145vw, 720px);
    background-position: 38% top;
  }

  .hero-grid-overlay {
    padding: 1.25rem;
  }

  .hero-copy-overlay h1 {
    max-width: 7ch;
    font-size: clamp(2.8rem, 15vw, 4.35rem);
  }

  .hero-copy-overlay .hero-text {
    max-width: 32rem;
  }

  .hero-aside-direct {
    max-width: none;
  }

  .hero-summary-direct {
    width: 100%;
  }

  .hero-actions-direct {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions-direct .button {
    width: 100%;
  }
}


/* April 2026 palette reset — homepage hero + site-wide tone */
:root {
  --bg: #f8f4ee;
  --bg-2: #ece8e1;
  --paper: rgba(255, 252, 247, 0.76);
  --paper-strong: #fffdfa;
  --paper-deep: #e8e2d8;
  --ink: #20353d;
  --muted: #5d6d73;
  --line: rgba(32, 53, 61, 0.10);
  --teal: #3a6771;
  --teal-2: #5e9797;
  --navy: #213c46;
  --sand: #edd9b9;
  --shadow: 0 24px 72px rgba(25, 42, 49, 0.10);
  --shadow-strong: 0 36px 110px rgba(21, 36, 42, 0.16);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(144, 193, 188, 0.18), transparent 31%),
    radial-gradient(circle at 100% 5%, rgba(248, 237, 216, 0.58), transparent 25%),
    linear-gradient(180deg, #fdfaf5 0%, #f9f5ef 42%, #f3ede5 100%);
}

body::selection {
  background: rgba(74, 122, 128, 0.16);
}

.scroll-progress {
  background: rgba(255, 255, 255, 0.34);
}

.scroll-progress-bar {
  background: linear-gradient(90deg, #42727c 0%, #91c1ba 56%, #f1ddc1 100%);
  box-shadow: 0 0 18px rgba(66, 114, 124, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.86), rgba(250, 247, 242, 0.74));
  border-bottom: 1px solid rgba(32, 53, 61, 0.08);
}

.homepage .site-header {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.26);
}

.homepage .site-header::before,
.homepage .site-header::after {
  content: "";
  position: absolute;
  inset: 0;
}

.homepage .site-header::before {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(248, 243, 236, 0.12), rgba(248, 243, 236, 0.32)),
    image-set(url("assets/hero-palette-reset-reference.webp") type("image/webp"));
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.homepage .site-header::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(33, 56, 63, 0.04), rgba(248, 243, 236, 0.18));
}

.brand-mark {
  color: #fbf7f1;
  background: linear-gradient(135deg, #35606a 0%, #79aaa7 100%);
  box-shadow: 0 18px 38px rgba(37, 65, 73, 0.16);
}

.brand-text strong {
  color: var(--ink);
  letter-spacing: 0.04em;
}

.brand-text small {
  color: rgba(43, 73, 82, 0.68);
}

.homepage .brand-text strong {
  color: #faf6ef;
  text-shadow: 0 8px 18px rgba(33, 53, 61, 0.16);
}

.homepage .brand-text small {
  color: rgba(248, 245, 240, 0.82);
  text-shadow: 0 8px 18px rgba(33, 53, 61, 0.14);
}

.site-nav a {
  color: rgba(32, 53, 61, 0.82);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(35, 54, 61, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-dot {
  background: rgba(74, 122, 128, 0.26);
}

.site-nav a:hover .nav-dot,
.site-nav a[aria-current="page"] .nav-dot {
  background: rgba(74, 122, 128, 0.62);
  box-shadow: 0 0 0 4px rgba(74, 122, 128, 0.08);
}

.site-nav a.is-active .nav-dot {
  background: #7eb3af;
  box-shadow: 0 0 0 5px rgba(126, 179, 175, 0.14);
}

.homepage .site-nav a {
  color: #f8f4ee;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(30, 49, 58, 0.12);
}

.homepage .site-nav a:hover,
.homepage .site-nav a[aria-current="page"],
.homepage .site-nav a.is-active {
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.homepage .site-nav a:hover .nav-dot,
.homepage .site-nav a[aria-current="page"] .nav-dot {
  background: rgba(255, 247, 232, 0.92);
  box-shadow: 0 0 0 4px rgba(255, 247, 232, 0.14);
}

.homepage .site-nav a.is-active .nav-dot {
  background: #fff8ea;
  box-shadow: 0 0 0 5px rgba(255, 248, 234, 0.18);
}

.button {
  background: linear-gradient(135deg, #355f69 0%, #4b7e89 54%, #6fa8a5 100%);
  border-color: rgba(39, 67, 75, 0.08);
  box-shadow: 0 16px 36px rgba(53, 95, 105, 0.18);
}

.button:hover {
  box-shadow: 0 22px 44px rgba(53, 95, 105, 0.22);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  border-color: rgba(53, 95, 105, 0.14);
  box-shadow: 0 12px 28px rgba(35, 54, 61, 0.08);
}

.hero-secondary-action {
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  border-color: rgba(42, 72, 80, 0.12);
  box-shadow: 0 14px 30px rgba(35, 54, 61, 0.08);
}

.hero-secondary-action:hover {
  box-shadow: 0 18px 36px rgba(35, 54, 61, 0.12);
}

.hero {
  padding-top: 0.35rem;
}

.homepage .hero .container {
  width: min(calc(100% - 1rem), 1380px);
}

.hero-stage {
  position: relative;
  border-radius: 0 0 44px 44px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 23, 31, 0.18) 0%, rgba(10, 23, 31, 0.06) 24%, rgba(248, 244, 238, 0.04) 60%, rgba(248, 244, 238, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 30px 82px rgba(20, 32, 38, 0.14);
}

.hero-stage-overlay {
  min-height: clamp(680px, 76vw, 860px);
  background:
    linear-gradient(180deg, rgba(5, 13, 19, 0.22) 0%, rgba(5, 13, 19, 0.08) 20%, rgba(5, 13, 19, 0.03) 42%, rgba(247, 242, 235, 0.06) 64%, rgba(247, 242, 235, 0.16) 100%),
    linear-gradient(90deg, rgba(8, 18, 26, 0.34) 0%, rgba(8, 18, 26, 0.14) 20%, rgba(8, 18, 26, 0.05) 40%, rgba(8, 18, 26, 0) 64%),
    url("assets/hero-palette-reset-reference.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border: 0;
}

.hero-stage-overlay::before {
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 244, 216, 0.44), transparent 20%),
    radial-gradient(circle at 24% 22%, rgba(154, 205, 200, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0) 100%);
}

.hero-stage-overlay::after {
  background:
    linear-gradient(90deg, rgba(247, 245, 240, 0.20) 0%, rgba(247, 245, 240, 0.08) 20%, rgba(247, 245, 240, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 52%, rgba(248, 244, 238, 0.18) 78%, rgba(248, 244, 238, 0.34) 100%);
}

.hero-grid-overlay.hero-grid-reset {
  grid-template-columns: 1fr;
  gap: 0;
  min-height: inherit;
  align-items: center;
  padding: clamp(3rem, 5.8vw, 4.8rem) clamp(1.8rem, 3.8vw, 3.3rem) clamp(3rem, 5.4vw, 4.4rem);
}

.hero-copy-overlay.hero-copy-reset {
  position: relative;
  width: 100%;
  max-width: min(100%, 56rem);
  padding: 0;
}

.hero-copy-reset::before {
  display: none;
}

.hero-copy-card {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: start;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 48rem);
  min-height: clamp(500px, 41vw, 610px);
  padding: clamp(2.2rem, 4vw, 2.9rem) clamp(2.75rem, 5vw, 4.4rem) clamp(2.2rem, 3.9vw, 2.85rem) clamp(1.95rem, 3.8vw, 2.55rem);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(252, 252, 251, 0.26) 0%, rgba(249, 246, 240, 0.16) 22%, rgba(247, 241, 233, 0.2) 100%),
    linear-gradient(135deg, rgba(173, 213, 220, 0.08) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(236, 219, 193, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 22px 64px rgba(17, 29, 34, 0.12),
    0 10px 26px rgba(232, 219, 198, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -12px 34px rgba(255, 247, 235, 0.05);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.hero-copy-card::before,
.hero-copy-card::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.hero-copy-card::before {
  inset: 1px;
  border-radius: calc(38px - 1px);
  background:
    radial-gradient(circle at 16% 10%, rgba(165, 212, 219, 0.07), transparent 24%),
    radial-gradient(circle at 74% 22%, rgba(255, 245, 223, 0.1), transparent 24%),
    radial-gradient(circle at 80% 88%, rgba(232, 219, 198, 0.06), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 34%, rgba(255, 255, 255, 0.02) 62%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0) 100%);
}

.hero-copy-card::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 250, 249, 0.36) 0%, rgba(249, 250, 249, 0.2) 26%, rgba(249, 250, 249, 0.08) 50%, rgba(249, 250, 249, 0.02) 72%, rgba(249, 250, 249, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(255, 255, 255, 0) 100%);
}

.hero-copy-card > * {
  position: relative;
  z-index: 1;
}

.hero-copy-overlay .hero-kicker,
.hero-copy-overlay .eyebrow.hero-kicker {
  display: inline-flex;
  width: max-content;
  margin-bottom: 0.95rem;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: rgba(33, 78, 86, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 252, 246, 0.98);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-shadow: 0 8px 20px rgba(44, 74, 82, 0.18);
  box-shadow: 0 10px 24px rgba(27, 54, 61, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-copy-overlay h1 {
  max-width: 7.55ch;
  color: #0d313c;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(3.78rem, 6.1vw, 5.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.072em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-copy-overlay .hero-text {
  max-width: 33rem;
  margin-top: 1.18rem;
  color: rgba(18, 38, 44, 0.94);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.54;
  text-shadow: none;
}

.hero-meta-line {
  margin: 0.95rem 0 0;
  color: rgba(27, 52, 59, 0.84);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions-reset {
  margin-top: 1.35rem;
  gap: 0.8rem;
}

.hero-actions-direct .button {
  min-height: 52px;
  padding-inline: 1.4rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1rem;
}

.hero-actions-direct .button:not(.button-ghost) {
  box-shadow: 0 18px 40px rgba(36, 81, 90, 0.22);
}

.hero-actions-direct .button:not(.button-ghost):hover {
  box-shadow: 0 22px 48px rgba(36, 81, 90, 0.28);
}

.hero-actions-direct .hero-secondary-action {
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  border-color: rgba(34, 63, 70, 0.10);
  box-shadow: 0 14px 30px rgba(35, 54, 61, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-actions-direct .hero-secondary-action:hover {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(35, 54, 61, 0.10);
}

.quiet-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(218, 235, 231, 0.18) 52%, rgba(255, 255, 255, 0) 100%);
}

.about-hero-copy {
  background:
    radial-gradient(circle at top left, rgba(152, 198, 193, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(241, 236, 229, 0.88) 100%);
  border-color: rgba(255, 255, 255, 0.84);
}

.about-portrait-frame {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 238, 235, 0.88) 60%, rgba(239, 232, 220, 0.9));
}

.homepage-approach-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(239, 247, 245, 0.92) 58%, rgba(247, 241, 232, 0.96) 100%);
  border-color: rgba(41, 71, 79, 0.08);
}

.homepage-approach-step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(151, 194, 190, 0.06));
}

.homepage-approach-step p {
  color: #20353d;
}

.homepage-approach-step-number {
  color: #a7b7b9;
}

.homepage-approach-step-text {
  color: rgba(32, 53, 61, 0.9);
}

.mosaic-card,
.location-card,
.testimonial-card,
.glass-panel,
.content-panel,
.service-detail,
.contact-card,
.about-portrait-card {
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 58px rgba(29, 44, 52, 0.08);
}

.mosaic-feature {
  background: linear-gradient(180deg, rgba(167, 205, 200, 0.12), rgba(255, 255, 255, 0.92));
}

.prp-highlight {
  background: linear-gradient(180deg, rgba(240, 224, 194, 0.26), rgba(255, 255, 255, 0.92));
}

.supportive-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(230, 239, 235, 0.94) 58%, rgba(241, 232, 219, 0.96) 100%);
}

.scar-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 242, 0.95) 58%, rgba(244, 235, 224, 0.96));
}

.muted {
  background: linear-gradient(180deg, rgba(236, 242, 239, 0.88), rgba(232, 225, 214, 0.84));
}

.mosaic-feature.dark,
.dark-card,
.dark-service,
.cta-panel,
.approach-immersive-stage,
.about-page .about-stage-summary {
  background: linear-gradient(145deg, #284750 0%, #1b3138 55%, #17292f 100%);
}

.dark-band,
.homepage-experiences,
body.experiences-page {
  background:
    radial-gradient(circle at 16% 0%, rgba(123, 168, 161, 0.18), transparent 28%),
    radial-gradient(circle at 100% 6%, rgba(245, 227, 191, 0.08), transparent 22%),
    linear-gradient(180deg, #20363f 0%, #182a32 45%, #1f3037 100%);
}

.location-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(243, 239, 232, 0.92));
}

.location-card.location-card-clickable,
.location-card.location-card-clickable * {
  cursor: pointer !important;
}

.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(235, 244, 240, 0.22));
}

.about-page {
  background:
    radial-gradient(circle at 16% 0%, rgba(152, 198, 193, 0.16), transparent 30%),
    radial-gradient(circle at 100% 8%, rgba(245, 227, 191, 0.16), transparent 22%),
    linear-gradient(180deg, #faf6ef 0%, #f4efe7 42%, #ece6dd 100%);
}

.about-page .site-header {
  background: rgba(250, 247, 242, 0.82);
}

.experiences-page .site-header {
  background: rgba(23, 35, 41, 0.76);
  border-bottom: 1px solid rgba(233, 240, 238, 0.08);
}

.homepage-experiences .button {
  background: linear-gradient(135deg, rgba(87, 130, 133, 0.5), rgba(43, 63, 72, 0.34));
  border-color: rgba(223, 231, 229, 0.18);
}

.homepage-experiences .button-review,
.experiences-page .button-review {
  background: linear-gradient(135deg, rgba(123, 168, 161, 0.46), rgba(63, 91, 88, 0.3));
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(154, 196, 191, 0.12), transparent 26%),
    radial-gradient(circle at 92% 0%, rgba(245, 227, 191, 0.08), transparent 24%),
    linear-gradient(180deg, #1d3139 0%, #16262d 100%);
}

@media (max-width: 1100px) {
  .hero-stage-overlay {
    min-height: clamp(620px, 88vw, 780px);
  }

  .hero-grid-overlay.hero-grid-reset {
    padding: clamp(2.4rem, 5vw, 3rem) clamp(1.15rem, 3.4vw, 2rem) clamp(2.5rem, 4.8vw, 3.2rem);
  }

  .hero-copy-overlay.hero-copy-reset {
    max-width: min(100%, 48rem);
  }

  .hero-copy-card {
    width: min(100%, 46rem);
    min-height: clamp(430px, 50vw, 520px);
    padding: clamp(1.75rem, 3.4vw, 2.2rem) clamp(2rem, 4.4vw, 3rem) clamp(1.8rem, 3.2vw, 2.2rem) clamp(1.45rem, 2.8vw, 1.85rem);
  }
}

@media (max-width: 760px) {
  .homepage .site-header::before {
    background-position: 56% top;
  }

  .hero {
    padding-top: 0.2rem;
  }

  .homepage .hero .container {
    width: calc(100% - 0.75rem);
  }

  .hero-stage,
  .hero-stage-overlay {
    border-radius: 0 0 30px 30px;
  }

  .hero-stage-overlay {
    min-height: clamp(560px, 165vw, 760px);
    background-position: 58% top;
  }

  .hero-grid-overlay.hero-grid-reset {
    align-items: end;
    padding: clamp(11.75rem, 44vw, 14.5rem) 0.95rem 1.1rem;
  }

  .hero-copy-overlay.hero-copy-reset {
    max-width: 100%;
  }

  .hero-copy-card {
    width: 100%;
    min-height: auto;
    padding: 1.2rem 1.02rem 1.18rem;
    border-radius: 24px;
  }

  .hero-copy-card::before {
    border-radius: calc(24px - 1px);
  }

  .hero-copy-overlay .hero-kicker,
  .hero-copy-overlay .eyebrow.hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 0.5rem 0.72rem;
  }

  .hero-copy-overlay h1 {
    max-width: 7.1ch;
    font-size: clamp(3.05rem, 13vw, 4.6rem);
    line-height: 0.9;
  }

  .hero-copy-overlay .hero-text {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .homepage-faq-group {
    padding: 0;
  }

  .homepage-faq-group-head {
    gap: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .homepage-faq-group h3 {
    font-size: 1.45rem;
  }

  .homepage-faq-items summary {
    font-size: 0.97rem;
    padding-right: 1.75rem;
  }

  .homepage-faq-items p {
    padding-right: 0;
    font-size: 0.95rem;
  }

  .homepage-faq-entry {
    border-radius: 0;
  }

  .homepage-faq-toggle {
    gap: 0.68rem;
    padding: 0.8rem 0;
  }

  .homepage-faq-question {
    font-size: 0.95rem;
    line-height: 1.34;
  }

  .homepage-faq-answer {
    margin: 0;
    padding: 0 1.55rem 0.85rem 0;
  }

  .homepage-faq-answer p {
    font-size: 0.95rem;
  }

  .homepage-faq-disclaimer {
    padding: 0.95rem 1rem;
    border-radius: 18px;
  }

  .hero-meta-line {
    max-width: 26rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .hero-actions-reset {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions-reset .button {
    width: 100%;
  }
}

/* April 2026 exact-reference header/hero match pass */
.homepage {
  background:
    linear-gradient(180deg, #efede7 0%, #e8e7e1 10%, #ece9e3 24%, #f6f1ea 48%, #f4efe8 100%);
}

/* April 2026 white light-section surface pass */
.homepage .about-hero-section,
.homepage .quiet-section,
.homepage .treatments-reference-section,
.homepage .mosaic-section,
.homepage .location-section,
.homepage .faq-section,
.about-page .about-manifesto,
.about-page .about-system-section,
.about-page .about-fit-section,
body:not(.homepage):not(.about-page):not(.experiences-page) .section:not(.interior-hero):not(.dark-band):not(.final-cta) {
  background: #fff;
}

.homepage .noise {
  opacity: 0.045;
}

.homepage .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px) saturate(112%);
  -webkit-backdrop-filter: blur(10px) saturate(112%);
  background: rgba(243, 239, 233, 0.94);
  border-bottom: 1px solid rgba(35, 49, 55, 0.05);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.homepage .site-header::before,
.homepage .site-header::after {
  display: none;
}

.homepage .nav-row {
  grid-template-columns: auto 1fr;
  gap: 2rem;
  min-height: 82px;
}

.homepage .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  font-size: 1.08rem;
  background: linear-gradient(180deg, #173843 0%, #2d6d68 100%);
  box-shadow: 0 14px 30px rgba(27, 51, 58, 0.14);
}

.homepage .brand-text strong {
  color: #222d31;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-shadow: none;
}

.homepage .brand-text small {
  color: rgba(75, 79, 79, 0.86);
  font-size: 0.74rem;
  text-shadow: none;
}

.homepage .site-nav {
  justify-content: center;
  gap: 0.22rem;
  flex-wrap: nowrap;
}

.homepage .site-nav a {
  gap: 0.42rem;
  padding: 0.7rem 0.82rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(34, 37, 38, 0.92);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.99rem;
  font-weight: 700;
}

.homepage .site-nav a:hover {
  background: transparent;
  color: #1f2a2f;
}

.homepage .site-nav a.is-active,
.homepage .site-nav a[aria-current="page"] {
  background: rgba(255, 252, 246, 0.94);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(40, 49, 54, 0.08);
}

.homepage .nav-dot {
  width: 5px;
  height: 5px;
  background: rgba(178, 177, 173, 0.9);
  transform: scale(1);
  box-shadow: none;
}

.homepage .site-nav a:hover .nav-dot,
.homepage .site-nav a[aria-current="page"] .nav-dot,
.homepage .site-nav a.is-active .nav-dot {
  background: #7ea39f;
  box-shadow: 0 0 0 5px rgba(126, 163, 159, 0.12);
  transform: scale(1);
}

.homepage .hero {
  padding-top: 1rem;
}

.homepage .hero .container {
  width: min(calc(100% - 1rem), 1348px);
}

.homepage .hero-stage {
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(226, 229, 228, 0.7), rgba(241, 237, 231, 0.88));
  box-shadow: 0 24px 74px rgba(27, 37, 41, 0.13);
}

.homepage .hero-stage-overlay {
  min-height: 840px;
  background:
    linear-gradient(180deg, rgba(9, 18, 25, 0.2) 0%, rgba(9, 18, 25, 0.08) 18%, rgba(9, 18, 25, 0.03) 36%, rgba(246, 241, 233, 0.05) 58%, rgba(246, 241, 233, 0.16) 100%),
    linear-gradient(90deg, rgba(18, 49, 63, 0.52) 0%, rgba(18, 49, 63, 0.34) 23%, rgba(18, 49, 63, 0.12) 44%, rgba(18, 49, 63, 0) 62%),
    image-set(url("assets/hero-overlay-reference.webp") type("image/webp"), url("assets/hero-overlay-reference.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: 54% 20%;
  background-repeat: no-repeat;
}

.homepage .hero-stage-overlay::before {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 236, 198, 0.58), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.03) 100%);
}

.homepage .hero-stage-overlay::after {
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0) 0%, rgba(248, 245, 239, 0.06) 36%, rgba(248, 245, 239, 0.22) 58%, rgba(248, 245, 239, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(248, 244, 238, 0.16) 82%, rgba(248, 244, 238, 0.26) 100%);
}

.homepage .hero-grid-overlay.hero-grid-reset {
  align-items: start;
  padding: 70px 44px;
}

.homepage .hero-copy-overlay.hero-copy-reset {
  max-width: 100%;
}

.homepage .hero-copy-card {
  width: min(100%, 738px);
  min-height: 698px;
  padding: 42px 34px 40px 36px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(180deg, rgba(249, 249, 247, 0.68) 0%, rgba(248, 245, 240, 0.58) 28%, rgba(249, 244, 238, 0.68) 52%, rgba(247, 241, 233, 0.88) 100%);
  box-shadow:
    0 24px 64px rgba(31, 36, 39, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(34px) saturate(144%);
  -webkit-backdrop-filter: blur(34px) saturate(144%);
}

.homepage .hero-copy-card::before,
.homepage .hero-copy-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.homepage .hero-copy-card::before {
  inset: -9%;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(253, 253, 251, 0.04) 0%, rgba(253, 253, 251, 0.04) 100%),
    image-set(url("assets/hero-overlay-reference.webp") type("image/webp"), url("assets/hero-overlay-reference.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: 54% 24%;
  filter: blur(34px) saturate(0.5) brightness(1.12);
  opacity: 0.38;
  transform: scale(1.06);
}

.homepage .hero-copy-card::after {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(216, 238, 240, 0.5) 0%, rgba(216, 238, 240, 0.22) 24%, rgba(255, 248, 238, 0.08) 56%, rgba(255, 248, 238, 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 28%, rgba(255, 249, 241, 0.12) 68%, rgba(255, 248, 240, 0.22) 100%);
}

.homepage .hero-copy-card > * {
  position: relative;
  z-index: 1;
}

.homepage .hero-copy-overlay .hero-kicker,
.homepage .hero-copy-overlay .eyebrow.hero-kicker {
  margin-bottom: 1.12rem;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #476f78;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-shadow: none;
}

.homepage .hero-copy-overlay h1 {
  max-width: 8.05ch;
  color: #123845;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(3.9rem, 5.95vw, 5.55rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.078em;
  text-shadow: none;
}

.homepage .hero-copy-overlay .hero-text {
  max-width: 31rem;
  margin-top: 1.45rem;
  color: rgba(28, 51, 58, 0.9);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.08rem;
  line-height: 1.52;
}

.homepage .hero-meta-line {
  display: none;
}

.homepage .hero-actions-reset {
  margin-top: 1.95rem;
  gap: 0.85rem;
}

.homepage .hero-actions-direct .button {
  min-height: 54px;
  padding-inline: 1.45rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.homepage .hero-actions-direct .button:not(.button-ghost) {
  background: linear-gradient(135deg, #1f5c67 0%, #3e8987 100%);
  box-shadow: 0 16px 36px rgba(35, 90, 98, 0.2);
}

.homepage .hero-actions-direct .button:not(.button-ghost):hover {
  box-shadow: 0 20px 42px rgba(35, 90, 98, 0.25);
}

.homepage .hero-actions-direct .hero-secondary-action {
  background: rgba(255, 255, 255, 0.7);
  color: #21414b;
  border-color: rgba(33, 61, 69, 0.08);
  box-shadow: 0 14px 28px rgba(35, 54, 61, 0.08);
}

.homepage .hero-actions-direct .hero-secondary-action:hover {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 34px rgba(35, 54, 61, 0.1);
}

@media (max-width: 1180px) {
  .homepage .nav-row {
    gap: 1.2rem;
  }

  .homepage .site-nav a {
    padding-inline: 0.62rem;
    font-size: 0.93rem;
  }

  .homepage .hero-stage-overlay {
    min-height: 780px;
    background-position: 56% 18%;
  }

  .homepage .hero-grid-overlay.hero-grid-reset {
    padding: 54px 28px;
  }

  .homepage .hero-copy-card {
    width: min(100%, 680px);
    min-height: 628px;
    padding: 34px 30px 34px 30px;
  }

  .homepage .hero-copy-overlay h1 {
    font-size: clamp(3.7rem, 6.4vw, 5.3rem);
  }
}

@media (max-width: 760px) {
  .homepage .site-header {
    background: rgba(243, 239, 233, 0.96);
  }

  .homepage .brand-text strong,
  .homepage .brand-text small,
  .homepage .site-nav a {
    color: #222d31;
  }

  .homepage .site-nav a.is-active,
  .homepage .site-nav a[aria-current="page"] {
    background: rgba(255, 252, 246, 0.96);
  }

  .homepage .hero {
    padding-top: 0.5rem;
  }

  .homepage .hero-stage,
  .homepage .hero-stage-overlay {
    border-radius: 32px;
  }

  .homepage .hero-stage-overlay {
    min-height: 700px;
    background-position: 62% 18%;
  }

  .homepage .hero-grid-overlay.hero-grid-reset {
    align-items: end;
    padding: 1.1rem;
  }

  .homepage .hero-copy-card {
    width: 100%;
    min-height: auto;
    padding: 1.3rem 1.1rem 1.2rem;
    border-radius: 26px;
  }

  .homepage .hero-copy-card::before {
    inset: -16%;
    border-radius: 34px;
    background-position: 34% 24%;
    opacity: 0.6;
  }

  .homepage .hero-copy-overlay .hero-kicker,
  .homepage .hero-copy-overlay .eyebrow.hero-kicker {
    margin-bottom: 0.95rem;
    font-size: 0.71rem;
    letter-spacing: 0.12em;
  }

  .homepage .hero-copy-overlay h1 {
    max-width: 7.2ch;
    font-size: clamp(3.1rem, 13vw, 4.75rem);
    line-height: 0.89;
  }

  .homepage .hero-copy-overlay .hero-text {
    max-width: 100%;
    margin-top: 1.15rem;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .homepage .hero-actions-reset {
    margin-top: 1.5rem;
  }
}

/* April 2026 site-wide palette refinement — align interiors to homepage hero */
:root {
  --bg: #f7f1e8;
  --bg-2: #ece4d8;
  --paper: rgba(255, 252, 247, 0.82);
  --paper-strong: #fffdfa;
  --paper-deep: #e8ddd0;
  --ink: #22353b;
  --muted: #64757a;
  --line: rgba(34, 53, 59, 0.10);
  --teal: #2f6b69;
  --teal-2: #7faea8;
  --navy: #214148;
  --sand: #ead9c0;
  --shadow: 0 24px 72px rgba(26, 42, 47, 0.09);
  --shadow-strong: 0 34px 100px rgba(22, 35, 40, 0.14);
}

body {
  background:
    radial-gradient(circle at 16% 0%, rgba(122, 171, 166, 0.16), transparent 30%),
    radial-gradient(circle at 100% 8%, rgba(240, 225, 199, 0.34), transparent 24%),
    linear-gradient(180deg, #faf6ef 0%, #f4efe7 44%, #eee7de 100%);
}

body::selection {
  background: rgba(47, 107, 105, 0.14);
}

.site-header {
  background: linear-gradient(180deg, rgba(249, 245, 239, 0.88), rgba(249, 245, 239, 0.78));
  border-bottom: 1px solid rgba(34, 53, 59, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.brand-mark {
  background: linear-gradient(160deg, #234b54 0%, #2f6b69 52%, #7caea8 100%);
  box-shadow: 0 18px 36px rgba(33, 65, 72, 0.14);
}

.brand-text strong {
  color: #23373d;
}

.brand-text small {
  color: rgba(62, 85, 91, 0.72);
}

.site-nav a {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(34, 53, 59, 0.84);
  box-shadow: 0 10px 24px rgba(35, 53, 59, 0.05);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--ink);
}

.nav-dot {
  background: rgba(47, 107, 105, 0.24);
}

.site-nav a:hover .nav-dot,
.site-nav a[aria-current="page"] .nav-dot,
.site-nav a.is-active .nav-dot {
  background: rgba(47, 107, 105, 0.74);
}

.button {
  background: linear-gradient(135deg, #245a63 0%, #2f6b69 56%, #76a5a0 100%);
  border-color: rgba(35, 65, 72, 0.10);
  box-shadow: 0 16px 36px rgba(36, 90, 99, 0.18);
}

.button:hover {
  box-shadow: 0 22px 44px rgba(36, 90, 99, 0.22);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  border-color: rgba(35, 65, 72, 0.14);
  box-shadow: 0 12px 28px rgba(35, 53, 59, 0.06);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow,
.card-kicker,
.visual-topline,
.float-label,
.testimonial-tag {
  color: #3d6f77;
}

.hero-secondary-action,
.micro-links a,
.supportive-card .micro-links a {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(35, 65, 72, 0.12);
  box-shadow: 0 12px 28px rgba(35, 53, 59, 0.07);
}

.hero-secondary-action:hover,
.micro-links a:hover,
.supportive-card .micro-links a:hover {
  background: rgba(255, 255, 255, 0.84);
}

.trust-ribbon,
.about-page .about-trust-ribbon {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(246, 240, 232, 0.94));
  border-color: rgba(35, 65, 72, 0.08);
  box-shadow: 0 18px 44px rgba(35, 53, 59, 0.07);
}

.trust-ribbon span {
  color: rgba(34, 53, 59, 0.74);
}

.trust-ribbon span + span::before {
  background: rgba(47, 107, 105, 0.26);
}

.quiet-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(228, 239, 236, 0.24) 54%, rgba(255, 255, 255, 0) 100%);
}

.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(230, 239, 235, 0.2));
}

.about-page {
  background:
    radial-gradient(circle at 16% 0%, rgba(128, 177, 172, 0.14), transparent 30%),
    radial-gradient(circle at 100% 10%, rgba(238, 224, 197, 0.18), transparent 22%),
    linear-gradient(180deg, #faf6ef 0%, #f4eee6 42%, #ece4db 100%);
}

.about-page .about-stage,
.about-hero-copy {
  background:
    radial-gradient(circle at 84% 18%, rgba(235, 221, 197, 0.3), transparent 22%),
    radial-gradient(circle at 16% 0%, rgba(124, 174, 169, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 240, 232, 0.88) 52%, rgba(232, 240, 237, 0.82) 100%);
}

.about-portrait-frame,
.about-page .about-stage-portrait {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 243, 240, 0.9) 60%, rgba(242, 234, 222, 0.92));
}

.manifesto-copy,
.approach-card,
.mosaic-card,
.location-card,
.testimonial-card,
.glass-panel,
.content-panel,
.service-detail,
.contact-card,
.about-portrait-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(248, 243, 236, 0.92) 58%, rgba(233, 241, 238, 0.88) 100%);
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 58px rgba(29, 44, 52, 0.08);
}

.soft-panel,
.stat-panel,
.intake-form-panel,
.contact-support-panel,
.response-card,
.about-page .about-story-card,
.about-page .about-fit-card {
  background: linear-gradient(145deg, rgba(250, 247, 241, 0.94), rgba(234, 243, 239, 0.92) 68%, rgba(242, 233, 220, 0.88) 100%);
}

.quote-panel,
.about-page .about-quote-card {
  background: linear-gradient(145deg, rgba(47, 107, 105, 0.10), rgba(255, 252, 247, 0.94) 64%, rgba(236, 228, 214, 0.9) 100%);
}

.featured-service,
.prp-highlight,
.mosaic-feature,
.about-page .about-fit-card.featured,
.primary-contact {
  background: linear-gradient(145deg, rgba(238, 223, 197, 0.34), rgba(255, 255, 255, 0.94) 48%, rgba(232, 241, 238, 0.9) 100%);
}

.supportive-card,
.scar-card,
.muted,
.about-page .about-fit-card.emphasis {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(234, 243, 239, 0.92) 56%, rgba(243, 235, 224, 0.92) 100%);
}

.homepage-approach-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(236, 244, 241, 0.94) 56%, rgba(247, 239, 229, 0.98) 100%);
}

.homepage-approach-step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(127, 174, 168, 0.06));
}

.contact-support-panel .contact-actions,
.contact-actions,
.cta-actions,
.hero-actions {
  align-items: center;
}

.preview-pill,
.form-note,
.testimonial-card.is-placeholder::after,
.testimonial-spotlight.is-placeholder::after {
  background: rgba(47, 107, 105, 0.08);
  border-color: rgba(47, 107, 105, 0.14);
  color: #2f6b69;
}

.choice-chip {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(35, 65, 72, 0.10);
  box-shadow: 0 10px 24px rgba(16, 20, 24, 0.05);
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  border-color: rgba(35, 65, 72, 0.10);
  background: rgba(255, 255, 255, 0.9);
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: rgba(47, 107, 105, 0.32);
  box-shadow: 0 0 0 4px rgba(47, 107, 105, 0.08);
}

.mosaic-topline-note {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 249, 241, 0.84);
}

.mosaic-footer-arrow {
  background: rgba(34, 53, 59, 0.05);
}

.mosaic-feature.dark,
.dark-card,
.dark-service,
.cta-panel,
.dark-band,
.approach-immersive-stage,
.hero-aside.hero-dark-card,
.about-page .about-stage-summary,
.site-footer,
.review-cta-card {
  background:
    radial-gradient(circle at 16% 0%, rgba(111, 160, 154, 0.16), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(239, 221, 192, 0.08), transparent 22%),
    linear-gradient(145deg, #26373d 0%, #1f2d33 55%, #172227 100%);
}

.mosaic-feature.dark,
.dark-card,
.dark-service,
.cta-panel,
.approach-immersive-stage,
.hero-aside.hero-dark-card,
.about-page .about-stage-summary,
.review-cta-card {
  border-color: rgba(248, 245, 239, 0.08);
  box-shadow: 0 30px 84px rgba(12, 18, 22, 0.22);
}

.dark-band .dark-copy p,
.dark-band h2,
.dark-band .eyebrow,
.dark-band .process-step strong,
.dark-band .process-step span,
.cta-panel h2,
.cta-panel .eyebrow,
.review-cta-card h3,
.review-cta-card p,
.review-cta-card .card-kicker,
.review-cta-card strong,
.dark-card p,
.dark-card a,
.dark-card h3,
.dark-card .card-kicker,
.dark-service p,
.dark-service li,
.dark-service .card-kicker,
.light-link,
.about-page .about-stage-summary p,
.hero-dark-item p,
.hero-dark-label {
  color: #f3eee6;
}

.process-step,
.experience-card,
.review-cta-card {
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.09), rgba(247, 241, 232, 0.03));
  border-color: rgba(247, 241, 232, 0.10);
}

.experience-card.accent,
.review-cta-card.accent {
  background: linear-gradient(135deg, rgba(47, 107, 105, 0.68), rgba(234, 217, 192, 0.24));
}

body.experiences-page,
.homepage-experiences {
  --exp-text: #ece8e0;
  --exp-text-strong: #fbf7f0;
  --exp-text-soft: rgba(236, 232, 224, 0.8);
  --exp-text-muted: rgba(226, 220, 210, 0.72);
  --exp-accent: #96b6b0;
  --exp-accent-soft: rgba(150, 182, 176, 0.16);
  --exp-accent-border: rgba(150, 182, 176, 0.28);
  --exp-border: rgba(246, 240, 232, 0.10);
  --exp-border-strong: rgba(246, 240, 232, 0.14);
  --exp-shadow: 0 26px 80px rgba(10, 15, 18, 0.24);
  --exp-card-shadow: 0 20px 44px rgba(10, 15, 18, 0.22);
  color: var(--exp-text);
  padding: 2.1rem 0 1.7rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(110, 156, 151, 0.18), transparent 30%),
    radial-gradient(circle at 96% 6%, rgba(236, 219, 193, 0.12), transparent 24%),
    linear-gradient(180deg, #23363d 0%, #1d2d34 38%, #213038 100%);
}

.experiences-page .site-header {
  background: rgba(27, 41, 47, 0.78);
  border-bottom-color: rgba(246, 240, 232, 0.08);
}

.experiences-page .button,
.homepage-experiences .button {
  background: linear-gradient(135deg, rgba(118, 165, 160, 0.38) 0%, rgba(33, 65, 72, 0.42) 100%);
  color: var(--exp-text-strong);
  border-color: rgba(246, 240, 232, 0.16);
  box-shadow: 0 14px 34px rgba(10, 15, 18, 0.18);
}

.experiences-page .button-review,
.homepage-experiences .button-review {
  background: linear-gradient(135deg, rgba(127, 174, 168, 0.48), rgba(56, 86, 85, 0.34));
}

.experiences-page .button-ghost,
.experiences-page .button-ghost.dark,
.homepage-experiences .button-ghost,
.homepage-experiences .button-ghost.dark {
  background: rgba(247, 241, 232, 0.08);
  color: var(--exp-text);
  border-color: rgba(246, 240, 232, 0.14);
  box-shadow: 0 12px 28px rgba(10, 15, 18, 0.14);
}

.experiences-page .experiences-stage,
.homepage-experiences .hero-stage,
.homepage-experiences .experiences-review-rail,
.experiences-page .experiences-review-rail,
.experiences-page .cta-panel,
.homepage-experiences .testimonial-card,
.experiences-page .testimonial-card {
  background:
    radial-gradient(circle at 14% 0%, rgba(110, 156, 151, 0.16), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(236, 219, 193, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(40, 56, 63, 0.98) 0%, rgba(28, 41, 47, 0.98) 100%);
}

.experiences-page .testimonial-card.premium,
.homepage-experiences .testimonial-card.premium,
.experiences-page .testimonial-card.soft-light,
.homepage-experiences .testimonial-card.soft-light,
.experiences-page .testimonial-entry.is-open,
.homepage-experiences .testimonial-entry.is-open {
  background:
    radial-gradient(circle at top left, rgba(150, 182, 176, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(45, 61, 67, 0.98) 0%, rgba(31, 44, 50, 0.98) 100%);
}

.experiences-page .testimonial-entry blockquote,
.homepage-experiences .testimonial-entry blockquote {
  color: rgba(251, 247, 240, 0.88);
  border-top-color: rgba(246, 240, 232, 0.10);
}

.experiences-page .experiences-trust-ribbon,
.homepage-experiences .experiences-trust-ribbon {
  background: rgba(247, 241, 232, 0.06);
  border-color: rgba(246, 240, 232, 0.10);
  box-shadow: 0 18px 50px rgba(10, 15, 18, 0.16);
}

.experiences-page .experiences-trust-ribbon span,
.homepage-experiences .experiences-trust-ribbon span {
  color: rgba(236, 232, 224, 0.78);
}

.experiences-page .experiences-trust-ribbon span + span::before,
.homepage-experiences .experiences-trust-ribbon span + span::before {
  background: rgba(150, 182, 176, 0.34);
}

.site-footer {
  border-top-color: rgba(247, 241, 232, 0.08);
}

.footer-heading {
  color: rgba(243, 238, 230, 0.56);
}

.footer-link-group a:hover,
.footer-cta-link {
  color: #fffdf8;
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(249, 245, 239, 0.94);
  }

  .site-nav a {
    background: rgba(255, 255, 255, 0.4);
  }

  .mosaic-card,
  .glass-panel,
  .content-panel,
  .service-detail,
  .contact-card,
  .testimonial-card {
    box-shadow: 0 18px 40px rgba(29, 44, 52, 0.07);
  }
}

/* April 2026 homepage top-of-page refinement */
.homepage .site-header {
  padding: 0;
  background: linear-gradient(180deg, rgba(244, 239, 232, 0.94) 0%, rgba(244, 239, 232, 0.88) 100%);
  border-bottom: 1px solid rgba(23, 37, 44, 0.08);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.homepage .homepage-nav-row {
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 80px;
}

.homepage .brand {
  min-width: 0;
}

.homepage .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--teal-2));
  box-shadow: 0 12px 28px rgba(27, 51, 58, 0.12);
}

.homepage .brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.homepage .brand-text small {
  color: rgba(69, 84, 88, 0.9);
}

.homepage .site-footer .footer-brand,
.homepage .site-footer .footer-brand:visited,
.homepage .site-footer .footer-brand .brand-text,
.homepage .site-footer .footer-brand .brand-text strong,
.homepage .site-footer .footer-brand .brand-text small {
  color: #f3eee7 !important;
}

.homepage .site-footer .footer-brand .brand-text small {
  color: rgba(243,238,231,0.68) !important;
}

.homepage .site-nav {
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: nowrap;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.homepage .site-nav a {
  gap: 0.46rem;
  padding: 0.72rem 0.98rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(34, 40, 42, 0.9);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
}

.homepage .site-nav a:hover {
  background: rgba(255, 255, 255, 0.42);
  color: #1f2a2f;
}

.homepage .site-nav a.is-active,
.homepage .site-nav a[aria-current],
.homepage .site-nav a[aria-current="page"],
.homepage .site-nav a[aria-current="location"] {
  color: #1d3f47;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(244, 239, 232, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.84),
    0 10px 20px rgba(31, 45, 50, 0.08);
}

.homepage .nav-dot {
  width: 5px;
  height: 5px;
  background: rgba(111, 139, 137, 0.42);
}

.homepage .site-nav a:hover .nav-dot,
.homepage .site-nav a[aria-current] .nav-dot,
.homepage .site-nav a[aria-current="page"] .nav-dot,
.homepage .site-nav a[aria-current="location"] .nav-dot,
.homepage .site-nav a.is-active .nav-dot {
  background: var(--teal-2);
  box-shadow: 0 0 0 5px rgba(44, 111, 105, 0.12);
}

.homepage .hero {
  padding-top: 0.9rem;
}

.homepage .hero-stage {
  border-radius: 38px;
  box-shadow: 0 28px 80px rgba(27, 37, 41, 0.14);
}

.homepage .hero-grid-overlay.hero-grid-reset {
  padding-top: 64px;
}

.homepage .hero-copy-card {
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(250, 249, 246, 0.7) 0%, rgba(248, 244, 238, 0.62) 32%, rgba(247, 241, 233, 0.9) 100%),
    linear-gradient(135deg, rgba(217, 237, 239, 0.24), rgba(255, 247, 236, 0.08) 58%, rgba(255, 247, 236, 0.2) 100%);
  box-shadow:
    0 28px 72px rgba(30, 39, 44, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.homepage .hero-copy-overlay .hero-kicker,
.homepage .hero-copy-overlay .eyebrow.hero-kicker {
  margin-bottom: 1rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 24px rgba(33, 53, 61, 0.08);
}

.homepage .hero-copy-overlay h1 {
  max-width: 8.2ch;
}

.homepage .hero-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
}

.homepage .hero-meta-line span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: rgba(37, 67, 74, 0.9);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(31, 45, 50, 0.06);
}

.homepage .hero-actions-reset {
  margin-top: 1.55rem;
}

@media (max-width: 1180px) {
  .homepage .homepage-nav-row {
    gap: 0.85rem;
  }

  .homepage .site-nav a {
    padding-inline: 0.8rem;
    font-size: 0.97rem;
  }

  .homepage .hero-grid-overlay.hero-grid-reset {
    padding: 64px 30px 44px;
  }
}

@media (max-width: 980px) {
  .homepage .homepage-nav-row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    min-height: auto;
    padding: 0.8rem 0 0.9rem;
  }

  .homepage .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }
}

@media (max-width: 760px) {
  .homepage .site-header {
    background: linear-gradient(180deg, rgba(244, 239, 232, 0.97) 0%, rgba(244, 239, 232, 0.93) 100%);
  }

  .homepage .homepage-nav-row {
    padding: 0.7rem 0 0.8rem;
  }

  .homepage .brand {
    padding-left: 0.1rem;
  }

  .homepage .site-nav a {
    padding: 0.68rem 0.82rem;
  }

  .homepage .hero {
    padding-top: 0.45rem;
  }

  .homepage .hero-stage,
  .homepage .hero-stage-overlay {
    border-radius: 30px;
  }

  .homepage .hero-grid-overlay.hero-grid-reset {
    padding: 1rem;
  }

  .homepage .hero-copy-card {
    padding: 1.2rem 1.05rem 1.15rem;
    border-radius: 24px;
  }

  .homepage .hero-copy-overlay .hero-kicker,
  .homepage .hero-copy-overlay .eyebrow.hero-kicker {
    font-size: 0.69rem;
    letter-spacing: 0.11em;
  }

  .homepage .hero-meta-line {
    gap: 0.42rem;
    margin-top: 1rem;
  }

  .homepage .hero-meta-line span {
    min-height: 32px;
    padding-inline: 0.72rem;
    font-size: 0.69rem;
    letter-spacing: 0.07em;
  }
}

/* Homepage header branding refinement */
.homepage .brand--homepage-wordmark {
  gap: 0;
}

.homepage .brand--homepage-wordmark .brand-text strong {
  font-size: 1.05rem;
  color: #24373b;
  letter-spacing: 0.03em;
}

.homepage .brand--homepage-wordmark .brand-credential {
  color: rgba(76, 112, 109, 0.88);
}

@media (max-width: 760px) {
  .homepage .brand--homepage-wordmark .brand-text strong {
    font-size: 1.02rem;
  }
}

/* Homepage Our Approach image integration */
.homepage-approach-stack {
  gap: clamp(1.6rem, 2.6vw, 2.3rem);
}

.homepage-approach-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: clamp(1.4rem, 2.8vw, 2.4rem);
  align-items: stretch;
}

.homepage-approach-copy {
  width: auto;
  max-width: none;
  margin: 0;
  padding: clamp(2rem, 3.4vw, 2.8rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(234, 217, 192, 0.26), transparent 24%),
    radial-gradient(circle at 14% 10%, rgba(122, 171, 166, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 241, 233, 0.92) 58%, rgba(233, 241, 238, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 58px rgba(29, 44, 52, 0.08);
}

.homepage-approach-copy h2 {
  max-width: none;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 0.96;
}

.homepage-approach-heading-line {
  display: block;
  white-space: nowrap;
}

.homepage-approach-body {
  max-width: 35rem;
  margin: 0;
}

.homepage-approach-visual {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  min-width: 0;
  align-content: start;
}

.homepage-approach-visual-frame {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  aspect-ratio: 0.86 / 1;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 243, 240, 0.9) 58%, rgba(242, 234, 222, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 26px 70px rgba(29, 44, 52, 0.12);
}

.homepage-approach-visual-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(22, 38, 44, 0) 0%, rgba(22, 38, 44, 0.08) 60%, rgba(22, 38, 44, 0.2) 100%);
  pointer-events: none;
}

.homepage-approach-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.homepage-approach-visual-note {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.4rem;
  max-width: min(14rem, calc(100% - 2rem));
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.58) 0%, rgba(255, 249, 243, 0.46) 100%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 14px 30px rgba(21, 36, 42, 0.10);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.homepage-approach-visual-note span {
  color: rgba(54, 102, 109, 0.94);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.homepage-approach-visual-note strong {
  color: #1f343a;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

@media (max-width: 1100px) {
  .homepage-approach-lead {
    grid-template-columns: 1fr;
  }

  .homepage-approach-visual {
    max-width: 42rem;
  }

  .homepage-approach-visual-frame {
    min-height: 520px;
    aspect-ratio: auto;
  }
}

@media (max-width: 760px) {
  .homepage-approach-copy {
    padding: 1.5rem;
    border-radius: 28px;
  }

  .homepage-approach-copy h2 {
    font-size: clamp(1.15rem, 5.8vw, 1.6rem);
  }

  .homepage-approach-visual {
    gap: 0.75rem;
  }

  .homepage-approach-visual-frame {
    min-height: 420px;
    border-radius: 28px;
  }

  .homepage-approach-visual-note {
    top: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    max-width: none;
    padding: 0.85rem 0.9rem;
    border-radius: 20px;
  }

  .homepage-approach-visual-note strong {
    font-size: 0.9rem;
  }

}

/* Homepage About section reference-match refinement */
.homepage-about-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.2rem, 4vw, 3.4rem) clamp(2rem, 3.8vw, 2.9rem) clamp(2rem, 3.8vw, 3rem) clamp(3.4rem, 7vw, 5.4rem);
  border-radius: 40px;
  background: #ffffff;
  border: 1px solid rgba(27, 46, 53, 0.08);
  box-shadow:
    0 26px 72px rgba(29, 44, 52, 0.08),
    0 8px 24px rgba(29, 44, 52, 0.04);
}

.homepage-about-shell::before {
  content: "";
  position: absolute;
  left: clamp(-1.1rem, -1.45vw, -0.2rem);
  top: 50%;
  z-index: 0;
  width: clamp(136px, 15.5vw, 192px);
  height: min(90%, 720px);
  opacity: 0.38;
  transform: translateY(-50%);
  transform-origin: center;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20174%20760%27%20fill%3D%27none%27%3E%3Cg%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M46%2018C120%2076%20120%20154%2046%20212C-28%20270%20-28%20348%2046%20406C120%20464%20120%20542%2046%20600C8%20631%20-2%20678%2028%20742%27%20stroke%3D%27%23d8e0e4%27%20stroke-opacity%3D%27.92%27%20stroke-width%3D%272.45%27%2F%3E%3Cpath%20d%3D%27M108%2018C34%2076%2034%20154%20108%20212C182%20270%20182%20348%20108%20406C34%20464%2034%20542%20108%20600C146%20631%20156%20678%20126%20742%27%20stroke%3D%27%23edf1f3%27%20stroke-opacity%3D%27.98%27%20stroke-width%3D%272.45%27%2F%3E%3Cpath%20d%3D%27M54%2078H100M44%20144H110M36%20210H118M42%20276H112M54%20342H100M68%20408H86M54%20474H100M42%20540H112M36%20606H118M44%20672H110%27%20stroke%3D%27%23e3e8eb%27%20stroke-opacity%3D%27.94%27%20stroke-width%3D%271.42%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  filter: blur(0.2px);
  pointer-events: none;
}

.homepage-about-shell::after {
  display: none;
}

.homepage-about-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(1rem, 2.3vw, 2.35rem);
  align-items: end;
}

.homepage-about-copy {
  align-self: center;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.homepage-about-copy .about-label {
  margin-bottom: 1.25rem;
  font-size: 0.96rem;
  letter-spacing: 0.18em;
  color: #67767b;
}

.homepage-about-prose {
  max-width: 35rem;
}

.homepage-about-prose p {
  margin: 0;
  color: rgba(34, 53, 59, 0.94);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.28rem, 1.86vw, 1.78rem);
  line-height: 1.56;
  letter-spacing: -0.024em;
}

.homepage-about-focus {
  max-width: 34rem;
  margin-top: 1.9rem;
  padding-top: 1.4rem;
  border-top-color: rgba(34, 53, 59, 0.08);
}

.homepage-about-focus .card-kicker {
  margin-bottom: 0.85rem;
  color: rgba(34, 53, 59, 0.88);
}

.homepage-about-focus p {
  margin: 0;
  color: rgba(50, 69, 75, 0.88);
  font-size: 1.06rem;
  line-height: 1.65;
}

.homepage-about-portrait {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.homepage-about-portrait::before,
.homepage-about-portrait::after {
  display: none;
}

.homepage-about-portrait .about-portrait-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(620px, 58vw, 860px);
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  filter: none;
  box-shadow: none;
  clip-path: inset(0 0 3.5% 0);
  -webkit-mask-image: radial-gradient(132% 128% at 52% 42%, #000 68%, rgba(0, 0, 0, 0.94) 82%, rgba(0, 0, 0, 0.42) 94%, transparent 100%);
  mask-image: radial-gradient(132% 128% at 52% 42%, #000 68%, rgba(0, 0, 0, 0.94) 82%, rgba(0, 0, 0, 0.42) 94%, transparent 100%);
}

@media (max-width: 1100px) {
  .homepage-about-shell {
    padding: clamp(1.9rem, 4.5vw, 2.5rem) clamp(1.9rem, 4.5vw, 2.4rem) clamp(1.5rem, 4vw, 2rem) clamp(2.35rem, 5vw, 3rem);
  }

  .homepage-about-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .homepage-about-copy,
  .homepage-about-prose,
  .homepage-about-focus {
    max-width: none;
  }

  .homepage-about-portrait {
    justify-items: center;
  }

  .homepage-about-portrait .about-portrait-image {
    width: min(100%, 34rem);
    height: 660px;
    min-height: 0;
    transform: none;
  }
}

@media (max-width: 760px) {
  .about-hero-section {
    padding-bottom: 2.75rem;
  }

  .homepage-about-shell {
    padding: 1.45rem 1.2rem 0.9rem 1.5rem;
    border-radius: 28px;
  }

  .homepage-about-shell::before {
    left: -0.95rem;
    top: 1rem;
    width: 94px;
    height: 230px;
    opacity: 0.3;
    transform: none;
  }

  .homepage-about-copy .about-label {
    margin-bottom: 1rem;
    font-size: 0.84rem;
  }

  .homepage-about-prose p {
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .homepage-about-focus {
    margin-top: 1.45rem;
    padding-top: 1rem;
  }

  .homepage-about-focus p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .homepage-about-portrait .about-portrait-image {
    height: 420px;
    min-height: 0;
    transform: none;
  }
}

/* April 2026 homepage treatments reference rebuild */
.treatments-reference-section {
  position: relative;
}

.treatments-reference-head {
  margin-bottom: 1.35rem;
}

.treatments-reference-head .eyebrow {
  margin-bottom: 0;
  color: #353c3f;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.treatments-reference-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "prp prp prp iv iv iv"
    "prolo prolo scar scar ozone ozone";
}

.treatment-card--prp { grid-area: prp; }
.treatment-card--iv { grid-area: iv; }
.treatment-card--prolotherapy { grid-area: prolo; }
.treatment-card--scar { grid-area: scar; }
.treatment-card--ozone { grid-area: ozone; }

.treatment-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(28, 37, 42, 0.07);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  box-shadow: 0 24px 70px rgba(31, 44, 52, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.treatment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 80px rgba(31, 44, 52, 0.1);
  border-color: rgba(28, 37, 42, 0.12);
}

.treatment-card--iv,
.treatment-card--iv * {
  cursor: default;
}

.treatment-card--iv:hover {
  transform: none;
  box-shadow: 0 24px 70px rgba(31, 44, 52, 0.07);
  border-color: rgba(28, 37, 42, 0.07);
}

.treatment-card--iv .treatment-chip-row a {
  cursor: pointer;
}

.treatment-card--blank {
  background: #ffffff;
  border: 1px solid rgba(28, 37, 42, 0.07);
  box-shadow: 0 24px 70px rgba(31, 44, 52, 0.07);
  min-height: 100%;
}

.treatment-card-blank-fill {
  min-height: 100%;
  flex: 1 1 auto;
  background: #ffffff;
}

.treatment-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(130px, 34%, 190px);
  align-items: center;
  gap: 1rem;
  min-height: 186px;
  padding: 1.7rem 1.7rem 0;
}

.treatment-card-body--large {
  grid-template-columns: minmax(0, 1.15fr) clamp(150px, 30%, 230px);
  min-height: 300px;
  padding: 2rem 1.9rem 0;
}

.treatment-card-copy {
  display: grid;
  align-content: start;
  gap: 0.82rem;
  max-width: 18rem;
}

.treatment-card-copy--large {
  gap: 1rem;
  max-width: 29rem;
}

.treatment-card-label {
  margin: 0;
  color: rgba(41, 49, 54, 0.76);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.treatment-card h3 {
  max-width: 10ch;
  color: #10171c;
  font-size: clamp(1.95rem, 2.35vw, 2.6rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.treatment-card-copy--large h3 {
  max-width: 9ch;
  font-size: clamp(2.45rem, 4vw, 3.7rem);
}

.treatment-card--prp .treatment-card-copy--large h3 {
  max-width: 7ch;
}

.treatment-card--iv .treatment-card-copy--large h3 {
  max-width: 9.5ch;
  font-size: clamp(2.3rem, 3.8vw, 3.55rem);
}

.treatment-card p:last-child {
  margin-bottom: 0;
}

.treatment-card-copy > p:not(.treatment-card-label) {
  margin: 0;
  color: #454c52;
  font-size: 1rem;
  line-height: 1.6;
}

.treatment-card-copy--large > p:not(.treatment-card-label) {
  max-width: 28rem;
  font-size: 1.04rem;
}

.treatment-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.treatment-chip-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.55rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 37, 42, 0.07);
  background: #f5f2ed;
  color: #20282d;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.treatment-chip-row a:hover,
.treatment-chip-row a:focus-visible {
  background: #efebe4;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 44, 52, 0.08);
}

.treatment-card-footer-link-clean {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-top: auto;
  padding: 1.15rem 1.7rem 1.3rem;
  border-top: 1px solid rgba(28, 37, 42, 0.08);
  color: #151d22;
  text-decoration: none;
}

.treatment-card--large .treatment-card-footer-link-clean {
  padding: 1.15rem 1.9rem 1.35rem;
}

.treatment-card--iv .treatment-card-footer-static,
.treatment-card--iv .treatment-card-footer-static * {
  cursor: default;
}

.treatment-card-footer-label-clean {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.treatment-card-footer-arrow {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.treatment-card-art {
  position: relative;
  min-height: 150px;
  align-self: stretch;
}

.treatment-card-art--prp,
.treatment-card-art--iv {
  min-height: 260px;
}

.prp-tube-cap {
  position: absolute;
  top: 10%;
  right: 24%;
  width: 74px;
  height: 42px;
  border-radius: 18px 18px 12px 12px;
  border: 1px solid rgba(154, 161, 167, 0.72);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(240,242,244,0.92) 100%),
    repeating-linear-gradient(90deg, rgba(202,205,208,0.65) 0 2px, rgba(255,255,255,0) 2px 7px);
  box-shadow: 0 10px 20px rgba(28, 37, 42, 0.08);
}

.prp-tube {
  position: absolute;
  top: calc(10% + 34px);
  right: 23%;
  width: 78px;
  height: 214px;
  border-radius: 22px 22px 28px 28px;
  border: 1px solid rgba(152, 160, 166, 0.74);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.8) 0 17%, rgba(255,255,255,0.2) 17% 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 0 44%, #efc85b 44% 73%, #6c140b 73% 100%);
  box-shadow:
    inset 10px 0 12px rgba(255,255,255,0.52),
    inset -10px 0 16px rgba(201,205,209,0.34),
    0 18px 28px rgba(28, 37, 42, 0.08);
}

.prp-tube::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  bottom: 18px;
  width: 11px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.15));
}

.prp-tube::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44%;
  height: 2px;
  background: rgba(182, 151, 83, 0.48);
}

.prp-platelet {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 32%, rgba(255,255,255,0.95) 0 18%, rgba(241,244,247,0.94) 24%, rgba(221,227,233,0.72) 48%, rgba(221,227,233,0.08) 72%, rgba(221,227,233,0) 100%);
  box-shadow: inset 0 0 0 1px rgba(213,219,225,0.76);
  opacity: 0.95;
}

.prp-platelet--one {
  left: 6%;
  top: 44%;
  width: 48px;
  height: 48px;
}

.prp-platelet--two {
  left: 18%;
  top: 56%;
  width: 42px;
  height: 42px;
}

.prp-platelet--three {
  left: 26%;
  top: 68%;
  width: 50px;
  height: 50px;
}

.iv-bag-hook {
  position: absolute;
  top: 2%;
  right: 31%;
  width: 34px;
  height: 20px;
  border: 2px solid rgba(189, 195, 199, 0.8);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.iv-bag-hook::before,
.iv-bag-hook::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(189, 195, 199, 0.82);
}

.iv-bag-hook::before {
  top: 15px;
  width: 6px;
  height: 16px;
  border-radius: 999px;
}

.iv-bag-hook::after {
  top: 27px;
  width: 28px;
  height: 5px;
  border-radius: 999px;
}

.iv-bag {
  position: absolute;
  top: 12%;
  right: 12%;
  width: 148px;
  height: 214px;
  clip-path: polygon(18% 0, 82% 0, 90% 14%, 90% 84%, 82% 100%, 18% 100%, 10% 84%, 10% 14%);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(236,240,243,0.8) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(176, 183, 189, 0.75),
    inset 16px 0 18px rgba(255,255,255,0.44),
    inset -18px 0 20px rgba(214,220,225,0.46),
    0 16px 28px rgba(28, 37, 42, 0.08);
}

.iv-bag::before {
  content: "";
  position: absolute;
  inset: 20px 18px 18px;
  clip-path: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82) 0 20%, rgba(192,206,216,0.28) 20% 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 0 18%, rgba(202,214,223,0.75) 18% 76%, rgba(245,247,249,0.28) 76% 100%);
  opacity: 0.9;
}

.iv-bag::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 10%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(193,198,202,0.25), rgba(193,198,202,0.6), rgba(193,198,202,0.12));
}

.iv-drip {
  position: absolute;
  right: 26%;
  top: calc(12% + 214px);
  width: 4px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(201,206,210,0.88), rgba(229,232,235,0.88));
}

.iv-drip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 18px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(174, 181, 186, 0.76);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(235,239,242,0.92));
}

.iv-drip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 22px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(192, 198, 203, 0.72);
}

.treatment-card-art--knee {
  min-height: 170px;
}

.knee-upper,
.knee-lower {
  position: absolute;
  width: 68px;
  border-radius: 36px;
  background: linear-gradient(180deg, #f6dbc8 0%, #edc0a4 58%, #e4b090 100%);
  box-shadow: inset -10px 0 14px rgba(195, 130, 101, 0.16);
}

.knee-upper {
  top: 2%;
  right: 26%;
  height: 118px;
  transform: rotate(14deg);
}

.knee-lower {
  top: 39%;
  right: 9%;
  height: 126px;
  transform: rotate(-28deg);
}

.knee-joint {
  position: absolute;
  top: 42%;
  right: 30%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 42%, rgba(255,255,255,0.95) 0 18%, rgba(244,239,234,0.92) 22%, rgba(221,207,192,0.86) 52%, rgba(221,207,192,0) 74%);
  box-shadow: 0 8px 16px rgba(190, 151, 127, 0.12);
}

.knee-syringe {
  position: absolute;
  right: -1%;
  top: 62%;
  width: 76px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e8ecef 0%, #cfd5da 46%, #f8fafb 100%);
  transform: rotate(-34deg);
  box-shadow: inset 0 0 0 1px rgba(165, 172, 178, 0.58);
}

.knee-syringe::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -10px;
  width: 24px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(165, 172, 178, 0.65);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(230,234,238,0.9));
}

.knee-syringe::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 3px;
  width: 24px;
  height: 2px;
  background: rgba(167, 174, 179, 0.84);
}

.treatment-card-art--scar {
  min-height: 166px;
}

.scar-top,
.scar-face {
  position: absolute;
  box-shadow: 0 14px 24px rgba(199, 155, 137, 0.12);
}

.scar-top {
  top: 20%;
  right: 9%;
  width: 106px;
  height: 56px;
  clip-path: polygon(0 34%, 52% 0, 100% 30%, 48% 66%);
  background:
    radial-gradient(circle at 48% 44%, rgba(217, 144, 127, 0.24) 0 16%, rgba(217, 144, 127, 0) 18%),
    repeating-linear-gradient(90deg, rgba(229,190,176,0.42) 0 12px, rgba(248,227,215,0.7) 12px 24px),
    linear-gradient(180deg, #f8d9cb 0%, #f3c7b6 100%);
}

.scar-face--front {
  top: 50%;
  right: 9%;
  width: 106px;
  height: 70px;
  clip-path: polygon(0 0, 48% 16%, 48% 100%, 0 84%);
  background:
    repeating-linear-gradient(180deg, rgba(222,162,140,0.26) 0 8px, rgba(246,213,195,0.82) 8px 18px),
    linear-gradient(180deg, #efc1ab 0%, #e8af95 100%);
}

.scar-face--side {
  top: 33%;
  right: -2%;
  width: 70px;
  height: 87px;
  clip-path: polygon(0 12%, 100% 0, 100% 84%, 0 100%);
  background:
    repeating-linear-gradient(180deg, rgba(219,150,128,0.22) 0 8px, rgba(244,205,185,0.78) 8px 18px),
    linear-gradient(180deg, #f1cdbb 0%, #e7b498 100%);
}

.treatment-card-art--ozone {
  min-height: 166px;
}

.ozone-bubble {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.98) 0 18%, rgba(239,244,248,0.92) 34%, rgba(211,221,229,0.52) 68%, rgba(211,221,229,0.04) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(181, 189, 198, 0.5),
    0 10px 24px rgba(182, 190, 198, 0.24);
}

.ozone-bubble--one {
  top: 18%;
  right: 22%;
  width: 76px;
  height: 76px;
}

.ozone-bubble--two {
  top: 10%;
  right: 2%;
  width: 38px;
  height: 38px;
}

.ozone-bubble--three {
  top: 42%;
  right: 0;
  width: 82px;
  height: 82px;
}

.ozone-bubble--four {
  top: 28%;
  right: 30%;
  width: 30px;
  height: 30px;
}

@media (max-width: 900px) {
  .treatments-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "prp iv"
      "prolo scar"
      "ozone ozone";
  }
}

@media (max-width: 940px) {
  .treatments-reference-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "prp"
      "iv"
      "prolo"
      "scar"
      "ozone";
  }

  .treatment-card-body,
  .treatment-card-body--large {
    grid-template-columns: minmax(0, 1fr) 180px;
    min-height: auto;
  }

  .treatment-card-copy,
  .treatment-card-copy--large {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .treatments-reference-head {
    margin-bottom: 1rem;
  }

  .treatments-reference-grid {
    gap: 1rem;
  }

  .treatment-card {
    border-radius: 26px;
  }

  .treatment-card-body,
  .treatment-card-body--large {
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 0.75rem;
    padding: 1.35rem 1.2rem 0;
  }

  .treatment-card h3,
  .treatment-card-copy--large h3 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .treatment-card-copy > p:not(.treatment-card-label),
  .treatment-card-copy--large > p:not(.treatment-card-label) {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .treatment-chip-row {
    gap: 0.5rem;
  }

  .treatment-chip-row a {
    min-height: 2rem;
    padding: 0.46rem 0.74rem;
    font-size: 0.84rem;
  }

  .treatment-card-footer-link-clean,
  .treatment-card--large .treatment-card-footer-link-clean {
    padding: 1rem 1.2rem 1.15rem;
  }

  .treatment-card-footer-label-clean {
    font-size: 0.94rem;
  }

  .treatment-card-footer-arrow {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.24rem;
  }

  .treatment-card-art,
  .treatment-card-art--prp,
  .treatment-card-art--iv,
  .treatment-card-art--knee,
  .treatment-card-art--scar,
  .treatment-card-art--ozone {
    min-height: 132px;
  }

  .prp-tube-cap {
    right: 18%;
    width: 52px;
    height: 30px;
  }

  .prp-tube {
    top: calc(10% + 24px);
    right: 16%;
    width: 54px;
    height: 150px;
  }

  .prp-platelet--one {
    width: 34px;
    height: 34px;
  }

  .prp-platelet--two {
    width: 30px;
    height: 30px;
  }

  .prp-platelet--three {
    width: 36px;
    height: 36px;
  }

  .iv-bag-hook {
    right: 25%;
    transform: scale(0.8);
    transform-origin: top center;
  }

  .iv-bag {
    right: 8%;
    width: 100px;
    height: 150px;
  }

  .iv-drip {
    right: 22%;
    top: calc(12% + 150px);
    height: 60px;
  }

  .knee-upper,
  .knee-lower {
    width: 44px;
  }

  .knee-upper {
    height: 92px;
    right: 28%;
  }

  .knee-lower {
    height: 96px;
    right: 10%;
  }

  .knee-joint {
    width: 42px;
    height: 42px;
    right: 28%;
  }

  .knee-syringe {
    right: -8%;
    width: 56px;
  }

  .scar-top {
    width: 72px;
    height: 40px;
    right: 8%;
  }

  .scar-face--front {
    width: 72px;
    height: 48px;
    right: 8%;
  }

  .scar-face--side {
    width: 48px;
    height: 62px;
  }

  .ozone-bubble--one {
    width: 54px;
    height: 54px;
  }

  .ozone-bubble--two {
    width: 26px;
    height: 26px;
  }

  .ozone-bubble--three {
    width: 58px;
    height: 58px;
  }

  .ozone-bubble--four {
    width: 22px;
    height: 22px;
  }
}

/* April 2026 exact-match desktop treatments stage */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.treatments-reference-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  border: 1px solid rgba(27, 46, 53, 0.08);
  box-shadow:
    0 26px 72px rgba(29, 44, 52, 0.08),
    0 8px 24px rgba(29, 44, 52, 0.04);
}

.treatments-reference-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 94% 8%, rgba(232, 240, 237, 0.72), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 24%);
}

.treatments-reference-stage,
.treatments-reference-head,
.treatments-reference-grid {
  position: relative;
  z-index: 1;
}

.treatments-reference-stage {
  display: none;
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
}

.treatments-reference-stage-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  user-select: none;
  -webkit-user-drag: none;
}

.treatments-reference-hitareas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.treatments-reference-link {
  position: absolute;
  display: block;
  pointer-events: auto;
  border-radius: 32px;
  outline: none;
}

.treatments-reference-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 0 0 6px rgba(16, 23, 28, 0.26);
}

.treatments-reference-link--prp {
  left: 2.75%;
  top: 9.8%;
  width: 44.15%;
  height: 47.15%;
}

.treatments-reference-link--iv {
  left: 49.2%;
  top: 9.8%;
  width: 47.9%;
  height: 47.15%;
}

.treatments-reference-link--prolotherapy {
  left: 2.75%;
  top: 60.1%;
  width: 30.15%;
  height: 33.45%;
}

.treatments-reference-link--scar {
  left: 34.9%;
  top: 60.1%;
  width: 30.15%;
  height: 33.45%;
}

.treatments-reference-link--ozone {
  left: 66.35%;
  top: 60.1%;
  width: 30.65%;
  height: 33.45%;
}

.treatments-reference-link--nad,
.treatments-reference-link--nutritional-iv,
.treatments-reference-link--iron {
  top: 39.9%;
  height: 5.8%;
  border-radius: 999px;
}

.treatments-reference-link--nad {
  left: 51.15%;
  width: 6.1%;
}

.treatments-reference-link--nutritional-iv {
  left: 57.55%;
  width: 9.05%;
}

.treatments-reference-link--iron {
  left: 67.35%;
  width: 8.9%;
}

@media (max-width: 940px) {
  .treatments-reference-shell {
    padding: clamp(1.1rem, 3vw, 1.45rem);
  }
}

@media (max-width: 760px) {
  .treatments-reference-shell {
    padding: 1rem;
    border-radius: 28px;
  }
}

@media (min-width: 941px) {
  .treatments-reference-stage {
    display: block;
  }

  .treatments-reference-head,
  .treatments-reference-grid {
    display: none;
  }
}


