@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --ink: #171615;
  --soft-ink: #4f4a46;
  --paper: #ffffff;
  --cream: #f6f1eb;
  --sand: #e4d5c7;
  --wood: #b88962;
  --wood-dark: #7b5438;
  --charcoal: #242321;
  --line: rgba(23, 22, 21, .14);
  --green: #25d366;
  --radius-sm: 10px;
  --radius: 22px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(37, 29, 23, .12);
  --gutter: clamp(18px, 4vw, 72px);
  --content: 1680px;
  --reading: 900px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Poppins', 'Century Gothic', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.shell { width: min(var(--content), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.reading { width: min(var(--reading), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.section { padding: clamp(72px, 8vw, 132px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--charcoal); color: #fff; }
.section--wood { background: var(--wood); color: #fff; }
.section-heading { max-width: 880px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px;
  color: var(--wood-dark); font-size: 11px; font-weight: 600; letter-spacing: .27em; text-transform: uppercase;
}
.kicker::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.section--dark .kicker, .section--wood .kicker { color: #fff; }
h1, h2, h3, h4 { margin: 0; font-weight: 300; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(52px, 6vw, 98px); }
h2 { font-size: clamp(38px, 4.5vw, 72px); }
h3 { font-size: clamp(22px, 2vw, 31px); }
p { margin: 0 0 1em; }
.lead { color: var(--soft-ink); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.7; }
.section--dark .lead, .section--wood .lead { color: rgba(255,255,255,.75); }
.muted { color: var(--soft-ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 48px; padding: 0 24px; border: 1px solid var(--ink); border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px); background: var(--wood-dark); border-color: var(--wood-dark); box-shadow: 0 12px 28px rgba(123,84,56,.23); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.icon-round { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--wood-dark); flex: 0 0 auto; }

/* Compact header */
.topbar { min-height: 30px; background: var(--charcoal); color: #fff; font-size: 11px; }
.topbar .shell { min-height: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__group { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }
.site-header { position: sticky; top: 0; z-index: 1000; height: 82px; background: rgba(255,255,255,.93); backdrop-filter: blur(18px); border-bottom: 1px solid transparent; transition: height .25s ease, box-shadow .25s ease, border-color .25s ease; }
.site-header.is-scrolled { height: 70px; box-shadow: 0 12px 38px rgba(23,22,21,.08); border-color: var(--line); }
.site-header .shell { height: 100%; display: grid; grid-template-columns: 170px 1fr 170px; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: 122px; }
.brand img { max-height: 68px; object-fit: contain; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3vw, 48px); }
.nav-links a { position: relative; font-size: 13px; font-weight: 400; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--wood-dark); transition: right .25s ease; }
.nav-links a:hover::after, .nav-links a[aria-current='page']::after { right: 0; }
.nav-cta { justify-self: end; }
.menu-toggle { display: none; justify-self: end; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--ink); color: #fff; font-size: 18px; cursor: pointer; }

/* Home hero */
.home-hero { padding: clamp(18px, 2.5vw, 40px) 0 0; }
.home-hero__frame { position: relative; min-height: min(760px, calc(100vh - 112px)); overflow: hidden; border-radius: var(--radius-lg); background: var(--charcoal); box-shadow: var(--shadow); }
.home-hero__media { position: absolute; inset: 0; }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.02); animation: heroZoom 16s ease-in-out infinite alternate; }
.home-hero__frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,17,16,.82) 0%, rgba(18,17,16,.54) 40%, rgba(18,17,16,.08) 76%); }
.home-hero__content { position: relative; z-index: 2; min-height: inherit; display: flex; flex-direction: column; justify-content: center; width: min(760px, 72%); padding: clamp(50px, 7vw, 110px); color: #fff; }
.home-hero__content h1 { max-width: 710px; }
.home-hero__content .lead { max-width: 610px; margin-top: 24px; color: rgba(255,255,255,.78); }
.home-hero__badge { position: absolute; z-index: 3; right: clamp(20px, 4vw, 68px); bottom: clamp(20px, 4vw, 64px); width: min(320px, 32vw); padding: 24px; border: 1px solid rgba(255,255,255,.28); border-radius: 20px; background: rgba(246,241,235,.92); color: var(--ink); backdrop-filter: blur(14px); }
.home-hero__badge strong { display: block; font-size: 20px; font-weight: 400; margin-bottom: 5px; }
.home-hero__badge span { color: var(--soft-ink); font-size: 13px; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.045); } }

/* Slider / promise */
.promise { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(42px, 7vw, 120px); align-items: center; }
.promise__copy h2 { max-width: 660px; }
.promise__copy .lead { margin-top: 25px; max-width: 620px; }
.image-slider { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--cream); }
.image-slider-track { display: flex; transition: transform .9s cubic-bezier(.22,.61,.36,1); }
.image-slide { flex: 0 0 100%; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; padding: 10px; }
.image-slide img { height: clamp(300px, 38vw, 570px); object-fit: cover; border-radius: calc(var(--radius-lg) - 10px); }
.slider-dots { display: flex; gap: 8px; margin-top: 22px; }
.slider-dot { width: 28px; height: 3px; border: 0; background: var(--sand); padding: 0; cursor: pointer; transition: width .25s, background .25s; }
.slider-dot.is-active { width: 52px; background: var(--wood-dark); }

