:root {
  --deep-teal: #173f3b;
  --deep-teal-2: #225550;
  --teal: #53a5aa;
  --teal-dark: #2c7c80;
  --coral: #b86164;
  --coral-dark: #97494d;
  --logo-heart: #af5d5f;
  --rose: #e9b9b6;
  --rose-pale: #f7e7e4;
  --ivory: #fffaf6;
  --aqua: #e9f4f2;
  --sage: #d7e7e2;
  --ink: #263532;
  --muted: #5c6d69;
  --line: #d9e5e1;
  --white: #fff;
  --shadow: 0 24px 70px rgba(23, 63, 59, 0.12);
  --shadow-soft: 0 14px 42px rgba(23, 63, 59, 0.08);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 42px;
  --page: min(1240px, calc(100% - 48px));
  --font: "Avenir Next", Avenir, Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  color: var(--deep-teal);
  font-size: clamp(3.1rem, 5.8vw, 6.1rem);
  line-height: 0.97;
}

h2 {
  margin-bottom: 22px;
  color: var(--deep-teal);
  font-size: clamp(2.4rem, 4.5vw, 4.75rem);
}

h3 {
  margin-bottom: 14px;
  color: var(--deep-teal);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

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

::selection {
  color: var(--white);
  background: var(--coral);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--deep-teal);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  --eyebrow-accent: var(--teal);
  --eyebrow-primary: var(--coral-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  flex: 0 0 auto;
  width: 30px;
  height: 8px;
  content: "";
  background: radial-gradient(circle at 4px 4px, var(--eyebrow-primary) 0 3px, transparent 3.5px), radial-gradient(circle at 15px 4px, var(--eyebrow-accent) 0 3px, transparent 3.5px), radial-gradient(circle at 26px 4px, var(--eyebrow-primary) 0 3px, transparent 3.5px);
  transform: none;
}

.eyebrow-light {
  --eyebrow-accent: rgba(255, 255, 255, 0.72);
  --eyebrow-primary: var(--rose);
  color: var(--rose);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  border: 1px solid var(--deep-teal);
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-teal);
  box-shadow: 0 10px 28px rgba(23, 63, 59, 0.16);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 14px 34px rgba(184, 97, 100, 0.24);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--deep-teal);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--deep-teal);
  border-color: var(--teal);
  background: var(--aqua);
}

.button-light {
  color: var(--deep-teal);
  border-color: var(--white);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
  box-shadow: none;
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.82rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 246, 0.97);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(23, 63, 59, 0.08);
  box-shadow: 0 9px 30px rgba(23, 63, 59, 0.07);
}

.header-inner {
  width: var(--page);
  height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 176px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 152px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.primary-nav a {
  position: relative;
  color: var(--deep-teal);
  font-size: 0.82rem;
  font-weight: 650;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-phone {
  position: relative;
  padding: 3px 18px 3px 17px;
  border-right: 1px solid rgba(23, 63, 59, 0.15);
  display: grid;
  grid-template-columns: 7px auto;
  align-items: center;
  column-gap: 9px;
  color: var(--deep-teal);
  line-height: 1.05;
}

.header-phone::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  grid-row: 1 / span 2;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(233, 185, 182, 0.25);
  content: "";
}

.header-phone span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.header-phone:hover strong {
  color: var(--coral-dark);
}

.header-nurse-cta {
  position: relative;
  min-height: 48px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(23, 63, 59, 0.16);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  color: var(--deep-teal);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(23, 63, 59, 0.09);
  font-size: 0.78rem;
  font-weight: 750;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.header-nurse-cta i {
  position: relative;
  width: 25px;
  height: 20px;
  border: 1.5px solid var(--coral);
  border-radius: 9px;
  flex: 0 0 25px;
}

.header-nurse-cta i::before {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 11px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--coral-dark);
  box-shadow: 0 4px 0 var(--coral-dark);
  content: "";
}

.header-nurse-cta i::after {
  position: absolute;
  bottom: -4px;
  left: 5px;
  border-top: 5px solid var(--coral);
  border-right: 5px solid transparent;
  content: "";
}

.header-nurse-cta:hover {
  color: var(--white);
  border-color: var(--deep-teal);
  background: var(--deep-teal);
  box-shadow: 0 14px 32px rgba(23, 63, 59, 0.17);
  transform: translateY(-1px);
}

.header-nurse-cta:hover i {
  border-color: var(--rose);
}

.header-nurse-cta:hover i::before {
  background: var(--rose);
  box-shadow: 0 4px 0 var(--rose);
}

.header-nurse-cta:hover i::after {
  border-top-color: var(--rose);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 80px);
  overflow: hidden;
  background: var(--ivory);
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: -12vw;
  bottom: -32vw;
  width: 68vw;
  height: 68vw;
  border-radius: 50%;
  opacity: 0.3;
  background: radial-gradient(circle, rgba(233, 185, 182, 0.32), transparent 64%);
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #d7dfd8;
  opacity: 0.88;
  animation: hero-media-arrive 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) contrast(0.97);
  transform: scale(1.035);
  animation: hero-camera-settle 920ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ivory) 0%, rgba(255, 250, 246, 0.99) 26%, rgba(255, 250, 246, 0.92) 40%, rgba(255, 250, 246, 0.34) 58%, transparent 73%),
    linear-gradient(0deg, rgba(23, 63, 59, 0.14), transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1480px, calc(100% - 48px));
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  padding: 40px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 750px;
}

.hero h1 span {
  display: block;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 3.65vw, 4rem);
}

.hero h1 span:last-child {
  color: var(--coral);
  font-size: 0.9em;
}

