:root {
  --blue: #4aa6dc;
  --blue-deep: #2868b3;
  --blue-ink: #173c68;
  --green: #65b943;
  --green-deep: #237f45;
  --ink: #172331;
  --muted: #637284;
  --line: #d9e6e8;
  --paper: #fbfaf6;
  --soft-blue: #eaf6fc;
  --soft-green: #edf8e9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(32, 91, 111, 0.14);
  --radius: 8px;
  --header-height: 84px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(74, 166, 220, 0.13), transparent 34rem),
    linear-gradient(180deg, #fffefd 0%, var(--paper) 55%, #f7fbf6 100%);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(23, 60, 104, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 60, 104, 0.025) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 72%);
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(35, 127, 69, 0.48);
  outline-offset: 4px;
}

::selection {
  background: rgba(101, 185, 67, 0.26);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.content-wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 230, 232, 0.72);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(25, 60, 85, 0.08);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-symbol {
  width: clamp(54px, 5.6vw, 68px);
  height: auto;
}

.brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.28em;
  color: var(--blue);
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark span:last-child {
  color: var(--green-deep);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.7rem);
  font-size: 0.94rem;
  font-weight: 700;
  color: #33465b;
}

.main-nav a,
.footer-links a,
.mobile-nav a:not(.button) {
  position: relative;
}

.main-nav a::after,
.footer-links a::after,
.mobile-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.34rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.footer-links a:hover::after,
.mobile-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue) 58%, var(--green));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(41, 117, 179, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(41, 117, 179, 0.28);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.button-quiet {
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-ink);
  border-color: rgba(74, 166, 220, 0.3);
  box-shadow: none;
}

.button-outline {
  background: transparent;
  color: var(--blue-ink);
  border-color: rgba(40, 104, 179, 0.35);
  box-shadow: none;
}

