:root {
  --ink: #14343d;
  --muted: #617981;
  --teal-950: #063f4a;
  --teal-900: #0b5563;
  --teal-800: #126b77;
  --teal-700: #16818a;
  --teal-500: #22a8a7;
  --mint: #9de4d2;
  --mint-soft: #e8f8f4;
  --aqua-soft: #eff9fb;
  --white: #ffffff;
  --cream: #fbfdfc;
  --line: rgba(10, 85, 99, .14);
  --shadow-sm: 0 12px 34px rgba(6, 63, 74, .10);
  --shadow-lg: 0 28px 70px rgba(6, 63, 74, .18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal-950);
  border-radius: 9px;
  transition: transform .2s ease;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading h2,
.benefits-copy h2,
.appointment-copy h2 {
  margin: 0;
  color: var(--teal-950);
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading > p:last-child,
.benefits-copy > p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.light h2,
.section-heading.light > p:last-child {
  color: var(--white);
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(251, 253, 252, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(251, 253, 252, .96);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(6, 63, 74, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
  gap: 28px;
}

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

.brand-mark {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: linear-gradient(145deg, var(--mint-soft), var(--white));
  border: 1px solid rgba(34, 168, 167, .18);
  border-radius: 14px;
}

.brand-mark svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.brand-mark .brand-mark-line {
  fill: none;
  stroke: var(--white);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.brand-copy strong {
  color: var(--teal-950);
  font-size: 1.06rem;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: .68rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav > a {
  position: relative;
  color: #36545d;
  font-size: .9rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  padding: 11px 17px;
  color: var(--white);
  background: var(--teal-900);
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(11, 85, 99, .18);
  transition: transform .2s ease, background .2s ease;
}

.main-nav .nav-cta:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--teal-950);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 64px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(232, 248, 244, .78), rgba(251, 253, 252, .1) 42%),
    radial-gradient(circle at 80% 24%, rgba(34, 168, 167, .14), transparent 36%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(11, 85, 99, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 85, 99, .032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  pointer-events: none;
  background: rgba(157, 228, 210, .22);
  filter: blur(20px);
  border-radius: 50%;
}

.hero-glow-one {
  top: 4%;
  right: -190px;
}

.hero-glow-two {
  bottom: 5%;
  left: -250px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 600px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 60px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--teal-950);
  font-size: clamp(3rem, 6vw, 5.75rem);
  line-height: .98;
  letter-spacing: -.062em;
}

.hero-copy h1 span {
  color: var(--teal-700);
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #4f6b73;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 800;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  fill: currentColor;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  box-shadow: 0 14px 32px rgba(11, 85, 99, .24);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(11, 85, 99, .3);
}

.button-secondary {
  color: var(--teal-900);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(11, 85, 99, .2);
}

.button-secondary:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.hero-professional {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
}

.hero-professional-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.hero-professional-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-professional small,
.hero-professional strong {
  display: block;
}

.hero-professional small {
  color: var(--muted);
  font-size: .77rem;
}

.hero-professional strong {
  color: var(--teal-950);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.orbital-card {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(157, 228, 210, .52) 0 20%, transparent 21%),
    radial-gradient(circle at center, transparent 0 41%, rgba(11, 85, 99, .14) 41.2% 41.7%, transparent 42%),
    radial-gradient(circle at center, transparent 0 67%, rgba(11, 85, 99, .10) 67.2% 67.7%, transparent 68%);
}

.orbital-card::before,
.orbital-card::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px dashed rgba(11, 85, 99, .16);
  border-radius: 50%;
  animation: rotate 34s linear infinite;
}

.orbital-card::after {
  inset: 27%;
  animation-direction: reverse;
  animation-duration: 25s;
}

.orbital-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 205px;
  height: 205px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal-950), var(--teal-700));
  border: 12px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  box-shadow: 0 30px 70px rgba(6, 63, 74, .25);
  transform: translate(-50%, -50%);
}

.orbital-core svg {
  position: absolute;
  width: 115px;
  height: 115px;
  opacity: .17;
  fill: currentColor;
}

.orbital-core .orbital-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.orbital-core span {
  position: relative;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  letter-spacing: -.03em;
}

