:root {
  --navy: #26355b;
  --navy-deep: #16233f;
  --blue: #a7ccd5;
  --blue-strong: #8fbec9;
  --ice: #eef4f5;
  --paper: #f8f9f8;
  --warm: #f1ece5;
  --white: #ffffff;
  --ink: #172238;
  --muted: #687183;
  --line: rgba(23, 34, 56, 0.14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --container: min(1320px, calc(100vw - 48px));
  --display: "Manrope", sans-serif;
  --body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue-strong) var(--navy-deep);
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb {
  background: var(--blue-strong);
  border: 3px solid var(--navy-deep);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
::-webkit-scrollbar-corner { background: var(--navy-deep); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }
body { margin: 0; color: var(--ink); background: #f2f4f5; font-family: var(--body); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
strong, b { font-weight: 400; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--display); font-weight: 600; letter-spacing: -0.045em; line-height: 1.02; }
h2 { font-size: clamp(2.6rem, 5.7vw, 5.8rem); }
h3 { font-size: 1.25rem; }

.skip-link { position: fixed; left: 18px; top: -80px; z-index: 999; padding: 12px 18px; background: var(--white); border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 18px; }
.page-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 1000; pointer-events: none; }
.page-progress span { display: block; width: 100%; height: 100%; background: var(--blue-strong); transform: scaleX(0); transform-origin: left; }
@view-transition { navigation: auto; }
::view-transition-group(root) { animation-duration: .26s; animation-timing-function: var(--ease); }
::view-transition-old(root) { animation: page-view-out .18s ease both; mix-blend-mode: normal; }
::view-transition-new(root) { animation: page-view-in .26s var(--ease) both; mix-blend-mode: normal; }
@keyframes page-view-out { to { opacity: 0; transform: translateY(-2px); } }
@keyframes page-view-in { from { opacity: 0; transform: translateY(4px); } }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(90px, 11vw, 160px) 0; }
.section--navy { color: var(--white); background: var(--navy-deep); }
.section--soft { background: var(--ice); }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: var(--navy); font-family: var(--display); font-size: .72rem; font-weight: 400; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { width: 7px; height: 7px; background: currentColor; border-radius: 50%; content: ""; }
.eyebrow--light { color: rgba(255,255,255,.8); }
.eyebrow--blue { color: var(--blue); }