.button-light {
  background: var(--white);
  color: var(--blue-ink);
  box-shadow: 0 16px 38px rgba(23, 60, 104, 0.18);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  width: max-content;
  gap: 0.08rem;
  min-height: 34px;
  padding: 0.18rem 0.24rem;
  border: 1px solid rgba(74, 166, 220, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #536678;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.language-switch button {
  min-width: 28px;
  min-height: 28px;
  padding: 0 0.28rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.language-switch button.is-active {
  background: linear-gradient(135deg, rgba(74, 166, 220, 0.16), rgba(101, 185, 67, 0.18));
  color: var(--blue-ink);
}

.language-switch span {
  color: rgba(83, 102, 120, 0.4);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(74, 166, 220, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(5px) rotate(42deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-1px) rotate(-42deg);
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding-top: clamp(3rem, 5vw, 5.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  gap: clamp(2.2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.1rem, 7.4vw, 6.85rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: #10273d;
}

h2 {
  max-width: 13ch;
  margin-bottom: 1.1rem;
  color: #132f4b;
  font-size: clamp(2.15rem, 4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.8rem;
  color: #183753;
  font-size: 1.15rem;
}

.hero-text {
  max-width: 620px;
  color: #40536a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 360px;
  padding: 0.68rem 0.78rem;
  border: 1px solid rgba(74, 166, 220, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: #315069;
  box-shadow: 0 12px 28px rgba(31, 83, 113, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.location-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(101, 185, 67, 0.3);
  background: rgba(255, 255, 255, 0.76);
}

.location-dot {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(74, 166, 220, 0.18), rgba(101, 185, 67, 0.24));
}

.location-dot::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  background: var(--green);
}

.location-text {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.location-text small {
  color: var(--green-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.location-text strong {
  color: var(--blue-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.hero-signals {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 590px);
  margin-top: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(74, 166, 220, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 48px rgba(31, 83, 113, 0.08);
}

.hero-signals::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 8%, rgba(74, 166, 220, 0.12), rgba(101, 185, 67, 0.14), transparent 62%);
  transform: translateX(-65%);
  animation: signalSweep 8s ease-in-out infinite;
}

.hero-signals div {
  position: relative;
  display: grid;
  gap: 0.16rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.44);
}

.hero-signals span {
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-signals strong {
  color: var(--blue-ink);
  font-size: 0.98rem;
  line-height: 1.2;
}

.ambient-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 38% 62% 54% 46% / 58% 38% 62% 42%;
  filter: blur(0.2px);
  opacity: 0.36;
  animation: floatShape 18s ease-in-out infinite alternate;
}

.shape-blue {
  width: 36vw;
  height: 36vw;
  min-width: 320px;
  min-height: 320px;
  right: -12vw;
  top: 10vh;
  background: linear-gradient(140deg, rgba(74, 166, 220, 0.24), rgba(74, 166, 220, 0.04));
}

.shape-green {
  width: 24vw;
  height: 24vw;
  min-width: 230px;
  min-height: 230px;
  left: -10vw;
  bottom: 6vh;
  background: linear-gradient(140deg, rgba(101, 185, 67, 0.22), rgba(101, 185, 67, 0.04));
  animation-delay: -8s;
}

.hero-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
}

.visual-card {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 0.92;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2) 54%, transparent 70%),
    radial-gradient(circle at 70% 22%, rgba(74, 166, 220, 0.16), transparent 38%),
    radial-gradient(circle at 20% 76%, rgba(101, 185, 67, 0.16), transparent 40%);
  border: 0;
  box-shadow: 0 30px 90px rgba(32, 91, 111, 0.09);
  isolation: isolate;
  animation: visualGlow 16s ease-in-out infinite alternate;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 4% 5% 6%;
  z-index: 0;
  border: 1px solid rgba(74, 166, 220, 0.18);
  border-radius: 50%;
  animation: ringDrift 18s ease-in-out infinite alternate;
}

.visual-media {
  position: absolute;
  top: 14%;
  left: 50%;
  z-index: 2;
  width: min(62%, 350px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px 10px 34px 10px;
  background: rgba(234, 246, 252, 0.75);
  box-shadow: 0 28px 72px rgba(31, 83, 113, 0.15);
  transform: translateX(-50%);
}

.visual-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visual-river {
  position: absolute;
  left: 0%;
  right: 0%;
  bottom: 6%;
  z-index: 1;
  height: 82px;
  border-radius: 52% 48% 50% 50% / 72% 68% 32% 28%;
  background: linear-gradient(92deg, rgba(101, 185, 67, 0.14), rgba(74, 166, 220, 0.15));
  transform: rotate(-7deg);
  animation: riverDrift 13s ease-in-out infinite alternate;
}

.care-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.18rem;
  max-width: 205px;
  padding: 0.86rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(31, 83, 113, 0.085);
  backdrop-filter: blur(12px);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.care-note strong {
  color: var(--blue-ink);
  font-size: 1.08rem;
  line-height: 1.1;
}

.care-note strong + strong {
  color: #315c83;
}

.care-note span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.care-note-main {
  right: -5%;
  bottom: -1%;
  animation-name: noteFloatMain;
  animation-duration: 10.5s;
}

.care-note-soft {
  left: -5%;
  top: -1%;
  animation-name: noteFloatSoft;
  animation-duration: 12s;
  animation-delay: -4s;
}

.proximity {
  background: linear-gradient(90deg, rgba(234, 246, 252, 0.65), rgba(237, 248, 233, 0.7));
}

.proximity-grid {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.proximity p:not(.section-kicker),
.clinic-copy p,
.analyses-copy p,
.section-heading + p {
  color: #4c5d6b;
  font-size: 1.08rem;
}

.proximity h2 {
  max-width: 15ch;
}

.proximity-grid > div p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.14rem, 2vw, 1.45rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(1.5rem, 6vw, 6.5rem);
  align-items: start;
  margin-bottom: clamp(2.2rem, 5vw, 4.5rem);
}

.section-heading h2 {
  max-width: 15ch;
}

.specialty-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: start;
}

.specialty-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  color: #526373;
}

.text-link {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--blue-ink);
  font-weight: 800;
  border-bottom: 2px solid rgba(101, 185, 67, 0.45);
}

.specialty-feature {
  position: relative;
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(74, 166, 220, 0.2);
  border-radius: 20px 8px 20px 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 166, 220, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(237, 248, 233, 0.62));
  box-shadow: 0 24px 56px rgba(31, 83, 113, 0.08);
}

.specialty-feature::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -42px;
  bottom: -52px;
  border-radius: 999px;
  border: 1px solid rgba(101, 185, 67, 0.28);
}

.specialty-feature span {
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specialty-feature strong {
  max-width: 12ch;
  color: var(--blue-ink);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.02;
}

.specialty-feature p {
  margin: 0;
  color: #536778;
}

.specialty-feature a {
  justify-self: start;
  margin-top: 0.2rem;
  color: var(--blue-ink);
  font-weight: 800;
  border-bottom: 2px solid rgba(101, 185, 67, 0.44);
}

.specialty-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.specialty-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.45fr) auto;
  gap: 1.4rem;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 1.15rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: padding 180ms ease, border-color 180ms ease, color 180ms ease;
}