.orbit-item {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 210px;
  gap: 12px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(11, 85, 99, .12);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.orbit-item span {
  flex: 0 0 39px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--teal-800);
  background: var(--mint-soft);
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 900;
}

.orbit-item p {
  margin: 0;
  color: var(--teal-950);
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.3;
}

.orbit-one {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-two {
  top: 42%;
  right: -3%;
}

.orbit-three {
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-four {
  top: 42%;
  left: -3%;
}

.hero-contact-strip {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(11, 85, 99, .1);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  grid-template-columns: .76fr 1.24fr 1.2fr;
  backdrop-filter: blur(16px);
}

.hero-contact-strip > a {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
  padding: 22px;
  transition: background .2s ease;
}

.hero-contact-strip > a + a {
  border-left: 1px solid var(--line);
}

.hero-contact-strip > a:hover {
  background: var(--mint-soft);
}

.strip-icon {
  flex: 0 0 40px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--teal-800);
  border-radius: 13px;
}

.strip-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.hero-contact-strip small,
.hero-contact-strip strong {
  display: block;
}

.hero-contact-strip small {
  color: var(--muted);
  font-size: .72rem;
}

.hero-contact-strip strong {
  overflow: hidden;
  color: var(--teal-950);
  font-size: .87rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.formation {
  background: var(--white);
}

.formation-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: .78fr 1.42fr;
  gap: 26px;
}

.profile-card {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 16%, rgba(157, 228, 210, .35), transparent 28%),
    linear-gradient(145deg, var(--teal-950), var(--teal-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.profile-card::after {
  position: absolute;
  top: -15%;
  right: -20%;
  width: 290px;
  height: 290px;
  content: "";
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255,255,255,.035), 0 0 0 80px rgba(255,255,255,.025);
}

.profile-symbol {
  position: absolute;
  top: 38px;
  left: 38px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 28px;
  backdrop-filter: blur(10px);
}

.profile-symbol svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-card > p {
  margin: 0 0 9px;
  color: var(--mint);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.profile-card > span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 370px;
  margin-top: 17px;
  color: rgba(255, 255, 255, .78);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.credential-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.credential-card:hover {
  border-color: rgba(34, 168, 167, .35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.credential-number {
  align-self: flex-end;
  color: rgba(11, 85, 99, .2);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.credential-card p {
  margin: 0 0 8px;
  color: var(--teal-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.credential-card h3 {
  margin: 0;
  color: var(--teal-950);
  font-size: clamp(1.12rem, 2.5vw, 1.45rem);
  line-height: 1.3;
  letter-spacing: -.025em;
}

.science-banner {
  display: flex;
  align-items: center;
  max-width: 780px;
  margin: 32px auto 0;
  gap: 18px;
  padding: 22px 28px;
  background: var(--mint-soft);
  border: 1px solid rgba(34, 168, 167, .16);
  border-radius: 20px;
}

.science-banner-icon {
  flex: 0 0 48px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--teal-800);
  background: var(--white);
  border-radius: 15px;
}

.science-banner-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.science-banner strong,
.science-banner p {
  display: block;
  margin: 0;
}

.science-banner strong {
  color: var(--teal-950);
}

.science-banner p {
  color: var(--muted);
  font-size: .9rem;
}

.treatments {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(4, 48, 57, .97), rgba(11, 85, 99, .97)),
    var(--teal-950);
}

.treatments::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012);
}

.treatments-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.treatment-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  padding: 30px;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-md);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.treatment-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(157, 228, 210, .42);
  transform: translateY(-6px);
}

.treatment-card.highlight {
  background: linear-gradient(145deg, rgba(34, 168, 167, .25), rgba(255, 255, 255, .07));
  border-color: rgba(157, 228, 210, .35);
}

.treatment-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--mint);
  background: rgba(157, 228, 210, .09);
  border: 1px solid rgba(157, 228, 210, .17);
  border-radius: 19px;
}

.treatment-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.treatment-index {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(255, 255, 255, .12);
  font-size: 2.25rem;
  font-weight: 900;
}