.js .hero-eyebrow,
.js .hero h1 span,
.js .hero-lede,
.js .hero-actions,
.js .hero .microcopy {
  opacity: 0;
  transform: translateY(12px);
  animation: hero-copy-arrive 480ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .hero-eyebrow { animation-delay: 60ms; }
.js .hero h1 span:nth-child(1) { animation-delay: 110ms; }
.js .hero h1 span:nth-child(2) { animation-delay: 160ms; }
.js .hero h1 span:nth-child(3) { animation-delay: 210ms; }
.js .hero-lede { animation-delay: 260ms; }
.js .hero-actions { animation-delay: 310ms; }
.js .hero .microcopy { animation-delay: 360ms; }

.hero-eyebrow::before {
  display: none;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  line-height: 1.58;
}

.hero-actions {
  margin-bottom: 19px;
}

.microcopy {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.55;
}

.microcopy span {
  display: block;
}

@keyframes hero-media-arrive {
  to { opacity: 1; }
}

@keyframes hero-camera-settle {
  to { transform: scale(1.01); }
}

@keyframes hero-copy-arrive {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 34px;
  height: 20px;
  overflow: visible;
}

.scroll-cue i::before,
.scroll-cue i::after {
  position: absolute;
  left: 50%;
  display: block;
  width: 20px;
  height: 9px;
  border-bottom: 2px solid var(--coral);
  border-radius: 0 0 70% 70%;
  content: "";
  opacity: 0;
  transform: translate3d(-50%, -3px, 0) scale(0.72);
  animation: scroll-ripple 2.8s 0.9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.scroll-cue i::after {
  width: 27px;
  height: 12px;
  border-bottom-color: var(--teal);
  animation-delay: 1.32s;
}

@keyframes chip-arrive {
  from { opacity: 0; transform: translateY(15px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scroll-ripple {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -3px, 0) scale(0.62, 0.72);
  }
  24% {
    opacity: 0.85;
  }
  68% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, 12px, 0) scale(1.08, 0.9);
  }
}

.section {
  padding: clamp(92px, 11vw, 154px) max(24px, calc((100vw - 1240px) / 2));
}

.section-tint {
  background: var(--aqua);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::after {
  content: none;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading-left {
  max-width: 810px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.section-heading-left .eyebrow {
  justify-content: flex-start;
}

.section-heading-left .eyebrow::after {
  display: none;
}

.section-heading-left > p:last-child {
  margin-left: 0;
}

.care-flow {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: var(--ivory);
}

.care-flow > .heart-scroll-stage {
  z-index: 1;
}

.care-flow > .situations {
  position: relative;
  z-index: auto;
  isolation: auto;
}

.care-flow > .services {
  position: relative;
  z-index: 3;
  isolation: isolate;
  background: var(--aqua);
}

.care-flow .situations > *,
.care-flow .services > :not(.services-flow-line) {
  z-index: 2;
}

.situations {
  --flow-x: 0px;
  --flow-y: 0px;
  --flow-rotate: -8deg;
  --flow-scale: 0.96;
  --flow-alt-x: 0px;
  --flow-alt-y: 0px;
  --flow-alt-rotate: 7deg;
  --flow-opacity: 0.54;
  --flow-alt-opacity: 0.38;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

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

.situations-intro {
  --situations-copy-x: 0px;
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - clamp(92px, 11vw, 154px));
  min-height: calc(100svh - clamp(92px, 11vw, 154px));
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.situations-copy-track {
  position: relative;
  z-index: 2;
  grid-column: 2;
  transform: translate3d(var(--situations-copy-x), 0, 0);
  will-change: transform;
}

.situations-intro .section-heading {
  max-width: 760px;
  margin: 0;
}

.heart-scroll-ambient {
  --heart-ambient-entry-x: 260px;
  --heart-ambient-entry-y: 48px;
  --heart-ambient-flow-x: -70px;
  --heart-ambient-flow-reverse: 31.5px;
  --heart-ambient-wave-y: 0px;
  --heart-ambient-wave-rotate: -2deg;
  --heart-ambient-wave-reverse-y: 0px;
  --heart-ambient-wave-reverse-rotate: 1.5deg;
  --heart-ambient-opacity: 0;
  --heart-ambient-primary-opacity: 0;
  --heart-ambient-secondary-opacity: 0;
  position: absolute;
  z-index: 0;
  top: 0;
  right: -5vw;
  width: min(1320px, 84vw);
  height: 100%;
  overflow: hidden;
  opacity: var(--heart-ambient-opacity);
  pointer-events: none;
  contain: layout paint style;
  transform: translate3d(var(--heart-ambient-entry-x), var(--heart-ambient-entry-y), 0);
  will-change: opacity, transform;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 11%, #000 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0, #000 11%, #000 92%, transparent 100%);
}

.heart-scroll-ambient::before,
.heart-scroll-ambient::after {
  position: absolute;
  content: "";
  will-change: opacity, transform;
}

.heart-scroll-ambient::before {
  top: 11%;
  right: -12%;
  width: 122%;
  height: 46%;
  border-radius: 44% 56% 58% 42% / 38% 42% 58% 62%;
  background: linear-gradient(116deg, transparent 4%, rgba(38, 109, 108, 0.1) 22%, rgba(58, 142, 145, 0.25) 46%, rgba(190, 109, 112, 0.19) 67%, transparent 93%);
  opacity: var(--heart-ambient-primary-opacity);
  transform: translate3d(var(--heart-ambient-flow-x), var(--heart-ambient-wave-y), 0) rotate(var(--heart-ambient-wave-rotate)) skewX(-5deg);
}

.heart-scroll-ambient::after {
  right: -7%;
  bottom: 12%;
  width: 112%;
  height: 34%;
  border-radius: 57% 43% 41% 59% / 52% 61% 39% 48%;
  background: linear-gradient(102deg, transparent 2%, rgba(255, 255, 255, 0.28) 20%, rgba(55, 137, 140, 0.21) 48%, rgba(184, 97, 100, 0.16) 70%, transparent 97%);
  opacity: var(--heart-ambient-secondary-opacity);
  transform: translate3d(var(--heart-ambient-flow-reverse), var(--heart-ambient-wave-reverse-y), 0) rotate(var(--heart-ambient-wave-reverse-rotate)) skewX(8deg);
}

.heart-scroll-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  margin-bottom: -100vh;
  margin-bottom: -100svh;
  overflow: visible;
  isolation: isolate;
  pointer-events: none;
}

.heart-scroll-scene::before {
  position: absolute;
  z-index: 0;
  inset: -25% -20%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(23, 63, 59, 0.18), rgba(83, 165, 170, 0.08) 39%, rgba(255, 250, 246, 0) 73%);
  content: "";
  opacity: var(--heart-aura-opacity);
  pointer-events: none;
}

.heart-scroll-scene {
  --heart-path-progress: 0;
  --heart-core-opacity: 1;
  --heart-outline-opacity: 1;
  --heart-aura-opacity: 0.52;
  --heart-scene-scale: 0.98;
  --heart-drift-x: -900px;
  --heart-drift-y: 0px;
  --heart-entry-delay: 0ms;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(0px, calc(25vw - 336px));
  width: clamp(440px, 42vw, 620px);
  aspect-ratio: 69 / 58;
  pointer-events: none;
  contain: layout style;
  transform: translate3d(var(--heart-drift-x), calc(-50% + var(--heart-drift-y)), 0) scale(var(--heart-scene-scale));
  transform-origin: center;
  will-change: transform;
}

.heart-scroll-scene.is-entered {
  animation: heart-scene-enter 1260ms cubic-bezier(0.16, 1, 0.3, 1) var(--heart-entry-delay) both;
}

@keyframes heart-scene-enter {
  0% {
    opacity: 0;
    transform: translate3d(-64vw, calc(-50% + var(--heart-drift-y)), 0) scale(0.94);
  }
  58% {
    opacity: 1;
    transform: translate3d(24px, calc(-50% + var(--heart-drift-y)), 0) scale(1.075);
  }
  78% {
    opacity: 1;
    transform: translate3d(-7px, calc(-50% + var(--heart-drift-y)), 0) scale(1.045);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, calc(-50% + var(--heart-drift-y)), 0) scale(1.055);
  }
}

.heart-scroll-scene svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.heart-scroll-core {
  fill: var(--logo-heart);
  opacity: var(--heart-core-opacity);
}

.heart-scroll-trace {
  --heart-trace-length: 1000px;
  --heart-trace-offset: 1000px;
  fill: none;
  stroke: #fff;
  stroke-dasharray: var(--heart-trace-length);
  stroke-dashoffset: var(--heart-trace-offset);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.05;
}

.heart-scroll-trace {
  opacity: var(--heart-outline-opacity);
}

.section-link {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin: 45px auto 0;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--deep-teal);
  font-size: 0.87rem;
  font-weight: 750;
  transition: color 180ms ease, gap 180ms ease;
}

.section-link:hover {
  gap: 16px;
  color: var(--coral-dark);
}

.section-link-inline {
  margin: 26px 0 0;
}

.journey-mark {
  --journey-dot: var(--coral-dark);
  --journey-destination: var(--teal);
  --journey-arrival-dot: var(--white);
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 28px;
  display: inline-block;
  overflow: hidden;
  border: 1px solid rgba(52, 126, 125, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-style: normal;
  transition:
    background 320ms ease,
    border-color 320ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-mark::before,
.journey-mark::after {
  position: absolute;
  top: 50%;
  border-radius: 999px;
  content: "";
}

.journey-mark::before {
  z-index: 2;
  left: 8px;
  width: 8px;
  height: 8px;
  background: var(--journey-dot);
  transform: translateY(-50%);
  transition:
    background 300ms ease,
    transform 580ms cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-mark::after {
  right: 6px;
  width: 9px;
  height: 16px;
  background: var(--journey-destination);
  opacity: 0.2;
  transform: translateY(-50%);
  transition:
    opacity 360ms ease,
    width 580ms cubic-bezier(0.16, 1, 0.3, 1);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.situation-card {
  --entry-x: 0px;
  --entry-y: 40px;
  --entry-rotate: 0deg;
  --exit-x: 0px;
  --exit-y: 0px;
  --exit-scale: 1;
  --exit-rotate: 0deg;
  --exit-opacity: 1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 192px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  transition:
    border-color 260ms ease,
    border-radius 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease,
    scale 420ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.situation-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(132deg, rgba(255, 235, 228, 0.94), rgba(235, 248, 246, 0.88));
  clip-path: polygon(0 84%, 100% 100%, 100% 100%, 0 100%);
  content: "";
  opacity: 0.62;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    clip-path 680ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 360ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.situation-card::after {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  content: "";
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.situation-card:not(.situation-card-featured) {
  justify-content: flex-start;
  gap: 46px;
}

.situation-card .card-number {
  color: var(--coral-dark);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: letter-spacing 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.situation-card strong {
  max-width: 245px;
  color: var(--deep-teal);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  font-weight: 650;
  line-height: 1.4;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.situation-card > .journey-mark {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
}

.situation-card-featured {
  width: calc(50% - 6px);
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 164px;
  color: var(--deep-teal);
  border: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.52), transparent 42%),
    linear-gradient(125deg, #fde4e5 0%, #f3c2c3 68%, #d08a8d 100%);
}

.situation-card-featured::before {
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.34), rgba(255, 228, 229, 0.18));
}

.situation-card-featured::after {
  background: rgba(175, 93, 95, 0.48);
}

.situation-card-featured .journey-mark,
.service-card-teal .journey-mark,
.resource-feature .journey-mark {
  --journey-dot: var(--rose);
  --journey-destination: var(--white);
  --journey-arrival-dot: var(--deep-teal);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.situation-card-featured .card-number,
.situation-card-featured strong {
  color: var(--deep-teal);
}

.situation-card-featured .card-number {
  color: var(--coral-dark);
}

.situation-card-featured .journey-mark {
  --journey-dot: var(--coral-dark);
  --journey-destination: var(--teal);
  --journey-arrival-dot: var(--deep-teal);
  border-color: rgba(151, 73, 77, 0.24);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.situation-card-featured strong {
  font-size: 1.4rem;
}

.card-action {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 750;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .situation-grid:has(.situation-card:hover) .situation-card:not(:hover) {
    scale: 0.996;
  }

  .situation-card:hover,
  .situation-card:focus-visible {
    z-index: 2;
    border-color: var(--teal);
    border-radius: 27px 19px 27px 19px;
    box-shadow: 0 20px 52px rgba(26, 68, 65, 0.11);
    scale: 1.006;
    translate: 0 -2px;
  }

  .situation-card:hover::before,
  .situation-card:focus-visible::before {
    opacity: 1;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
    transform: translateY(0);
  }

  .situation-card:hover::after,
  .situation-card:focus-visible::after {
    transform: scaleX(1);
  }

  .situation-card:hover .card-number,
  .situation-card:focus-visible .card-number {
    letter-spacing: 0.15em;
    transform: translateX(3px);
  }

  .situation-card:hover strong,
  .situation-card:focus-visible strong {
    transform: translateY(-4px);
  }

  .situation-card-featured:hover .card-action,
  .situation-card-featured:focus-visible .card-action {
    transform: translateX(5px);
  }

  .situation-card-featured:hover,
  .situation-card-featured:focus-visible {
    border-color: transparent;
  }

  .situation-card:hover .journey-mark,
  .situation-card:focus-visible .journey-mark,
  .service-card:hover .journey-mark,
  .service-card:focus-visible .journey-mark,
  .resource-card:hover .journey-mark,
  .resource-card:focus-visible .journey-mark,
  .section-link:hover .journey-mark,
  .section-link:focus-visible .journey-mark {
    border-color: rgba(52, 126, 125, 0.52);
    background: rgba(255, 255, 255, 0.82);
    transform: translateX(2px);
  }

  .situation-card:hover .journey-mark::before,
  .situation-card:focus-visible .journey-mark::before,
  .service-card:hover .journey-mark::before,
  .service-card:focus-visible .journey-mark::before,
  .resource-card:hover .journey-mark::before,
  .resource-card:focus-visible .journey-mark::before,
  .section-link:hover .journey-mark::before,
  .section-link:focus-visible .journey-mark::before {
    background: var(--journey-arrival-dot);
    transform: translate(20px, -50%) scale(0.72);
  }

  .situation-card:hover .journey-mark::after,
  .situation-card:focus-visible .journey-mark::after,
  .service-card:hover .journey-mark::after,
  .service-card:focus-visible .journey-mark::after,
  .resource-card:hover .journey-mark::after,
  .resource-card:focus-visible .journey-mark::after,
  .section-link:hover .journey-mark::after,
  .section-link:focus-visible .journey-mark::after {
    width: 22px;
    opacity: 1;
  }

  .situation-card-featured:hover .journey-mark,
  .situation-card-featured:focus-visible .journey-mark,
  .service-card-teal:hover .journey-mark,
  .service-card-teal:focus-visible .journey-mark,
  .resource-feature:hover .journey-mark,
  .resource-feature:focus-visible .journey-mark {
    border-color: rgba(255, 255, 255, 0.64);
    background: rgba(255, 255, 255, 0.2);
  }
}

.js [data-situation-grid] .situation-card {
  opacity: 0;
  clip-path: inset(16% 7% 14% 7% round 34px);
  transform: translate3d(var(--entry-x), var(--entry-y), 0) scale(0.945) rotateZ(var(--entry-rotate));
  transform-origin: 50% 100%;
  will-change: opacity, clip-path, transform;
}

.js [data-situation-grid] .situation-card .card-number,
.js [data-situation-grid] .situation-card strong,
.js [data-situation-grid] .situation-card > .journey-mark,
.js [data-situation-grid] .situation-card .card-action {
  opacity: 0;
  translate: 0 12px;
}

.js [data-situation-grid].is-grid-visible .situation-card {
  opacity: var(--exit-opacity);
  clip-path: inset(0 round 22px);
  transform: translate3d(var(--exit-x), var(--exit-y), 0) scale(var(--exit-scale)) rotateZ(var(--exit-rotate));
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--entry-delay, 0ms),
    clip-path 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--entry-delay, 0ms),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1) var(--entry-delay, 0ms),
    border-color 260ms ease,
    border-radius 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease,
    scale 420ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-situation-grid].is-grid-visible .situation-card .card-number,
.js [data-situation-grid].is-grid-visible .situation-card strong,
.js [data-situation-grid].is-grid-visible .situation-card > .journey-mark,
.js [data-situation-grid].is-grid-visible .situation-card .card-action {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 520ms ease calc(var(--entry-delay, 0ms) + 240ms),
    translate 650ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--entry-delay, 0ms) + 210ms);
}

.js [data-situation-grid].is-motion-settled .situation-card {
  transition:
    border-color 260ms ease,
    border-radius 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease,
    scale 420ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: auto;
}

.js [data-situation-grid].is-motion-settled .situation-card .card-number,
.js [data-situation-grid].is-motion-settled .situation-card strong,
.js [data-situation-grid].is-motion-settled .situation-card > .journey-mark,
.js [data-situation-grid].is-motion-settled .situation-card .card-action {
  transition-delay: 0ms;
}

.js .situations .section-heading .eyebrow::before,
.js .situations .section-heading .eyebrow::after {
  opacity: 0;
  transform: translateY(0) scale(0);
  transition: opacity 400ms ease 180ms, transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 180ms;
}

.js .situations .section-heading.is-revealed .eyebrow::before,
.js .situations .section-heading.is-revealed .eyebrow::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.services {
  --flow-x: 0px;
  --flow-y: 0px;
  --flow-rotate: 9deg;
  --flow-scale: 1;
  --flow-alt-x: 0px;
  --flow-alt-y: 0px;
  --flow-alt-rotate: -6deg;
  --flow-opacity: 0.46;
  --flow-alt-opacity: 0.32;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.services-flow-line {
  position: absolute !important;
  z-index: 1 !important;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.services-flow-line svg {
  display: block;
  width: 100%;
  height: 100%;
}

.services-flow-line path {
  --heart-trace-length: 2400px;
  --heart-trace-offset: 2400px;
  fill: none;
  stroke: #fff;
  stroke-dasharray: var(--heart-trace-length);
  stroke-dashoffset: var(--heart-trace-offset);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: clamp(6px, 0.65vw, 10px);
  opacity: 0.58;
  vector-effect: non-scaling-stroke;
}

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

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 63, 59, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 20px rgba(23, 63, 59, 0.04);
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card-wide {
  grid-column: span 1;
}

.service-card-top {
  min-height: 92px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.service-index {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(151, 73, 77, 0.18);
  border-radius: 11px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.icon-pair {
  --service-icon-size: 72px;
  position: relative;
  width: max-content;
  min-width: var(--service-icon-size);
  height: 88px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.icon-pair::after {
  position: absolute;
  right: 3px;
  bottom: 0;
  left: 3px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 124, 128, 0.24) 18%, rgba(184, 97, 100, 0.26) 82%, transparent);
  content: "";
}

.icon-pair > img,
.draw-icon-stage,
.icon-pair > .service-draw-icon {
  flex: 0 0 var(--service-icon-size);
  width: var(--service-icon-size);
  height: var(--service-icon-size);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-pair > img,
.draw-icon-stage img,
.icon-pair > .service-draw-icon {
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(23, 63, 59, 0.1));
}

.draw-icon-stage {
  position: relative;
  display: block;
  isolation: isolate;
}

.draw-icon-stage::before {
  content: none;
}

.draw-icon-stage img,
.draw-icon-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.draw-icon-stage canvas {
  z-index: 1;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 10px 15px rgba(23, 63, 59, 0.08));
}

.draw-icon-stage.is-draw-ready img {
  opacity: 0;
}

.draw-icon-stage.is-draw-fallback img {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

.draw-icon-stage.is-draw-fallback.is-complete img {
  opacity: 1;
  clip-path: inset(0);
}

.draw-icon-stage.is-drawing canvas {
  filter: drop-shadow(0 8px 13px rgba(23, 63, 59, 0.12)) saturate(1.08);
}

.draw-icon-stage.is-complete img {
  opacity: 1;
}

.draw-icon-stage.is-complete canvas {
  opacity: 0;
}

.icon-pair.icon-single {
  width: max-content;
}

.icon-pair.icon-trio {
  --service-icon-size: 61px;
  width: max-content;
  gap: 3px;
}

.service-card h3 {
  max-width: 360px;
  font-size: clamp(1.35rem, 1.55vw, 1.62rem);
}

.service-card p {
  max-width: 650px;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-card-link {
  width: max-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-teal);
  font-size: 0.82rem;
  font-weight: 750;
}

.service-card-coral {
  background: linear-gradient(145deg, #f8e5e2, #fff8f5);
}

.service-card-teal {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(255,255,255,0.13), transparent 34%),
    linear-gradient(145deg, var(--deep-teal), #286c68);
}

.service-card-teal h3,
.service-card-teal .service-card-link,
.service-card-teal .service-index {
  color: var(--white);
}

.service-card-teal p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card-rehab {
  background: linear-gradient(110deg, rgba(255,255,255,0.93), rgba(215,231,226,0.82));
}

.care-moment-gallery {
  margin: clamp(72px, 8vw, 108px) 0 78px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.care-moment {
  --care-parallax-y: 0px;
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 59, 0.11);
  border-radius: 28px;
  background: #d8e6e3;
  box-shadow: 0 24px 65px rgba(23, 63, 59, 0.12);
  translate: 0 var(--care-parallax-y);
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .js .care-moment {
    will-change: translate;
  }
}

.care-moment:nth-child(1) {
  border-radius: 28px 94px 28px 28px;
}

.care-moment:nth-child(2) {
  margin-top: 48px;
}

.care-moment:nth-child(3) {
  border-radius: 94px 28px 28px 28px;
}

.care-moment::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 68%, rgba(23, 63, 59, 0.08));
  content: "";
  pointer-events: none;
}

.care-moment picture,
.care-moment img {
  width: 100%;
  height: 100%;
  display: block;
}

.care-moment img {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.care-moment-meal img {
  object-position: 40% center;
}

.care-moment-nursing img {
  object-position: 51% center;
}

.care-moment-mobility img {
  object-position: 50% center;
}

@media (hover: hover) and (pointer: fine) {
  .care-moment:hover img {
    transform: scale(1.025);
  }
}

@media (min-width: 1121px) and (prefers-reduced-motion: no-preference) {
  .js .care-moment[data-reveal]:nth-child(1) {
    transition-delay: 0ms;
  }

  .js .care-moment[data-reveal]:nth-child(2) {
    transition-delay: 130ms;
  }

  .js .care-moment[data-reveal]:nth-child(3) {
    transition-delay: 260ms;
  }

  .js .care-moment[data-reveal] picture {
    clip-path: inset(100% 0 0 0 round 28px);
    transition: clip-path 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .care-moment[data-reveal].is-revealed picture {
    clip-path: inset(0 0 0 0 round 28px);
  }
}

.service-icon {
  width: 72px;
  height: 78px;
  display: grid;
  place-items: center;
  flex: 0 0 72px;
  color: var(--deep-teal);
  background: transparent;
  border-bottom: 1px solid rgba(44, 124, 128, 0.24);
}

.service-icon svg {
  width: 72px;
}

.service-icon svg,
.icon-pair > .service-draw-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.service-stroke-coral {
  stroke: var(--coral-dark);
}

.service-stroke-teal {
  stroke: var(--teal);
}

.service-card-teal .service-stroke-coral {
  stroke: var(--rose);
}

.service-card-teal .service-stroke-teal {
  stroke: var(--aqua);
}

.service-draw-icon {
  --icon-draw-delay: 0ms;
}

.icon-pair .service-draw-icon:nth-child(2) {
  --icon-draw-delay: 110ms;
}

.icon-pair .service-draw-icon:nth-child(3) {
  --icon-draw-delay: 220ms;
}

.js .service-draw-icon .service-icon-ink path {
  --path-draw-delay: 0ms;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}

.js .service-card.is-icon-drawing .service-icon-ink path {
  animation: service-icon-draw 720ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: calc(var(--icon-draw-delay) + var(--path-draw-delay));
}

.js .service-card.is-icon-drawing .service-icon-ink path:nth-child(2) {
  --path-draw-delay: 75ms;
}

.js .service-card.is-icon-drawing .service-icon-ink path:nth-child(3) {
  --path-draw-delay: 140ms;
}

.js .service-card.is-icon-drawing .service-icon-ink path:nth-child(4) {
  --path-draw-delay: 205ms;
}

.js .service-card.is-icon-drawing .service-icon-ink path:nth-child(5) {
  --path-draw-delay: 270ms;
}

.js .service-card-rehab.is-icon-drawing .service-icon-ink path.rehab-person-left {
  --path-draw-delay: 0ms;
}

.js .service-card-rehab.is-icon-drawing .service-icon-ink path.rehab-person-center {
  --path-draw-delay: 75ms;
}

.js .service-card-rehab.is-icon-drawing .service-icon-ink path.rehab-person-right {
  --path-draw-delay: 150ms;
}

@keyframes service-icon-draw {
  0% { opacity: 0; stroke-dashoffset: 1; }
  12% { opacity: 1; }
  100% { opacity: 1; stroke-dashoffset: 0; }
}

.care-standard {
  --flow-x: 0px;
  --flow-y: 0px;
  --flow-rotate: -7deg;
  --flow-scale: 1;
  --flow-alt-x: 0px;
  --flow-alt-y: 0px;
  --flow-alt-rotate: 5deg;
  --flow-opacity: 0.5;
  --flow-alt-opacity: 0.46;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) max(24px, calc((100vw - 1240px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep-teal);
}

.care-standard::before {
  position: absolute;
  z-index: 0;
  right: -30%;
  bottom: -70%;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 165, 170, 0.18), transparent 68%);
  content: "";
  opacity: var(--flow-opacity);
  pointer-events: none;
  transform: translate3d(var(--flow-x), var(--flow-y), 0) scale(var(--flow-scale));
}

.care-standard-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  align-items: center;
  gap: 80px;
}

.standard-intro h2 {
  color: var(--white);
}

.standard-intro > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
}

.care-standard-photo {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 470px;
  aspect-ratio: 5 / 4;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 96px 30px 96px 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.care-standard-photo::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(155deg, transparent 54%, rgba(23, 63, 59, 0.34));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.care-standard-photo picture {
  position: absolute;
  inset: 0;
}

.care-standard-photo picture,
.care-standard-photo img {
  width: 100%;
  height: 100%;
  display: block;
}

.care-standard-photo img {
  object-fit: cover;
  object-position: 60% center;
}

.care-orbit {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.orbit-thread {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: url(#orbitGradient);
  stroke-dasharray: 10 13;
  stroke-linecap: round;
  stroke-width: 2.5;
}

.orbit-thread circle {
  opacity: 0.22;
  stroke-dasharray: 2 10;
}

.orbit-center,
.orbit-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  text-align: center;
}

.orbit-center {
  inset: 30%;
  padding: 25px;
  background: linear-gradient(145deg, rgba(184, 97, 100, 0.9), rgba(151, 73, 77, 0.92));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.orbit-center span,
.orbit-item span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-center strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.35;
}

.orbit-item {
  width: 128px;
  height: 128px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.orbit-item strong {
  line-height: 1.3;
}

.orbit-item-one {
  top: 8%;
  left: 14%;
}

.orbit-item-two {
  top: 22%;
  right: 2%;
}

.orbit-item-three {
  right: 22%;
  bottom: 4%;
}

.standard-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
}

.standard-cards article {
  min-height: 280px;
  padding: 32px;
  background: rgba(23, 63, 59, 0.9);
}

.standard-cards article > span {
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.standard-cards h3 {
  margin-top: 45px;
  color: var(--white);
}

.standard-cards p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.care-starts {
  overflow: hidden;
}

.care-starts-intro {
  margin-bottom: 68px;
  display: grid;
  grid-template-columns: minmax(520px, 1.18fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}

.care-starts-intro .section-heading {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

.care-starts-photo {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 59, 0.12);
  border-radius: 34px 112px 34px 34px;
  background: #d9e6e3;
  box-shadow: 0 30px 80px rgba(23, 63, 59, 0.13);
}

.care-starts-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  box-shadow: inset 0 -70px 90px rgba(23, 63, 59, 0.08);
  content: "";
  pointer-events: none;
}

.care-starts-photo picture,
.care-starts-photo img {
  width: 100%;
  height: 100%;
  display: block;
}

.care-starts-photo img {
  object-fit: cover;
  object-position: 56% center;
}

@media (min-width: 1121px) and (prefers-reduced-motion: no-preference) {
  .js .care-starts-photo[data-reveal] picture {
    clip-path: inset(0 100% 0 0 round 34px 112px 34px 34px);
    transition: clip-path 1050ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .care-starts-photo[data-reveal] img {
    transform: scale(1.045);
    transition: transform 1300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .care-starts-photo[data-reveal].is-revealed picture {
    clip-path: inset(0 0 0 0 round 34px 112px 34px 34px);
  }

  .js .care-starts-photo[data-reveal].is-revealed img {
    transform: scale(1);
  }
}

.care-steps {
  position: relative;
  margin: 0;
  padding: 35px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
}

.care-steps::before {
  position: absolute;
  top: 74px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, var(--coral), var(--rose), var(--teal));
  content: "";
}

.care-steps li {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.step-number {
  width: 78px;
  height: 78px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--coral-dark);
  background: var(--ivory);
  box-shadow: 0 12px 34px rgba(23, 63, 59, 0.06);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.care-steps li:nth-child(even) .step-number {
  color: var(--teal-dark);
}

.care-steps h3 {
  font-size: 1.25rem;
}

.care-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.proof-layout {
  display: block;
}

.proof-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(38px, 7vw, 110px);
}

.proof-summary .eyebrow,
.proof-summary h2 {
  grid-column: 1;
}

.proof-summary h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.proof-summary > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 8px;
  color: var(--muted);
}

.stars {
  color: #e5a33f;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.google-review-rail {
  margin-top: clamp(46px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.google-rating-card,
.review-card {
  min-width: 0;
  min-height: 245px;
  padding: 25px;
  border: 1px solid rgba(23, 63, 59, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 50px rgba(23, 63, 59, 0.08);
}

.google-rating-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 241, 0.9));
}

.google-rating-label {
  color: var(--deep-teal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.google-rating-card .stars {
  margin-top: 18px;
}

.google-rating-card > strong {
  margin-top: 10px;
  color: var(--deep-teal);
  font-size: 2.4rem;
  line-height: 1;
}

.google-rating-card > span:not(.google-rating-label) {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.google-rating-card > b {
  margin-top: 18px;
  color: #4285f4;
  font-size: 0.92rem;
}

.google-rating-card > a {
  margin-top: 10px;
  color: var(--deep-teal);
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.google-rating-card > small {
  margin-top: auto;
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.59rem;
  line-height: 1.45;
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-card header {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
}

.review-card header > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.review-card header strong {
  overflow: hidden;
  color: var(--deep-teal);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card header small {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
}

.review-card header b {
  color: #4285f4;
  font-size: 1rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
}

.review-avatar-teal {
  background: var(--teal-dark);
}

.review-avatar-aqua {
  color: var(--deep-teal);
  background: var(--aqua);
}

.review-card blockquote {
  margin: 16px 0 0;
  color: var(--deep-teal);
  font-size: clamp(0.82rem, 1.05vw, 0.98rem);
  font-weight: 560;
  line-height: 1.52;
}

.areas {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 85px;
}

.areas-copy > p:not(.eyebrow) {
  margin-bottom: 29px;
  color: var(--muted);
}

.area-map {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(23, 63, 59, 0.1);
  border-radius: var(--radius-lg);
  background: #eaf4f2;
  box-shadow: 0 24px 70px rgba(23, 63, 59, 0.09);
}

.service-map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 1040;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 14px);
  background: #dceeed;
}

.service-map-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: grayscale(1) sepia(0.2) saturate(0.72) hue-rotate(118deg) brightness(1.04);
}

.service-map-canvas::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 43%),
    linear-gradient(0deg, rgba(220, 238, 237, 0.15), rgba(255, 250, 247, 0.2));
}

.service-map-key {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  margin: 0;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  color: var(--deep-teal);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(23, 63, 59, 0.08);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.service-map-key span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(181, 94, 95, 0.14);
}

.city-map {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.city-map a {
  position: absolute;
  left: var(--map-x);
  top: var(--map-y);
  padding: 7px 10px 7px 22px;
  border: 1px solid rgba(23, 63, 59, 0.14);
  border-radius: 999px;
  color: var(--deep-teal);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 19px rgba(23, 63, 59, 0.1);
  font-size: clamp(0.56rem, 0.7vw, 0.68rem);
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.city-map a::before {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 2px rgba(181, 94, 95, 0.16);
  content: "";
  transform: translateY(-50%);
}

.city-map a:hover,
.city-map a:focus-visible {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: 0 10px 26px rgba(124, 58, 60, 0.2);
  transform: translate(-50%, calc(-50% - 3px));
}

.city-map a:hover::before,
.city-map a:focus-visible::before {
  background: var(--white);
  box-shadow: none;
}

.service-map-credit {
  position: absolute;
  right: 13px;
  bottom: 11px;
  z-index: 3;
  padding: 5px 8px;
  border-radius: 6px;
  color: rgba(23, 63, 59, 0.72);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.48rem;
  font-weight: 650;
  line-height: 1;
}

.service-map-credit:hover,
.service-map-credit:focus-visible {
  color: var(--deep-teal);
  text-decoration: underline;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
}

.resource-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 63, 59, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.resource-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.resource-feature {
  grid-row: span 2;
  min-height: 588px;
  padding: 40px;
  color: var(--white);
  background: var(--deep-teal);
}

.resource-card h3 {
  max-width: 580px;
  margin-top: auto;
}

.resource-feature h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.resource-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.resource-feature p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
}

.resource-card > strong {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-teal);
  font-size: 0.8rem;
}

.resource-feature > strong {
  color: var(--white);
}

.resource-label {
  color: var(--coral-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-feature .resource-label {
  color: var(--rose);
}

.resource-number {
  position: absolute;
  top: 23px;
  right: 28px;
  color: rgba(23, 63, 59, 0.65);
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
}

.resource-feature-art {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 38px 0 45px auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(233, 185, 182, 0.22), rgba(83, 165, 170, 0.16));
}

.resource-feature-art::before {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.resource-feature-art span {
  color: var(--rose);
  font-size: 5.5rem;
  font-weight: 650;
  letter-spacing: -0.08em;
  line-height: 1;
}

.resource-feature-art svg {
  position: absolute;
  right: -25px;
  bottom: 0;
  width: 105px;
  height: 105px;
  padding: 21px;
  border-radius: 50%;
  background: var(--coral);
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.faqs {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 24px;
  color: var(--deep-teal);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--deep-teal);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i {
  border-color: var(--coral);
  background: var(--coral);
}

.faq-list details[open] summary i::before,
.faq-list details[open] summary i::after {
  background: var(--white);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > div {
  max-width: 690px;
  padding: 0 58px 27px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--deep-teal);
}

.final-cta-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.78);
}

.final-cta-media.is-loaded {
  background-image: url("assets/photography/caregiver-companionship.avif");
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 63, 59, 0.98) 0%, rgba(23, 63, 59, 0.78) 57%, rgba(23, 63, 59, 0.48) 100%),
    linear-gradient(0deg, rgba(23, 63, 59, 0.8), transparent 50%);
  content: "";
}

.final-cta::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(16, 45, 42, 0), #102d2a 88%);
  content: "";
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
}

.final-cta-inner h2 {
  max-width: 780px;
  color: var(--white);
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  padding: 75px 0 35px;
  color: rgba(255, 255, 255, 0.7);
  background: #102d2a;
}

.footer-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1.6fr) repeat(3, 0.72fr);
  gap: 55px;
}

.footer-brand img {
  width: 185px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.93);
}

.footer-brand p {
  max-width: 430px;
  font-size: 0.84rem;
}

.footer-inner h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-inner > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-inner a {
  font-size: 0.79rem;
}

.footer-inner a:hover {
  color: var(--rose);
}

.footer-fine {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.69rem;
}

.floating-actions {
  position: fixed;
  z-index: 75;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.floating-actions.is-ready {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-launcher,
.back-to-top {
  border: 0;
  color: var(--white);
  box-shadow: 0 16px 42px rgba(23, 63, 59, 0.26);
  cursor: pointer;
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.chat-launcher {
  min-height: 54px;
  padding: 12px 20px 12px 13px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  font-size: 0.78rem;
  font-weight: 750;
}

.chat-launcher:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.chat-launcher-icon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.chat-launcher-icon i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: var(--deep-teal);
  transform: translateY(8px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nurse-chat {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 88px;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(23, 63, 59, 0.12);
  border-radius: 25px;
  background: var(--white);
  box-shadow: 0 28px 75px rgba(23, 63, 59, 0.26);
  transform-origin: bottom right;
}

.nurse-chat[hidden] {
  display: none;
}

.nurse-chat.is-opening {
  animation: chat-open 230ms cubic-bezier(0.2, 1, 0.4, 1);
}

@keyframes chat-open {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  padding: 17px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--deep-teal);
}

.chat-identity {
  display: flex;
  align-items: center;
  gap: 11px;
}

.chat-identity > span:last-child {
  display: flex;
  flex-direction: column;
}

.chat-identity small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.61rem;
  line-height: 1.2;
}

.chat-identity strong {
  font-size: 0.86rem;
}

.chat-symbol {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
}

.chat-symbol svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.chat-header button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.chat-messages {
  min-height: 105px;
  padding: 18px;
  background: var(--ivory);
}

.chat-message {
  max-width: 88%;
  margin: 0 0 8px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 6px 15px 15px 15px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.78rem;
  line-height: 1.45;
}

.chat-message.is-response {
  margin-left: auto;
  border: 0;
  border-radius: 15px 6px 15px 15px;
  color: var(--white);
  background: var(--teal-dark);
}

.chat-choices {
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chat-choices button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep-teal);
  background: var(--white);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 650;
}

.chat-choices button:hover {
  border-color: var(--teal);
  background: var(--aqua);
}

.chat-contact {
  padding: 0 18px 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.chat-contact a {
  padding: 10px;
  border-radius: 12px;
  color: var(--white);
  background: var(--coral);
  text-align: center;
  font-size: 0.67rem;
  font-weight: 750;
}

.chat-contact a + a {
  color: var(--deep-teal);
  background: var(--aqua);
}

.chat-safety {
  margin: 0;
  padding: 10px 18px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.4;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 40px, 1000px);
  }

  .header-inner {
    grid-template-columns: 145px 1fr auto;
    gap: 18px;
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 0.75rem;
  }

  .heart-scroll-scene {
    display: none;
  }

  .situations-intro {
    min-height: 0;
    display: block;
  }

  .situations-intro .section-heading {
    margin-right: auto;
    margin-left: auto;
  }

  .situations-copy-track {
    transform: none;
    will-change: auto;
  }

  .heart-scroll-ambient {
    display: none;
  }

  .heart-scroll-stage {
    display: none;
  }

  .services-flow-line {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 20px;
  }

  .hero-stage {
    min-height: 585px;
  }

  .hero-photo-wrap {
    top: 95px;
    width: 440px;
  }

  .hero-chip-nurse {
    left: -18px;
  }

  .hero-chip-region {
    right: -10px;
  }

  .situation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .situation-card-featured {
    width: calc(66.666% - 4px);
  }

  .care-standard-inner {
    gap: 35px;
  }

  .care-starts-intro {
    grid-template-columns: minmax(460px, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
  }

  .proof-layout,
  .areas,
  .faqs {
    gap: 50px;
  }

  .footer-inner {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .situations-intro {
    margin-bottom: 42px;
  }

  .header-inner {
    height: 73px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .header-nurse-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    min-width: 82px;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--deep-teal);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 750;
  }

  .menu-button i,
  .menu-button i::before {
    width: 15px;
    height: 1.5px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-button i::before {
    display: block;
    transform: translateY(5px);
  }

  .menu-button[aria-expanded="true"] i {
    transform: translateY(2px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    padding: 130px 26px 50px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
    background: rgba(255, 250, 246, 0.98);
    backdrop-filter: blur(20px);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.28rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 75px 0 100px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.4rem, 10vw, 5.6rem);
  }

  .hero-stage {
    width: min(100%, 620px);
    min-height: 620px;
    margin: -25px auto 0;
  }

  .hero-photo-wrap {
    top: 85px;
    right: 25px;
    width: 500px;
  }

  .hero-chip-nurse {
    left: 7%;
  }

  .hero-chip-region {
    right: 2%;
    bottom: 75px;
  }

  .scroll-cue {
    display: none;
  }

  .situation-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .situation-card-featured {
    grid-column: span 2;
  }

  .service-card-wide {
    grid-column: span 1;
  }

  .situation-card-featured {
    width: 100%;
    justify-self: stretch;
  }

  .care-standard-inner {
    grid-template-columns: 1fr;
  }

  .standard-intro {
    max-width: 780px;
  }

  .care-orbit {
    max-width: 560px;
  }

  .care-standard-photo {
    max-width: 680px;
  }

  .standard-cards {
    grid-template-columns: 1fr;
  }

  .standard-cards article {
    min-height: 0;
  }

  .standard-cards h3 {
    margin-top: 25px;
  }

  .care-starts-intro {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .care-starts-intro .section-heading,
  .care-starts-photo {
    grid-column: 1;
    grid-row: auto;
  }

  .care-starts-intro .section-heading {
    max-width: 760px;
  }

  .care-starts-photo {
    width: 100%;
    min-height: 0;
  }

  .care-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 25px;
  }

  .care-steps::before {
    display: none;
  }

  .proof-layout,
  .areas,
  .faqs {
    grid-template-columns: 1fr;
  }

  .proof-summary {
    display: block;
  }

  .proof-summary h2 {
    margin-bottom: 22px;
  }

  .google-review-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-stack {
    width: min(100%, 650px);
    margin: 0 auto;
  }

  .areas-copy {
    max-width: 700px;
  }

  .area-map {
    width: min(100%, 760px);
  }

  .faq-intro {
    position: static;
    max-width: 700px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: 1.5fr repeat(2, 0.8fr);
  }

  .footer-inner > div:last-of-type {
    grid-column: 2;
  }
}

@media (max-width: 650px) {
  :root {
    --page: calc(100% - 30px);
  }

  h1 {
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .brand {
    width: 120px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-phone {
    padding: 2px 10px 2px 9px;
    border-right: 0;
    grid-template-columns: 6px auto;
    column-gap: 7px;
  }

  .header-phone::before {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(233, 185, 182, 0.23);
  }

  .header-phone span {
    margin-bottom: 2px;
    font-size: 0.5rem;
  }

  .header-phone strong {
    font-size: 0.73rem;
  }

  .menu-button {
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .menu-button span {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: min(46svh, 410px);
    min-height: 320px;
  }

  .hero-media img {
    object-position: 72% 44%;
  }

  .hero-media-shade {
    background: linear-gradient(0deg, rgba(23, 63, 59, 0.13), transparent 38%);
  }

  .hero-inner {
    width: var(--page);
    padding: 34px 0 82px;
    display: block;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11vw, 3.05rem);
    line-height: 1.01;
  }

  .hero h1 span {
    display: inline;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-eyebrow {
    max-width: 330px;
    margin-bottom: 14px;
    font-size: 0.67rem;
    letter-spacing: 0.11em;
  }

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

  .chat-launcher {
    min-width: 49px;
    padding: 9px;
  }

  .chat-launcher > span:last-child {
    display: none;
  }

  .hero-stage {
    min-height: 470px;
    margin-top: 10px;
  }

  .hero-photo-wrap {
    top: 74px;
    right: 0;
    left: 0;
    width: 100%;
    margin: auto;
  }

  .hero-chip {
    padding: 9px 11px;
    border-radius: 15px;
  }

  .hero-chip-nurse {
    top: 55px;
    left: 0;
  }

  .hero-chip-region {
    right: 0;
    bottom: 32px;
  }

  .chip-icon {
    width: 31px;
    height: 31px;
  }

  .hero-visual-note {
    right: auto;
    bottom: -5px;
    left: 16px;
  }

  .section,
  .care-standard {
    padding-right: 15px;
    padding-left: 15px;
  }

  .section-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .section-heading > p:last-child {
    margin-left: 0;
  }

  .situation-grid,
  .service-grid,
  .care-steps,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .situation-card,
  .situation-card-featured,
  .service-card,
  .service-card-wide {
    grid-column: span 1;
  }

  .situation-card {
    min-height: 155px;
  }

  .situation-card:not(.situation-card-featured) {
    gap: 28px;
  }

  .service-card {
    min-height: 330px;
    padding: 24px;
  }

  .service-card-wide {
    min-height: 330px;
  }

  .service-card-top {
    min-height: 92px;
  }

  .icon-pair,
  .service-icon {
    transform: scale(0.87);
    transform-origin: top center;
  }

  .service-card h3 {
    font-size: 1.55rem;
  }

  .care-moment-gallery {
    margin: 64px -15px 66px 0;
    padding: 0 15px 18px 0;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 340px);
    gap: 13px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .care-moment-gallery::-webkit-scrollbar {
    display: none;
  }

  .care-moment {
    scroll-snap-align: start;
    translate: none;
    will-change: auto;
  }

  .care-moment:nth-child(2) {
    margin-top: 0;
  }

  .care-standard-inner {
    gap: 55px;
  }

  .care-orbit {
    max-width: 430px;
  }

  .orbit-item {
    width: 96px;
    height: 96px;
    font-size: 0.78rem;
  }

  .orbit-center {
    inset: 28%;
  }

  .orbit-center strong {
    font-size: 0.86rem;
  }

  .care-starts-intro {
    margin-bottom: 48px;
  }

  .care-starts-photo {
    border-radius: 24px 72px 24px 24px;
  }

  .orbit-item-three {
    right: 14%;
  }

  .standard-cards article {
    padding: 27px;
  }

  .care-steps li {
    display: grid;
    grid-template-columns: 65px 1fr;
    align-items: start;
    gap: 18px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    margin: 0;
  }

  .proof-layout,
  .areas,
  .faqs {
    gap: 55px;
  }

  .google-review-rail {
    margin-right: calc(var(--page-gutter) * -1);
    padding-right: var(--page-gutter);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-padding-inline: var(--page-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .google-review-rail::-webkit-scrollbar {
    display: none;
  }

  .google-rating-card,
  .review-card {
    flex: 0 0 min(82vw, 340px);
    min-height: 235px;
    scroll-snap-align: start;
  }

  .review-stack {
    min-height: 610px;
  }

  .review-card {
    position: relative;
    width: 96%;
    min-height: 0;
  }

  .review-card-main {
    top: auto;
    left: auto;
  }

  .review-card-secondary {
    right: auto;
    bottom: auto;
    margin: 20px 0 0 auto;
  }

  .area-map {
    padding: 12px;
  }

  .service-map-canvas {
    aspect-ratio: auto;
  }

  .service-map-base {
    position: relative;
    aspect-ratio: 1280 / 1040;
    object-fit: cover;
  }

  .service-map-key {
    top: 12px;
    left: 12px;
    font-size: 0.58rem;
  }

  .city-map {
    position: relative;
    inset: auto;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
  }

  .city-map a {
    position: relative;
    top: auto;
    left: auto;
    min-height: 38px;
    padding: 10px 9px 10px 24px;
    display: flex;
    align-items: center;
    font-size: 0.64rem;
    white-space: normal;
    transform: none;
  }

  .city-map a:hover,
  .city-map a:focus-visible {
    transform: translateY(-2px);
  }

  .service-map-credit {
    position: relative;
    right: auto;
    bottom: auto;
    padding: 10px 14px 12px;
    display: block;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.48rem;
    text-align: right;
  }

  .resource-feature {
    min-height: 590px;
    padding: 30px;
  }

  .resource-feature-art {
    width: 195px;
    height: 195px;
  }

  .resource-feature-art span {
    font-size: 4.5rem;
  }

  .faq-list summary {
    font-size: 0.96rem;
  }

  .final-cta {
    min-height: 660px;
  }

  .final-cta::before {
    background: linear-gradient(90deg, rgba(23, 63, 59, 0.96), rgba(23, 63, 59, 0.71));
  }

  .final-cta-inner {
    padding: 75px 0;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-inner > div:last-of-type {
    grid-column: 1 / -1;
  }

  .floating-actions {
    right: 15px;
    bottom: 15px;
  }

  .back-to-top {
    display: none;
  }

  .nurse-chat {
    right: 15px;
    bottom: 80px;
    width: calc(100vw - 30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-chip {
    opacity: 1;
  }

  .heart-scroll-scene {
    display: none;
  }

  .situations-copy-track {
    transform: none;
  }

  .heart-scroll-ambient {
    display: none;
  }

  .services-flow-line {
    display: none;
  }

  .care-moment {
    translate: none;
    will-change: auto;
  }

  .js .service-icon-ghost {
    display: none;
  }

  .js .service-draw-icon .service-icon-ink path,
  .js .service-card.is-icon-drawing .service-icon-ink path {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .hero-stage {
    transform: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .js [data-situation-grid] .situation-card,
  .js [data-situation-grid].is-grid-visible .situation-card {
    opacity: 1;
    clip-path: none;
    transform: none;
    scale: 1;
    translate: 0 0;
  }

  .js [data-situation-grid] .situation-card .card-number,
  .js [data-situation-grid] .situation-card strong,
  .js [data-situation-grid] .situation-card > .journey-mark,
  .js [data-situation-grid] .situation-card .card-action {
    opacity: 1;
    translate: 0 0;
  }

  .js .situations .section-heading .eyebrow::before,
  .js .situations .section-heading .eyebrow::after {
    opacity: 1;
    transform: translateY(0);
  }
}