.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 18px; padding: 0 26px; border: 1px solid transparent; border-radius: 999px; font-weight: 400; transition: transform .35s var(--ease), background-color .35s, color .35s, border-color .35s; }
.button:hover { transform: translateY(-3px); }
.button > span:last-child { position: relative; display: block; width: 18px; height: 18px; flex: 0 0 18px; overflow: hidden; font-size: 0; transition: transform .3s var(--ease); }
.button > span:last-child::before { position: absolute; top: 8px; left: 2px; width: 14px; height: 2.4px; background: currentColor; border-radius: 2px; content: ""; transform: rotate(-45deg); }
.button > span:last-child::after { position: absolute; top: 2px; right: 2px; width: 7px; height: 7px; border-top: 2.4px solid currentColor; border-right: 2.4px solid currentColor; content: ""; }
.button:hover > span:last-child { transform: translate(2px, -2px); }
.button--small { min-height: 46px; padding-inline: 21px; font-size: .9rem; }
.button--primary { color: var(--white); background: var(--navy); }
.button--primary:hover { background: var(--navy-deep); }
.button--light { color: var(--navy-deep); background: var(--blue); }
.button--light:hover { background: var(--white); }
.button--outline { border-color: var(--line); background: transparent; }
.button--outline:hover { border-color: var(--navy); }
.button--ghost-light { color: var(--white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button--ghost-light:hover { color: var(--navy); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-weight: 400; }

.site-header { position: fixed; top: 8px; left: 50%; z-index: 100; display: grid; width: calc(100vw - 16px); min-height: 88px; grid-template-columns: auto 1fr auto; align-items: center; padding: 10px 28px 10px 34px; background: rgba(255,255,255,.97); border: 1px solid rgba(255,255,255,.9); border-radius: 27px; box-shadow: 0 10px 32px rgba(22,35,63,.06); transform: translateX(-50%); transition: min-height .35s var(--ease), top .35s var(--ease), box-shadow .35s, background-color .35s; backdrop-filter: blur(18px); }
.site-header.is-scrolled { top: 6px; min-height: 76px; background: rgba(255,255,255,.94); box-shadow: 0 14px 44px rgba(22,35,63,.13); }
.brand { position: relative; z-index: 2; width: 214px; }
.brand img { width: 100%; }
.desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(25px, 2.25vw, 44px); margin-right: clamp(28px, 3vw, 58px); }
.desktop-nav a { position: relative; font-size: 16px; font-weight: 400; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--navy); content: ""; transform: scaleX(0); transition: transform .3s var(--ease); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.button--nav { min-height: 52px; padding: 0 24px; color: var(--white); background: var(--navy); box-shadow: 0 4px 0 var(--navy-deep), 0 9px 20px rgba(22,35,63,.14); font-size: 16px; white-space: nowrap; }
.button--nav:hover { background: var(--navy-deep); box-shadow: 0 3px 0 #0d172a, 0 12px 24px rgba(22,35,63,.2); transform: translateY(-1px); }
.menu-toggle, .mobile-menu { display: none; }

.hero { position: relative; z-index: 1; display: flex; min-height: max(700px, calc(100svh - 118px)); align-items: center; margin: 106px 12px 12px; padding: 86px max(48px, calc((100vw - 1320px) / 2)) 120px; color: var(--white); overflow: hidden; border-radius: var(--radius-lg); isolation: isolate; }
.hero__media, .hero__wash { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 112%; object-fit: cover; object-position: 56% 38%; transform: translate3d(-2.5%, -4%, 0) scale(1.08); will-change: transform; }
.hero__wash { z-index: -1; background: linear-gradient(90deg, rgba(9,18,34,.9) 0%, rgba(12,23,42,.72) 35%, rgba(12,23,42,.18) 67%, rgba(12,23,42,.08) 100%), linear-gradient(0deg, rgba(10,19,34,.38), transparent 45%); }
.hero__content { width: min(820px, 66vw); }
.hero h1 { max-width: 820px; margin-bottom: 24px; font-size: 72px; font-weight: 600; line-height: .98; }
.hero__lead { max-width: 670px; margin-bottom: 28px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .button { font-size: 16px; }
.hero__rating { position: absolute; left: max(48px, calc((100vw - 1320px) / 2)); bottom: 28px; display: flex; align-items: center; gap: 20px; padding: 12px 24px 12px 13px; border: 1px solid rgba(255,255,255,.2); background: rgba(12,24,37,.54); border-radius: 999px; backdrop-filter: blur(18px); transition: background-color .3s, transform .3s var(--ease); }
.hero__rating:hover { background: rgba(12,24,37,.72); transform: translateY(-3px); }
.rating-marks { display: flex; }
.rating-marks i { display: grid; width: 42px; height: 42px; place-items: center; margin-left: -9px; color: var(--navy); background: var(--blue); border: 3px solid var(--white); border-radius: 50%; font: 400 .72rem var(--display); font-style: normal; }
.rating-marks i:first-child { margin-left: 0; }
.rating-marks i:nth-child(2) { background: #dbeaec; }.rating-marks i:nth-child(3) { color: var(--white); background: var(--navy); }.rating-marks i:nth-child(4) { color: var(--navy); background: var(--warm); }
.rating-copy { display: grid; gap: 3px; }
.rating-score { display: flex; align-items: center; gap: 12px; line-height: 1; }
.rating-score strong { font: 700 18px var(--display); }
.rating-score b { color: #fbbc05; font-size: 15px; letter-spacing: .09em; }
.rating-caption { color: rgba(255,255,255,.72); font-size: 15px; }
.google-word { display: inline-flex; margin-left: 2px; font: 400 19px var(--display); letter-spacing: -.04em; }
.google-word span:nth-child(1), .google-word span:nth-child(4) { color: #4285f4; }
.google-word span:nth-child(2), .google-word span:nth-child(6) { color: #ea4335; }
.google-word span:nth-child(3) { color: #fbbc05; }
.google-word span:nth-child(5) { color: #34a853; }
.hero-reveal { opacity: 0; transform: translateY(28px); animation: hero-in .9s var(--ease) forwards; }
.hero-reveal:nth-child(1) { animation-delay: .18s; }.hero-reveal:nth-child(2) { animation-delay: .28s; }.hero-reveal:nth-child(3) { animation-delay: .38s; }.hero-reveal:nth-child(4) { animation-delay: .48s; }
.hero__rating.hero-reveal { animation-delay: .65s; }
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }

.intro { position: relative; z-index: 2; width: calc(100% - 16px); margin: 0 8px 12px; padding: 94px 0 42px; background: var(--paper); border-radius: 32px; box-shadow: 0 -22px 56px rgba(22,35,63,.09); }
.intro__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 42px; }
.human-chips { display: flex; }
.human-chips span { display: grid; min-width: 62px; height: 62px; place-items: center; margin-left: -9px; color: var(--navy); background: var(--blue); border: 4px solid var(--paper); border-radius: 50%; font-size: .66rem; font-weight: 400; }
.human-chips span:nth-child(2) { background: var(--warm); }.human-chips span:nth-child(3) { color: var(--white); background: var(--navy); }
.intro__statement { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr); gap: clamp(44px, 6vw, 92px); align-items: center; }
.intro__statement h2 { max-width: 830px; margin-bottom: 0; font-size: clamp(2.7rem, 4.4vw, 4.35rem); line-height: 1.04; }
.intro__statement p { max-width: 390px; margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; border-top: 1px solid var(--line); }
.principle { min-height: 194px; padding: 22px 24px 16px 0; border-right: 1px solid var(--line); }
.principle:not(:first-child) { padding-left: 24px; }.principle:last-child { border-right: 0; }
.principle__number { display: block; margin-bottom: 32px; color: var(--blue-strong); font: 400 .78rem var(--display); }
.principle h3 { margin-bottom: 10px; font-size: 1.12rem; line-height: 1.18; }.principle p { max-width: 275px; margin-bottom: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

.clinic-preview { position: relative; z-index: 3; padding: 0 0 12px; }
.clinic-preview__grid { display: grid; min-height: 570px; grid-template-columns: minmax(0, 1.46fr) minmax(380px, 1fr); gap: 12px; }
.clinic-preview__media, .clinic-preview__card { position: relative; overflow: hidden; border-radius: 30px; }
.clinic-preview__media > img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1s var(--ease); }
.clinic-preview__media:hover > img { transform: scale(1.025); }
.clinic-preview__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,22,40,.82) 0%, rgba(12,22,40,.2) 48%, rgba(12,22,40,.02) 72%); }
.clinic-preview__caption { position: absolute; right: 34px; bottom: 31px; left: 34px; color: var(--white); }
.clinic-preview__caption .eyebrow { margin-bottom: 13px; }
.clinic-preview__caption h2 { max-width: 560px; margin-bottom: 10px; font-size: clamp(2.25rem, 3.5vw, 3.8rem); }
.clinic-preview__card { display: flex; flex-direction: column; justify-content: space-between; padding: 34px; color: var(--white); background: var(--navy); }
.clinic-preview__card::before { position: absolute; top: -130px; right: -100px; width: 340px; height: 340px; background: rgba(167,204,213,.12); border-radius: 50%; content: ""; }
.clinic-preview__card-top { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; }
.clinic-preview__card-top img { width: 62px; height: 62px; padding: 13px; background: var(--blue); border-radius: 18px; object-fit: contain; }
.clinic-preview__card-top > a { display: grid; width: 58px; height: 58px; place-items: center; background: rgba(255,255,255,.11); border-radius: 50%; font-size: 1.45rem; transition: color .3s, background-color .3s, transform .3s var(--ease); }
.clinic-preview__card-top > a:hover { color: var(--navy); background: var(--white); transform: rotate(8deg); }
.clinic-preview__card-copy { position: relative; z-index: 1; }
.clinic-preview__card-copy .eyebrow { margin-bottom: 17px; }
.clinic-preview__card h3 { max-width: 520px; margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.35rem); line-height: 1.05; }
.clinic-preview__card-copy > p:not(.eyebrow) { margin-bottom: 28px; color: rgba(255,255,255,.68); font-size: 1rem; }
.clinic-preview__card .button { min-height: 52px; padding-inline: 22px; font-size: 16px; }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 8vw; align-items: end; margin-bottom: 70px; }
.section-heading h2 { max-width: 930px; margin-bottom: 0; }
.section-heading > p { max-width: 400px; margin-bottom: 8px; color: rgba(255,255,255,.62); font-size: 1.05rem; }
.section-heading--dark > p { color: var(--muted); }
.treatments { position: relative; isolation: isolate; overflow: clip; padding: 108px 0 120px; }
.treatments > .container, .reviews > .container { position: relative; z-index: 1; }
.section-watermark { position: absolute; z-index: 0; width: clamp(720px, 60vw, 1120px); color: var(--blue); opacity: .038; pointer-events: none; }
.section-watermark svg { display: block; width: 100%; height: auto; overflow: visible; fill: none; stroke: currentColor; stroke-width: 28; }
.section-watermark path { stroke-linejoin: round; }
.section-watermark--treatments { bottom: clamp(-470px, -25vw, -330px); left: clamp(-700px, -35vw, -430px); transform: rotate(10deg); }
.section-watermark--reviews { top: clamp(-430px, -22vw, -280px); right: clamp(-760px, -38vw, -470px); transform: rotate(-9deg); }
.treatments .section-heading { grid-template-columns: minmax(0, 1fr) minmax(300px, 390px); gap: clamp(50px, 8vw, 120px); align-items: center; margin-bottom: 44px; }
.treatments .section-heading h2 { max-width: 760px; font-size: clamp(3.1rem, 4.2vw, 4rem); line-height: 1.03; }
.treatments .section-heading > p { max-width: 390px; font-size: 18px; line-height: 1.55; }
.treatments-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.treatment-card { display: flex; min-height: 410px; flex-direction: column; padding: 24px; color: var(--ink); background: #f8fbfb; border: 1px solid rgba(255,255,255,.28); border-radius: 24px; transition: background-color 1s cubic-bezier(.45, 0, .25, 1), box-shadow .7s cubic-bezier(.45, 0, .25, 1), transform .7s cubic-bezier(.22, 1, .36, 1); }
.treatment-card:nth-child(2), .treatment-card:nth-child(4), .treatment-card:nth-child(6) { background: var(--blue); }
.treatment-card:hover { background: var(--white); box-shadow: 0 18px 42px rgba(5,13,30,.18); transform: translateY(-6px); }
.treatment-card:nth-child(2):hover, .treatment-card:nth-child(4):hover, .treatment-card:nth-child(6):hover { background: #b8d7de; }
.treatment-card__top { display: flex; min-height: 25px; align-items: center; justify-content: space-between; gap: 18px; color: var(--navy); font-size: .76rem; font-weight: 400; }
.treatment-card__top small { color: var(--muted); font-size: .69rem; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }
.treatment-card__icon { display: grid; width: 100%; height: 132px; place-items: center; margin: 18px 0 22px; color: var(--navy); background: rgba(238,244,245,.88); border-radius: 18px; }
.treatment-card:nth-child(even) .treatment-card__icon { background: rgba(255,255,255,.38); }
.treatment-card__icon img { width: 118px; height: 118px; object-fit: contain; transition: transform .7s cubic-bezier(.22, 1, .36, 1); }
.treatment-card:hover .treatment-card__icon img { transform: scale(1.06) rotate(-2deg); }
.treatment-card h3 { margin-bottom: 9px; font-size: 1.42rem; line-height: 1.15; }
.treatment-card p { min-height: 0; margin-bottom: 22px; color: var(--muted); font-size: .94rem; line-height: 1.5; }
.treatment-card > a { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: .91rem; font-weight: 400; }
.treatment-card__arrow { position: relative; display: block; width: 17px; height: 17px; flex: 0 0 17px; transition: transform .55s cubic-bezier(.22, 1, .36, 1); }
.treatment-card__arrow::before { position: absolute; top: 7px; left: 2px; width: 13px; height: 2px; background: currentColor; border-radius: 2px; content: ""; transform: rotate(-45deg); }
.treatment-card__arrow::after { position: absolute; top: 2px; right: 2px; width: 6px; height: 6px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; content: ""; }
.treatment-card:hover .treatment-card__arrow { transform: translate(2px, -2px); }

.marquee { overflow: hidden; padding: 20px 0; color: var(--navy); background: var(--blue); border-top: 1px solid rgba(255,255,255,.2); }
.marquee__track { display: flex; width: max-content; align-items: center; gap: 30px; animation: marquee 30s linear infinite; }
.marquee span { font: 400 clamp(1rem, 1.7vw, 1.5rem) var(--display); letter-spacing: -.03em; }.marquee i { display: block; width: 24px; height: 24px; flex: 0 0 24px; background: url("assets/brand/symbol-navy.png") center / contain no-repeat; font-size: 0; opacity: .9; }
@keyframes marquee { to { transform: translateX(-50%); } }

.experience { padding-block: clamp(88px, 8vw, 120px); background: var(--paper); }
.experience__grid { display: grid; grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr); gap: clamp(48px, 5vw, 78px); align-items: center; }
.experience__media { position: relative; height: clamp(520px, 42vw, 600px); overflow: hidden; border-radius: var(--radius-lg); }
.experience__media > img { position: absolute; inset: 0; width: 100%; height: 110%; object-fit: cover; object-position: center; transform: translateY(-5%); }
.experience__badge { position: absolute; right: 24px; bottom: 24px; display: flex; max-width: 270px; align-items: center; gap: 14px; padding: 14px 18px 14px 12px; background: rgba(255,255,255,.88); border-radius: 999px; backdrop-filter: blur(14px); }
.experience__badge img { width: 42px; height: 42px; object-fit: contain; }.experience__badge span { font-size: .87rem; font-weight: 400; }
.experience__content h2 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.5rem, 3.55vw, 4.15rem); }
.experience__lead { max-width: 690px; margin-bottom: 30px; color: var(--muted); font-size: 1.02rem; line-height: 1.55; }
.objection-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.objection { display: grid; min-height: 0; grid-template-columns: 30px 1fr; gap: 12px; align-content: start; padding: 18px; background: var(--ice); border: 1px solid rgba(23,34,56,.08); border-radius: 18px; }
.objection > span { padding-top: 3px; color: var(--blue-strong); font: 400 .77rem var(--display); }.objection h3 { margin-bottom: 7px; font-size: 1.08rem; line-height: 1.25; }.objection p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }

.process { padding-block: clamp(88px, 8vw, 120px); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 0; }
.process-step { padding-right: 30px; }.process-step > span { display: grid; width: 52px; height: 52px; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font: 400 .82rem var(--display); }
.process-step__line { height: 1px; margin: -26px 0 50px 52px; background: var(--line); }.process-step:last-child .process-step__line { background: linear-gradient(90deg, var(--line), transparent); }
.process-step h3 { margin-bottom: 9px; }.process-step p { color: var(--muted); font-size: .94rem; line-height: 1.55; }
.center-action { display: flex; justify-content: center; margin-top: 48px; }

@media (min-width: 821px) {
  .process .section-heading { grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: clamp(56px, 8vw, 110px); align-items: end; margin-bottom: 54px; }
  .process .section-heading h2 { max-width: 820px; font-size: clamp(3rem, 4vw, 4.5rem); line-height: 1.04; }
  .process .section-heading > p { max-width: 370px; margin-bottom: 4px; line-height: 1.55; }
}

.about { padding-block: clamp(88px, 8vw, 120px); background: var(--white); }
.about__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: clamp(48px, 5vw, 76px); align-items: center; }
.about__content h2 { max-width: 690px; margin-bottom: 24px; font-size: clamp(2.65rem, 3.55vw, 4.15rem); line-height: 1.04; }.about__content > p:not(.eyebrow) { max-width: 630px; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.about__content .text-link { margin-top: 12px; }
.about__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 42px; }
.about__values div { padding: 17px 15px; background: var(--ice); }.about__values div:first-child { border-radius: 16px 0 0 16px; }.about__values div:last-child { border-radius: 0 16px 16px 0; }
.about__values strong, .about__values span { display: block; }.about__values strong { font-family: var(--display); font-weight: 600; }.about__values span { margin-top: 6px; color: var(--muted); font-size: .75rem; }
.about__media { position: relative; height: clamp(520px, 42vw, 600px); overflow: hidden; border-radius: var(--radius-lg); }
.about__media > img { position: absolute; inset: 0; width: 100%; height: 110%; object-fit: cover; object-position: center 52%; transform: translateY(-5%); }
.about__media::after { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(145deg, rgba(38,53,91,.16) 0%, rgba(169,208,217,.07) 48%, rgba(22,35,63,.2) 100%); content: ""; }
.about__signature { position: absolute; right: 20px; bottom: 20px; left: 20px; z-index: 2; padding: 22px; color: var(--white); background: rgba(22,35,63,.9); border-radius: 20px; backdrop-filter: blur(15px); }
.about__signature img { width: 220px; margin-bottom: 10px; }.about__signature p { margin: 0; color: rgba(255,255,255,.68); }
.reviews { position: relative; isolation: isolate; padding-block: clamp(88px, 8vw, 120px); overflow: hidden; }
.reviews .section-heading { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(56px, 8vw, 110px); align-items: end; margin-bottom: 48px; }
.reviews .section-heading h2 { max-width: 820px; font-size: clamp(3rem, 4vw, 4.5rem); line-height: 1.04; }
.reviews .section-heading > p { max-width: 370px; margin-bottom: 4px; line-height: 1.55; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { display: flex; min-height: 330px; flex-direction: column; padding: 24px; color: var(--ink); background: var(--white); border-radius: var(--radius-md); }
.review-card:nth-child(2) { background: var(--blue); }.review-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: .83rem; font-weight: 400; }.review-card__meta .google-word { margin-left: 0; font-size: .9rem; }.review-card__stars { color: #fbbc05; letter-spacing: .12em; }
.review-card blockquote { margin: 34px 0 28px; font-family: var(--display); font-size: clamp(1.05rem, 1.35vw, 1.3rem); letter-spacing: -.025em; line-height: 1.45; }
.review-card footer { display: flex; align-items: center; gap: 13px; margin-top: auto; }.review-card__avatar { display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-size: .76rem; }.review-card footer strong, .review-card footer small { display: block; }.review-card footer small { color: var(--muted); }

.location { background: var(--paper); }
.location__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 8vw; align-items: center; }
.location__map { position: relative; width: 100%; height: clamp(500px, 42vw, 620px); min-height: 0; align-self: center; overflow: hidden; background: var(--blue); border-radius: var(--radius-lg); }
.location__map > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.location__map::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22,35,63,.16), transparent 40%); content: ""; }
.map-lines i { position: absolute; z-index: 1; width: 130%; height: 18px; background: rgba(255,255,255,.55); border: 2px solid rgba(38,53,91,.12); border-radius: 999px; transform-origin: center; }.map-lines i:nth-child(1) { top: 18%; left: -20%; transform: rotate(24deg); }.map-lines i:nth-child(2) { top: 50%; left: -12%; transform: rotate(-18deg); }.map-lines i:nth-child(3) { top: 70%; left: -15%; transform: rotate(37deg); }.map-lines i:nth-child(4) { top: 40%; left: 22%; transform: rotate(76deg); }
.map-pin { position: absolute; top: 48%; left: 54%; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 10px 15px 10px 9px; background: var(--white); border-radius: 999px; box-shadow: 0 12px 25px rgba(22,35,63,.18); transform: translate(-50%,-50%); }.map-pin img { width: 40px; height: 40px; object-fit: contain; }.map-pin span { font-weight: 400; }
.location__map > p { position: absolute; left: 24px; bottom: 20px; z-index: 2; margin: 0; padding: 8px 12px; background: rgba(255,255,255,.8); border-radius: 999px; font-size: .78rem; }
.location__content { align-self: center; }.location__content h2 { margin-bottom: 28px; font-size: clamp(2.6rem, 4.5vw, 4.8rem); }.location__content > p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; }
.contact-list { margin: 46px 0; }.contact-list div { display: grid; grid-template-columns: 130px 1fr; padding: 19px 0; border-top: 1px solid var(--line); }.contact-list dt { color: var(--muted); font-size: .85rem; }.contact-list dd { margin: 0; font-weight: 400; }.contact-list small { color: #9a6c4f; }
.location__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Localização mais legível em notebooks e desktops compactos. */
@media (min-width: 821px) and (max-width: 1440px) {
  .location {
    padding-block: clamp(78px, 7vw, 100px);
  }

  .location__grid {
    gap: clamp(42px, 5vw, 68px);
  }

  .location__map {
    height: clamp(470px, 40vw, 540px);
    min-height: 0;
  }

  .location__content h2 {
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 4vw, 3.75rem);
  }

  .location__content > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.5;
  }

  .contact-list {
    margin: 30px 0;
  }

  .contact-list div {
    grid-template-columns: 112px 1fr;
    padding: 15px 0;
  }
}