.specialty-item:hover,
.specialty-item:focus-visible,
.specialty-item.is-active {
  padding-left: 0.85rem;
  border-color: rgba(74, 166, 220, 0.55);
}

.specialty-item strong {
  color: #183753;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.specialty-item p {
  margin: 0;
  color: #627386;
  font-size: 0.96rem;
}

.specialty-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue-ink);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.specialty-item:hover .specialty-number,
.specialty-item.is-active .specialty-number {
  background: var(--green);
  color: var(--white);
  transform: translateX(3px);
}

.specialty-cta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(74, 166, 220, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.specialty-cta p {
  max-width: 640px;
  margin: 0;
  color: #43566b;
  font-weight: 700;
}

.analyses {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(74, 166, 220, 0.18), transparent 26rem),
    linear-gradient(135deg, #eff9ed, #f7fcff 54%, #fffdfa);
}

.analyses-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.74fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

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

.partner {
  display: inline-block;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #43566b;
}

.partner strong {
  white-space: nowrap;
}

.collection-hours {
  position: relative;
  margin: clamp(0.55rem, 2vw, 1rem);
  padding: clamp(1.85rem, 4.5vw, 3rem);
  border-radius: 28px 8px 28px 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.collection-hours::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 34px 14px 34px 14px;
  background: linear-gradient(135deg, rgba(74, 166, 220, 0.35), rgba(101, 185, 67, 0.28));
}

.hours-title {
  margin-bottom: 1.55rem;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-row {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: baseline;
  padding: 1.55rem 0;
  border-top: 1px solid var(--line);
}

.collection-row span {
  color: #4f6171;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-row strong {
  color: var(--blue-ink);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1;
}

.clinic-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.clinic-copy h2 {
  max-width: 13ch;
}

.principles {
  display: grid;
  gap: 1rem;
}

.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.principle::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 7px rgba(74, 166, 220, 0.1);
}

.principle h3 {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.principle p {
  margin: 0;
  color: #5c6e7d;
}

.conversion {
  padding: clamp(3.2rem, 6vw, 5.5rem) 0;
}

.conversion-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 32px 8px 32px 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(101, 185, 67, 0.32), transparent 24rem),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
  box-shadow: 0 24px 58px rgba(35, 104, 162, 0.24);
}

.conversion-inner .section-kicker,
.conversion-inner h2,
.conversion-inner p {
  color: inherit;
}

.conversion-inner h2 {
  max-width: 16ch;
  margin-bottom: 0.8rem;
}

.conversion-inner p:last-child {
  margin-bottom: 0;
  opacity: 0.9;
}

