:root {
  --navy-950: #061d38;
  --navy-900: #0b2c52;
  --navy-800: #123c68;
  --navy-700: #194d7c;
  --gold-600: #a8792d;
  --gold-500: #c49a51;
  --gold-400: #dbba7b;
  --cream-50: #fdfbf7;
  --cream-100: #f7f1e8;
  --cream-200: #eee4d6;
  --ink: #16283b;
  --muted: #5e6b78;
  --white: #ffffff;
  --border: rgba(16, 44, 74, 0.14);
  --shadow-sm: 0 8px 30px rgba(14, 38, 63, 0.08);
  --shadow-lg: 0 30px 80px rgba(14, 38, 63, 0.16);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --container: 1180px;
  --radius: 3px;
  --z-header: 40;
  --z-menu: 50;
  --z-floating: 30;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }
::selection { color: var(--white); background: var(--navy-800); }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; color: var(--white); background: var(--navy-900); transform: translateY(-160%); transition: transform 180ms ease; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.eyebrow { margin: 0 0 15px; color: var(--gold-600); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; line-height: 1.4; text-transform: uppercase; }
.eyebrow span { margin-inline: 5px; opacity: 0.62; }

.site-header { position: sticky; top: 0; z-index: var(--z-header); min-height: 84px; border-bottom: 1px solid transparent; background: rgba(253, 251, 247, 0.92); backdrop-filter: blur(14px); transition: box-shadow 220ms ease, border-color 220ms ease; }
.site-header.is-scrolled { border-color: var(--border); box-shadow: 0 8px 24px rgba(10, 36, 62, 0.07); }
.header-inner { display: flex; align-items: center; min-height: 84px; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 12px; }
.brand-mark { position: relative; display: flex; align-items: center; justify-content: center; width: 64px; height: 58px; color: var(--gold-600); font-family: var(--font-display); font-size: 2.3rem; line-height: 1; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; inset: 5px 27px; border-left: 1px solid var(--gold-400); transform: rotate(25deg); }
.brand-mark::after { transform: rotate(-25deg); }
.brand-mark span:first-child { transform: translateX(4px); }
.brand-mark span:last-child { margin-left: -5px; transform: translateY(5px); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { color: var(--navy-900); font-family: var(--font-display); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 0.5rem; letter-spacing: 0.13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; flex: 1 1 auto; gap: clamp(14px, 1.6vw, 26px); }
.nav-link { position: relative; display: grid; place-items: center; min-height: 44px; color: #34485c; font-size: 0.69rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: color 200ms ease; }
.nav-link::after { content: ""; position: absolute; bottom: 5px; left: 50%; width: 18px; height: 1px; background: var(--gold-500); transform: translateX(-50%) scaleX(0); transition: transform 220ms var(--ease); }
.nav-link:hover, .nav-link.is-active { color: var(--navy-900); }
.nav-link:hover::after, .nav-link.is-active::after { transform: translateX(-50%) scaleX(1); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 0; color: var(--navy-900); background: transparent; cursor: pointer; }
.menu-toggle svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.7; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: var(--radius); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; line-height: 1.2; text-transform: uppercase; cursor: pointer; transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease); }
.button svg { width: 17px; height: 17px; margin-left: 10px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-gold { color: var(--white); background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); box-shadow: 0 8px 22px rgba(168, 121, 45, 0.22); }
.button-gold:hover { background: linear-gradient(135deg, #d0aa64, #9b6d26); box-shadow: 0 12px 28px rgba(168, 121, 45, 0.3); }
.button-navy { color: var(--white); background: var(--navy-900); box-shadow: 0 10px 24px rgba(11, 44, 82, 0.18); }
.button-navy:hover { background: var(--navy-800); }
.header-cta { flex: 0 0 auto; min-height: 46px; padding-inline: 17px; font-size: 0.61rem; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--navy-900); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.text-link svg { width: 19px; height: 19px; margin-left: 9px; fill: none; stroke: var(--gold-600); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; transition: transform 220ms var(--ease); }
.text-link:hover svg { transform: translateX(5px); }

.hero { position: relative; overflow: hidden; padding: 74px 0 0; background: radial-gradient(circle at 76% 30%, rgba(219, 186, 123, 0.2), transparent 27%), linear-gradient(110deg, #f8f1e8 0%, #fdfbf8 54%, #eee1d2 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: 0.25; background-image: linear-gradient(rgba(168, 121, 45, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 121, 45, 0.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-glow { position: absolute; top: 12%; left: 40%; width: 300px; height: 300px; border: 1px solid rgba(196, 154, 81, 0.22); border-radius: 50%; }
.hero-glow::before, .hero-glow::after { content: ""; position: absolute; border: 1px solid rgba(196, 154, 81, 0.13); border-radius: 50%; }
.hero-glow::before { inset: 30px; }.hero-glow::after { inset: 60px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 0.93fr 1.07fr; align-items: center; min-height: 580px; }
.hero-copy { position: relative; z-index: 2; max-width: 590px; padding: 35px 30px 120px 0; }
.hero h1 { margin: 0; color: var(--navy-900); font-family: var(--font-display); font-size: clamp(3rem, 5vw, 5.15rem); font-weight: 500; letter-spacing: -0.045em; line-height: 1.02; }
.hero h1 em { display: block; margin-top: 9px; color: var(--navy-800); font-size: 0.68em; font-weight: 500; line-height: 1.2; }
.hero-lead { max-width: 510px; margin: 28px 0 0; color: #405265; font-size: 1.03rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.proof-seal { display: grid; place-items: center; width: 45px; height: 45px; flex: 0 0 45px; border: 1px solid rgba(168, 121, 45, 0.45); border-radius: 50%; color: var(--gold-600); }
.proof-seal svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.hero-proof p { display: grid; margin: 0; line-height: 1.45; }
.hero-proof strong { color: var(--navy-900); font-family: var(--font-display); font-size: 0.94rem; font-weight: 600; }
.hero-proof span { color: var(--muted); font-size: 0.72rem; }
.hero-visual { position: relative; align-self: stretch; min-height: 580px; }
.hero-arch { position: absolute; inset: 0 0 0 2%; overflow: hidden; border-radius: 320px 320px 0 0; box-shadow: var(--shadow-lg); }
.hero-arch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 34, 56, 0.23), transparent 36%); }
.hero-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 51% 26%; }
.hero-signature { position: absolute; right: -50px; bottom: 65px; z-index: 1; color: rgba(255, 255, 255, 0.13); font-family: var(--font-display); font-size: 11rem; line-height: 0.8; }
.hero-floating-card { position: absolute; right: -18px; bottom: 78px; z-index: 2; display: flex; align-items: center; gap: 13px; min-width: 240px; padding: 15px 20px; color: var(--white); background: rgba(11, 44, 82, 0.92); box-shadow: 0 16px 40px rgba(7, 28, 50, 0.24); backdrop-filter: blur(10px); }
.hero-floating-card svg { width: 26px; height: 26px; flex: 0 0 auto; fill: none; stroke: var(--gold-400); stroke-linejoin: round; stroke-width: 1.3; }
.hero-floating-card span { display: grid; color: rgba(255, 255, 255, 0.75); font-size: 0.62rem; line-height: 1.5; }
.hero-floating-card strong { color: var(--white); font-family: var(--font-display); font-size: 0.9rem; font-weight: 500; }
.feature-ribbon { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -70px; padding: 31px 24px; color: var(--white); background: linear-gradient(115deg, var(--navy-900), #082342); box-shadow: 0 22px 50px rgba(8, 35, 66, 0.2); }
.feature-ribbon article { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 15px; min-height: 76px; padding: 0 30px; border-right: 1px solid rgba(255, 255, 255, 0.18); }
.feature-ribbon article:last-child { border-right: 0; }
.feature-ribbon svg { width: 40px; height: 40px; fill: none; stroke: var(--gold-400); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25; }
.feature-ribbon h2 { margin: 0; font-family: var(--font-body); font-size: 0.82rem; font-weight: 400; line-height: 1.55; }

.section-heading { max-width: 720px; margin: 0 auto 55px; text-align: center; }
.section-heading h2, .about-copy h2 { margin: 0; color: var(--navy-900); font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3.3rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.12; }
.section-heading h2 em, .about-copy h2 em { font-weight: 500; }
.section-heading > p:last-child { max-width: 620px; margin: 20px auto 0; color: var(--muted); }
.ornament { position: relative; display: block; width: 190px; height: 16px; margin: 16px auto 0; }
.ornament::before, .ornament::after { content: ""; position: absolute; top: 8px; width: 78px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-400)); }
.ornament::before { left: 0; }.ornament::after { right: 0; transform: rotate(180deg); }
.ornament { background: radial-gradient(ellipse at center, var(--gold-500) 0 2px, transparent 3px); }
.ornament-left { margin-left: 0; }

.treatments { position: relative; padding-top: 145px; background: var(--cream-50); }
.treatments::before { content: ""; position: absolute; top: 58%; left: -180px; width: 420px; height: 420px; border: 1px solid rgba(196, 154, 81, 0.13); border-radius: 50%; }
.treatment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.treatment-card { position: relative; overflow: hidden; min-height: 540px; padding: 43px 46px; border: 1px solid var(--border); background: rgba(255, 255, 255, 0.63); box-shadow: var(--shadow-sm); transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease); }
.treatment-card:hover { border-color: rgba(168, 121, 45, 0.38); box-shadow: 0 20px 55px rgba(14, 38, 63, 0.11); transform: translateY(-4px); }
.treatment-card::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 230px; height: 230px; border: 1px solid rgba(168, 121, 45, 0.14); border-radius: 50%; box-shadow: 0 0 0 35px rgba(168, 121, 45, 0.03), 0 0 0 70px rgba(168, 121, 45, 0.025); }
.treatment-card-featured { background: linear-gradient(140deg, rgba(244, 235, 223, 0.74), rgba(255, 255, 255, 0.75)); }
.card-number { position: absolute; top: 25px; right: 31px; color: rgba(11, 44, 82, 0.08); font-family: var(--font-display); font-size: 5rem; line-height: 1; }
.card-icon { display: grid; place-items: center; width: 57px; height: 57px; margin-bottom: 25px; border: 1px solid rgba(168, 121, 45, 0.36); border-radius: 50%; color: var(--gold-600); }
.card-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25; }
.treatment-card h3 { position: relative; margin: 0; color: var(--navy-900); font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.treatment-card > p { position: relative; max-width: 440px; margin: 10px 0 24px; color: var(--muted); font-size: 0.88rem; }
.treatment-card ul { position: relative; display: grid; grid-template-columns: 1fr; gap: 9px; margin: 0 0 24px; padding: 0; list-style: none; }
.treatment-card li { display: flex; align-items: center; color: #34485b; font-size: 0.8rem; }
.treatment-card li svg { width: 16px; height: 16px; margin-right: 10px; fill: none; stroke: var(--gold-600); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.treatment-card .text-link { position: relative; z-index: 2; margin-top: 3px; }

.about { overflow: hidden; padding-block: 0; background: linear-gradient(105deg, #ece2d6 0%, #f8f3ec 49%, var(--cream-50) 49%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 690px; }
.about-visual { position: relative; min-height: 690px; }
.about-frame { position: absolute; inset: 0 10% 0 calc((100vw - min(100vw - 40px, var(--container))) / -2); overflow: hidden; }
.about-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, transparent 70%, rgba(248, 243, 236, 0.6)); }
.about-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 53% 40%; }
.about-credential { position: absolute; right: 3%; bottom: 56px; display: flex; align-items: center; gap: 13px; padding: 17px 22px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow-lg); }
.about-credential strong { color: var(--gold-400); font-family: var(--font-display); font-size: 1.25rem; }
.about-credential span { max-width: 92px; font-size: 0.58rem; line-height: 1.4; text-transform: uppercase; }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: 82px 0 82px 74px; }
.about-copy .eyebrow { margin-bottom: 13px; }
.about-copy h2 em { display: block; }
.about-copy p { max-width: 580px; margin: 0 0 13px; color: #4c5c6b; font-size: 0.84rem; line-height: 1.7; }
.about-copy .about-intro { margin-top: 19px; color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; line-height: 1.6; }
.about-stats { display: flex; gap: 40px; margin: 14px 0 25px; padding-top: 18px; border-top: 1px solid var(--border); }
.about-stats div { display: flex; align-items: center; gap: 11px; }
.about-stats strong { color: var(--gold-600); font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; }
.about-stats span { color: var(--muted); font-size: 0.65rem; line-height: 1.35; text-transform: uppercase; }
.about-copy .button { align-self: flex-start; }

.differentiators { position: relative; overflow: hidden; color: var(--white); background: radial-gradient(circle at 50% -10%, var(--navy-700), transparent 42%), linear-gradient(115deg, var(--navy-900), var(--navy-950)); }
.differentiators::before { content: "NT"; position: absolute; top: 50%; left: 50%; color: rgba(255, 255, 255, 0.025); font-family: var(--font-display); font-size: 30vw; line-height: 1; transform: translate(-50%, -53%); }
.section-heading-light { position: relative; }
.section-heading-light h2 { color: var(--white); }
.section-heading-light .eyebrow { color: var(--gold-400); }
.differential-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.differential-grid article { padding: 14px 34px 8px; border-right: 1px solid rgba(255, 255, 255, 0.17); text-align: center; }
.differential-grid article:last-child { border-right: 0; }
.differential-icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 22px; border: 1px solid rgba(219, 186, 123, 0.45); border-radius: 50%; }
.differential-icon svg { width: 38px; height: 38px; fill: none; stroke: var(--gold-400); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.2; }
.differential-grid h3 { margin: 0 0 13px; color: var(--white); font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; line-height: 1.3; }
.differential-grid p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 0.74rem; line-height: 1.65; }

