:root {
  --ink: #080808;
  --ink-soft: #11100f;
  --paper: #f2eee8;
  --paper-deep: #e7dfd4;
  --gold: #c7a35c;
  --gold-light: #efd9a7;
  --gold-dark: #87692f;
  --white: #fffdf9;
  --muted: #928e87;
  --line: rgba(199, 163, 92, 0.3);
  --container: min(1180px, calc(100vw - 48px));
  --serif: 'Italiana', 'Times New Roman', serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

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

html {
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 120px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 10000;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold-light);
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(4, 4, 4, 0.72), transparent);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(7, 7, 7, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.brand { position: relative; z-index: 2; flex: 0 0 auto; }
.brand img { width: 150px; height: 62px; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav > a:not(.nav-cta) { position: relative; color: rgba(255, 255, 255, 0.78); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; }
.main-nav > a:not(.nav-cta)::after { content: ''; position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.25s ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--white); }
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 13px 20px;
  border: 1px solid rgba(239, 217, 167, 0.7);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { color: var(--ink); background: var(--gold-light); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: #fff; transition: transform 0.25s ease, opacity 0.25s ease; }

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 75% 28%, #2a2116 0, #11100e 31%, #080808 69%);
}

.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, black, transparent 72%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; right: -190px; top: 120px; background: rgba(199, 163, 92, 0.11); }
.hero-glow-two { width: 260px; height: 260px; left: -120px; bottom: 30px; border: 1px solid rgba(199, 163, 92, 0.16); }

.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(390px, .82fr); align-items: center; gap: clamp(42px, 6vw, 90px); padding-top: 118px; padding-bottom: 78px; }
.hero-copy { max-width: 680px; }

.section-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker span { width: 44px; height: 1px; background: currentColor; }
.section-kicker.dark { color: var(--gold-dark); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; }
h1 { margin-bottom: 27px; font-size: clamp(4rem, 6.5vw, 7rem); line-height: .92; }
h1 em, h2 em { color: var(--gold-light); font-weight: inherit; }
h2 em { color: var(--gold-dark); }
.hero-lead { max-width: 590px; margin-bottom: 38px; color: rgba(255, 255, 255, 0.68); font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.75; }

.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.button { min-height: 55px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; padding: 16px 24px; border: 1px solid transparent; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--ink); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 15px 34px rgba(199, 163, 92, .16); }
.button-gold:hover { box-shadow: 0 18px 38px rgba(199, 163, 92, .28); }
.text-link { color: rgba(255,255,255,.82); font-size: .84rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 6px; }
.text-link span { color: var(--gold); margin-left: 5px; }

.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof div { padding-right: 18px; }
.hero-proof div + div { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.12); }
.hero-proof strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 1.85rem; font-weight: 400; }
.hero-proof span { display: block; margin-top: 5px; color: rgba(255,255,255,.48); font-size: .66rem; line-height: 1.35; letter-spacing: .07em; text-transform: uppercase; }