.contacts {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(234, 246, 252, 0.46));
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-panel,
.hours-panel,
.map-panel {
  border: 1px solid rgba(217, 230, 232, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.contact-panel,
.hours-panel {
  padding: clamp(1.2rem, 3vw, 1.65rem);
}

.contact-panel address {
  color: #4d5f70;
  font-style: normal;
}

.contact-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.contact-links a {
  display: grid;
  gap: 0.1rem;
  padding: 0.9rem;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(234, 246, 252, 0.76), rgba(237, 248, 233, 0.76));
  transition: transform 180ms ease;
}

.contact-links a:hover {
  transform: translateX(4px);
}

.contact-links span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  color: var(--blue-ink);
  overflow-wrap: anywhere;
}

.hours-panel {
  grid-row: span 2;
}

.clinic-hours {
  display: grid;
  gap: 0;
}

.clinic-hour-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0;
  border-bottom: 1px solid var(--line);
}

.clinic-hour-row:last-child {
  border-bottom: 0;
}

.clinic-hour-row span:first-child {
  color: #40546a;
  font-weight: 800;
}

.clinic-hour-row span:last-child {
  color: #5c6f7f;
  text-align: right;
}

.map-panel {
  min-height: 330px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 72% 28%, rgba(74, 166, 220, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(237, 248, 233, 0.88), rgba(234, 246, 252, 0.92));
}

.clean-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.clean-map::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
}

.map-road {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(74, 166, 220, 0.12);
}

.map-road-main {
  width: 78%;
  height: 22px;
  left: -8%;
  top: 48%;
  transform: rotate(-11deg);
}

.map-road-soft {
  width: 66%;
  height: 16px;
  right: -14%;
  top: 28%;
  transform: rotate(24deg);
  opacity: 0.78;
}

.map-road-small {
  width: 48%;
  height: 14px;
  left: 12%;
  bottom: 22%;
  transform: rotate(19deg);
  opacity: 0.66;
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 47%;
  width: min(72%, 320px);
  padding: 1.05rem 1.15rem 1.05rem 3.65rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(25, 60, 85, 0.16);
  transform: translate(-50%, -50%);
}

.map-marker span {
  position: absolute;
  left: 1.05rem;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 8px rgba(74, 166, 220, 0.12);
  transform: translateY(-50%);
}

.map-marker span::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 999px;
  background: var(--white);
}