.treatment-card h3 {
  max-width: 300px;
  margin: 42px 0 0;
  color: var(--white);
  font-size: 1.33rem;
  line-height: 1.23;
  letter-spacing: -.025em;
}

.treatment-card p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, .63);
  font-size: .92rem;
}

.centered-action {
  margin-top: 38px;
  text-align: center;
}

.button-light {
  color: var(--teal-950);
  background: var(--mint);
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
}

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

.benefits {
  background:
    radial-gradient(circle at 12% 90%, rgba(157, 228, 210, .25), transparent 27%),
    var(--aqua-soft);
}

.benefits-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
}

.benefits-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.benefits-copy > p {
  max-width: 470px;
}

.benefits-accent {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 38px;
  color: var(--teal-900);
}

.benefits-accent span {
  width: 4px;
  height: 55px;
  background: var(--teal-500);
  border-radius: 8px;
}

.benefits-accent strong {
  font-size: .92rem;
  line-height: 1.4;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.benefit-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 29px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(11, 85, 99, .1);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(6, 63, 74, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.benefit-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(11, 85, 99, .12);
  font-size: 2.3rem;
  font-weight: 900;
}

.benefit-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--teal-700);
  background: var(--mint-soft);
  border-radius: 20px;
}

.benefit-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  max-width: 270px;
  margin: 44px 0 0;
  color: var(--teal-950);
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.appointment {
  padding: 64px 0 0;
  background: var(--white);
}

.appointment-card {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(157, 228, 210, .22), transparent 31%),
    linear-gradient(135deg, var(--teal-950), var(--teal-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  grid-template-columns: .92fr 1.08fr;
  gap: 55px;
}

.appointment-card::before {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255,255,255,.028), 0 0 0 104px rgba(255,255,255,.017);
}

.appointment-copy,
.appointment-actions {
  position: relative;
  z-index: 1;
}

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

.appointment-copy h2 {
  color: var(--white);
}

.appointment-copy p {
  margin: 15px 0 4px;
  color: rgba(255, 255, 255, .72);
}

.appointment-copy > strong {
  font-size: 1.06rem;
}

.appointment-actions {
  display: grid;
  gap: 13px;
}

.contact-action {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 15px;
  padding: 17px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease;
}

.contact-action:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateX(4px);
}

.contact-action > span {
  flex: 0 0 44px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal-950);
  background: var(--mint);
  border-radius: 14px;
}

.contact-action svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-action div {
  min-width: 0;
}

.contact-action small,
.contact-action strong {
  display: block;
}

.contact-action small {
  color: rgba(255, 255, 255, .63);
  font-size: .75rem;
}

.contact-action strong {
  overflow: hidden;
  color: var(--white);
  font-size: .9rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.location {
  background: var(--white);
}

.location-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 26px;
}

.location-photo {
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.location-photo img {
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
  background: #e9f0ee;
}

.location-photo figcaption {
  padding: 16px 21px;
  color: var(--muted);
  font-size: .84rem;
}

.location-card {
  position: sticky;
  top: calc(var(--header-height) + 25px);
  padding: 34px;
  background: var(--aqua-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.location-pin {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--white);
  background: var(--teal-800);
  border-radius: 22px;
  box-shadow: 0 14px 27px rgba(11, 85, 99, .2);
}

.location-pin svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.location-card h3 {
  margin: 0;
  color: var(--teal-950);
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.location-card > p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.location-divider {
  height: 1px;
  margin: 28px 0;
  background: var(--line);
}

.location-card > a:not(.button) {
  display: block;
  margin-bottom: 18px;
}

.location-card small,
.location-card strong {
  display: block;
}

.location-card small {
  color: var(--muted);
  font-size: .74rem;
}

.location-card strong {
  overflow-wrap: anywhere;
  color: var(--teal-950);
  font-size: .92rem;
}

.location-button {
  width: 100%;
  margin-top: 10px;
}

.site-footer {
  padding: 70px 0 22px;
  color: rgba(255, 255, 255, .7);
  background: #032f38;
}

.site-footer .brand-mark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.1);
}

.site-footer .brand-copy strong {
  color: var(--white);
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, .58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .85fr .65fr;
  gap: 60px;
}

.footer-brand > p {
  max-width: 410px;
  margin: 21px 0 0;
  font-size: .9rem;
}

.footer-info h3,
.footer-links h3 {
  margin: 0 0 17px;
  color: var(--white);
  font-size: .95rem;
}

.footer-info a,
.footer-links a,
.footer-info p {
  display: block;
  margin: 9px 0;
  overflow-wrap: anywhere;
  font-size: .86rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--mint);
  font-weight: 800;
}