.faq__grid { display: grid; grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr); gap: 10vw; align-items: start; }
.faq__intro { position: sticky; top: 120px; }.faq__intro h2 { margin-bottom: 28px; font-size: clamp(2.6rem, 4.4vw, 4.8rem); }.faq__intro > p:not(.eyebrow) { max-width: 480px; color: var(--muted); }.faq__intro .text-link { margin-top: 24px; }
.accordion__item { border-top: 1px solid var(--line); }.accordion__item:last-child { border-bottom: 1px solid var(--line); }.accordion__item h3 { margin: 0; }.accordion__item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }.accordion__item button span { font: 600 clamp(1.05rem, 1.8vw, 1.35rem) var(--display); letter-spacing: -.025em; }
.accordion__item button i { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; }.accordion__item button i::before, .accordion__item button i::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; background: var(--ink); content: ""; transform: translate(-50%,-50%); transition: transform .3s; }.accordion__item button i::after { transform: translate(-50%,-50%) rotate(90deg); }.accordion__item.is-open button i::after { transform: translate(-50%,-50%) rotate(0); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }.accordion__panel p { max-width: 660px; min-height: 0; margin: 0; padding-right: 60px; color: var(--muted); overflow: hidden; }.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }.accordion__item.is-open .accordion__panel p { padding-bottom: 28px; }