/* Values */
.values-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 52px; }
.value-chip { min-height: 150px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.75); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.value-chip:hover { transform: translateY(-7px); border-color: var(--wood); background: #fff; }
.value-chip i { color: var(--wood-dark); font-size: 21px; }
.value-chip h3 { font-size: 20px; margin: 22px 0 10px; letter-spacing: -.02em; }
.value-chip p { color: var(--soft-ink); font-size: 13px; margin: 0; }

/* About split */
.about-feature { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(45px, 7vw, 120px); align-items: center; }
.about-feature__media { position: relative; padding: 0 0 44px 44px; }
.about-feature__media::before { content: ''; position: absolute; left: 0; bottom: 0; width: 62%; height: 62%; border-radius: 24px; background: var(--sand); }
.about-feature__media img { position: relative; z-index: 1; height: clamp(480px, 52vw, 720px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-feature__copy .lead { margin-top: 24px; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 28px; margin: 28px 0; }
.check-list span { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--soft-ink); }
.check-list i { color: var(--wood-dark); margin-top: 5px; }
.stats-row { display: flex; gap: clamp(30px, 5vw, 90px); padding-top: 34px; margin-top: 36px; border-top: 1px solid var(--line); }
.stat strong { display: block; font-size: clamp(42px, 4vw, 65px); font-weight: 300; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: var(--soft-ink); font-size: 12px; }

/* Services */
.services-intro { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.services-intro .section-heading { max-width: 760px; }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.service-card { position: relative; min-height: 480px; padding: 26px; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; isolation: isolate; box-shadow: var(--shadow); }
.service-card::before { content: ''; position: absolute; inset: 0; z-index: -2; background: var(--image) center/cover; transition: transform .6s ease; }
.service-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,10,10,.05), rgba(10,10,10,.82)); }
.service-card:hover::before { transform: scale(1.06); }
.service-card__icon { width: 46px; height: 46px; margin-bottom: auto; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--wood-dark); }
.service-card h3 { font-size: 28px; }
.service-card p { margin: 14px 0 0; color: rgba(255,255,255,.76); font-size: 13px; }
.service-card__link { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; font-size: 12px; font-weight: 500; }

/* Team */
.team-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.team-panel__media { display: grid; grid-template-columns: 1fr .52fr; gap: 14px; }
.team-panel__media img { height: 560px; object-fit: cover; border-radius: var(--radius); }
.team-panel__media img:last-child { height: 370px; margin-top: 90px; }
.team-panel__copy .lead { margin-top: 25px; }
.team-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 28px; }
.team-point { padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; color: rgba(255,255,255,.75); font-size: 13px; }
.team-point i { color: var(--sand); margin-right: 8px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 50px; }
.testimonial { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: 0 14px 40px rgba(23,22,21,.05); }
.testimonial__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.testimonial__author { display: flex; align-items: center; gap: 13px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial strong { display: block; font-weight: 500; }
.testimonial small { color: var(--soft-ink); }
.stars { color: #e3a51e; letter-spacing: 2px; margin: 24px 0 14px; }
.testimonial p { color: var(--soft-ink); font-size: 14px; margin: 0; }
.google-mark { font-weight: 600; font-size: 19px; letter-spacing: -.06em; }

/* Before after */
.smile-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.before-after { --position: 50%; position: relative; min-height: 600px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.before-after img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.before-after .after { clip-path: inset(0 0 0 var(--position)); }
.before-after::after { content: ''; position: absolute; top: 0; bottom: 0; left: var(--position); width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; }
.before-after input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 3; }
.compare-handle { position: absolute; z-index: 2; left: var(--position); top: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--ink); box-shadow: 0 8px 24px rgba(0,0,0,.18); pointer-events: none; }

/* QR and FAQ */
.review-panel { display: grid; grid-template-columns: 1fr .7fr; gap: clamp(30px, 6vw, 90px); align-items: center; padding: clamp(34px, 6vw, 90px); border-radius: var(--radius-lg); background: var(--sand); }
.review-panel__qr { display: flex; justify-content: center; }
.qr-card { width: min(340px,100%); padding: 24px; border-radius: 24px; background: #fff; text-align: center; box-shadow: var(--shadow); }
.qr-card img { aspect-ratio: 1; object-fit: contain; }
.qr-card strong { display: block; margin-top: 15px; font-weight: 500; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; border: 0; background: none; padding: 22px 0; text-align: left; font-size: 17px; cursor: pointer; }
.accordion-button i { transition: transform .25s ease; }
.accordion-item.is-open .accordion-button i { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-panel p { color: var(--soft-ink); margin: 0; padding: 0 40px 22px 0; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }

/* CTA */
.cta { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-lg); color: #fff; text-align: center; }
.cta img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.cta::after { content: ''; position: absolute; inset: 0; background: rgba(24,20,17,.57); }
.cta__content { position: relative; z-index: 2; max-width: 760px; padding: 40px; }
.cta__content .lead { color: rgba(255,255,255,.78); margin-top: 20px; }

/* Interior hero */
.page-hero { padding: 26px 0 0; }
.page-hero__frame { position: relative; min-height: 510px; overflow: hidden; border-radius: var(--radius-lg); color: #fff; display: flex; align-items: flex-end; }
.page-hero__frame img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.55); }
.page-hero__frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,19,18,.75), rgba(20,19,18,.12)); }
.page-hero__content { position: relative; z-index: 2; padding: clamp(38px, 6vw, 82px); }
.breadcrumb { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; font-size: 12px; color: rgba(255,255,255,.75); }
.page-hero h1 { font-size: clamp(50px, 5.5vw, 88px); }

