:root {
  --white: #fff;
  --ink: #171717;
  --muted: #5e605f;
  --rose: #d29392;
  --rose-dark: #945757;
  --nude: #ede5dc;
  --nude-soft: #f7f3ee;
  --teal: #1a4341;
  --teal-dark: #103533;
  --line: #ded7d0;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 84px;
  --section-space: clamp(88px, 10vw, 150px);
  --focus: 0 0 0 4px rgba(210, 147, 146, .36);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.sr-only,
.svg-sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(222, 215, 208, .8);
  transition: box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(22, 42, 40, .08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  min-width: max-content;
}

.brand-monogram,
.footer-brand span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--rose-dark);
  border: 1px solid var(--rose);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -.09em;
  line-height: 1;
  padding-right: 2px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--rose-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.primary-nav a,
.footer-nav a {
  position: relative;
  color: #303332;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.primary-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--rose-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 24px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 9px 24px rgba(26, 67, 65, .18);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 46px;
  padding: 11px 19px;
  font-size: 14px;
}

.button-small svg {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.hero {
  min-height: calc(100svh - var(--header-height) - 156px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  width: min(650px, calc(100% - 64px));
  margin: 0 48px 0 auto;
  padding-block: clamp(64px, 6vw, 92px);
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(48px, 4.6vw, 68px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .99;
}

.hero h1 em,
.section-heading h2 em {
  color: var(--rose-dark);
  font-weight: 400;
  font-style: normal;
}

.hero h1::after {
  content: "";
  display: block;
  width: 112px;
  height: 1px;
  margin-top: 34px;
  background: var(--rose-dark);
}

.hero-copy > p:not(.hero-location) {
  max-width: 555px;
  margin-bottom: 30px;
  color: #424644;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link,
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.text-link {
  padding-block: 10px;
  border-bottom: 1px solid var(--teal);
}

.text-link svg,
.service-cta svg {
  width: 18px;
  height: 18px;
  transition: transform .2s ease;
}

.text-link:hover svg,
.service-cta:hover svg {
  transform: translateX(5px);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-location svg {
  width: 22px;
  height: 22px;
  color: var(--rose-dark);
}

.hero-media {
  position: relative;
  min-height: 640px;
  margin: 0;
  background: var(--nude);
  overflow: hidden;
}

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

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 25px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .58);
}

.intro-band {
  padding: clamp(28px, 2.5vw, 42px) 0 clamp(52px, 5vw, 72px);
  background: var(--nude-soft);
  border-block: 1px solid var(--line);
}

.intro-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) 1.22fr;
  align-items: center;
  gap: 90px;
  padding-left: 170px;
}

.intro-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 94px;
  width: 48px;
  height: 1px;
  background: var(--rose);
}

.botanical-mark {
  position: absolute;
  bottom: -92px;
  left: 0;
  width: 90px;
  height: 180px;
  opacity: .55;
  border-left: 1px solid var(--rose);
  border-radius: 100% 0;
  transform: rotate(26deg);
}

.botanical-mark::before,
.botanical-mark::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 22px;
  border: 1px solid var(--rose);
  border-radius: 100% 0 100% 0;
}

.botanical-mark::before {
  top: 47px;
  left: -37px;
  transform: rotate(12deg);
}

.botanical-mark::after {
  top: 88px;
  left: 3px;
  transform: rotate(175deg);
}

.ioma-feature {
  overflow: hidden;
  background: var(--nude);
  border-bottom: 1px solid var(--line);
}

.ioma-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 420px;
}

.ioma-copy {
  align-self: center;
  padding: 72px 70px 72px 0;
}

.ioma-copy .eyebrow {
  margin-bottom: 12px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ioma-copy h2 {
  margin-bottom: 22px;
  color: var(--teal);
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.ioma-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 30px;
  color: #414544;
}

.ioma-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  background: rgb(0, 177, 199);
}

.ioma-mark img {
  width: min(100%, 447px);
  height: auto;
  object-fit: contain;
}

.intro-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 3.5vw, 50px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.intro-inner p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.services,
.about,
.locations,
.faq {
  padding-block: var(--section-space);
}