.final-cta { position: relative; display: grid; min-height: 760px; place-items: center; margin: 12px; color: var(--white); overflow: hidden; border-radius: var(--radius-lg); isolation: isolate; }
.final-cta__media, .final-cta__overlay { position: absolute; inset: 0; z-index: -2; }.final-cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); }.final-cta__overlay { z-index: -1; background: rgba(14,25,47,.75); }
.final-cta__content { width: min(920px, calc(100% - 40px)); text-align: center; }.final-cta__content .eyebrow { justify-content: center; }.final-cta h2 { margin-bottom: 24px; font-size: clamp(3rem, 6.6vw, 6.8rem); }.final-cta__content > p:not(.eyebrow) { max-width: 630px; margin: 0 auto 34px; color: rgba(255,255,255,.74); font-size: 1.08rem; }
.brand-cta { position: relative; display: inline-flex; min-height: 76px; align-items: center; gap: 22px; margin: 12px 0 0 48px; padding: 0 30px 0 70px; color: var(--navy-deep); background: var(--blue); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; box-shadow: 0 14px 35px rgba(8,17,33,.24), inset 0 -3px 0 rgba(38,53,91,.12); font-size: 16px; font-weight: 600; line-height: 1.2; transition: color .35s, background-color .35s, box-shadow .35s, transform .35s var(--ease); }
.brand-cta:hover { color: var(--navy); background: var(--white); box-shadow: 0 18px 42px rgba(8,17,33,.3), inset 0 -3px 0 rgba(38,53,91,.08); transform: translateY(-3px); }
.brand-cta__mark { position: absolute; top: 50%; left: -48px; display: grid; width: 96px; height: 96px; place-items: center; overflow: hidden; background: var(--white); border-radius: 50%; box-shadow: 0 10px 26px rgba(8,17,33,.26); transform: translateY(-50%); transition: transform .4s var(--ease); }
.brand-cta:hover .brand-cta__mark { transform: translateY(-50%) rotate(-5deg); }
.brand-cta__symbol { position: relative; display: block; width: 78px; height: 88px; overflow: hidden; }
.brand-cta__symbol img { position: absolute; top: 3px; left: -2px; width: auto; max-width: none; height: 88px; filter: brightness(0) saturate(100%) invert(20%) sepia(18%) saturate(1390%) hue-rotate(185deg) brightness(90%) contrast(91%); }
.brand-cta__label { white-space: nowrap; }
.brand-cta__arrow { position: relative; width: 18px; height: 18px; flex: 0 0 18px; transition: transform .3s var(--ease); }
.brand-cta__arrow::before { position: absolute; top: 8px; left: 2px; width: 14px; height: 2.4px; background: currentColor; border-radius: 2px; content: ""; transform: rotate(-45deg); }
.brand-cta__arrow::after { position: absolute; top: 2px; right: 2px; width: 7px; height: 7px; border-top: 2.4px solid currentColor; border-right: 2.4px solid currentColor; content: ""; }
.brand-cta:hover .brand-cta__arrow { transform: translate(2px, -2px); }