/* Services page */
.treatment-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 50px; }
.treatment-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.treatment-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--sand); }
.treatment-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--wood-dark); font-size: 20px; }
.treatment-card h3 { margin: 22px 0 14px; font-size: 27px; }
.treatment-card p { color: var(--soft-ink); font-size: 13px; }
.treatment-list { margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; display: grid; gap: 8px; }
.treatment-list li { position: relative; padding-left: 17px; color: var(--soft-ink); font-size: 13px; }
.treatment-list li::before { content: ''; position: absolute; left: 0; top: .68em; width: 5px; height: 5px; border-radius: 50%; background: var(--wood); }

/* About / values */
.values-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 50px; }
.value-card { padding: 32px; min-height: 260px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.value-card i { font-size: 21px; color: var(--wood-dark); }
.value-card h3 { margin: 26px 0 14px; font-size: 25px; }
.value-card p { color: var(--soft-ink); font-size: 13px; }
.local-story { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.local-story img { height: 640px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* Contact */
.contact-cards { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.contact-card { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.contact-card i { font-size: 20px; color: var(--wood-dark); }
.contact-card h3 { font-size: 21px; margin: 20px 0 9px; }
.contact-card p, .contact-card a { color: var(--soft-ink); font-size: 13px; }
.contact-layout { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 34px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1/-1; }
.form label { font-size: 12px; font-weight: 500; }
.form input, .form textarea, .form select { width: 100%; padding: 15px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; outline: 0; }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--wood); box-shadow: 0 0 0 3px rgba(184,137,98,.13); }
.form textarea { min-height: 145px; resize: vertical; }
.form-status { display: none; color: #20733d; font-size: 13px; }
.form-status.is-visible { display: block; }
.contact-photo { position: sticky; top: 110px; }
.contact-photo img { height: 690px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* Policies */
.policy-wrap { padding: 70px 0 110px; }
.policy-content { width: min(var(--reading), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.policy-content h1 { font-size: clamp(44px, 5vw, 72px); margin-bottom: 22px; }
.policy-content h2 { font-size: clamp(29px, 3vw, 43px); margin: 36px 0 12px; }
.policy-content h3 { font-size: 22px; margin: 30px 0 10px; }
.policy-content p, .policy-content li { color: var(--soft-ink); font-size: 14px; }
.policy-content a { text-decoration: underline; text-underline-offset: 3px; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.policy-content td { padding: 12px; border-bottom: 1px solid #fff; background: var(--cream); }
.sitemap-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 30px; }
.sitemap-list a { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; transition: .25s ease; }
.sitemap-list a:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }


/* Traductor de Google antiguo integrado en la propia página.
   El selector oficial queda fijo abajo y no abre dominios translate.goog. */
body { padding-bottom: 58px; }
.google-translate-bar {
  position: fixed;
  display: none !important;
  z-index: 2147483000;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px max(14px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  border-top: 1px solid #d8d8d8;
  background: rgba(255,255,255,.98);
  box-shadow: 0 -8px 28px rgba(0,0,0,.12);
  color: #3c4043;
  font-family: Arial, sans-serif;
}
.google-translate-bar__inner {
  width: min(100%, 1180px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.google-translate-bar__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}
#google_translate_element { min-height: 30px; display: flex; align-items: center; }
#google_translate_element .goog-te-gadget { color: #5f6368; font-size: 11px; white-space: nowrap; }
#google_translate_element .goog-te-combo {
  min-width: 190px;
  height: 34px;
  margin: 0 6px !important;
  padding: 0 34px 0 11px;
  border: 1px solid #c7c7c7;
  border-radius: 5px;
  background: #fff;
  color: #202124;
  font: 13px Arial, sans-serif;
  cursor: pointer;
}
.skiptranslate {
    display: none !important;
}

/* El control antiguo ya está abajo; se evita una segunda barra superior. */
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame { display: none !important; }
html, body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }

@media (max-width: 640px) {
  body { padding-bottom: 70px; }
  .google-translate-bar { min-height: 62px; }
  .google-translate-bar__inner { gap: 7px; }
  .google-translate-bar__label { display: none; }
  #google_translate_element .goog-te-combo { min-width: min(72vw, 245px); }
  .language-switcher,
  .whatsapp { bottom: max(82px, calc(env(safe-area-inset-bottom) + 82px)); }
}

/* Footer */
.site-footer { margin-top: clamp(70px, 8vw, 130px); padding: 78px 0 22px; background: var(--charcoal); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr 1fr; gap: clamp(30px, 5vw, 88px); }
.footer-brand img { width: 120px; filter: invert(1); margin-bottom: 24px; }
.footer-brand p, .footer-col a, .footer-col p { color: rgba(255,255,255,.68); font-size: 12px; }
.footer-col h3 { margin-bottom: 17px; font-size: 19px; font-weight: 400; letter-spacing: -.02em; }
.footer-col nav { display: grid; gap: 7px; }
.footer-col a:hover { color: #fff; }
.footer-phones { margin-top: 15px; font-size: 18px; line-height: 1.8; }
.funding-copy { margin-top: 52px; text-align: center; color: rgba(255,255,255,.65); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }
.footer-bottom { display: flex;grid-template-columns: 1fr minmax(320px, 620px) 1fr;gap: 30px;align-items: center;padding-top: 16px;justify-content: center;}.funding-strip { width: 100%; }
.footer-social { justify-self: end; display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #fff; }

/* Floating tools */
.language-switcher { position: fixed; left: max(16px, env(safe-area-inset-left)); bottom: max(35px, calc(env(safe-area-inset-bottom) + 35px)) !important; z-index: 1100; }
.language-toggle { min-width: 94px; height: 48px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.95); display: flex; align-items: center; justify-content: center; gap: 9px; box-shadow: 0 12px 34px rgba(0,0,0,.15); cursor: pointer; }
.language-menu { position: absolute; left: 0; bottom: calc(100% + 10px); width: 225px; max-height: min(520px, 70vh); overflow: auto; padding: 8px; border-radius: 18px; background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.2); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s ease; }
.language-switcher.is-open .language-menu { opacity: 1; visibility: visible; transform: none; }
.language-option { width: 100%; border: 0; background: none; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; padding: 10px; border-radius: 11px; text-align: left; cursor: pointer; }
.language-option:hover, .language-option.is-active { background: var(--cream); }
.language-option__code { color: var(--soft-ink); font-size: 11px; }
.whatsapp { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(20px, calc(env(safe-area-inset-bottom) + 23px)) !important; z-index: 1100; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; box-shadow: 0 14px 36px rgba(0,0,0,.25); font-size: 30px; transition: transform .25s ease, box-shadow .25s ease; }
.whatsapp:hover { color: #fff; transform: translateY(-4px) scale(1.04); box-shadow: 0 20px 42px rgba(0,0,0,.3); }

/* Motion */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal='left'] { transform: translateX(-28px); }
[data-reveal='right'] { transform: translateX(28px); }

@media (max-width: 1100px) {
  .site-header .shell { grid-template-columns: 145px 1fr 145px; }
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-card { min-height: 430px; }
  .treatment-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .values-strip, .values-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .site-header, .site-header.is-scrolled { height: 72px; }
  .site-header .shell { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; inset: 72px 0 auto; max-height: 0; overflow: hidden; display: grid; gap: 0; background: #fff; transition: max-height .35s ease; box-shadow: 0 24px 35px rgba(0,0,0,.08); }
  .site-header.is-open .nav-links { max-height: 380px; border-top: 1px solid var(--line); }
  .nav-links a { padding: 18px var(--gutter); border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .home-hero__frame { min-height: 690px; }
  .home-hero__content { width: 100%; justify-content: flex-end; padding: 54px 34px 160px; }
  .home-hero__frame::after { background: linear-gradient(180deg, rgba(18,17,16,.12), rgba(18,17,16,.85)); }
  .home-hero__badge { left: 34px; right: 34px; width: auto; }
  .promise, .about-feature, .team-panel, .smile-grid, .review-panel, .faq-grid, .local-story, .contact-layout { grid-template-columns: 1fr; }
  .promise__copy { order: -1; }
  .team-panel__media { order: 2; }
  .contact-photo { position: static; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; }
  .footer-social { justify-self: center; }
}

@media (max-width: 650px) {
  :root { --gutter: 16px; --radius-lg: 24px; }
  body { font-size: 14px; }
  .section { padding: 70px 0; }
  .brand { width: 105px; }
  .home-hero { padding-top: 12px; }
  .home-hero__frame { min-height: 640px; }
  .home-hero__content { padding: 44px 24px 170px; }
  .home-hero__content .lead { font-size: 16px; }
  .home-hero__badge { left: 20px; right: 20px; bottom: 20px; }
  .image-slide { grid-template-columns: 1fr; }
  .image-slide img { height: 300px; }
  .image-slide img:last-child { display: none; }
  .values-strip, .values-grid, .services-grid, .treatment-grid, .testimonial-grid, .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .services-intro { display: block; }
  .services-intro .btn { margin-top: 25px; }
  .service-card { min-height: 430px; }
  .about-feature__media { padding: 0 0 24px 24px; }
  .about-feature__media img, .local-story img, .contact-photo img { height: 460px; }
  .check-list, .team-points, .form { grid-template-columns: 1fr; }
  .stats-row { gap: 30px; }
  .team-panel__media { grid-template-columns: 1fr; }
  .team-panel__media img, .team-panel__media img:last-child { height: 370px; margin: 0; }
  .before-after { min-height: 420px; }
  .page-hero__frame { min-height: 420px; }
  .page-hero__content { padding: 34px 24px; }
  .sitemap-list { grid-template-columns: 1fr; }
  .footer-grid { padding-inline: 12px; }
  .funding-copy { margin-top: 36px; }
  .language-toggle { min-width: 82px; height: 46px; }
  .whatsapp { width: 54px; height: 54px; font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
@media print {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .site-header { position: relative !important; }
  .language-switcher, .whatsapp { display: none !important; }
}
/* Card media is a real image for reliable relative paths. */
.service-card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card::before { display: none; }
.service-card:hover .service-card__bg { transform: scale(1.06); }


/* =========================================================
   Enhanced motion, larger brand and animated statistics
   ========================================================= */

/* Larger, high-resolution logo without turning the navigation into a tall block. */
.site-header {
  height: 104px;
  overflow: visible;
}
.site-header.is-scrolled { height: 82px; }
.site-header .shell { grid-template-columns: 238px 1fr 180px; }
.brand {
  width: 205px;
  height: 100%;
  justify-self: start;
  transform-origin: left center;
  transition: width .35s cubic-bezier(.22,.61,.36,1), transform .35s ease;
}
.brand img {
  width: auto;
  height: 96px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: none;
  animation: logoReveal .9s cubic-bezier(.22,.61,.36,1) both;
}
.site-header.is-scrolled .brand img { height: 74px; }
.site-header.is-scrolled .brand { width: 168px; }
.brand:hover { transform: translateY(-2px) scale(1.015); }
.footer-brand img { width: 155px; }

/* Page-load choreography. */
.home-hero__content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroCopyIn .82s cubic-bezier(.22,.61,.36,1) forwards;
}
.home-hero__content > :nth-child(1) { animation-delay: .12s; }
.home-hero__content > :nth-child(2) { animation-delay: .25s; }
.home-hero__content > :nth-child(3) { animation-delay: .38s; }
.home-hero__content > :nth-child(4) { animation-delay: .51s; }
.home-hero__badge { animation: badgeFloat 5s ease-in-out 1.2s infinite; }
.home-hero__media { transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0); transition: transform .35s ease-out; }

/* Scroll-reveal now also uses blur and staggered delays set in JavaScript. */
[data-reveal] {
  filter: blur(7px);
  transition-delay: var(--reveal-delay, 0ms);
  transition-duration: .82s;
  transition-timing-function: cubic-bezier(.22,.61,.36,1);
}
[data-reveal].is-visible { filter: blur(0); }

/* Gentle motion on visual modules. */
.image-slider { transition: transform .45s ease, box-shadow .45s ease; }
.image-slider:hover { transform: translateY(-7px); box-shadow: 0 34px 90px rgba(37,29,23,.18); }
.image-slide.is-active img { animation: slideKenBurns 4.3s ease-out both; }
.image-slide.is-active img:nth-child(2) { animation-delay: .12s; }
.about-feature__media::before { animation: woodShapeFloat 6s ease-in-out infinite; }
.about-feature__media img,
.local-story img,
.contact-photo img,
.team-panel__media img {
  transition: transform .65s cubic-bezier(.22,.61,.36,1), filter .45s ease, box-shadow .45s ease;
}
.about-feature__media:hover img,
.local-story:hover img,
.contact-photo:hover img { transform: scale(1.018); filter: saturate(1.04); }

.value-chip,
.treatment-card,
.testimonial,
.contact-card {
  position: relative;
  overflow: hidden;
}
.value-chip::after,
.treatment-card::after,
.testimonial::after,
.contact-card::after {
  content: '';
  position: absolute;
  inset: -120% auto -120% -45%;
  width: 30%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  transition: left .7s ease;
  pointer-events: none;
}
.value-chip:hover::after,
.treatment-card:hover::after,
.testimonial:hover::after,
.contact-card:hover::after { left: 125%; }
.value-chip i,
.service-card__icon,
.contact-card i { transition: transform .4s cubic-bezier(.22,.61,.36,1); }
.value-chip:hover i,
.service-card:hover .service-card__icon,
.contact-card:hover i { transform: rotate(-8deg) scale(1.12); }
.service-card { transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 34px 84px rgba(37,29,23,.22); }
.service-card__link i,
.btn i { transition: transform .25s ease; }
.service-card:hover .service-card__link i,
.btn:hover i.fa-arrow-right { transform: translateX(5px); }

/* Animated counters. */
.stats-row { align-items: stretch; }
.stat {
  position: relative;
  min-width: 180px;
  padding: 16px 22px 18px 0;
  isolation: isolate;
}
.stat::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 7px 0 0 -18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(228,213,199,.48), rgba(255,255,255,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .85s cubic-bezier(.22,.61,.36,1);
}
.stat.is-counting::before { transform: scaleX(1); }
.stat strong.counter {
  display: inline-block;
  min-width: 2.4ch;
  font-variant-numeric: tabular-nums;
  transform-origin: left bottom;
}
.stat.is-counting strong.counter { animation: counterPop .72s cubic-bezier(.34,1.56,.64,1) both; }
.stat span { max-width: 190px; }

/* Scroll progress gives the whole site a subtle sense of motion. */
.scroll-progress {
  position: fixed;
  z-index: 1400;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--wood-dark), var(--wood), var(--sand));
  box-shadow: 0 1px 10px rgba(123,84,56,.35);
  transition: width .08s linear;
}

/* Additional feedback for floating tools. */
.whatsapp::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37,211,102,.5);
  border-radius: inherit;
  animation: whatsappPulse 2.5s ease-out infinite;
}
.language-toggle { transition: transform .25s ease, box-shadow .25s ease; }
.language-toggle:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(0,0,0,.2); }
.page-hero__frame > img { animation: pageHeroZoom 14s ease-in-out infinite alternate; }

@keyframes logoReveal {
  from { opacity: 0; transform: translateX(-18px) scale(.94); }
  to { opacity: 1; transform: none; }
}
@keyframes heroCopyIn {
  to { opacity: 1; transform: none; }
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes slideKenBurns {
  from { transform: scale(1.025); }
  to { transform: scale(1); }
}
@keyframes woodShapeFloat {
  0%,100% { transform: translate3d(0,0,0) rotate(0); }
  50% { transform: translate3d(8px,-10px,0) rotate(1.5deg); }
}
@keyframes counterPop {
  0% { opacity: .2; transform: translateY(13px) scale(.85); }
  100% { opacity: 1; transform: none; }
}
@keyframes whatsappPulse {
  0% { opacity: .7; transform: scale(.86); }
  75%,100% { opacity: 0; transform: scale(1.25); }
}
@keyframes pageHeroZoom {
  from { transform: scale(1.01); }
  to { transform: scale(1.065); }
}

@media (max-width: 1100px) {
  .site-header .shell { grid-template-columns: 205px 1fr 155px; }
  .brand { width: 178px; }
  .brand img { height: 88px; }
  .site-header.is-scrolled .brand { width: 154px; }
  .site-header.is-scrolled .brand img { height: 72px; }
}
@media (max-width: 900px) {
  .site-header, .site-header.is-scrolled { height: 82px; }
  .brand, .site-header.is-scrolled .brand { width: 148px; }
  .brand img, .site-header.is-scrolled .brand img { height: 74px; max-height: 74px; }
  .nav-links { inset: 82px 0 auto; }
}
@media (max-width: 650px) {
  .brand, .site-header.is-scrolled .brand { width: 132px; }
  .brand img, .site-header.is-scrolled .brand img { height: 68px; max-height: 68px; }
  .stats-row { flex-direction: column; gap: 12px; }
  .stat { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero__content > *, .home-hero__badge, .about-feature__media::before,
  .image-slide.is-active img, .whatsapp::after, .page-hero__frame > img,
  .brand img, .stat.is-counting strong.counter { animation: none !important; opacity: 1; transform: none; }
  [data-reveal] { filter: none; }
}


/* Toda la tarjeta de tratamiento destacado funciona como enlace. */
.service-card { padding: 0; }
.service-card__body {
  width: 100%;
  min-height: inherit;
  flex: 1 1 auto;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: inherit;
  border-radius: inherit;
  cursor: pointer;
}
.service-card__body:focus-visible {
  outline: 3px solid rgba(255,255,255,.96);
  outline-offset: -7px;
}
.service-card__body:focus-visible .service-card__link i {
  transform: translateX(5px);
}
.service-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 34px 84px rgba(37,29,23,.22);
}
.treatment-card[id] { scroll-margin-top: 110px; }


/* Selector de idiomas personalizado dentro de la barra inferior clásica.
   Google Translate queda como motor oculto; la interfaz visible conserva banderas y nombres. */
.google-translate-bar__inner {
  overflow: visible;
}
.google-translate-custom-slot {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 230px;
}
#google_translate_element {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.language-switcher.language-switcher--in-bar {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 2147483002;
}
.language-switcher--in-bar .language-toggle {
  min-width: 215px;
  height: 38px;
  justify-content: flex-start;
  padding: 0 13px;
  gap: 10px;
  border: 1px solid #c7c7c7;
  border-radius: 6px;
  background: #fff;
  color: #202124;
  box-shadow: none;
  font-family: Arial, sans-serif;
}
.language-switcher--in-bar .language-toggle > span {
  font-size: 20px;
  line-height: 1;
}
.language-switcher--in-bar .language-toggle strong {
  flex: 1;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}
.language-switcher--in-bar .language-toggle i {
  font-size: 11px;
  color: #5f6368;
  transition: transform .2s ease;
}
.language-switcher--in-bar.is-open .language-toggle i {
  transform: rotate(180deg);
}
.language-switcher--in-bar .language-toggle:hover,
.language-switcher--in-bar .language-toggle:focus-visible {
  transform: none;
  border-color: #8a8a8a;
  box-shadow: 0 0 0 3px rgba(66,133,244,.14);
  outline: none;
}
.language-switcher--in-bar .language-menu {
  left: 0;
  right: auto;
  bottom: calc(100% + 12px);
  width: min(280px, calc(100vw - 28px));
  max-height: min(520px, calc(100vh - 105px));
  padding: 8px;
  border: 1px solid #dedede;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0,0,0,.22);
  font-family: Arial, sans-serif;
}
.language-switcher--in-bar .language-option {
  grid-template-columns: 30px minmax(0,1fr) auto;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #202124;
  font-size: 13px;
}
.language-switcher--in-bar .language-option > span:first-child {
  font-size: 21px;
  line-height: 1;
}
.language-switcher--in-bar .language-option:hover,
.language-switcher--in-bar .language-option.is-active {
  background: #f1f3f4;
}
.language-switcher--in-bar .language-option.is-active::after {
  content: '\f00c';
  margin-left: 4px;
  color: #1a73e8;
  font-family: 'Font Awesome 6 Free';
  font-size: 11px;
  font-weight: 900;
}
.language-switcher--in-bar .language-option__code {
  color: #70757a;
  font-size: 10px;
  letter-spacing: .08em;
}

@media (max-width: 640px) {
  .google-translate-bar__inner {
    justify-content: center;
  }
  .google-translate-custom-slot {
    min-width: min(100%, 280px);
  }
  .language-switcher.language-switcher--in-bar {
    display: block !important;
    width: 100%;
  }
  .language-switcher--in-bar .language-toggle {
    width: 100%;
    min-width: 0;
    height: 42px;
  }
  .language-switcher--in-bar .language-menu {
    width: 100%;
  }
}


/* Selector de idiomas flotante: esquina inferior izquierda, separado de la barra de traducción. */
.language-switcher,
.language-switcher.language-switcher--in-bar {
  position: fixed !important;
  left: max(18px, env(safe-area-inset-left)) !important;
  right: auto !important;
  bottom: max(25px, calc(env(safe-area-inset-bottom) + 25px)) !important;
  width: auto !important;
  z-index: 2147483002 !important;
}
.language-switcher .language-toggle,
.language-switcher--in-bar .language-toggle {
  width: auto;
  min-width: 118px;
  height: 50px;
  padding: 0 17px;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
  font-family: inherit;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.language-switcher .language-toggle strong,
.language-switcher--in-bar .language-toggle strong {
  flex: 0 1 auto;
  overflow: visible;
  text-align: left;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  text-overflow: clip;
}
.language-switcher .language-toggle i,
.language-switcher--in-bar .language-toggle i {
  color: var(--soft-ink);
  font-size: 11px;
}
.language-switcher .language-menu,
.language-switcher--in-bar .language-menu {
  left: 0;
  right: auto;
  bottom: calc(100% + 12px);
  width: min(265px, calc(100vw - 36px));
  max-height: min(520px, calc(100vh - 155px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(0,0,0,.22);
  font-family: inherit;
}
.language-switcher .language-option,
.language-switcher--in-bar .language-option {
  grid-template-columns: 30px minmax(0,1fr) auto;
  min-height: 44px;
  padding: 9px 10px;
  border-radius: 11px;
  color: var(--ink);
  font-size: 13px;
}
.language-switcher .language-option:hover,
.language-switcher .language-option.is-active,
.language-switcher--in-bar .language-option:hover,
.language-switcher--in-bar .language-option.is-active {
  background: var(--cream);
}
.language-switcher .language-option__code,
.language-switcher--in-bar .language-option__code {
  color: var(--soft-ink);
  font-size: 10px;
  letter-spacing: .08em;
}

@media (max-width: 640px) {
  .language-switcher,
  .language-switcher.language-switcher--in-bar {
    left: max(12px, env(safe-area-inset-left)) !important;
    bottom: max(82px, calc(env(safe-area-inset-bottom) + 82px)) !important;
    width: auto !important;
  }
  .language-switcher .language-toggle,
  .language-switcher--in-bar .language-toggle {
    width: auto;
    min-width: 108px;
    height: 46px;
    padding-inline: 14px;
  }
  .language-switcher .language-menu,
  .language-switcher--in-bar .language-menu {
    width: min(260px, calc(100vw - 24px));
  }
}

/* =========================================================
   Navegación móvil mejorada
   Drawer lateral, CTA visible, datos de contacto y accesibilidad.
   ========================================================= */
.mobile-nav-head,
.mobile-nav-footer,
.nav-backdrop {
  display: none;
}

.menu-toggle {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  isolation: isolate;
}
.menu-toggle__line {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: top .28s ease, transform .28s ease, opacity .2s ease;
}
.menu-toggle__line--top { top: 15px; }
.menu-toggle__line--middle { top: 21px; }
.menu-toggle__line--bottom { top: 27px; }
.site-header.is-open .menu-toggle__line--top {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.site-header.is-open .menu-toggle__line--middle { opacity: 0; }
.site-header.is-open .menu-toggle__line--bottom {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  .site-header,
  .site-header.is-scrolled {
    z-index: 1200;
    height: 84px;
    border-bottom: 1px solid rgba(23,22,21,.08);
    background: rgba(255,255,255,.98);
    box-shadow: 0 8px 30px rgba(37,29,23,.07);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header .shell {
    width: 100%;
    max-width: none;
    padding-inline: max(16px, env(safe-area-inset-left));
    grid-template-columns: minmax(0,1fr) auto;
    gap: 14px;
  }
  .brand,
  .site-header.is-scrolled .brand {
    width: 154px;
    height: 100%;
    margin: 0;
  }
  .brand img,
  .site-header.is-scrolled .brand img {
    width: auto;
    height: 76px;
    max-height: 76px;
    object-position: left center;
  }
  .brand:hover { transform: none; }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(23,22,21,.1);
    border-radius: 16px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 10px 24px rgba(23,22,21,.16);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  }
  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: var(--wood-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(123,84,56,.24);
    outline: none;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(19,17,15,.54);
    opacity: 0;
    visibility: hidden;
    cursor: default;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity .35s ease, visibility .35s ease;
  }
  .site-header.is-open + .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    counter-reset: mobile-nav-item;
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 3;
    display: flex;
    width: min(88vw, 390px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: none !important;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0 !important;
    border-radius: 28px 0 0 28px;
    background:
      radial-gradient(circle at 100% 0, rgba(184,137,98,.16), transparent 31%),
      linear-gradient(180deg, #fff 0%, #fff 72%, #f7f1eb 100%);
    box-shadow: -28px 0 70px rgba(20,17,15,.24);
    opacity: 0;
    visibility: hidden;
    transform: translateX(104%);
    transition:
      transform .48s cubic-bezier(.22,.61,.36,1),
      opacity .28s ease,
      visibility .48s ease;
    -webkit-overflow-scrolling: touch;
  }
  .site-header.is-open .nav-links {
    max-height: none !important;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-nav-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    min-height: 96px;
    padding: 12px 18px 12px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(23,22,21,.1);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .mobile-nav-brand {
    display: inline-flex;
    width: 158px;
    align-items: center;
  }
  .mobile-nav-brand img {
    width: 100%;
    height: auto;
    max-height: 76px;
    object-fit: contain;
    object-position: left center;
  }
  .mobile-nav-close {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 18px;
    cursor: pointer;
    transition: transform .25s ease, color .25s ease, border-color .25s ease;
  }
  .mobile-nav-close:hover,
  .mobile-nav-close:focus-visible {
    color: var(--wood-dark);
    border-color: var(--wood);
    transform: rotate(90deg);
    outline: none;
  }

  .nav-links > a {
    counter-increment: mobile-nav-item;
    position: relative;
    display: grid;
    min-height: 74px;
    padding: 17px 24px;
    grid-template-columns: 34px minmax(0,1fr) 28px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(23,22,21,.1);
    color: var(--ink);
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 400;
    letter-spacing: -.025em;
    opacity: 0;
    transform: translateX(26px);
    transition:
      color .25s ease,
      background .25s ease,
      padding .25s ease,
      opacity .32s ease,
      transform .4s cubic-bezier(.22,.61,.36,1);
  }
  .nav-links > a::before {
    content: '0' counter(mobile-nav-item);
    color: var(--wood-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
  }
  .nav-links > a::after {
    content: '\f061';
    position: static;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    justify-self: end;
    border-radius: 50%;
    background: transparent;
    color: var(--wood-dark);
    font-family: 'Font Awesome 6 Free';
    font-size: 12px;
    font-weight: 900;
    opacity: .75;
    transform: translateX(-4px);
    transition: transform .25s ease, background .25s ease, color .25s ease;
  }
  .nav-links > a:hover,
  .nav-links > a:focus-visible {
    padding-left: 28px;
    background: rgba(228,213,199,.38);
    outline: none;
  }
  .nav-links > a:hover::after,
  .nav-links > a:focus-visible::after {
    background: var(--wood-dark);
    color: #fff;
    transform: translateX(0);
  }
  .nav-links > a[aria-current='page'] {
    background: linear-gradient(90deg, rgba(228,213,199,.62), rgba(228,213,199,.18));
    color: var(--wood-dark);
    font-weight: 500;
  }
  .nav-links > a[aria-current='page']::after {
    background: var(--wood-dark);
    color: #fff;
    opacity: 1;
    transform: none;
  }

  .site-header.is-open .nav-links > a {
    opacity: 1;
    transform: translateX(0);
  }
  .site-header.is-open .nav-links > a:nth-of-type(1) { transition-delay: .09s; }
  .site-header.is-open .nav-links > a:nth-of-type(2) { transition-delay: .14s; }
  .site-header.is-open .nav-links > a:nth-of-type(3) { transition-delay: .19s; }
  .site-header.is-open .nav-links > a:nth-of-type(4) { transition-delay: .24s; }

  .mobile-nav-footer {
    display: grid;
    margin-top: auto;
    padding: 24px;
    gap: 18px;
    border-top: 1px solid rgba(23,22,21,.08);
  }
  .mobile-nav-cta {
    width: 100%;
    min-height: 54px;
    border-color: var(--wood-dark);
    background: var(--wood-dark);
    box-shadow: 0 14px 30px rgba(123,84,56,.2);
  }
  .mobile-nav-contact {
    display: grid;
    gap: 10px;
  }
  .mobile-nav-contact a {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    color: var(--soft-ink);
    font-size: 11px;
    line-height: 1.35;
  }
  .mobile-nav-contact a::after { display: none !important; }
  .mobile-nav-contact i {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--wood-dark);
    box-shadow: 0 5px 15px rgba(37,29,23,.08);
  }
  .mobile-nav-contact span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .mobile-nav-footer > p {
    margin: 0;
    color: var(--soft-ink);
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  body.menu-open .language-switcher,
  body.menu-open .whatsapp,
  body.menu-open .google-translate-bar {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 430px) {
  .site-header,
  .site-header.is-scrolled { height: 78px; }
  .site-header .shell { padding-inline: 12px; }
  .brand,
  .site-header.is-scrolled .brand { width: 140px; }
  .brand img,
  .site-header.is-scrolled .brand img {
    height: 70px;
    max-height: 70px;
  }
  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .nav-links {
    width: 100%;
    border-radius: 0;
  }
  .mobile-nav-head { min-height: 88px; padding-left: 20px; }
  .mobile-nav-brand { width: 148px; }
  .nav-links > a { min-height: 68px; padding-inline: 20px; }
  .mobile-nav-footer { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links,
  .nav-backdrop,
  .nav-links > a,
  .menu-toggle__line,
  .mobile-nav-close {
    transition-duration: .01ms !important;
  }
}