.section-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  margin-bottom: clamp(52px, 6vw, 86px);
}

.section-heading.compact {
  margin-bottom: 62px;
}

.section-number {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0 0;
  color: var(--rose-dark);
  font-size: 14px;
  letter-spacing: .12em;
}

.section-number::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rose);
}

.section-heading h2 {
  max-width: 880px;
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(47px, 5.6vw, 78px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.section-heading > div > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.service-list {
  margin-left: 102px;
  border-top: 1px solid var(--line);
}

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

.service-list summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: 70px 1fr 28px;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  list-style: none;
}

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

.service-index {
  color: var(--rose-dark);
  font-size: 13px;
  letter-spacing: .12em;
}

.service-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.service-list summary > svg,
.faq summary > svg {
  width: 24px;
  height: 24px;
  color: var(--rose-dark);
  transition: transform .25s ease;
}

.service-list details[open] summary > svg,
.faq details[open] summary > svg {
  transform: rotate(180deg);
}

.service-content {
  padding: 4px 52px 44px 95px;
}

.service-content > p {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
}

.service-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 42px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.service-content li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}

.service-content li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--rose-dark);
  border-radius: 50%;
}

.hpv-feature {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(420px, .88fr) 1.12fr;
  color: var(--white);
  background: var(--teal);
}

.hpv-copy {
  align-self: center;
  width: min(550px, calc(100% - 48px));
  margin-left: auto;
  padding: 90px 70px 90px 24px;
}

.hpv-copy h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(44px, 4.7vw, 66px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.02;
}

.hpv-copy h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 28px;
  background: var(--rose);
}

.hpv-copy p {
  max-width: 480px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .82);
}

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

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

.hpv-media {
  position: relative;
  min-height: 580px;
  margin: 0;
  overflow: hidden;
}

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

.hpv-media img {
  object-fit: cover;
  object-position: center;
}

.about {
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(480px, 1.1fr);
  gap: clamp(70px, 9vw, 135px);
}

.about-profile {
  position: relative;
}

.about-name {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
}

.about-monogram {
  position: absolute;
  z-index: -1;
  top: -54px;
  left: -54px;
  color: rgba(210, 147, 146, .25);
  font-family: var(--serif);
  font-size: clamp(180px, 20vw, 285px);
  letter-spacing: -.13em;
  line-height: .8;
}

.about-profile h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.3vw, 88px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .9;
}

.about-name p {
  margin: 28px 0 0;
  color: var(--teal);
  font-size: 18px;
  font-weight: 600;
}

.about-copy {
  margin: 32px 0 34px;
  padding-left: 24px;
  border-left: 1px solid var(--rose);
}

.about-copy p {
  max-width: 510px;
  color: #444846;
}

.credential-group + .credential-group {
  margin-top: 60px;
}

.credential-group > h3 {
  margin-bottom: 28px;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.primary-credentials {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.primary-credentials li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 2px 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.primary-credentials li > span {
  grid-row: 1 / 3;
  width: 7px;
  height: 7px;
  margin-top: 10px;
  background: var(--rose-dark);
  border-radius: 50%;
}

.primary-credentials strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.primary-credentials small {
  color: var(--muted);
  font-size: 13px;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 6px;
  width: 1px;
  background: var(--rose);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px 16px;
  padding: 0 0 26px 34px;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--rose);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--rose);
}

.timeline span {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}

.timeline small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.locations {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: var(--nude-soft);
  border-block: 1px solid var(--line);
}

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

.location {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 22px;
  padding: 12px 60px 26px 0;
}

.location + .location {
  padding: 12px 0 26px 70px;
  border-left: 1px solid var(--line);
}

.location-icon {
  width: 31px;
  height: 31px;
  color: var(--rose-dark);
}

.location h3 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.07;
}

.location h3 span {
  display: block;
}

.location address {
  margin-bottom: 18px;
  color: #3f4341;
}

.location p {
  min-height: 56px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
}