.clinic-space { position: relative; overflow: hidden; padding-block: 56px; background: var(--cream-50); }
.clinic-space::before { content: ""; position: absolute; top: 90px; left: -220px; width: 460px; height: 460px; border: 1px solid rgba(168, 121, 45, 0.12); border-radius: 50%; box-shadow: 0 0 0 58px rgba(168, 121, 45, 0.025); }
.clinic-space .section-heading { margin-bottom: 32px; }
.space-gallery { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.space-card { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(11, 44, 82, 0.12); border-radius: var(--radius); background: var(--cream-200); box-shadow: var(--shadow-sm); }
.space-card-wide, .space-card-portrait, .space-card-half { grid-column: span 1; height: auto; aspect-ratio: 11 / 5; }
.space-card img { width: 100%; height: 100%; object-fit: cover; }
.space-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6, 29, 56, 0.64), transparent 34%); pointer-events: none; }
.space-card figcaption { position: absolute; left: 16px; bottom: 14px; z-index: 1; max-width: calc(100% - 32px); color: var(--white); font-family: var(--font-display); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em; line-height: 1.25; }

.results { position: relative; overflow: hidden; background: linear-gradient(145deg, var(--cream-100), var(--cream-50) 55%, #efe4d4); }
.results::before { content: ""; position: absolute; top: 80px; right: -180px; width: 460px; height: 460px; border: 1px solid rgba(168, 121, 45, 0.13); border-radius: 50%; box-shadow: 0 0 0 60px rgba(168, 121, 45, 0.025); }
.results-carousel { position: relative; max-width: 1040px; margin-inline: auto; }
.results-stage { position: relative; min-height: 625px; }
.result-slide { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr); align-items: stretch; overflow: hidden; border: 1px solid rgba(11, 44, 82, 0.14); background: rgba(255, 255, 255, 0.82); box-shadow: var(--shadow-lg); }
.result-slide[hidden] { display: none; }
.result-comparison { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; overflow: hidden; background: #ddd4ca; }
.result-photo { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.result-photo + .result-photo { border-left: 2px solid var(--white); }
.result-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.result-photo-wide:first-child img { object-position: 55% 37%; }
.result-photo-wide:nth-child(2) img { object-position: 52% 26%; }
.result-photo-close:first-child img { object-position: 52% 22%; transform: scale(1.2); }
.result-photo-close:nth-child(2) img { object-position: 54% 25%; transform: scale(1.15); }
.result-photo-portrait:first-child img { object-position: 52% 44%; }
.result-photo-portrait:nth-child(2) img { object-position: 51% 33%; }
.result-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 22, 40, 0.42), transparent 30%); pointer-events: none; }
.result-photo figcaption { position: absolute; left: 22px; bottom: 20px; z-index: 2; padding: 8px 14px; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.55); background: rgba(6, 29, 56, 0.78); backdrop-filter: blur(8px); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; line-height: 1.2; text-transform: uppercase; }
.comparison-divider { position: absolute; top: 50%; left: 50%; z-index: 3; display: grid; place-items: center; width: 46px; height: 46px; color: var(--navy-900); border: 3px solid rgba(255, 255, 255, 0.88); border-radius: 50%; background: var(--gold-400); box-shadow: 0 8px 25px rgba(4, 22, 40, 0.2); transform: translate(-50%, -50%); }
.comparison-divider svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.result-meta { display: flex; flex-direction: column; justify-content: center; padding: 48px 38px; background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 232, 0.94)); }
.result-meta > span { color: var(--gold-600); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.result-meta h3 { margin: 16px 0 14px; color: var(--navy-900); font-family: var(--font-display); font-size: 2rem; font-weight: 500; line-height: 1.15; }
.result-meta p { margin: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.75; }
.results-controls { display: grid; grid-template-columns: 48px auto 1fr 48px; align-items: center; gap: 12px; margin-top: 24px; }
.carousel-arrow { display: grid; place-items: center; width: 48px; height: 48px; padding: 0; color: var(--navy-900); border: 1px solid rgba(11, 44, 82, 0.26); border-radius: 50%; background: rgba(255, 255, 255, 0.76); cursor: pointer; transition: color 200ms ease, border-color 200ms ease, background 200ms ease; }
.carousel-arrow:hover { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); }
.carousel-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.carousel-arrow-prev svg { transform: rotate(180deg); }
.results-dots { display: flex; align-items: center; gap: 4px; }
.results-dots button { position: relative; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.results-dots button::before { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border: 1px solid var(--gold-600); border-radius: 50%; transform: translate(-50%, -50%); transition: width 220ms var(--ease), border-radius 220ms var(--ease), background 220ms ease; }
.results-dots button.is-active::before { width: 24px; border-radius: 5px; background: var(--gold-500); }
.results-status { justify-self: end; display: flex; align-items: baseline; gap: 6px; margin: 0 6px 0 0; color: var(--muted); font-size: 0.75rem; font-variant-numeric: tabular-nums; }
.results-status strong { color: var(--navy-900); font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.results-disclaimer { display: flex; align-items: flex-start; justify-content: center; gap: 10px; max-width: 780px; margin: 18px auto 0; color: #596877; font-size: 0.7rem; line-height: 1.55; text-align: center; }
.results-disclaimer svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--gold-600); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }

.testimonials { background: radial-gradient(circle at 50% 20%, #fff 0, transparent 42%), var(--cream-50); }
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { position: relative; min-height: 275px; padding: 42px 34px 30px; border: 1px solid var(--border); background: rgba(255, 255, 255, 0.68); box-shadow: var(--shadow-sm); }
.quote-mark { position: absolute; top: 10px; left: 27px; color: var(--gold-500); font-family: var(--font-display); font-size: 4.3rem; line-height: 1; }
.testimonial-card blockquote { position: relative; margin: 25px 0 28px; color: #405264; font-family: var(--font-display); font-size: 0.95rem; line-height: 1.7; }
.testimonial-card footer { display: grid; gap: 7px; text-align: center; }
.testimonial-card footer strong { color: var(--navy-900); font-family: var(--font-display); font-size: 0.92rem; }
.testimonial-card footer span { color: var(--gold-500); font-size: 0.78rem; letter-spacing: 0.16em; }
.slider-dots { display: flex; justify-content: center; gap: 0; margin-top: 18px; }
.slider-dots button { position: relative; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.slider-dots button::before { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 11px; border: 1px solid var(--gold-500); border-radius: 50%; background: transparent; transform: translate(-50%, -50%); transition: background 180ms ease; }
.slider-dots button.is-active::before { background: var(--gold-500); }

.appointment { padding: 58px 0; background: linear-gradient(100deg, #f0e6d9, #fbf8f3 58%, #eadcca); }
.appointment-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.appointment-icon { display: grid; place-items: center; width: 78px; height: 78px; border: 1px solid var(--gold-500); border-radius: 50%; color: var(--gold-600); }
.appointment-icon svg { width: 39px; height: 39px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25; }
.appointment-copy .eyebrow { margin-bottom: 5px; }
.appointment-copy h2 { margin: 0; color: var(--navy-900); font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.appointment-copy p:last-child { max-width: 530px; margin: 5px 0 0; color: var(--muted); font-size: 0.82rem; }
.appointment-actions { display: grid; justify-items: center; gap: 10px; }
.phone-link { display: flex; align-items: center; min-height: 44px; color: var(--navy-900); font-size: 0.85rem; font-weight: 600; }
.phone-link svg { width: 21px; height: 21px; margin-right: 8px; fill: none; stroke: var(--gold-600); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.3; }

.site-footer { padding: 70px 0 0; color: rgba(255, 255, 255, 0.75); background: radial-gradient(circle at 15% 0%, var(--navy-700), transparent 32%), var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.45fr 0.8fr 1fr 1.5fr; gap: 65px; padding-bottom: 50px; }
.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy small { color: rgba(255, 255, 255, 0.57); }
.footer-brand > p { margin: 10px 0 0; font-size: 0.62rem; letter-spacing: 0.09em; text-transform: uppercase; }
.footer-brand > p span { color: var(--gold-400); }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(219, 186, 123, 0.38); border-radius: 50%; color: var(--gold-400); transition: color 180ms ease, background 180ms ease; }
.social-links a:hover { color: var(--navy-950); background: var(--gold-400); }
.social-links svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.footer-column { display: grid; align-content: start; gap: 8px; }
.footer-column h2 { margin: 5px 0 13px; color: var(--gold-400); font-size: 0.63rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-column > a:not(.button) { display: flex; align-items: center; min-height: 44px; font-size: 0.7rem; transition: color 180ms ease; }
.footer-column > a:not(.button):hover { color: var(--white); }
.footer-contact > a:not(.button) { align-items: center; line-height: 1.55; overflow-wrap: anywhere; }
.footer-contact .footer-info { display: flex; align-items: flex-start; min-height: 44px; margin: 0; font-size: 0.7rem; line-height: 1.55; }
.footer-contact svg { width: 18px; height: 18px; margin: 2px 9px 0 0; flex: 0 0 auto; fill: none; stroke: var(--gold-400); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; }
.footer-button { justify-self: start; margin-top: 11px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 21px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.6rem; }
.footer-bottom p { margin: 0; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: var(--z-floating); display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 18px; border-radius: 30px; color: var(--white); background: #176b43; box-shadow: 0 14px 34px rgba(4, 35, 21, 0.25); font-size: 0.7rem; font-weight: 600; transition: background 180ms ease, transform 180ms var(--ease); }
.floating-whatsapp:hover { background: #0e5835; transform: translateY(-3px); }
.floating-whatsapp svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .brand-copy { display: none; }
  .main-nav { gap: 10px; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.9fr; }
  .hero h1 { font-size: clamp(3rem, 6vw, 4.4rem); }
  .feature-ribbon article { padding-inline: 18px; }
  .footer-grid { gap: 35px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 82px 0; }
  .site-header, .header-inner { min-height: 72px; }
  .brand-mark { width: 54px; height: 50px; font-size: 2rem; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .main-nav { position: fixed; inset: 72px 0 auto 0; z-index: var(--z-menu); display: grid; align-content: start; gap: 0; max-height: 0; padding: 0 20px; overflow: hidden; background: rgba(253, 251, 247, 0.98); box-shadow: 0 20px 40px rgba(9, 35, 62, 0.12); opacity: 0; visibility: hidden; transition: max-height 320ms var(--ease), opacity 220ms ease, visibility 220ms ease, padding 320ms var(--ease); }
  .main-nav.is-open { max-height: calc(100dvh - 72px); padding-block: 14px 24px; overflow-y: auto; opacity: 1; visibility: visible; }
  .nav-link { justify-items: start; min-height: 52px; border-bottom: 1px solid var(--border); font-family: var(--font-display); font-size: 1rem; letter-spacing: 0; text-transform: none; }
  .nav-link::after { display: none; }
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 650px; padding: 20px 0 48px; }
  .hero-visual { min-height: 570px; }
  .hero-arch { inset: 0; border-radius: 260px 260px 0 0; }
  .hero-floating-card { right: 16px; bottom: 30px; }
  .feature-ribbon { grid-template-columns: repeat(2, 1fr); margin-top: 0; padding: 20px; }
  .feature-ribbon article { padding: 20px; }
  .feature-ribbon article:nth-child(2) { border-right: 0; }
  .feature-ribbon article:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .treatments { padding-top: 92px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .about { padding: 0; background: var(--cream-50); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 620px; }
  .about-frame { inset: 0; }
  .about-frame::after { background: linear-gradient(to top, rgba(248, 243, 236, 0.55), transparent 25%); }
  .about-copy { padding: 72px 0; }
  .differential-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 0; }
  .differential-grid article:nth-child(2) { border-right: 0; }
  .results-stage { min-height: 760px; }
  .result-slide { grid-template-columns: 1fr; }
  .result-comparison { min-height: 560px; }
  .result-meta { padding: 35px 36px; }
  .testimonial-track { display: flex; grid-template-columns: none; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 0; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .testimonial-track::-webkit-scrollbar { display: none; }
  .testimonial-card { flex: 0 0 100%; width: 100%; min-width: 100%; max-width: 100%; scroll-snap-align: start; scroll-snap-stop: always; }
  .appointment-inner { grid-template-columns: auto 1fr; }
  .appointment-actions { grid-column: 1 / -1; justify-self: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .eyebrow { font-size: 0.66rem; }
  .hero { padding-top: 32px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.7rem); }
  .hero h1 em { font-size: 0.7em; }
  .hero-lead { font-size: 0.93rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; }
  .hero-visual { min-height: 480px; margin-inline: -14px; }
  .hero-arch { border-radius: 180px 180px 0 0; }
  .hero-arch img { object-position: 51% 22%; }
  .hero-floating-card { right: 14px; bottom: 18px; min-width: 218px; }
  .hero-signature { display: none; }
  .feature-ribbon { width: 100%; padding: 12px; }
  .feature-ribbon article { grid-template-columns: 38px 1fr; min-height: 95px; padding: 14px 10px; gap: 8px; }
  .feature-ribbon svg { width: 31px; height: 31px; }
  .feature-ribbon h2 { font-size: 0.7rem; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2, .about-copy h2 { font-size: 2.2rem; }
  .section-heading > p:last-child { font-size: 0.84rem; }
  .treatment-card { min-height: auto; padding: 35px 25px; }
  .card-number { right: 19px; font-size: 4rem; }
  .treatment-card h3 { font-size: 1.75rem; }
  .about-visual { min-height: 505px; margin-inline: -14px; }
  .about-frame img { object-position: 53% 38%; }
  .about-credential { right: 14px; bottom: 20px; }
  .about-copy { padding: 64px 0; }
  .about-stats { gap: 19px; }
  .about-stats strong { font-size: 1.55rem; }
  .differential-grid { grid-template-columns: 1fr; gap: 0; }
  .differential-grid article, .differential-grid article:nth-child(2) { padding: 32px 10px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .differential-grid article:last-child { border-bottom: 0; }
  .clinic-space { padding-block: 48px; }
  .clinic-space .section-heading { margin-bottom: 28px; }
  .space-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .space-card-wide, .space-card-portrait, .space-card-half { grid-column: span 1; aspect-ratio: 4 / 3; }
  .space-card figcaption { left: 10px; bottom: 9px; max-width: calc(100% - 20px); font-size: 0.72rem; line-height: 1.2; }
  .results-stage { min-height: 620px; }
  .result-comparison { min-height: 400px; }
  .result-photo figcaption { left: 12px; bottom: 12px; padding: 7px 10px; }
  .comparison-divider { width: 40px; height: 40px; }
  .result-meta { padding: 28px 24px; }
  .result-meta h3 { margin: 11px 0 9px; font-size: 1.6rem; }
  .results-controls { grid-template-columns: 48px 1fr auto 48px; gap: 6px; }
  .results-dots { justify-content: center; }
  .results-dots button { width: 44px; }
  .results-status { margin-right: 2px; }
  .results-disclaimer { align-items: center; text-align: left; }
  .testimonials { overflow: hidden; }
  .testimonial-card { flex-basis: 100%; width: 100%; min-width: 100%; max-width: 100%; min-height: 310px; padding: 40px 26px 28px; }
  .testimonial-card blockquote { font-size: 1rem; line-height: 1.75; }
  .appointment { padding: 52px 0; }
  .appointment-inner { grid-template-columns: 1fr; text-align: center; }
  .appointment-icon { margin-inline: auto; }
  .appointment-actions { grid-column: auto; width: 100%; }
  .appointment-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-column:nth-child(2), .footer-column:nth-child(3) { display: none; }
  .footer-bottom { align-items: center; flex-direction: column; gap: 6px; text-align: center; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; justify-content: center; padding: 0; }
  .floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

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