:root {
  --ink: oklch(16% 0.035 250);
  --ink-2: oklch(21% 0.047 250);
  --blue: oklch(50% 0.2 252);
  --blue-light: oklch(75% 0.12 239);
  --paper: oklch(97% 0.01 235);
  --paper-2: oklch(91% 0.018 240);
  --text: oklch(26% 0.03 248);
  --muted: oklch(53% 0.03 245);
  --gold: oklch(75% 0.105 79);
  --gold-dark: oklch(55% 0.09 73);
  --white: oklch(98% 0.006 235);
  --line: oklch(82% 0.02 245 / 0.45);
  --radius: 0.35rem;
  --container: 78rem;
  --header: 5.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; }
body {
  margin: 0;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.sr-only { 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: 0.75rem; left: 0.75rem; padding: 0.7rem 1rem; background: var(--white); color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 4vw;
  color: var(--white);
  background: oklch(13% 0.035 250 / 0.92);
  border-bottom: 1px solid oklch(85% 0.03 245 / 0.13);
  transition: background-color 180ms ease, height 180ms ease;
}
.site-header.is-scrolled { height: 4.55rem; background: var(--ink); }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; min-width: 0; }
.brand img { width: 2.4rem; flex: none; }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-family: "Bodoni Moda", serif; font-size: 1.15rem; font-weight: 500; letter-spacing: 0.01em; }
.brand small { margin-top: 0.28rem; color: var(--blue-light); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); font-size: 0.82rem; font-weight: 600; }
.nav a { text-decoration: none; }
.nav a:not(.nav-cta) { color: oklch(90% 0.02 240); }
.nav a:not(.nav-cta):hover { color: var(--gold); }
.nav-cta { padding: 0.72rem 1rem; color: var(--ink); background: var(--gold); border-radius: var(--radius); }
.menu-toggle { display: none; width: 2.75rem; height: 2.75rem; padding: 0.65rem; border: 0; background: transparent; color: inherit; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 0.28rem 0; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(0, 0.93fr);
  padding-top: var(--header);
  background: var(--ink);
  color: var(--white);
}
.hero-copy { z-index: 2; align-self: center; max-width: 47rem; padding: clamp(3.25rem, 5vw, 5.5rem) 3vw clamp(3rem, 4vw, 4.5rem) max(4vw, calc((100vw - var(--container)) / 2)); }
.hero-kicker { margin: 0 0 1.5rem; color: var(--blue-light); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 16ch; font-family: "Bodoni Moda", serif; font-size: clamp(3.1rem, 4.1vw, 5.2rem); font-weight: 500; line-height: 0.92; letter-spacing: -0.045em; }
.hero h1 em { display: inline; color: var(--gold); font-style: normal; }
.hero-lead { max-width: 37rem; margin: 1.5rem 0 0; color: oklch(84% 0.025 240); font-size: clamp(1rem, 1.3vw, 1.17rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: 1.8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; min-height: 3.35rem; padding: 0.85rem 1.25rem; border: 1px solid transparent; border-radius: var(--radius); font-size: 0.87rem; font-weight: 700; text-decoration: none; }
.button span { font-size: 1.2rem; }
.button-primary { background: var(--blue); color: var(--white); }
.button-primary:hover { background: oklch(57% 0.19 249); }
.text-link { display: inline-flex; align-items: center; gap: 0.75rem; min-height: 2.75rem; padding: 0.55rem 0; font-size: 0.84rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link:hover { color: var(--gold); }
.hero-signature { display: flex; align-items: center; gap: 1rem; margin-top: clamp(2.25rem, 3.5vw, 3.75rem); color: oklch(76% 0.025 240); font-size: 0.77rem; line-height: 1.55; }
.hero-signature strong { color: var(--white); font-size: 0.83rem; }
.signature-line { width: 3rem; height: 1px; background: var(--gold); }
.hero-visual { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--ink-2); }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-visual figcaption { position: absolute; right: 2rem; bottom: 2rem; padding: 0.85rem 1rem; color: oklch(88% 0.02 240); background: var(--ink); border-left: 2px solid var(--gold); font-size: 0.75rem; line-height: 1.45; }
.hero-visual figcaption strong { color: var(--white); }
.facet { fill: none; stroke: currentColor; stroke-width: 0.55; }
.facet-one { position: absolute; width: 15rem; right: -4rem; top: 12%; color: oklch(76% 0.1 79 / 0.42); transform: rotate(18deg); }

.trust-line { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: var(--container); margin: auto; padding: 2rem 4vw; border-bottom: 1px solid var(--line); }
.trust-line p { margin: 0; padding: 0.2rem 1.5rem; color: var(--muted); font-size: 0.76rem; text-align: center; border-right: 1px solid var(--line); }
.trust-line p:last-child { border-right: 0; }
.trust-line span { margin-right: 0.45rem; color: var(--gold-dark); font-family: "Bodoni Moda", serif; }

.treatments { max-width: var(--container); margin: auto; padding: clamp(5rem, 10vw, 10rem) 4vw; }
.section-intro { display: grid; grid-template-columns: 0.45fr 1.2fr 0.8fr; gap: clamp(1.5rem, 4vw, 5rem); align-items: start; margin-bottom: clamp(4rem, 8vw, 7rem); }
.section-intro > p:first-child, .experience-copy > p:first-child { margin: 0.45rem 0 0; color: var(--blue); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.section-intro h2, .experience h2 { margin: 0; font-family: "Bodoni Moda", serif; font-size: clamp(2.7rem, 5vw, 5.5rem); font-weight: 500; line-height: 0.98; letter-spacing: -0.035em; }
.section-copy { margin: 0.45rem 0 0; color: var(--muted); }
.treatment-list { border-top: 1px solid var(--text); }
.treatment-row { display: grid; grid-template-columns: 0.16fr 0.85fr 1.25fr 3rem; gap: 2rem; align-items: center; padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.treatment-row > span { color: var(--gold-dark); font-family: "Bodoni Moda", serif; font-size: 1.15rem; }
.treatment-row h3 { margin: 0; font-family: "Bodoni Moda", serif; font-size: clamp(1.65rem, 2.3vw, 2.45rem); font-weight: 500; }
.treatment-row p { margin: 0; color: var(--muted); }
.treatment-row a { display: grid; place-items: center; width: 3rem; height: 3rem; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-size: 1.2rem; text-decoration: none; }
.treatment-row a:hover { color: var(--white); background: var(--blue); }
.medical-note { max-width: 52rem; margin: 2rem 0 0 auto; color: var(--muted); font-size: 0.72rem; }

.founder { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); min-height: 52rem; background: var(--ink); color: var(--white); }
.founder-image { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.founder-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: saturate(0.8) contrast(1.04); }
.founder-image span { position: absolute; left: 2rem; bottom: 2rem; max-width: 11rem; padding: 1rem; color: var(--ink); background: var(--gold); font-size: 0.77rem; font-weight: 700; }
.founder-copy { align-self: center; max-width: 46rem; padding: clamp(4rem, 8vw, 8rem); }
.eyebrow { margin: 0 0 2rem; color: var(--blue-light); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.founder h2 { margin: 0; font-family: "Bodoni Moda", serif; font-size: clamp(3.6rem, 7vw, 7.4rem); font-weight: 500; line-height: 0.85; letter-spacing: -0.04em; }
.founder-role { margin: 1.7rem 0 2rem; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.founder-copy > p:not(.eyebrow, .founder-role) { color: oklch(82% 0.024 240); }
.founder blockquote { margin: 2.5rem 0; padding-left: 1.5rem; border-left: 2px solid var(--gold); color: var(--white); font-family: "Bodoni Moda", serif; font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.35; }
.text-link.light { color: var(--blue-light); }

.experience { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.74fr) minmax(12rem, 0.4fr); gap: 1rem; max-width: var(--container); margin: auto; padding: clamp(5rem, 10vw, 10rem) 4vw; }
.experience-copy { align-self: center; padding-right: clamp(1rem, 5vw, 5rem); }
.experience-copy > p:nth-of-type(2) { max-width: 35rem; color: var(--muted); }
.experience ol { list-style: none; margin: 2.5rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.experience li { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.experience li > span { display: grid; place-items: center; flex: none; width: 2rem; height: 2rem; border: 1px solid var(--gold-dark); border-radius: 50%; color: var(--gold-dark); font-size: 0.75rem; }
.experience li div { display: grid; gap: 0.2rem; }
.experience li small { color: var(--muted); }
.experience-image, .tech-image { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.experience-image { min-height: 43rem; }
.experience-image img, .tech-image img { width: 100%; height: 100%; object-fit: cover; }
.experience-image figcaption { position: absolute; right: 1rem; bottom: 1rem; padding: 0.8rem; color: var(--white); background: var(--ink); font-size: 0.7rem; }
.tech-image { height: 31rem; align-self: end; }

.cta { position: relative; display: grid; grid-template-columns: 1.5fr 0.7fr; gap: 4rem; overflow: hidden; padding: clamp(5rem, 9vw, 8rem) max(4vw, calc((100vw - var(--container)) / 2)); background: var(--blue); color: var(--white); }
.cta-copy { position: relative; z-index: 1; }
.cta-copy > p { margin: 0 0 1.5rem; color: oklch(91% 0.06 235); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.cta h2 { max-width: 15ch; margin: 0 0 2.5rem; font-family: "Bodoni Moda", serif; font-size: clamp(3.1rem, 6vw, 6.5rem); font-weight: 500; line-height: 0.94; letter-spacing: -0.04em; }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--white); }
.cta-address { position: relative; z-index: 1; align-self: end; padding-left: 2rem; border-left: 1px solid oklch(94% 0.02 240 / 0.4); font-style: normal; }
.cta-address p { margin: 0 0 1.4rem; }
.cta-address a { display: flex; align-items: center; width: fit-content; min-height: 2.75rem; margin-top: 0.25rem; font-size: 0.8rem; font-weight: 700; }
.facet-two { position: absolute; width: min(45rem, 72vw); right: -11rem; top: -16rem; color: oklch(95% 0.03 240 / 0.18); transform: rotate(22deg); }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem 4vw; color: oklch(75% 0.02 240); background: var(--ink); font-size: 0.72rem; }
.footer a { display: inline-flex; align-items: center; min-height: 2.75rem; text-decoration: none; }
.footer-brand { color: var(--white); }
.floating-whatsapp { position: fixed; z-index: 90; right: 1.2rem; bottom: 1.2rem; display: grid; place-items: center; width: 3.6rem; height: 3.6rem; border-radius: 50%; color: var(--white); background: oklch(66% 0.19 150); box-shadow: 0 0.9rem 2rem oklch(10% 0.03 250 / 0.25); }
.floating-whatsapp svg { width: 1.65rem; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(1.8rem); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.hero-copy > * { opacity: 0; transform: translateY(1.3rem); animation: hero-in 700ms ease forwards; }
.hero-copy > *:nth-child(2) { animation-delay: 100ms; }
.hero-copy > *:nth-child(3) { animation-delay: 200ms; }
.hero-copy > *:nth-child(4) { animation-delay: 300ms; }
.hero-copy > *:nth-child(5) { animation-delay: 400ms; }
.hero-visual img { animation: image-in 1000ms cubic-bezier(.22,.7,.25,1) both; }
@keyframes hero-in { to { opacity: 1; transform: none; } }
@keyframes image-in { from { opacity: 0; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 68rem) {
  .site-header { padding-inline: 1.25rem; }
  .menu-toggle { display: block; z-index: 2; }
  .nav { position: fixed; inset: var(--header) 0 auto; display: grid; gap: 0; padding: 0 1.25rem 1.25rem; background: var(--ink); border-bottom: 1px solid var(--line); transform: translateY(-120%); visibility: hidden; transition: transform 220ms ease, visibility 220ms; }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 0.75rem; padding-inline: 1rem !important; text-align: center; border-bottom: 0 !important; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(0.56rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-0.56rem) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 5rem 5vw 3rem; }
  .hero-visual { min-height: 46rem; }
  .hero-visual > img { object-position: 58% center; }
  .section-intro { grid-template-columns: 1fr 2fr; }
  .section-copy { grid-column: 2; }
  .treatment-row { grid-template-columns: 3rem 0.9fr 1.1fr 3rem; gap: 1rem; }
  .founder-copy { padding: 4rem 5vw; }
  .experience { grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr); }
  .tech-image { display: none; }
}

@media (max-width: 46rem) {
  :root { --header: 4.55rem; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: 0.54rem; }
  .hero-copy { padding: 4rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero-visual { min-height: 33rem; }
  .hero-visual > img { object-position: 62% center; }
  .hero-visual figcaption { right: 1rem; bottom: 1rem; }
  .trust-line { grid-template-columns: 1fr 1fr; padding-inline: 1.25rem; }
  .trust-line p { padding: 0.8rem; border-bottom: 1px solid var(--line); }
  .trust-line p:nth-child(2) { border-right: 0; }
  .section-intro { grid-template-columns: 1fr; }
  .section-copy { grid-column: auto; }
  .treatments { padding-inline: 1.25rem; }
  .treatment-row { grid-template-columns: 2.3rem minmax(0, 1fr) 2.8rem; gap: 0.8rem; }
  .treatment-row h3 { font-size: 1.65rem; }
  .treatment-row p { grid-column: 2 / 4; }
  .treatment-row a { grid-column: 3; grid-row: 1; width: 2.8rem; height: 2.8rem; }
  .founder { grid-template-columns: 1fr; }
  .founder-image { min-height: 34rem; }
  .founder-copy { padding: 4rem 1.25rem; }
  .founder h2 { font-size: clamp(3.7rem, 18vw, 5.5rem); }
  .experience { grid-template-columns: 1fr; padding-inline: 1.25rem; }
  .experience-copy { padding-right: 0; }
  .experience-image { min-height: 35rem; }
  .cta { grid-template-columns: 1fr; gap: 4rem; padding-inline: 1.25rem; }
  .cta h2 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .cta-address { padding-left: 1rem; }
  .button { width: 100%; }
  .footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.25rem 6rem; }
}

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