:root {
  --ink: #082f49;
  --ink-soft: #31576d;
  --muted: #526b7a;
  --line: #d8e7ee;
  --paper: #ffffff;
  --sky-50: #f0f9ff;
  --sky-100: #dff4ff;
  --sky-500: #0ea5e9;
  --sky-700: #0369a1;
  --teal: #14b8a6;
  --mint: #b8f4e4;
  --coral: #f97316;
  --coral-dark: #c2410c;
  --navy: #052339;
  --shadow: 0 24px 70px rgba(8, 47, 73, 0.16);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(20, 184, 166, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(240, 249, 255, 0.9), rgba(255, 255, 255, 0.98) 34rem),
    var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  background: var(--navy);
  color: white;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 30;
}

.skip-link:focus {
  top: 1rem;
}

.scroll-meter {
  height: 3px;
  inset: 0 0 auto;
  position: fixed;
  z-index: 25;
}

.scroll-meter span {
  background: linear-gradient(90deg, var(--teal), var(--coral));
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 231, 238, 0.9);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(8, 47, 73, 0.08);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  left: 50%;
  max-width: min(1160px, calc(100% - 2rem));
  padding: 0.7rem 0.8rem 0.7rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateX(-50%);
  transition: box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
  width: 100%;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(8, 47, 73, 0.12);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--mint);
  display: inline-flex;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

.brand-mark svg {
  width: 1.35rem;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Lexend", Arial, sans-serif;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
  line-height: 1.2;
  margin-top: 0.15rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  justify-content: center;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.72rem 0.9rem;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--sky-50);
  color: var(--sky-700);
}

.header-cta,
.button {
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 0.55rem;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, color 200ms ease, transform 200ms ease;
}

.header-cta {
  background: var(--coral);
  color: white;
  font-size: 0.9rem;
  padding: 0.78rem 1rem;
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral-dark);
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.24);
  transform: translateY(-1px);
}

.header-cta svg,
.button svg {
  width: 1.05rem;
}

.nav-toggle {
  align-items: center;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  height: 2.75rem;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 2.75rem;
}

.nav-toggle span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 1.1rem;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-0.36rem);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(0.36rem);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.section {
  margin-inline: auto;
  max-width: 1180px;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4.8rem);
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.9fr);
  min-height: 92svh;
  padding-bottom: 3rem;
  padding-top: 8rem;
}

.eyebrow {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 0.45rem;
  margin: 0 0 1.05rem;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 0.45rem;
  width: 0.45rem;
}

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

h1 {
  color: var(--navy);
  font-size: clamp(3.15rem, 6.1vw, 5.65rem);
  line-height: 0.94;
  margin-bottom: 1.35rem;
  max-width: 10.5ch;
}

.hero-lede {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  margin-bottom: 1rem;
  max-width: 35rem;
}

.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.55rem;
}

.hero-service-pills span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.62rem 0.78rem;
}

.hero-actions,
.visit-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  border: 1px solid transparent;
  min-height: 3.25rem;
  padding: 0.88rem 1.1rem;
}

.button-primary {
  background: var(--coral);
  color: white;
}

.button-secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--sky-50);
  border-color: #a9dced;
  color: var(--sky-700);
  transform: translateY(-1px);
}

.trust-row {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  max-width: 34rem;
}

.trust-row div {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem;
}

.trust-row strong {
  color: var(--navy);
  display: block;
  font: 800 1.45rem/1 "Lexend", Arial, sans-serif;
}

.trust-row span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

.hero-visual {
  min-height: clamp(25rem, 38vw, 34rem);
  perspective: 1200px;
  position: relative;
}

.care-stage {
  aspect-ratio: 1;
  border-radius: 50%;
  isolation: isolate;
  max-width: 34.5rem;
  position: sticky;
  top: 7rem;
  transform-style: preserve-3d;
  width: min(100%, 34.5rem);
}

.care-stage::before {
  background:
    radial-gradient(circle at 58% 36%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.42) 34%, transparent 58%),
    linear-gradient(140deg, rgba(14, 165, 233, 0.15), rgba(20, 184, 166, 0.09));
  border: 1px solid rgba(216, 231, 238, 0.8);
  border-radius: 50%;
  content: "";
  inset: 2.6rem;
  position: absolute;
  z-index: -3;
}

