:root {
  --ink: #0b343c;
  --ink-2: #153f46;
  --muted: #61777b;
  --deep: #053841;
  --deep-2: #032c33;
  --teal: #078b91;
  --mint: #78d8ce;
  --mint-soft: #dff4f0;
  --cream: #f5f2eb;
  --cream-2: #ece8de;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(11, 52, 60, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 12px 32px rgba(5, 56, 65, 0.09);
  --shadow-lg: 0 30px 80px rgba(5, 56, 65, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: min(1220px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--white);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid #f6c85f;
  outline-offset: 4px;
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 94px;
  color: var(--white);
  pointer-events: none;
  transition: height 0.25s ease;
}

.site-header.is-scrolled {
  height: 82px;
}

.nav-shell {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding: 0 10px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(3, 44, 51, 0.88);
  box-shadow: 0 12px 36px rgba(2, 32, 38, 0.18);
  backdrop-filter: saturate(160%) blur(18px);
  pointer-events: auto;
  transition: margin-top 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .nav-shell {
  margin-top: 8px;
  background: rgba(3, 44, 51, 0.96);
  box-shadow: 0 10px 30px rgba(2, 32, 38, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 43px;
  height: 34px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 3.4;
}

.brand-mark circle:not(.brand-pupil) {
  fill: var(--mint);
  stroke: none;
}

.brand-mark .brand-pupil {
  fill: var(--deep);
  stroke: none;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.2em;
}

.brand small {
  margin-top: 3px;
  color: #b4d7d5;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #d7e7e6;
  font-size: 13px;
  font-weight: 600;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Core controls */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--deep);
  background: var(--mint);
  box-shadow: 0 10px 24px rgba(7, 139, 145, 0.2);
}

.button-primary:hover {
  background: #91e5dc;
  box-shadow: 0 16px 30px rgba(7, 139, 145, 0.25);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

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

.button-light {
  min-height: 44px;
  color: var(--deep);
  background: var(--white);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--mint);
}

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 162px 0 110px;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  top: -250px;
  right: -230px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(7, 139, 145, 0.15);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  right: 8%;
  bottom: 5%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  opacity: 0.18;
  filter: blur(2px);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 34%;
  left: -110px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(11, 52, 60, 0.1);
}

.hero-orb-two {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}

.hero-copy {
  padding: 30px 0;
}

.hero .eyebrow-light {
  color: var(--teal);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(64px, 7vw, 98px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
}

.hero-lead {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero .button-ghost {
  color: var(--ink);
  border-color: rgba(11, 52, 60, 0.24);
}

.hero .button-ghost:hover {
  border-color: var(--ink);
  background: rgba(11, 52, 60, 0.05);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-note span {
  color: var(--teal);
  font-size: 8px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
}

.hero-media {
  position: relative;
  min-height: 610px;
  padding: 20px 20px 80px 56px;
}

.hero-media::before {
  position: absolute;
  inset: 0 0 52px 35px;
  border-radius: 46% 46% 30px 30px;
  background: var(--mint-soft);
  content: "";
  transform: rotate(3deg);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  height: 510px;
  border-radius: 180px 180px 30px 30px;
  background: #dcebea;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 44, 51, 0.16));
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.location-card {
  position: absolute;
  z-index: 2;
  right: -14px;
  bottom: 25px;
  display: flex;
  min-width: 350px;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.location-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 34px 90px rgba(5, 56, 65, 0.22);
}

.icon-disc {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
}

.icon-disc svg {
  width: 26px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
}

.location-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.location-card small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-card strong {
  margin-top: 4px;
  font-size: 17px;
}

.location-card em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

/* Trust strip */
.confidence-strip {
  position: relative;
  z-index: 3;
  padding: 0 0 28px;
  background: var(--cream);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.64);
}

.confidence-grid article {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 15px;
  padding: 24px 30px;
}

.confidence-grid article + article {
  border-left: 1px solid var(--line);
}

.feature-icon,
.service-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
}

.feature-icon {
  width: 50px;
  height: 50px;
}

.feature-icon svg,
.service-icon svg {
  width: 27px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confidence-grid article > span:last-child {
  display: flex;
  flex-direction: column;
}

.confidence-grid strong {
  font-size: 14px;
}

.confidence-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

/* Shared section patterns */
.section {
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.family-copy h2,
.clinic-copy h2,
.contact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(48px, 5.4vw, 70px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Bento services */
.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 62px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  overflow: hidden;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:nth-child(1) {
  grid-column: span 5;
  color: var(--white);
  border-color: transparent;
  background: var(--deep);
}

.service-card:nth-child(2) {
  grid-column: span 7;
  background: var(--mint-soft);
}

.service-card:nth-child(3) {
  grid-column: 3 / span 8;
  min-height: 320px;
  background: var(--cream);
}

.service-card:nth-child(1)::after,
.service-card:nth-child(2)::after {
  position: absolute;
  right: -85px;
  bottom: -105px;
  width: 250px;
  height: 250px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.14;
}

.service-card:hover {
  border-color: rgba(7, 139, 145, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.48;
}

.service-icon {
  width: 60px;
  height: 60px;
}

.service-card:nth-child(1) .service-icon {
  background: rgba(120, 216, 206, 0.16);
}

.service-card:nth-child(1) .service-icon svg {
  stroke: var(--mint);
}

.service-card h3 {
  margin: auto 0 13px;
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-card:nth-child(1) p {
  color: #b9d3d3;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 30px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card:nth-child(1) a {
  color: var(--mint);
}

.service-card a span {
  transition: transform 0.2s ease;
}

.service-card a:hover span {
  transform: translateX(5px);
}

/* Family */
.family-section {
  background: var(--cream);
}

.family-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.family-media {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(-1.5deg);
}

.family-media::before {
  position: absolute;
  z-index: -1;
  inset: 28px -22px -22px 28px;
  border-radius: var(--radius-lg);
  background: var(--mint);
  content: "";
  opacity: 0.46;
}

.family-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.image-label {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 44, 51, 0.82);
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.family-copy h2 {
  max-width: 650px;
  font-size: clamp(62px, 7vw, 92px);
}

.family-lead {
  max-width: 610px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.check-list li > span:first-child {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.check-list li > span:last-child {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.check-list strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

/* Doctor */
.doctor-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-2);
}

.doctor-section::before {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(120, 216, 206, 0.17);
  border-radius: 50%;
  content: "";
}

.doctor-section::after {
  position: absolute;
  bottom: -230px;
  left: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(120, 216, 206, 0.08);
  content: "";
}

.doctor-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  column-gap: clamp(58px, 7vw, 90px);
  row-gap: 34px;
  align-items: start;
}

.doctor-portrait {
  position: relative;
  grid-row: 1 / 3;
  min-height: 720px;
  align-self: stretch;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #dff4f0 0%, #8ddfd5 62%, #5ec5bd 100%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.doctor-portrait::after {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -100px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  content: "";
}

.doctor-portrait-halo {
  position: absolute;
  z-index: -1;
  top: 65px;
  left: 50%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(5, 56, 65, 0.18);
  border-radius: 50%;
  transform: translateX(-50%);
}

.doctor-portrait img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 97%;
  height: 96%;
  margin: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 25px rgba(3, 44, 51, 0.22));
}

.doctor-intro {
  padding-top: 16px;
}

.doctor-intro .eyebrow,
.doctor-kicker {
  color: var(--mint);
}

.doctor-kicker {
  margin: 20px 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.doctor-intro h2 {
  margin: 0;
  color: var(--white);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.doctor-lead {
  max-width: 650px;
  margin: 25px 0;
  color: #aec9ca;
  font-size: 17px;
  line-height: 1.72;
}

.doctor-section .text-link {
  color: var(--mint);
}

.credential-panel {
  padding: 33px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.credential-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.credential-medal {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: var(--mint);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 28px;
}

.credential-feature small {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.credential-feature strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
}

.credential-list {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.credential-list li > span:first-child {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 10px;
}

.credential-source {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

/* Clinic */
.clinic-section {
  color: var(--ink);
  background: var(--paper);
}

.clinic-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 8vw, 105px);
}

.clinic-copy .eyebrow-light {
  color: var(--teal);
}

.clinic-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 27px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.clinic-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
  margin-top: 40px;
}

.clinic-details > div:first-child {
  grid-column: 1 / -1;
}

.clinic-details div {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.clinic-details small {
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clinic-details strong,
.clinic-details a {
  margin-top: 7px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}

.clinic-details a:hover {
  color: var(--teal);
}

.clinic-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 220px 220px 30px 30px;
  background: var(--mint-soft);
  box-shadow: var(--shadow-lg);
}

.clinic-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.clinic-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transform: scale(1.12);
}

/* Contact */
.contact-section {
  padding: 28px 0 120px;
  background: var(--paper);
}

.contact-panel {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 72px 74px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--deep);
}

.contact-panel::after {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(120, 216, 206, 0.2);
  border-radius: 50%;
  content: "";
}

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

.contact-panel h2 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 70px);
}

.contact-panel p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #b8d1d2;
  font-size: 15px;
}

.contact-actions {
  display: flex;
  min-width: 260px;
  flex-direction: column;
  gap: 12px;
}

/* Footer */
.site-footer {
  padding: 78px 0 28px;
  color: #c2d6d7;
  background: var(--deep-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 100px;
  padding-bottom: 62px;
}

.footer-brand p {
  margin: 20px 0 0;
  color: #83a4a7;
  font-size: 12px;
}

.footer-links {
  display: flex;
  min-width: 135px;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 12px;
}

.footer-links a {
  color: #92afb1;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #74979a;
  font-size: 10px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay {
  animation-delay: 0.12s;
}

.reveal-delay-two {
  animation-delay: 0.24s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */
@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(65px, 8vw, 88px);
  }

  .hero-media {
    min-height: 560px;
    padding-left: 35px;
  }

  .hero-image-wrap {
    height: 470px;
  }

  .confidence-grid article {
    padding-inline: 20px;
  }

  .family-grid,
  .clinic-grid {
    gap: 58px;
  }

  .clinic-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .contact-panel {
    padding: 60px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 78px;
  }

  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    height: 58px;
    margin-top: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 18px auto;
    display: flex;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    opacity: 0;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease, padding 0.3s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    max-height: 520px;
    padding-block: 14px 20px;
    opacity: 1;
  }

  .site-nav > a:not(.button) {
    padding: 14px 12px;
    color: var(--ink);
    font-size: 15px;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 6px;
    color: var(--white);
    background: var(--deep);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 132px 0 100px;
  }

  .hero-grid,
  .family-grid,
  .clinic-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
    padding: 0;
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero-media {
    min-height: 590px;
    margin-top: 22px;
  }

  .hero-image-wrap {
    height: 500px;
  }

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

  .confidence-grid article {
    min-height: auto;
    padding: 20px;
  }

  .confidence-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 590px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    grid-column: span 6;
  }

  .service-card:nth-child(3) {
    grid-column: 2 / span 10;
  }

  .family-copy {
    grid-row: 1;
  }

  .family-media {
    max-width: 620px;
  }

  .doctor-grid {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 38px;
  }

  .doctor-portrait {
    grid-row: auto;
    min-height: 560px;
  }

  .doctor-intro {
    padding-top: 6px;
  }

  .credential-panel {
    grid-column: 1 / -1;
  }

  .clinic-visual {
    max-width: 700px;
    min-height: 470px;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
    min-width: 0;
  }

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

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

/* Mobile */
@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 26px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .brand-mark {
    width: 38px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 5.8px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 72px);
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 16px;
  }

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

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

  .hero-proof {
    gap: 6px;
  }

  .hero-media {
    min-height: 500px;
    padding: 10px 8px 90px 20px;
  }

  .hero-media::before {
    inset: 0 0 65px 8px;
    border-radius: 130px 130px 24px 24px;
  }

  .hero-image-wrap {
    height: 410px;
    border-radius: 130px 130px 24px 24px;
  }

  .location-card {
    right: 0;
    bottom: 20px;
    left: 0;
    min-width: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .family-copy h2,
  .clinic-copy h2,
  .contact-panel h2 {
    font-size: 52px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: auto;
    min-height: 340px;
  }

  .service-card {
    padding: 28px;
  }

  .family-grid {
    gap: 62px;
  }

  .family-copy h2 {
    font-size: 61px;
  }

  .family-lead {
    font-size: 16px;
  }

  .family-media {
    padding: 12px;
    transform: none;
  }

  .family-media::before {
    inset: 18px -8px -12px 18px;
  }

  .image-label {
    right: 20px;
    bottom: 20px;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .doctor-portrait {
    min-height: 490px;
  }

  .doctor-intro h2 {
    font-size: 60px;
  }

  .doctor-lead {
    font-size: 15px;
  }

  .credential-panel {
    grid-column: auto;
    padding: 24px;
  }

  .credential-feature {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .credential-medal {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .credential-feature strong {
    font-size: 22px;
  }

  .credential-source {
    text-align: left;
  }

  .clinic-grid {
    gap: 55px;
  }

  .clinic-details {
    grid-template-columns: 1fr;
  }

  .clinic-details > div:first-child {
    grid-column: auto;
  }

  .clinic-visual,
  .clinic-visual img {
    min-height: 400px;
    height: 400px;
  }

  .clinic-visual {
    border-radius: 130px 130px 24px 24px;
  }

  .contact-section {
    padding: 0 0 78px;
  }

  .contact-panel {
    gap: 38px;
    padding: 42px 25px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 54px;
  }

  .hero-media {
    min-height: 460px;
  }

  .hero-image-wrap {
    height: 370px;
  }

  .location-card {
    padding: 15px;
  }

  .section-heading h2,
  .clinic-copy h2,
  .contact-panel h2 {
    font-size: 47px;
  }

  .family-copy h2,
  .doctor-intro h2 {
    font-size: 54px;
  }

  .doctor-portrait {
    min-height: 440px;
  }
}

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

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

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

/* V3 — focused premium clinic direction */
.hero {
  min-height: 820px;
  padding: 145px 0 90px;
  color: var(--white);
  background: var(--deep-2);
}

.hero::before {
  top: -330px;
  right: -180px;
  width: 780px;
  height: 780px;
  border-color: rgba(120, 216, 206, 0.14);
}

.hero::after {
  right: 42%;
  bottom: -80px;
  width: 220px;
  height: 220px;
  opacity: 0.07;
}

.hero-orb-one {
  border-color: rgba(120, 216, 206, 0.12);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  gap: clamp(52px, 7vw, 96px);
}

.hero-copy {
  padding: 10px 0;
}

.hero .eyebrow-light {
  color: var(--mint);
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(66px, 6.5vw, 92px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero h1 em {
  display: block;
  color: var(--mint);
  font-style: normal;
  font-weight: 600;
}

.hero-lead {
  max-width: 570px;
  margin-top: 28px;
  color: #b8cecf;
  font-size: 17px;
}

.hero .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero .button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  color: #9db9bb;
}

.hero-note span {
  color: var(--mint);
}

.hero-proof span {
  color: #d7e7e7;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.hero-media {
  min-height: 590px;
  padding: 0 0 64px 24px;
}

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

.hero-doctor-visual {
  position: relative;
  height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  background: linear-gradient(150deg, #dff5f0 0%, #86ddd3 64%, #59bdb7 100%);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
  isolation: isolate;
}

.hero-doctor-halo {
  position: absolute;
  z-index: -1;
  top: 64px;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(3, 44, 51, 0.18);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-doctor-visual::after {
  position: absolute;
  z-index: -1;
  right: -85px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.hero-doctor-visual > img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 92%;
  height: 96%;
  margin: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 25px rgba(3, 44, 51, 0.2));
}

.hero-visual-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-doctor-name {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(3, 44, 51, 0.84);
  backdrop-filter: blur(14px);
}

.hero-doctor-name small {
  color: #a9cecc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-doctor-name strong {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.location-card {
  right: -20px;
  bottom: 8px;
  min-width: 330px;
}

.confidence-strip {
  padding: 0 0 36px;
  background: var(--deep-2);
}

.confidence-grid {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.confidence-grid article {
  min-height: 98px;
  padding-block: 20px;
}

.confidence-grid article + article {
  border-color: rgba(255, 255, 255, 0.12);
}

.confidence-grid strong {
  color: var(--white);
}

.confidence-grid small {
  color: #8fadaf;
}

.services {
  padding: 108px 0;
  background: var(--paper);
}

.section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 64px;
}

.section-heading h2,
.family-copy h2,
.clinic-copy h2,
.contact-panel h2 {
  font-size: clamp(44px, 4.8vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: auto;
  min-height: 330px;
  padding: 28px;
  border-radius: 22px;
}

.service-card:nth-child(3) {
  background: var(--cream);
}

.service-card h3 {
  font-size: clamp(28px, 2.5vw, 36px);
}

.service-card p {
  font-size: 14px;
}

.family-section {
  padding: 108px 0;
}

.family-grid {
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(52px, 7vw, 90px);
}

.family-copy h2 {
  font-size: clamp(48px, 5.2vw, 68px);
}

.family-lead {
  margin: 23px 0;
  font-size: 16px;
}

.check-list {
  margin: 25px 0;
}

.check-list li {
  padding: 13px 0;
}

.doctor-section {
  padding: 108px 0;
}

.doctor-grid {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.doctor-intro {
  padding: 0;
}

.doctor-intro h2 {
  font-size: clamp(48px, 5vw, 68px);
}

.doctor-lead {
  margin: 22px 0;
  font-size: 16px;
}

.credential-panel {
  padding: 30px;
}

.credential-feature strong {
  font-size: 21px;
}

.clinic-section {
  padding: 108px 0;
}

.clinic-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(52px, 7vw, 90px);
}

.clinic-visual,
.clinic-visual img {
  min-height: 440px;
  height: 440px;
}

.contact-section {
  padding: 24px 0 96px;
}

.contact-panel {
  padding: 58px 62px;
}

.contact-panel h2 {
  max-width: 620px;
  font-size: clamp(42px, 4.5vw, 58px);
}

.site-footer {
  padding-top: 65px;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(60px, 7vw, 78px);
  }

  .hero-media {
    min-height: 540px;
  }

  .hero-doctor-visual {
    height: 490px;
  }
}

@media (max-width: 900px) {
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 124px 0 76px;
  }

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

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

  .hero-media {
    width: min(100%, 620px);
    min-height: 590px;
    margin: 16px auto 0;
    padding-left: 0;
  }

  .hero-doctor-visual {
    height: 540px;
  }

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

  .service-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .family-grid,
  .clinic-grid {
    grid-template-columns: 1fr;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .doctor-intro {
    max-width: 660px;
  }

  .credential-panel {
    grid-column: auto;
  }

  .clinic-visual {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 112px 0 66px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 66px);
    letter-spacing: -0.065em;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-media {
    min-height: 500px;
    padding: 0 0 68px;
  }

  .hero-doctor-visual {
    height: 450px;
    border-radius: 26px;
  }

  .hero-doctor-name {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
  }

  .hero-visual-label {
    top: 12px;
    left: 12px;
  }

  .location-card {
    right: 0;
    bottom: 4px;
    left: 16px;
    min-width: 0;
  }

  .confidence-strip {
    padding-bottom: 24px;
  }

  .services,
  .family-section,
  .doctor-section,
  .clinic-section {
    padding: 78px 0;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading h2,
  .family-copy h2,
  .clinic-copy h2,
  .contact-panel h2,
  .doctor-intro h2 {
    font-size: 43px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: auto;
    min-height: 300px;
  }

  .family-grid {
    gap: 50px;
  }

  .clinic-visual,
  .clinic-visual img {
    min-height: 360px;
    height: 360px;
  }

  .contact-panel {
    padding: 40px 24px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 49px;
  }

  .hero-doctor-visual {
    height: 410px;
  }

  .hero-media {
    min-height: 465px;
  }
}

/* V4 — visit confidence, recommendations and FAQ */
.brand small {
  font-size: 9px;
}

.site-nav a {
  font-size: 14px;
}

.eyebrow {
  font-size: 12px;
}

.hero-visual-label,
.hero-doctor-name small {
  font-size: 11px;
}

.booking-note {
  max-width: 540px;
  margin: 12px 0 0;
  color: #b6cbcc;
  font-size: 13px;
  line-height: 1.55;
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
  min-height: 405px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.65;
}

.service-points {
  display: grid;
  gap: 9px;
  margin: 20px 0 28px;
  padding: 0;
  color: var(--ink-2);
  font-size: 14px;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 18px;
}

.service-points li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.service-card:nth-child(1) .service-points {
  color: #b8cecf;
}

.service-card:nth-child(1) .service-points li::before {
  background: var(--mint);
}

.visit-section {
  padding: 108px 0;
  background: #e9f2ef;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.visit-card {
  position: relative;
  display: flex;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(6, 63, 77, 0.12);
  border-radius: 22px;
  flex-direction: column;
  background: var(--white);
}

.visit-card-hours {
  color: var(--white);
  border-color: transparent;
  background: var(--deep);
}

.visit-card-hours::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 190px;
  height: 190px;
  border: 32px solid rgba(121, 222, 210, 0.14);
  border-radius: 50%;
  content: "";
}

.concept-flag,
.review-status {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.visit-label {
  margin: auto 0 9px;
  color: #a8c6c7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.visit-card-hours h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 34px;
}

.visit-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.visit-card-hours p {
  position: relative;
  z-index: 1;
  color: #c8dddd;
}

.visit-card .visit-time {
  margin: 8px 0 0;
  color: var(--mint);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.visit-step {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: auto;
  border-radius: 50%;
  place-items: center;
  color: var(--deep);
  background: var(--mint-soft);
  font-size: 12px;
  font-weight: 700;
}

.visit-card a {
  margin-top: 24px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.visit-tip {
  padding-top: 16px;
  border-top: 1px solid rgba(6, 63, 77, 0.1);
}

.visit-tip strong {
  display: block;
  color: var(--ink);
}

.concept-disclaimer {
  max-width: 820px;
  margin: 20px 0 0;
  color: #6f8485;
  font-size: 13px;
  line-height: 1.6;
}

.reviews-section {
  padding: 108px 0;
  color: var(--white);
  background: var(--deep-2);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  align-items: end;
  gap: 64px;
}

.reviews-heading h2 {
  max-width: 770px;
  margin: 0;
  color: var(--white);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.reviews-heading > p {
  margin: 0;
  color: #a8c0c1;
  font-size: 16px;
  line-height: 1.7;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.review-card {
  display: flex;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.055);
}

.review-card blockquote {
  margin: auto 0 22px;
  color: var(--white);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.review-card p {
  margin: 0;
  color: #9fb7b8;
  font-size: 14px;
  line-height: 1.6;
}

.review-card-action {
  color: var(--deep);
  border-color: transparent;
  background: var(--mint);
}

.review-card-action .review-status {
  color: var(--white);
  background: var(--deep);
}

.review-card-action h3 {
  margin: auto 0 14px;
  color: var(--deep);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.review-card-action p {
  color: #245d62;
}

.review-card-action a {
  margin-top: 24px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.clinic-visual img {
  object-fit: cover;
  object-position: center;
}

.clinic-concept-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 43, 53, 0.84);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq-section {
  padding: 108px 0;
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
}

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

.faq-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(44px, 4.6vw, 62px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.faq-intro > p:not(.eyebrow) {
  margin: 22px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid rgba(6, 63, 77, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(6, 63, 77, 0.16);
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  color: var(--ink);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  place-items: center;
  color: var(--deep);
  background: var(--mint-soft);
  content: "+";
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary:focus-visible {
  border-radius: 8px;
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 24px;
  padding-right: 42px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .reviews-heading,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .visit-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visit-card-hours,
  .review-card-action {
    grid-column: 1 / -1;
  }

  .site-nav.is-open {
    max-height: 520px;
  }
}

@media (max-width: 680px) {
  .visit-section,
  .reviews-section,
  .faq-section {
    padding: 78px 0;
  }

  .visit-grid,
  .review-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .visit-card-hours,
  .review-card-action {
    grid-column: auto;
  }

  .visit-card,
  .review-card {
    min-height: 300px;
    padding: 24px;
  }

  .reviews-heading h2,
  .faq-intro h2 {
    font-size: 43px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    min-height: 390px;
  }
}

/* V5 — keep the doctor identity and location cards visually separate */
.hero-media {
  min-height: 650px;
  padding-bottom: 110px;
}

.hero-doctor-name {
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 12px 17px;
  background: rgba(3, 44, 51, 0.96);
}

.hero-doctor-name strong {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.location-card {
  bottom: 0;
}

@media (max-width: 680px) {
  .hero-media {
    min-height: 555px;
    padding-bottom: 105px;
  }

  .hero-doctor-name {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .hero-doctor-name strong {
    font-size: 18px;
  }

  .location-card {
    bottom: 0;
  }
}

@media (max-width: 420px) {
  .hero-media {
    min-height: 515px;
  }
}

/* V7 — compact visit flow to avoid consecutive card grids */
.visit-section {
  padding: 88px 0;
}

.visit-bar {
  display: grid;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(6, 63, 77, 0.14);
  border-radius: 28px;
  grid-template-columns: 1.05fr 1fr 0.8fr;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(3, 44, 51, 0.1);
}

.visit-bar-primary {
  display: flex;
  min-height: 285px;
  padding: 36px;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  background: var(--deep);
}

.visit-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-bar-primary h3 {
  max-width: 390px;
  margin: 0;
  color: var(--white);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.visit-bar-primary p {
  max-width: 430px;
  margin: 15px 0 0;
  color: #bdd1d2;
  font-size: 15px;
  line-height: 1.65;
}

.visit-button {
  align-self: flex-start;
  margin-top: 24px;
  padding: 13px 17px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--mint);
  font-size: 13px;
  font-weight: 700;
}

.visit-button:hover {
  color: var(--deep);
  background: var(--white);
}

.visit-mini-steps {
  display: grid;
  margin: 0;
  padding: 0;
  background: var(--white);
  list-style: none;
}

.visit-mini-steps li {
  display: grid;
  padding: 30px;
  align-items: center;
  gap: 16px;
  grid-template-columns: 44px 1fr;
}

.visit-mini-steps li + li {
  border-top: 1px solid rgba(6, 63, 77, 0.13);
}

.visit-mini-steps li > span {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  place-items: center;
  color: var(--deep);
  background: var(--mint-soft);
  font-size: 12px;
  font-weight: 700;
}

.visit-mini-steps strong,
.visit-bring > strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.visit-mini-steps p,
.visit-bring p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.visit-bring {
  display: flex;
  padding: 34px;
  flex-direction: column;
  justify-content: center;
  background: #ccefe9;
}

.visit-bring .visit-kicker {
  color: var(--teal);
}

.visit-bring > strong {
  font-size: 21px;
}

@media (max-width: 900px) {
  .visit-bar {
    grid-template-columns: 1fr 1fr;
  }

  .visit-bring {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .visit-section {
    padding: 72px 0;
  }

  .visit-bar {
    margin-top: 34px;
    border-radius: 24px;
    grid-template-columns: 1fr;
  }

  .visit-bar-primary {
    min-height: 0;
    padding: 28px 24px;
  }

  .visit-bar-primary h3 {
    font-size: 29px;
  }

  .visit-mini-steps li {
    padding: 24px;
  }

  .visit-bring {
    padding: 28px 24px;
    grid-column: auto;
  }
}