.map-marker strong {
  display: block;
  color: var(--blue-ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.map-marker small {
  display: block;
  margin-top: 0.25rem;
  color: #5c6e7d;
  line-height: 1.35;
}

.map-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-ink);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(25, 60, 85, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(25, 60, 85, 0.2);
}

.site-footer {
  padding: 3rem 0 1.3rem;
  background: #12243a;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(1.8rem, 4vw, 3rem);
}

.footer-brand img {
  width: 168px;
  height: auto;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.footer-brand p {
  max-width: 270px;
}

.footer-block h2 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-block p,
.footer-block a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.social-placeholder {
  line-height: 1.85;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 2.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(35, 127, 69, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatShape {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(24px, -18px, 0) rotate(7deg);
  }
}

@keyframes signalSweep {
  0%,
  28% {
    transform: translateX(-72%);
  }

  72%,
  100% {
    transform: translateX(72%);
  }
}

@keyframes visualGlow {
  from {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 24px 70px rgba(32, 91, 111, 0.12);
  }

  to {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 30px 78px rgba(32, 91, 111, 0.16);
  }
}

@keyframes ringDrift {
  from {
    transform: translate3d(-5px, 5px, 0) rotate(-2deg) scale(0.985);
  }

  to {
    transform: translate3d(7px, -4px, 0) rotate(3deg) scale(1.015);
  }
}

@keyframes noteFloatMain {
  from {
    transform: translate3d(0, 6px, 0) rotate(0deg);
  }

  to {
    transform: translate3d(-8px, -5px, 0) rotate(-0.6deg);
  }
}

@keyframes noteFloatSoft {
  from {
    transform: translate3d(0, -3px, 0) rotate(0.4deg);
  }

  to {
    transform: translate3d(9px, 6px, 0) rotate(-0.5deg);
  }
}

@keyframes riverDrift {
  from {
    transform: translate3d(-10px, 7px, 0) rotate(-8deg) scaleX(0.94);
  }

  to {
    transform: translate3d(12px, -5px, 0) rotate(-4deg) scaleX(1.04);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    min-height: var(--header-height);
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-symbol {
    width: 54px;
  }

  .brand-wordmark {
    font-size: 1.22rem;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 4;
    justify-self: end;
  }

  .language-switch {
    grid-column: 3;
  }

  .mobile-nav {
    width: min(100% - 32px, 520px);
    margin: 0 auto 14px;
    padding: 0.55rem;
    border: 1px solid rgba(217, 230, 232, 0.84);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 40px rgba(25, 60, 85, 0.1);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 0.1rem;
  }

  .mobile-nav a {
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    font-weight: 800;
  }

  .mobile-nav .button {
    margin-top: 0.3rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .proximity-grid,
  .section-heading,
  .specialty-layout,
  .analyses-grid,
  .clinic-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .visual-card {
    width: min(100%, 440px);
  }

  .visual-media {
    top: 15%;
    width: min(62%, 260px);
  }

  .care-note-main {
    right: -1%;
    bottom: -1%;
  }

  .care-note-soft {
    left: -1%;
    top: -1%;
  }

  .specialty-intro {
    position: static;
  }

  .specialty-feature {
    display: none;
  }

  .specialty-list {
    gap: 0.7rem;
    border-top: 0;
  }

  .specialty-item {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 1rem;
    border: 1px solid rgba(74, 166, 220, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 14px 34px rgba(31, 83, 113, 0.055);
  }

  .specialty-item p {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .specialty-item:hover,
  .specialty-item:focus-visible,
  .specialty-item.is-active {
    padding-left: 1rem;
    border-color: rgba(101, 185, 67, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 248, 233, 0.58));
  }

  .hours-panel {
    grid-row: auto;
  }

  .map-panel {
    min-height: 360px;
  }

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

  .mobile-call {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .content-wrap,
  .header-inner {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 3.7rem 0;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .specialty-cta,
  .conversion-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .specialty-cta .button,
  .conversion-inner .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .visual-card {
    width: min(100%, 350px);
  }

  .visual-media {
    top: 18%;
    width: 58%;
  }

  .care-note {
    max-width: 168px;
    padding: 0.68rem 0.72rem;
    border-radius: 12px;
  }

  .care-note strong {
    font-size: 0.92rem;
  }

  .care-note span {
    font-size: 0.78rem;
  }

  .care-note-main {
    right: 0;
    bottom: -2%;
  }

  .care-note-soft {
    left: 0;
    top: -2%;
  }

  .location-pill {
    align-items: center;
    font-size: 0.95rem;
  }

  .location-text strong {
    font-size: 0.95rem;
  }

  .hero-signals {
    grid-template-columns: 1fr;
    max-width: 360px;
    border-radius: 14px;
  }

  .hero-signals div {
    grid-template-columns: 0.7fr 1fr;
    align-items: baseline;
    padding: 0.72rem 0.9rem;
  }

  .collection-row,
  .clinic-hour-row {
    display: grid;
    gap: 0.35rem;
  }

  .collection-row strong,
  .clinic-hour-row span:last-child {
    text-align: left;
  }

  .contact-panel,
  .hours-panel,
  .collection-hours {
    border-radius: var(--radius);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand-symbol {
    width: 48px;
  }

  .brand-wordmark {
    font-size: 1.08rem;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .care-note-main {
    right: 0;
  }

  .care-note-soft {
    left: 0;
  }

  .mobile-call {
    right: 12px;
    bottom: 12px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