.mobile-contact-bar {
  display: none;
}

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

.reveal.visible {
  animation: revealIn .65s ease both;
}

@keyframes revealIn {
  from {
    opacity: .01;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

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

  .main-nav {
    gap: 17px;
  }

  .main-nav > a {
    font-size: .82rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 7vw, 4.7rem);
  }

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

  .orbit-item {
    width: 185px;
  }

  .orbit-two {
    right: -7%;
  }

  .orbit-four {
    left: -7%;
  }

  .formation-layout,
  .benefits-layout {
    gap: 35px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

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

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

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

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    gap: 0;
    padding: 20px;
    background: rgba(251, 253, 252, .98);
    border-top: 1px solid var(--line);
    box-shadow: 0 25px 50px rgba(6, 63, 74, .13);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav > a {
    padding: 15px 10px;
    font-size: 1rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .nav-cta {
    justify-self: stretch;
    margin-top: 10px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 65px);
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-professional {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 600px);
    min-height: 530px;
    margin-inline: auto;
  }

  .orbit-two {
    right: 1%;
  }

  .orbit-four {
    left: 1%;
  }

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

  .hero-contact-strip > a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .formation-layout,
  .benefits-layout,
  .appointment-card,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .profile-card {
    min-height: 420px;
  }

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

  .benefits-copy,
  .location-card {
    position: static;
  }

  .appointment-card {
    padding: 45px;
  }

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

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand-copy small {
    max-width: 190px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 45px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-professional {
    align-items: flex-start;
    text-align: left;
  }

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

  .orbital-core {
    width: 160px;
    height: 160px;
    border-width: 9px;
  }

  .orbital-core svg {
    width: 90px;
    height: 90px;
  }

  .orbital-core span {
    font-size: 1.12rem;
  }

  .orbit-item {
    width: 160px;
    padding: 11px 12px;
  }

  .orbit-item span {
    flex-basis: 33px;
    width: 33px;
    height: 33px;
  }

  .orbit-item p {
    font-size: .72rem;
  }

  .orbit-one {
    top: 4%;
  }

  .orbit-three {
    bottom: 4%;
  }

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

  .orbit-four {
    top: 42%;
    left: -2%;
  }

  .hero-contact-strip > a {
    padding: 18px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .formation-layout {
    gap: 18px;
  }

  .profile-card {
    min-height: 390px;
    padding: 28px;
  }

  .profile-symbol {
    top: 28px;
    left: 28px;
  }

  .credentials-grid,
  .treatments-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .credential-card {
    min-height: 190px;
  }

  .science-banner {
    align-items: flex-start;
    padding: 20px;
  }

  .treatment-card {
    min-height: 240px;
  }

  .appointment {
    padding-top: 30px;
  }

  .appointment-card {
    padding: 34px 23px;
    border-radius: 28px;
  }

  .contact-action {
    padding: 14px;
  }

  .location {
    padding-bottom: 94px;
  }

  .location-photo {
    border-radius: 25px;
  }

  .location-card {
    padding: 27px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 950;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    overflow: hidden;
    background: rgba(3, 47, 56, .95);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(3, 47, 56, .32);
    grid-template-columns: 1fr 1fr;
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    gap: 8px;
    color: var(--white);
    font-size: .85rem;
    font-weight: 800;
  }

  .mobile-contact-bar a + a {
    border-left: 1px solid rgba(255,255,255,.15);
  }

  .mobile-contact-bar svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
}

@media (max-width: 410px) {
  .brand-copy small {
    display: none;
  }

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

  .orbit-item {
    width: 145px;
  }

  .orbit-item p {
    font-size: .68rem;
  }

  .orbit-two {
    right: -5%;
  }

  .orbit-four {
    left: -5%;
  }
}

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

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

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