.floating-note {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 231, 238, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(8, 47, 73, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.82rem 0.95rem;
  position: absolute;
  z-index: 5;
  backdrop-filter: blur(14px);
}

.floating-note strong {
  color: var(--navy);
  font: 800 0.95rem/1.1 "Lexend", Arial, sans-serif;
}

.floating-note span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.2;
}

.note-top {
  left: 6%;
  top: 20%;
}

.note-bottom {
  bottom: 18%;
  right: 7%;
}

.stage-ring {
  border: 1px solid rgba(14, 165, 233, 0.23);
  border-radius: 50%;
  inset: 5.1rem;
  position: absolute;
  transform: rotateX(66deg) rotateZ(-16deg);
  z-index: -2;
}

.ring-two {
  border-color: rgba(249, 115, 22, 0.2);
  inset: 8.2rem;
  transform: rotateX(64deg) rotateZ(27deg);
}

.base-platform {
  background: linear-gradient(145deg, #ffffff, #e4f4fb);
  border: 1px solid rgba(8, 47, 73, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 28px 62px rgba(8, 47, 73, 0.2), inset 0 -20px 36px rgba(14, 165, 233, 0.08);
  height: 9.4rem;
  left: 18%;
  position: absolute;
  top: 56%;
  transform: rotateX(58deg) rotateZ(-10deg);
  transform-style: preserve-3d;
  width: 64%;
}

.base-platform span {
  background: var(--teal);
  border-radius: 999px;
  bottom: 1.5rem;
  box-shadow: 0 0 14px rgba(20, 184, 166, 0.28);
  height: 0.42rem;
  opacity: 0.7;
  position: absolute;
  right: 3.2rem;
  width: 0.42rem;
}

.base-platform span:nth-child(2) {
  bottom: 2.55rem;
  opacity: 0.48;
}

.base-platform span:nth-child(3) {
  bottom: 3.6rem;
  opacity: 0.3;
}

.pill-bottle {
  height: 16.6rem;
  left: 34%;
  position: absolute;
  top: 27%;
  transform: rotateX(9deg) rotateY(var(--bottle-rotate, -15deg)) rotateZ(-5deg);
  transform-origin: 50% 70%;
  transform-style: preserve-3d;
  transition: transform 120ms var(--ease);
  width: 9.6rem;
  z-index: 3;
}

.cap {
  background: linear-gradient(180deg, #d7f8ff, #85d8ef);
  border: 1px solid rgba(8, 47, 73, 0.14);
  border-radius: 1rem 1rem 0.35rem 0.35rem;
  box-shadow: inset 0 10px 18px rgba(255, 255, 255, 0.65);
  height: 3rem;
  left: 1.15rem;
  position: absolute;
  top: 0;
  width: 7.3rem;
}

.cap::before,
.cap::after {
  background: rgba(8, 47, 73, 0.08);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 1px;
}

.cap::before {
  left: 32%;
}

.cap::after {
  right: 32%;
}

.neck {
  background: linear-gradient(90deg, #ecfeff, #aeeaf7, #ecfeff);
  border: 1px solid rgba(8, 47, 73, 0.12);
  height: 2.15rem;
  left: 2.25rem;
  position: absolute;
  top: 2.7rem;
  width: 5.1rem;
}

.bottle-body {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.96), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #bdeeff 45%, #f7fdff 100%);
  border: 1px solid rgba(8, 47, 73, 0.14);
  border-radius: 1.4rem 1.4rem 2.1rem 2.1rem;
  box-shadow: 0 28px 48px rgba(8, 47, 73, 0.2), inset -18px -18px 34px rgba(14, 165, 233, 0.14);
  height: 12.2rem;
  overflow: hidden;
  position: absolute;
  top: 4.3rem;
  width: 100%;
}

.shine {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  border-radius: 999px;
  height: 8.5rem;
  left: 1.3rem;
  opacity: 0.72;
  position: absolute;
  top: 1rem;
  transform: rotate(9deg);
  width: 1.2rem;
}

.label {
  align-items: center;
  background: linear-gradient(135deg, var(--navy), #075985);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.8rem;
  bottom: 2.45rem;
  color: white;
  display: flex;
  flex-direction: column;
  font: 800 1.7rem/0.9 "Lexend", Arial, sans-serif;
  gap: 0.35rem;
  left: 1rem;
  padding: 1rem 0.65rem;
  position: absolute;
  right: 1rem;
  transform: translateZ(1rem);
}

.label small {
  color: var(--mint);
  font-size: 0.65rem;
}

.medical-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 250, 255, 0.92));
  border: 1px solid rgba(8, 47, 73, 0.12);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  height: 12rem;
  left: 54%;
  padding: 2rem 1.2rem 1rem;
  position: absolute;
  top: 19%;
  transform: rotateX(9deg) rotateY(-18deg) rotateZ(5deg);
  width: 9.6rem;
  z-index: 2;
}

.medical-card::before {
  background: var(--sky-500);
  border-radius: 999px;
  content: "";
  height: 0.35rem;
  left: 2.2rem;
  position: absolute;
  top: 0.9rem;
  width: 4.8rem;
}

.card-line {
  background: #8eb4c6;
  border-radius: 999px;
  display: block;
  height: 0.42rem;
  margin-bottom: 0.72rem;
}

.card-line.long {
  width: 100%;
}

.card-line.medium {
  width: 76%;
}

.card-line.short {
  width: 54%;
}

.signature {
  border-bottom: 2px solid var(--teal);
  border-radius: 50%;
  display: block;
  height: 1.2rem;
  margin-left: auto;
  margin-top: 0.3rem;
  transform: rotate(-8deg);
  width: 3.4rem;
}

.medical-card strong {
  background: var(--teal);
  border-radius: 0.6rem;
  bottom: 0.8rem;
  color: white;
  font: 800 0.92rem/1 "Lexend", Arial, sans-serif;
  left: 0.9rem;
  padding: 0.6rem 0.8rem;
  position: absolute;
}

.pill {
  border-radius: 999px;
  box-shadow: 0 18px 26px rgba(8, 47, 73, 0.15);
  height: 2.4rem;
  position: absolute;
  width: 5.4rem;
  z-index: 4;
}

.pill::before {
  background: rgba(255, 255, 255, 0.55);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
}

.pill-a {
  background: linear-gradient(90deg, var(--coral) 0 50%, #fff7ed 50% 100%);
  left: 21%;
  top: 42%;
  transform: rotate(-24deg);
}

.pill-b {
  background: linear-gradient(90deg, #e0fbff 0 50%, var(--teal) 50% 100%);
  right: 18%;
  top: 53%;
  transform: rotate(31deg) scale(0.72);
}

.quick-contact {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}

.quick-contact article {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(8, 47, 73, 0.07);
  display: flex;
  gap: 0.85rem;
  padding: 1.05rem;
}

.quick-contact svg {
  color: var(--sky-700);
  flex: 0 0 auto;
  width: 1.35rem;
}

.quick-contact strong,
.quick-contact span {
  display: block;
}

.quick-contact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.services,
.pricing,
.visit,
.contact,
.story {
  padding-block: clamp(3rem, 6.5vw, 5rem);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(18rem, 0.46fr);
  margin-bottom: 1.65rem;
}

.section-heading.compact {
  display: block;
  max-width: 44rem;
}

.section-heading h2,
.story h2,
.visit h2,
.contact h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 1.04;
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow),
.story-panel > p:not(.eyebrow),
.visit-copy p,
.contact-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(8, 47, 73, 0.07);
  min-height: 16.5rem;
  padding: 1.25rem;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.service-card:hover {
  border-color: #a9dced;
  box-shadow: 0 22px 44px rgba(8, 47, 73, 0.11);
  transform: translateY(-3px);
}

.service-card.featured {
  background: linear-gradient(145deg, var(--navy), #075985);
  color: white;
}

.service-card.featured p,
.service-card.featured strong {
  color: #d8fbff;
}

.icon-wrap {
  align-items: center;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sky-700);
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  margin-bottom: 1.4rem;
  width: 3rem;
}

.featured .icon-wrap {
  background: rgba(184, 244, 228, 0.13);
  border-color: rgba(184, 244, 228, 0.34);
  color: var(--mint);
}

.icon-wrap svg {
  width: 1.45rem;
}

.service-card h3 {
  font-size: 1.35rem;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.service-card strong {
  color: var(--coral-dark);
  font: 800 1.05rem/1 "Lexend", Arial, sans-serif;
}

.story-panel {
  background:
    radial-gradient(circle at 92% 0%, rgba(56, 189, 248, 0.28), transparent 22rem),
    linear-gradient(120deg, #052339, #075985),
    var(--navy);
  border-radius: 1.25rem;
  color: white;
  overflow: hidden;
  padding: clamp(1.3rem, 4vw, 3rem);
  position: relative;
}

.story-panel::after {
  background:
    linear-gradient(90deg, transparent, rgba(184, 244, 228, 0.16), transparent),
    linear-gradient(180deg, transparent 0 48%, rgba(255, 255, 255, 0.09) 48% 52%, transparent 52%);
  content: "";
  height: 100%;
  opacity: 0.48;
  position: absolute;
  right: -10%;
  top: 0;
  transform: skewX(-15deg);
  width: 34%;
}

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

.story-panel .eyebrow,
.story-panel > p:not(.eyebrow) {
  color: var(--mint);
}

.story-panel h2 {
  color: white;
  max-width: 15ch;
}

.steps {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.steps article {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.steps span {
  color: var(--mint);
  font: 800 0.8rem/1 "Lexend", Arial, sans-serif;
}

.steps h3 {
  font-size: 1.2rem;
  margin: 0.8rem 0 0.55rem;
}

.steps p {
  color: #d8fbff;
  margin-bottom: 0;
}

.price-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(8, 47, 73, 0.08);
  overflow: hidden;
}

.price-row {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.52fr 1fr;
  min-height: 4.2rem;
  padding: 0.95rem 1.2rem;
}

.price-row + .price-row {
  border-top: 1px solid var(--line);
}

.price-head {
  background: var(--sky-50);
  color: var(--sky-700);
  font-size: 0.78rem;
  font-weight: 800;
  min-height: 3.2rem;
  text-transform: uppercase;
}

.price-row strong {
  color: var(--coral-dark);
  font: 800 1.05rem/1 "Lexend", Arial, sans-serif;
}

.price-row span:last-child {
  color: var(--muted);
}

.map-card {
  align-items: stretch;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 0.82fr 1fr;
  overflow: hidden;
  padding: 1rem;
}

.map-visual {
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.94), rgba(3, 105, 161, 0.84)),
    var(--navy);
  border-radius: var(--radius);
  min-height: 25rem;
  overflow: hidden;
  position: relative;
}

.road {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  height: 0.65rem;
  left: -12%;
  position: absolute;
  top: 48%;
  transform: rotate(-19deg);
  width: 130%;
}

.road-b {
  height: 0.38rem;
  left: 11%;
  top: 27%;
  transform: rotate(38deg);
  width: 104%;
}

.road-c {
  height: 0.45rem;
  left: -22%;
  top: 72%;
  transform: rotate(21deg);
}

.pin {
  background: var(--coral);
  border: 0.35rem solid white;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
  height: 3rem;
  left: 58%;
  position: absolute;
  top: 39%;
  transform: rotate(-45deg);
  width: 3rem;
}

.pin::after {
  background: white;
  border-radius: 50%;
  content: "";
  height: 0.65rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.65rem;
}

.visit-copy {
  align-self: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.visit-copy h2 {
  margin-bottom: 1rem;
}

.visit-actions {
  margin-top: 1.6rem;
}

.contact-card {
  align-items: center;
  background: linear-gradient(135deg, #fff7ed, #ffffff 46%, #ecfeff);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 20px 48px rgba(8, 47, 73, 0.09);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.3rem, 4vw, 3rem);
}

.contact-card h2 {
  max-width: 44rem;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1160px;
  padding: 1.3rem 1rem 2rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sky-700);
  font-weight: 800;
}

[data-section] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-section].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bottleDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.7rem;
  }
}

@keyframes ringSweep {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

.pill-bottle {
  animation: bottleDrift 5.5s ease-in-out infinite;
}

.stage-ring {
  animation: ringSweep 20s linear infinite;
}

.ring-two {
  animation-duration: 28s;
  animation-direction: reverse;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    background: white;
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0.6rem;
  }

  .site-nav a {
    width: 100%;
  }

  .nav-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 2.2rem;
    padding-top: 7.4rem;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 31rem;
  }

  .care-stage {
    margin-inline: auto;
    position: relative;
    top: auto;
  }

  .quick-contact,
  .service-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading,
  .map-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  body {
    background: linear-gradient(180deg, var(--sky-50), white 42rem);
  }

  .site-header {
    border-radius: 1.2rem;
    gap: 0.5rem;
    grid-template-columns: minmax(0, 1fr) 2.65rem 2.65rem;
    max-width: calc(100% - 1rem);
    padding: 0.55rem;
    top: 0.5rem;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.84rem;
    max-width: 8.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark {
    height: 2.35rem;
    width: 2.35rem;
  }

  .header-cta {
    font-size: 0;
    height: 2.65rem;
    padding: 0;
    width: 2.65rem;
  }

  .nav-toggle {
    height: 2.65rem;
    width: 2.65rem;
  }

  .header-cta svg {
    width: 1.1rem;
  }

  .hero {
    gap: 1.2rem;
    padding-bottom: 1.6rem;
    padding-top: 6.6rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.85rem);
    line-height: 0.98;
    max-width: 10ch;
  }

  .hero-lede {
    font-size: 1.03rem;
    margin-bottom: 0.85rem;
  }

  .hero-service-pills {
    gap: 0.4rem;
    margin-bottom: 1.15rem;
  }

  .hero-service-pills span {
    font-size: 0.78rem;
    padding: 0.55rem 0.62rem;
  }

  .hero-actions,
  .visit-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-row,
  .quick-contact,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-row {
    gap: 0.55rem;
    margin-top: 1.2rem;
  }

  .trust-row div {
    align-items: baseline;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
  }

  .trust-row span {
    margin-top: 0;
    text-align: right;
  }

  .trust-row div,
  .quick-contact article {
    padding: 0.85rem;
  }

  .hero-visual {
    min-height: 19rem;
  }

  .care-stage {
    width: min(100%, 21rem);
  }

  .floating-note {
    padding: 0.62rem 0.72rem;
  }

  .floating-note strong {
    font-size: 0.78rem;
  }

  .floating-note span {
    font-size: 0.72rem;
  }

  .note-top {
    left: 2%;
    top: 17%;
  }

  .note-bottom {
    bottom: 11%;
    right: 1%;
  }

  .care-stage::before {
    inset: 1.4rem;
  }

  .base-platform {
    height: 6.4rem;
  }

  .pill-bottle {
    height: 11.4rem;
    left: 32%;
    top: 28%;
    width: 6.6rem;
  }

  .cap {
    height: 2.1rem;
    left: 0.8rem;
    width: 5rem;
  }

  .neck {
    height: 1.5rem;
    left: 1.55rem;
    top: 1.9rem;
    width: 3.5rem;
  }

  .bottle-body {
    border-radius: 1rem 1rem 1.5rem 1.5rem;
    height: 8.4rem;
    top: 3rem;
  }

  .label {
    bottom: 1.65rem;
    font-size: 1.05rem;
    left: 0.65rem;
    padding: 0.7rem 0.4rem;
    right: 0.65rem;
  }

  .medical-card {
    height: 8.8rem;
    left: 52%;
    padding: 1.55rem 0.8rem 0.8rem;
    top: 18%;
    width: 7.1rem;
  }

  .pill {
    height: 1.55rem;
    width: 3.55rem;
  }

  .section-heading h2,
  .story h2,
  .visit h2,
  .contact h2 {
    font-size: clamp(1.78rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .section-heading {
    margin-bottom: 1.2rem;
  }

  .services,
  .pricing,
  .visit,
  .contact,
  .story {
    padding-block: 2.7rem;
  }

  .service-card {
    min-height: auto;
    padding: 1rem;
  }

  .story-panel {
    border-radius: 1rem;
  }

  .story-panel::after {
    opacity: 0.18;
    right: -34%;
    width: 70%;
  }

  .price-table {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 0.75rem;
  }

  .price-head {
    display: none;
  }

  .price-row {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    min-height: 0;
  }

  .price-row + .price-row {
    border-top: 1px solid var(--line);
  }

  .map-visual {
    min-height: 17rem;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-section] {
    opacity: 1;
    transform: none;
  }
}