.site-footer { padding: 90px 0 26px; color: var(--white); background: var(--navy-deep); }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 6vw; padding-bottom: 90px; }.footer__brand img { width: 270px; margin-bottom: 24px; }.footer__brand p { max-width: 320px; color: rgba(255,255,255,.62); }.footer__brand > a { color: var(--blue); }
.footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }.footer__column h2 { margin-bottom: 12px; color: var(--blue); font-size: .73rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }.footer__column a, .footer__column p { color: rgba(255,255,255,.67); font-size: .9rem; }.footer__column a:hover { color: var(--white); }.footer__contact p { margin-bottom: 3px; }
.footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-size: .76rem; }.footer__bottom p { margin: 0; }.footer__bottom > div { display: flex; justify-content: flex-end; gap: 20px; }.footer__legal { text-align: center; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; min-height: 54px; align-items: center; gap: 10px; padding: 0 18px; color: var(--white); background: #1f8f5f; border: 4px solid rgba(255,255,255,.82); border-radius: 999px; box-shadow: 0 12px 30px rgba(22,35,63,.2); font-weight: 400; transition: transform .3s var(--ease); }.whatsapp-float:hover { transform: translateY(-4px); }.whatsapp-float svg { width: 22px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(44px); transition: opacity .85s var(--ease), transform .85s var(--ease); }.reveal.is-visible { opacity: 1; transform: translateY(0); }
.split-word {
  display: inline-block;
  margin: -.1em -.07em -.2em;
  padding: .1em .07em .2em;
  overflow: hidden;
  vertical-align: top;
}
.split-word > span { display: inline-block; transform: translateY(125%); transition: transform .85s var(--ease); }
.is-visible .split-word > span, .hero .split-word > span { transform: translateY(0); }

@media (min-width: 1101px) {
  .hero { min-height: calc(100svh - 118px); }
}

@media (max-width: 1100px) {
  :root { --container: min(100% - 36px, 920px); }
  .site-header { grid-template-columns: 200px 1fr auto; padding-inline: 24px; }.desktop-nav { gap: 19px; margin-right: 0; }.desktop-nav a { font-size: .84rem; }.brand { width: 185px; }
  .button--nav { display: none; }
  .hero { padding-inline: 44px; }.hero__content { width: min(750px, 75vw); }.hero__rating { left: 44px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }.principle:nth-child(2) { border-right: 0; }.principle:nth-child(3), .principle:nth-child(4) { border-top: 1px solid var(--line); }
  .clinic-preview__grid { min-height: 520px; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); }.clinic-preview__card { padding: 28px; }.clinic-preview__card h3 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
  .treatments-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience__grid, .about__grid, .location__grid { gap: 5vw; }.experience__media { height: 620px; }.about__media { height: 560px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }.review-card:last-child { grid-column: 1 / -1; min-height: 330px; }
  .footer__top { grid-template-columns: 1.5fr repeat(2, 1fr); }.footer__contact { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --container: calc(100% - 28px); --radius-lg: 26px; --radius-md: 20px; }
  .section { padding: 90px 0; }
  .site-header { top: 8px; width: calc(100vw - 16px); min-height: 64px; grid-template-columns: 1fr auto; padding: 9px 12px 9px 17px; border-radius: 19px; }.brand { width: 176px; }.desktop-nav { display: none; }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 0; background: transparent; }.menu-toggle span { position: absolute; width: 22px; height: 2px; background: var(--navy); transition: transform .3s, top .3s; }.menu-toggle span:first-child { top: 17px; }.menu-toggle span:last-child { top: 25px; }.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
  .mobile-menu { position: absolute; top: 0; right: 0; left: 0; z-index: 1; display: flex; height: calc(100vh - 16px); visibility: hidden; flex-direction: column; justify-content: flex-end; padding: 94px 22px 24px; background: var(--paper); border-radius: 19px; opacity: 0; transform: translateY(-20px); transition: opacity .35s, visibility .35s, transform .35s; }.mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }.mobile-menu nav { display: flex; flex: 1; flex-direction: column; justify-content: center; }.mobile-menu nav a { padding: 9px 0; font: 400 clamp(1.65rem, 8vw, 3rem) var(--display); letter-spacing: -.04em; }.mobile-menu .button { width: 100%; }
  .hero { min-height: max(760px, calc(100svh - 86px)); flex-direction: column; align-items: stretch; justify-content: center; margin: 82px 6px 6px; padding: 70px 20px 190px; border-radius: 24px; }.hero__media img { object-position: 59% center; transform: translate3d(0, -4%, 0) scale(1.02); }.hero__wash { background: linear-gradient(90deg, rgba(9,18,34,.48) 0%, rgba(9,18,34,.3) 72%, rgba(9,18,34,.18) 100%), linear-gradient(0deg, rgba(9,18,34,.94) 0%, rgba(10,20,38,.64) 54%, rgba(10,20,38,.25) 100%); }.hero__content { width: 100%; }.hero h1 { font-size: clamp(2.6rem, 11.5vw, 3.3rem); text-shadow: 0 2px 22px rgba(4,10,20,.5), 0 1px 2px rgba(4,10,20,.58); }.hero .eyebrow { text-shadow: 0 2px 12px rgba(4,10,20,.72); }.hero h1 br { display: none; }.hero__lead { font-size: 17px; }.hero__actions { display: grid; }.hero__actions .button { width: 100%; font-size: 16px; }.hero__rating { right: 18px; bottom: 76px; left: 18px; justify-content: center; gap: 14px; padding: 10px 14px 10px 11px; }.rating-marks i { width: 36px; height: 36px; }.rating-score strong { font-size: 16px; }.rating-score b { font-size: 13px; }.rating-caption { font-size: 13px; }.google-word { font-size: 16px; }
  .intro.section { width: calc(100% - 12px); margin: 0 6px 8px; padding: 72px 0 28px; border-radius: 26px; }.intro__top { margin-bottom: 34px; }.human-chips span { min-width: 56px; height: 56px; font-size: .6rem; }.intro__statement, .section-heading { grid-template-columns: 1fr; gap: 24px; }.intro__statement h2, .section-heading h2 { font-size: clamp(2.35rem, 10.4vw, 3.8rem); }.intro__statement p { max-width: 540px; font-size: 17px; }
  .principles-grid { grid-template-columns: 1fr; margin-top: 46px; }.principle, .principle:not(:first-child) { min-height: auto; padding: 22px 0; border-right: 0; border-top: 1px solid var(--line); }.principle__number { margin-bottom: 18px; }.principle p { max-width: 520px; }
  .clinic-preview { padding-bottom: 8px; }.clinic-preview__grid { min-height: 0; grid-template-columns: 1fr; gap: 8px; }.clinic-preview__media { min-height: 440px; border-radius: 25px; }.clinic-preview__card { min-height: 470px; padding: 28px; border-radius: 25px; }.clinic-preview__caption { right: 25px; bottom: 25px; left: 25px; }.clinic-preview__caption h2 { font-size: clamp(2.15rem, 9vw, 3.25rem); }.clinic-preview__card h3 { font-size: clamp(2.1rem, 9vw, 3.2rem); }
  .treatments .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }.treatments .section-heading h2 { font-size: clamp(2.6rem, 10vw, 3.8rem); }.treatments .section-heading > p { font-size: 17px; }.treatments-track { grid-template-columns: 1fr; gap: 12px; }.treatment-card { min-height: 400px; }.section-heading { margin-bottom: 45px; }
  .reviews .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }.reviews .section-heading h2 { font-size: clamp(2.45rem, 11vw, 4rem); }.reviews .section-heading > p { max-width: 540px; }
  .section-watermark { width: 760px; opacity: .032; }
  .section-watermark--treatments { bottom: -300px; left: -570px; }
  .section-watermark--reviews { top: -280px; right: -590px; }
  .experience__grid, .about__grid, .location__grid, .faq__grid { grid-template-columns: 1fr; gap: 60px; }.experience__media, .about__media { height: 560px; }.experience__content h2, .about__content h2, .location__content h2, .faq__intro h2 { font-size: clamp(2.45rem, 11vw, 4rem); }.experience__grid { display: flex; flex-direction: column; }.experience__media { width: 100%; order: 2; }.objection-list { grid-template-columns: 1fr; }.objection { min-height: 0; }
  .process-grid { grid-template-columns: 1fr; margin-top: 55px; }.process-step { display: grid; grid-template-columns: 52px 1fr; column-gap: 18px; padding: 0 0 38px; }.process-step__line { width: 1px; height: 100%; grid-column: 1; grid-row: 1 / 4; margin: 52px auto 0; }.process-step h3, .process-step p { grid-column: 2; }.process-step h3 { margin-top: 4px; }.process-step p { margin-bottom: 0; }.center-action { justify-content: flex-start; }
  .about__grid { display: flex; flex-direction: column; }.about__media { width: 100%; }.about__values { margin-top: 50px; }
  .reviews-grid { grid-template-columns: 1fr; }.review-card:last-child { grid-column: auto; }.review-card { min-height: 380px; }
  .location__map { height: min(118vw, 500px); min-height: 420px; }.location__content { order: -1; }
  .faq__intro { position: static; }
  .final-cta { min-height: 700px; margin: 6px; }.final-cta h2 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
  .footer__top { grid-template-columns: 1fr 1fr; }.footer__brand { grid-column: 1 / -1; }.footer__contact { grid-column: auto; }.footer__bottom { grid-template-columns: 1fr; text-align: left; }.footer__bottom > div { justify-content: flex-start; }.footer__legal { text-align: left; }
}