.institutions {
  position: relative;
  max-width: 990px;
  margin: 58px auto 0;
  padding: 34px 0 0 50px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.institutions span {
  position: absolute;
  top: 41px;
  left: 11px;
  width: 20px;
  height: 33px;
  border-left: 1px solid var(--rose);
}

.institutions span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -1px;
  width: 16px;
  height: 9px;
  border: 1px solid var(--rose);
  border-radius: 100% 0;
  transform: rotate(-18deg);
}

.faq {
  display: grid;
  grid-template-columns: minmax(360px, .7fr) minmax(500px, 1.3fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq .section-heading {
  display: block;
  margin: 0;
}

.faq .section-number {
  margin-bottom: 26px;
}

.faq .section-heading h2 {
  font-size: clamp(47px, 5vw, 68px);
}

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

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

.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  list-style: none;
}

.faq-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
}

.faq-list details > p {
  max-width: 720px;
  margin: 0;
  padding: 0 58px 30px 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-list a {
  color: var(--teal);
  font-weight: 650;
}

.final-cta {
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--rose);
  overflow: hidden;
}

.final-cta-copy {
  padding: clamp(65px, 7vw, 100px) clamp(40px, 8vw, 125px);
}

.final-cta-copy h2 {
  max-width: 600px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.final-cta-copy p {
  max-width: 520px;
  margin: 0;
  color: #3e3434;
}

.final-cta-action {
  position: relative;
  display: grid;
  place-items: center;
  padding: 60px;
  color: var(--white);
  background: var(--teal);
  overflow: hidden;
}

.final-cta-action::before {
  content: "";
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: -80px;
  width: 160px;
  background: var(--rose);
  border-radius: 0 100% 100% 0;
}

.button-outline-light {
  z-index: 1;
  min-width: min(360px, 100%);
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

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

.site-footer {
  padding: 56px max(24px, calc((100vw - 1280px) / 2)) 30px;
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 70px minmax(430px, 1fr) auto;
  align-items: center;
  gap: 38px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  text-decoration: none;
}

.footer-brand span {
  width: 60px;
  height: 60px;
  font-size: 26px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #404341;
  font-size: 14px;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--teal);
}

.footer-contact svg {
  width: 21px;
  height: 21px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 26px;
  color: #626664;
  font-size: 11px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:first-child {
  max-width: 680px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50px;
  box-shadow: 0 12px 36px rgba(16, 53, 51, .26);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(110px);
  transition: transform .25s ease, background .2s ease;
}

.floating-whatsapp.is-visible {
  transform: translateY(0);
}

.floating-whatsapp:hover {
  background: var(--teal-dark);
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.js .reveal-delay {
  transition-delay: .12s;
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

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

  .header-inner {
    gap: 22px;
  }

  .brand-copy small {
    display: none;
  }

  .primary-nav {
    gap: 22px;
  }

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

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr);
  }

  .hero-copy {
    width: min(610px, calc(100% - 48px));
    margin-right: 30px;
  }

  .hero h1 {
    font-size: clamp(46px, 5.8vw, 66px);
  }

  .service-list {
    margin-left: 60px;
  }

  .about {
    gap: 70px;
  }

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

  .footer-nav {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 38px, 720px);
    --section-space: 90px;
  }

  .header-inner {
    width: calc(100vw - 28px);
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 3px;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease;
  }

  .menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

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

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(22, 42, 40, .1);
    justify-self: stretch;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav a {
    padding: 17px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
  }

  .primary-nav a:last-child {
    border: 0;
  }

  .header-cta {
    display: none;
  }

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

  .hero-copy {
    grid-row: 1;
    width: var(--shell);
    margin-inline: auto;
    padding-block: 70px 58px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(48px, 9vw, 72px);
  }

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

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 120px;
  }

  .intro-inner::before {
    left: 58px;
  }

  .botanical-mark {
    left: 8px;
  }

  .ioma-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  }

  .ioma-copy {
    padding-right: 42px;
  }

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

  .service-list {
    margin-left: 0;
  }

  .service-list summary {
    grid-template-columns: 50px 1fr 24px;
  }

  .service-content {
    padding-left: 75px;
  }

  .hpv-feature {
    grid-template-columns: 1fr;
  }

  .hpv-copy {
    width: var(--shell);
    margin-inline: auto;
    padding: 80px 0;
  }

  .hpv-media {
    min-height: 430px;
  }

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

  .credentials {
    max-width: 700px;
  }

  .location {
    padding-right: 34px;
  }

  .location + .location {
    padding-left: 38px;
  }

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

  .final-cta-copy {
    padding-inline: 45px;
  }

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

  .footer-contact,
  .footer-nav {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 32px);
    --header-height: 70px;
    --section-space: 78px;
  }

  body {
    font-size: 16px;
  }

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

  .ioma-copy {
    padding: 64px 0;
  }

  .ioma-copy .button {
    width: 100%;
  }

  .ioma-mark {
    min-height: 190px;
  }

  .brand {
    gap: 10px;
  }

  .brand-monogram {
    width: 41px;
    height: 41px;
    font-size: 19px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .hero-copy {
    padding-block: 58px 48px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(42px, 13.2vw, 59px);
    line-height: .97;
  }

  .hero h1::after {
    margin-top: 27px;
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-location {
    margin-top: 32px;
  }

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

  .hero-media img {
    object-position: 56% center;
  }

  .hero-media::after {
    inset: 14px;
  }

  .intro-inner {
    padding-left: 74px;
  }

  .intro-inner::before {
    left: 30px;
    width: 25px;
  }

  .botanical-mark {
    bottom: -80px;
    left: -20px;
  }

  .intro-inner h2 {
    font-size: 39px;
  }

  .section-heading {
    display: block;
    margin-bottom: 44px;
  }

  .section-number {
    margin: 0 0 22px;
  }

  .section-heading h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .section-heading > div > p {
    font-size: 16px;
  }

  .service-list summary {
    min-height: 82px;
    grid-template-columns: 34px 1fr 21px;
    gap: 12px;
  }

  .service-list h3 {
    font-size: 27px;
  }

  .service-content {
    padding: 0 0 36px 46px;
  }

  .service-content ul {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hpv-copy {
    padding-block: 72px;
  }

  .hpv-copy h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hpv-copy .button {
    width: 100%;
  }

  .hpv-media {
    min-height: 310px;
  }

  .about {
    gap: 74px;
  }

  .about-name {
    min-height: 190px;
  }

  .about-monogram {
    top: -40px;
    left: -22px;
    font-size: 185px;
  }

  .about-profile h2 {
    font-size: clamp(55px, 17vw, 75px);
  }

  .about-copy {
    margin-top: 22px;
  }

  .about-profile > .button {
    width: 100%;
  }

  .primary-credentials strong,
  .timeline span {
    font-size: 20px;
  }

  .timeline li {
    grid-template-columns: minmax(0, 1fr);
    padding-left: 29px;
  }

  .locations {
    padding-inline: 16px;
  }

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

  .location,
  .location + .location {
    grid-template-columns: 30px 1fr;
    gap: 14px;
    padding: 0 0 48px;
  }

  .location + .location {
    padding-top: 48px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .location h3 {
    font-size: 36px;
  }

  .location p {
    min-height: 0;
  }

  .location .button {
    width: 100%;
  }

  .institutions {
    margin-top: 20px;
  }

  .faq-list summary {
    min-height: 80px;
  }

  .faq-list details > p {
    padding-right: 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-copy {
    padding: 70px 24px;
  }

  .final-cta-copy h2 {
    font-size: 48px;
  }

  .final-cta-action {
    min-height: 230px;
    padding: 50px 24px;
  }

  .final-cta-action::before {
    top: -70px;
    bottom: auto;
    left: -10%;
    width: 120%;
    height: 100px;
    border-radius: 0 0 50% 50%;
  }

  .button-outline-light {
    font-size: 16px;
  }

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

  .footer-contact,
  .footer-nav,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    gap: 16px;
  }

  .footer-legal {
    display: flex;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

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

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

@media print {
  .site-header,
  .floating-whatsapp,
  .hero-actions,
  .button,
  .final-cta {
    display: none !important;
  }

  .content-section {
    content-visibility: visible;
  }

  body {
    color: #000;
    background: #fff;
  }
}