.hero-visual { position: relative; justify-self: end; width: min(100%, 460px); }
.hero-image-frame { position: relative; aspect-ratio: .77; padding: 13px; border: 1px solid rgba(199,163,92,.42); }
.hero-image-frame::before { content: ''; position: absolute; inset: -13px 26px 26px -13px; border: 1px solid rgba(199,163,92,.16); pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; filter: saturate(.83) contrast(1.04); }
.frame-line { position: absolute; z-index: 1; width: 74px; height: 74px; right: -1px; top: -1px; border-top: 2px solid var(--gold-light); border-right: 2px solid var(--gold-light); }
.hero-caption { position: absolute; left: 32px; bottom: 33px; padding: 13px 17px; background: rgba(6,6,6,.75); border-left: 2px solid var(--gold); backdrop-filter: blur(8px); }
.hero-caption span { display: block; font-family: var(--serif); font-size: 1.16rem; }
.hero-caption small { color: var(--gold-light); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.hero-seal { position: absolute; right: -42px; bottom: 25px; width: 116px; height: 116px; display: grid; place-items: center; border: 1px solid rgba(239,217,167,.58); border-radius: 50%; color: var(--gold-light); background: #0a0a09; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.hero-seal span { position: absolute; font-size: .48rem; letter-spacing: .16em; transform: rotate(-24deg); }
.hero-seal b { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.scroll-cue { position: absolute; left: max(24px, calc((100vw - 1180px)/2)); bottom: 28px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.45); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue span { width: 44px; height: 1px; background: var(--gold); }

.procedures { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.2fr .7fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .about h2, .consultation h2, .results h2, .contact h2 { margin-bottom: 0; font-size: clamp(3rem, 5.3vw, 5.3rem); line-height: 1.02; }
.section-heading > p { max-width: 420px; margin: 0 0 8px; color: #65615c; font-size: .98rem; line-height: 1.75; }
.procedure-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.procedure-card { grid-column: span 2; overflow: hidden; background: var(--white); border: 1px solid rgba(77,60,30,.1); }
.procedure-card:nth-child(4) { grid-column: 2 / span 2; }
.procedure-image { position: relative; aspect-ratio: 1.12; overflow: hidden; background: #d7d0c7; }
.procedure-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.procedure-card:hover .procedure-image img { transform: scale(1.035); }
.procedure-image > span { position: absolute; right: 12px; bottom: 12px; padding: 6px 8px; color: rgba(255,255,255,.75); background: rgba(0,0,0,.48); font-size: .52rem; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(6px); }
.procedure-body { padding: 27px 27px 29px; }
.procedure-body small { color: var(--gold-dark); font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.procedure-body h3 { margin: 10px 0 12px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.procedure-body p { min-height: 78px; margin-bottom: 22px; color: #6d6963; font-size: .88rem; line-height: 1.65; }
.procedure-body a { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-dark); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.procedure-body a i { transition: transform .2s ease; }
.procedure-body a:hover i { transform: translateX(4px); }

.consultation { color: var(--white); background: var(--ink-soft); }
.consultation-grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.consultation-photo { position: relative; padding: 18px 18px 0 0; }
.consultation-photo::before { content: ''; position: absolute; inset: 0 0 50px 50px; border: 1px solid rgba(199,163,92,.35); }
.consultation-photo img { position: relative; width: 100%; aspect-ratio: .84; object-fit: cover; }
.photo-note { position: absolute; right: -22px; bottom: 40px; min-width: 182px; display: flex; align-items: center; gap: 13px; padding: 17px; color: var(--ink); background: var(--gold-light); }
.photo-note b { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.photo-note span { font-size: .62rem; font-weight: 700; line-height: 1.4; letter-spacing: .07em; text-transform: uppercase; }
.consultation-copy > p:not(.section-kicker) { max-width: 560px; margin: 30px 0; color: rgba(255,255,255,.62); line-height: 1.8; }
.consultation h2 em { color: var(--gold-light); }
.steps { margin: 34px 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.11); }
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.11); }
.steps > li > span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.steps b { display: block; margin-bottom: 5px; font-size: .88rem; letter-spacing: .04em; }
.steps small { color: rgba(255,255,255,.48); font-size: .8rem; }
.button-outline { color: var(--gold-light); border-color: rgba(239,217,167,.65); }
.button-outline:hover { color: var(--ink); background: var(--gold-light); }

.about { background: #ddd5ca; }
.about-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr); gap: clamp(50px, 9vw, 140px); align-items: center; }
.about-lead { margin: 30px 0 18px; color: #37332f; font-family: var(--serif); font-size: 1.45rem; line-height: 1.55; }
.about-copy > p:not(.section-kicker):not(.about-lead) { max-width: 600px; color: #66605a; line-height: 1.8; }
.instagram-link { max-width: 420px; display: grid; grid-template-columns: 46px 1fr auto; gap: 15px; align-items: center; margin-top: 32px; padding: 18px 0; border-top: 1px solid rgba(8,8,8,.18); border-bottom: 1px solid rgba(8,8,8,.18); }
.instagram-link > i:first-child { font-size: 1.6rem; }
.instagram-link > i:last-child { color: var(--gold-dark); font-size: .85rem; }
.instagram-link span { font-weight: 600; }
.instagram-link small { display: block; margin-bottom: 3px; color: #77716b; font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.about-photo { position: relative; }
.about-photo::before { content: ''; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid rgba(135,105,47,.4); }
.about-photo img { position: relative; width: 100%; aspect-ratio: .8; object-fit: cover; filter: contrast(1.03); }
.about-monogram { position: absolute; left: -55px; bottom: 28px; color: rgba(135,105,47,.7); font-family: var(--serif); font-size: 5.5rem; letter-spacing: .03em; writing-mode: vertical-rl; transform: rotate(180deg); }

.visual-story { padding: 2px; overflow: hidden; background: var(--ink); }
.visual-grid { display: grid; grid-template-columns: repeat(9, minmax(150px, 1fr)); gap: 2px; }
.visual-tile { position: relative; min-height: 340px; margin: 0; overflow: hidden; }
.visual-tile img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); transition: filter .35s ease, transform .6s ease; }
.visual-tile:hover img { filter: saturate(1); transform: scale(1.035); }
.visual-tile figcaption { position: absolute; left: 8px; bottom: 8px; padding: 5px 7px; color: rgba(255,255,255,.64); background: rgba(0,0,0,.42); font-size: .48rem; letter-spacing: .08em; text-transform: uppercase; }

.results { overflow: hidden; color: var(--white); background: var(--ink); }
.results-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.results h2 em { color: var(--gold-light); }
.results-heading > p { max-width: 430px; margin-bottom: 8px; color: rgba(255,255,255,.54); font-size: .85rem; line-height: 1.75; }
.results-marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent); mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent); }
.results-track { width: max-content; display: flex; gap: 18px; padding: 8px 9px 28px; animation: resultsScroll 70s linear infinite; will-change: transform; }
.results-marquee:hover .results-track { animation-play-state: paused; }
.result-card { position: relative; width: 280px; margin: 0; flex: 0 0 auto; overflow: hidden; border: 1px solid rgba(199,163,92,.28); background: #151411; }
.result-card::after { content: 'DBR'; position: absolute; top: 12px; right: 12px; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; color: var(--ink); background: rgba(239,217,167,.9); border-radius: 50%; font-family: var(--serif); font-size: .78rem; box-shadow: 0 5px 18px rgba(0,0,0,.18); }
.result-card img { width: 100%; aspect-ratio: .75; object-fit: cover; }
.result-card figcaption { display: flex; justify-content: space-between; gap: 10px; align-items: center; min-height: 66px; padding: 13px 15px; }
.result-card figcaption span { font-family: var(--serif); font-size: 1rem; }
.result-card figcaption small { color: rgba(255,255,255,.36); font-size: .52rem; letter-spacing: .06em; text-transform: uppercase; }

@keyframes resultsScroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(calc(-50% - 9px),0,0); } }

.contact { position: relative; padding: 120px 0; overflow: hidden; color: var(--white); background: linear-gradient(125deg, #302414 0%, #11100e 45%, #080808 100%); }
.contact::before { content: 'DBR'; position: absolute; right: -30px; top: -90px; color: rgba(239,217,167,.04); font-family: var(--serif); font-size: clamp(12rem, 30vw, 30rem); line-height: 1; }
.contact-inner { position: relative; max-width: 920px; text-align: center; }
.contact-inner .section-kicker { justify-content: center; }
.contact h2 { max-width: 900px; margin-inline: auto; }
.contact h2 em { color: var(--gold-light); }
.contact p:not(.section-kicker) { max-width: 600px; margin: 30px auto; color: rgba(255,255,255,.58); line-height: 1.75; }
.button-whatsapp { color: #fff; background: #25D366; box-shadow: 0 12px 34px rgba(37,211,102,.16); }
.button-whatsapp:hover { box-shadow: 0 16px 40px rgba(37,211,102,.27); }

.site-footer { padding: 0 0 24px; overflow: hidden; color: var(--white); background: #050505; }
.footer-results { position: relative; overflow: hidden; border-top: 1px solid rgba(199,163,92,.25); border-bottom: 1px solid rgba(199,163,92,.18); }
.footer-results::before, .footer-results::after { content: ''; position: absolute; inset-block: 0; z-index: 2; width: 70px; pointer-events: none; }
.footer-results::before { left: 0; background: linear-gradient(to right, #050505, transparent); }
.footer-results::after { right: 0; background: linear-gradient(to left, #050505, transparent); }
.footer-results-label { position: absolute; left: 50%; top: 50%; z-index: 3; padding: 10px 16px; color: var(--ink); background: rgba(239,217,167,.92); font-size: .58rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; transform: translate(-50%, -50%); pointer-events: none; }
.footer-results-track { width: max-content; display: flex; gap: 2px; padding: 2px 0; animation: footerResults 54s linear infinite; }
.footer-results:hover .footer-results-track { animation-play-state: paused; }
.footer-results-track img { width: 180px; height: 190px; flex: 0 0 auto; object-fit: cover; filter: saturate(.66) contrast(1.06) brightness(.76); }
@keyframes footerResults { from { transform: translate3d(calc(-50% - 1px),0,0); } to { transform: translate3d(0,0,0); } }
.footer-main { padding-top: 72px; }
.footer-main { display: grid; grid-template-columns: 1.1fr .9fr .65fr 1fr; gap: 48px; align-items: start; padding-bottom: 54px; }
.footer-brand img { width: 190px; height: auto; }
.footer-block small { display: block; margin-bottom: 13px; color: var(--gold); font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-block p, .footer-block a { color: rgba(255,255,255,.58); font-size: .8rem; line-height: 1.75; }
.footer-block a { display: block; margin-bottom: 6px; }
.footer-block a i { margin-left: 4px; font-size: .62rem; }
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 0; color: var(--gold-light); border-top: 1px solid rgba(239,217,167,.25); border-bottom: 1px solid rgba(239,217,167,.25); font-family: var(--serif); font-size: 1.18rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.28); font-size: .62rem; }

.whatsapp-float {
  position: fixed;
  right: max(20px, calc(env(safe-area-inset-right) + 14px));
  bottom: max(20px, calc(env(safe-area-inset-bottom) + 14px));
  z-index: 9999;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 19px;
  color: #fff;
  background: #25D366;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.43), 0 12px 35px rgba(0,0,0,.3);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  animation: whatsappPulse 2.2s infinite;
  transition: scale .2s ease;
}

.whatsapp-float:hover { scale: 1.04; }
.whatsapp-icon-wrapper { width: 28px; height: 28px; flex: 0 0 28px; display: inline-flex; align-items: center; justify-content: center; line-height: 1; transform: none !important; rotate: 0deg !important; }
.whatsapp-icon-wrapper i, .whatsapp-float i, .whatsapp-float svg, .whatsapp-float svg path { display: block; transform: none !important; rotate: 0deg !important; }
.whatsapp-icon-wrapper i { font-size: 27px; line-height: 1; }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.43), 0 12px 35px rgba(0,0,0,.3); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 12px 35px rgba(0,0,0,.3); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1100px) {
  .main-nav { gap: 19px; }
  .main-nav > a:not(.nav-cta) { font-size: .75rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); }
  .hero-seal { right: -20px; }
  .visual-grid { grid-template-columns: repeat(5, minmax(180px, 1fr)); }
  .visual-tile:nth-child(n+6) { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 36px, 720px); }
  .section-pad { padding: 86px 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 128px; height: 54px; }
  .menu-toggle { display: block; position: relative; z-index: 3; cursor: pointer; }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 76px 0 auto; max-height: calc(100dvh - 76px); overflow-y: auto; display: grid; gap: 0; padding: 22px max(18px, calc((100vw - 720px)/2)); color: #fff; background: #090909; border-top: 1px solid rgba(255,255,255,.09); box-shadow: 0 24px 60px rgba(0,0,0,.42); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .24s ease, transform .24s ease, visibility .24s ease; }
  body.menu-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.nav-cta) { padding: 17px 4px; color: rgba(255,255,255,.9); border-bottom: 1px solid rgba(255,255,255,.09); font-size: .9rem; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 18px; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; padding-top: 130px; padding-bottom: 85px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { justify-self: center; width: min(100%, 480px); }
  .hero-proof { max-width: 620px; }
  .scroll-cue { display: none; }
  .section-heading, .results-heading { grid-template-columns: 1fr; gap: 24px; }
  .procedure-card { grid-column: span 3; }
  .procedure-card:nth-child(4) { grid-column: span 3; }
  .procedure-card:nth-child(5) { grid-column: 2 / span 4; }
  .consultation-grid, .about-grid { grid-template-columns: 1fr; }
  .consultation-photo { width: min(100%, 620px); }
  .consultation-copy { max-width: 650px; }
  .about-photo { width: min(84%, 520px); margin-inline: auto; order: -1; }
  .about-monogram { left: -45px; }
  .visual-grid { grid-template-columns: repeat(3, 1fr); }
  .visual-tile { min-height: 320px; }
  .visual-tile:nth-child(n+7) { display: none; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); }
  .section-pad { padding: 72px 0; }
  h1 { font-size: clamp(3.45rem, 15vw, 5rem); }
  .hero-grid { padding-top: 116px; gap: 42px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-proof { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .hero-proof div:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-left: 0; }
  .hero-proof strong { font-size: 1.55rem; }
  .hero-visual { width: calc(100% - 15px); }
  .hero-seal { right: -12px; bottom: 20px; width: 94px; height: 94px; }
  .hero-seal span { display: none; }
  .hero-seal b { font-size: 1.2rem; }
  .section-heading h2, .about h2, .consultation h2, .results h2, .contact h2 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .procedure-grid { display: grid; grid-template-columns: 1fr; }
  .procedure-card, .procedure-card:nth-child(4), .procedure-card:nth-child(5) { grid-column: auto; }
  .procedure-body p { min-height: auto; }
  .consultation-grid { gap: 62px; }
  .photo-note { right: -6px; bottom: -20px; }
  .about-photo { width: calc(100% - 30px); }
  .about-monogram { left: -34px; font-size: 4rem; }
  .visual-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .visual-grid::-webkit-scrollbar { display: none; }
  .visual-tile, .visual-tile:nth-child(n+7) { display: block; min-width: 72vw; min-height: 390px; scroll-snap-align: center; }
  .result-card { width: 245px; }
  .results-track { animation-duration: 58s; }
  .contact { padding: 86px 0 96px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { min-width: 56px; min-height: 56px; justify-content: center; padding: 14px; }
  .whatsapp-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

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