@media (max-width: 520px) {
  .human-chips { display: none; }.intro__top { margin-bottom: 36px; }
  .hero__media img { height: 128%; object-position: 54% center; transform: translate3d(0, -22%, 0) scale(1.04); }
  .clinic-preview__media { min-height: 390px; }.clinic-preview__media > img { object-position: 56% center; }.clinic-preview__card { min-height: 430px; padding: 22px; }.clinic-preview__caption { right: 21px; bottom: 21px; left: 21px; }.clinic-preview__card-top img { width: 54px; height: 54px; }.clinic-preview__card-top > a { width: 52px; height: 52px; }.clinic-preview__card .button { width: 100%; }
  .hero__rating { justify-content: flex-start; }.rating-marks i { width: 32px; height: 32px; border-width: 2px; }
  .treatment-card { min-height: 390px; padding: 20px; }.treatment-card__icon { height: 132px; margin: 18px 0 22px; }.treatment-card__icon img { width: 110px; height: 110px; }
  .experience__media, .about__media { height: 500px; }.experience__badge { right: 12px; bottom: 12px; left: 12px; max-width: none; }
  .about__values { grid-template-columns: 1fr; gap: 4px; }.about__values div:first-child, .about__values div:last-child { border-radius: 0; }.about__values div:first-child { border-radius: 14px 14px 0 0; }.about__values div:last-child { border-radius: 0 0 14px 14px; }
  .reviews-grid { display: flex; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; }.review-card { min-width: 88%; scroll-snap-align: start; }
  .contact-list div { grid-template-columns: 1fr; gap: 8px; }.location__actions { display: grid; }.location__actions .button { width: 100%; }
  .location__map { height: 110vw; min-height: 400px; }
  .footer__top { grid-template-columns: 1fr; }.footer__brand { grid-column: auto; }.footer__contact { grid-column: auto; }
  .brand-cta { width: calc(100% - 42px); min-height: 70px; justify-content: center; gap: 12px; margin-left: 42px; padding: 0 18px 0 46px; font-size: 14px; }
  .brand-cta__mark { left: -42px; width: 84px; height: 84px; }
  .brand-cta__symbol { width: 68px; height: 77px; }
  .brand-cta__symbol img { top: 2px; left: -2px; height: 77px; }
  .brand-cta__label { white-space: normal; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; padding: 0; justify-content: center; }.whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
  .reveal, .hero-reveal { opacity: 1; transform: none; }.split-word > span { transform: none; }
}
