@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
}

:root {
  --ink: #151b1e;
  --ink-soft: #20282c;
  --olive: #117f8f;
  --olive-soft: #e8f2f3;
  --teal: #117f8f;
  --teal-dark: #0b6572;
  --chocolate: #117f8f;
  --sand: #f1f2f0;
  --ivory: #f8f8f6;
  --cream: #f8f8f6;
  --white: #ffffff;
  --muted: #5f696f;
  --line: #dde2e1;
  --shadow: 0 18px 48px rgba(21, 27, 30, .10);
  --shadow-soft: 0 10px 28px rgba(21, 27, 30, .07);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1240px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; color: inherit; line-height: 1.08; letter-spacing: -.04em; }
h1 { font-size: clamp(3rem, 6.5vw, 6.3rem); font-weight: 800; }
h2 { max-width: 860px; font-size: clamp(2.25rem, 4vw, 4.4rem); font-weight: 800; }
h3 { font-size: 1.08rem; font-weight: 800; letter-spacing: -.025em; }
ul, ol { margin: 0; padding: 0; }

:focus-visible { outline: 3px solid #55c7d9; 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; left: 1rem; top: -5rem; z-index: 9999; padding: .75rem 1rem; color: var(--white); background: var(--ink); border-radius: 10px; }
.skip-link:focus { top: 1rem; }
.noscript { padding: .8rem 1rem; color: var(--white); background: var(--chocolate); text-align: center; }
.container { width: min(calc(100% - 3rem), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(29,33,27,.08);
  box-shadow: 0 8px 30px rgba(29,33,27,.05);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand-logo { display: block; width: 180px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 1.15rem; font-size: .88rem; font-weight: 700; }
.main-nav > a:not(.header-phone) { padding: .55rem .1rem; }
.main-nav > a:not(.header-phone):hover { color: var(--teal); }
.cities-menu { position: relative; margin: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.cities-menu__label { display: inline-flex; align-items: center; gap: .45rem; padding: 0; color: var(--ink); background: transparent; border: 0; font-size: inherit; font-weight: 700; cursor: pointer; transition: color .18s ease; }
.cities-menu__label::after { content: ""; display: inline-block; width: .38rem; height: .38rem; margin-top: -.18rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transform-origin: center; transition: transform .18s ease; }
.cities-menu:hover .cities-menu__label, .cities-menu:focus .cities-menu__label, .cities-menu.is-open .cities-menu__label { color: var(--teal-dark); }
.cities-menu:hover .cities-menu__label::after, .cities-menu:focus .cities-menu__label::after, .cities-menu.is-open .cities-menu__label::after { transform: translateY(.14rem) rotate(225deg); }
.cities-menu:hover > .cities-menu__list, .cities-menu:focus > .cities-menu__list, .cities-menu.is-open > .cities-menu__list { display: grid; }
.cities-menu__list { position: absolute; z-index: 20; top: 100%; left: -.9rem; display: none; min-width: 150px; padding: .45rem; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.cities-menu__list a,
.cities-menu__list span { display: block; padding: .65rem .75rem; color: var(--muted); border-radius: 8px; font-size: .9rem; font-weight: 700; text-decoration: none; }
.cities-menu__list a:hover,
.cities-menu__list a:focus-visible { color: var(--teal-dark); background: var(--stone); }
.cities-menu__list a[aria-current="page"] { color: var(--teal-dark); background: #edf5f5; font-weight: 800; }
.header-phone { padding: .65rem 1rem; background: var(--sand); border-radius: 999px; white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .78rem 1.3rem; border: 1px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1.2; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--white); background: var(--teal); box-shadow: 0 12px 28px rgba(20,121,144,.22); }
.btn--primary:hover { background: var(--teal-dark); }
.btn--secondary { color: var(--ivory); background: var(--chocolate); box-shadow: 0 12px 28px rgba(90,56,43,.2); }
.btn--outline { color: var(--ink); background: transparent; border-color: rgba(29,33,27,.35); }
.btn-row { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }

.hero { overflow: hidden; padding: clamp(4.5rem, 8vw, 8rem) 0 clamp(5rem, 9vw, 8.5rem); background: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 3.2rem; }
.hero-copy { width: min(100%, 1080px); text-align: center; }
.hero-copy h1 { max-width: 1040px; margin: 2rem auto 1.8rem; }
.accent-word { color: var(--chocolate); }
.hero-copy .lede { max-width: 920px; margin-inline: auto; color: var(--muted); font-size: 1.2rem; }
.hero-copy > p:not(.lede) { max-width: 760px; margin: 2.2rem auto 0; color: var(--muted); font-size: 1.06rem; }
.hero-copy .btn-row { justify-content: center; margin-top: 2.1rem; }
.hero-trust { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1rem; margin-top: 1.4rem; padding: .65rem 1rem; list-style: none; background: var(--cream); border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .82rem; box-shadow: var(--shadow-soft); }
.hero-trust li::before { content: "✓"; margin-right: .35rem; color: var(--teal); font-weight: 800; }
.hero-visual { position: relative; width: min(100%, 1000px); }
.floor-card { position: relative; overflow: hidden; aspect-ratio: 16 / 7.8; background: var(--sand); border: 0; border-radius: 30px; box-shadow: var(--shadow); }
.hero-main-photo { width: 100%; height: 100%; object-fit: cover; }

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; background: var(--white); }
.section--ivory { background: var(--sand); }
.section--dark { color: var(--ivory); background: var(--ink); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lede, .section--dark p { color: rgba(244,239,231,.82); }
.section .lede { max-width: 760px; margin: 1rem 0 2.2rem; color: var(--muted); font-size: 1.1rem; }
.card { padding: 1.8rem; background: var(--white); border: 1px solid rgba(29,33,27,.07); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.card p { margin: .8rem 0 0; color: var(--muted); }
.icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 1.2rem; color: #e8f8fa; background: var(--teal-dark); border-radius: 50%; font-size: .78rem; font-weight: 800; box-shadow: 0 8px 18px rgba(14,97,114,.22); }
.icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

#confianza { background: var(--sand); }
.trust-title { max-width: none; margin-bottom: 2.4rem; text-align: center; }
.trust-title span { color: var(--chocolate); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trust-grid .card { min-height: 250px; }
.trust-cta, .works-cta { display: flex; justify-content: center; margin-top: 2rem; }

.split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.35fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.split h2 { margin-bottom: 1rem; }
#problemas .accent-word { color: var(--teal); }
.mosaic { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.15rem; }
.visual-placeholder { position: relative; min-height: 310px; overflow: hidden; background: linear-gradient(135deg, var(--olive-soft), var(--sand)); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.visual-placeholder--photo { min-height: 245px; border: 5px solid var(--cream); }
.visual-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.visual-placeholder.dark { background: repeating-linear-gradient(105deg, #90664f 0 32px, #6e4939 32px 46px); }
.tag { position: absolute; left: .8rem; bottom: .8rem; padding: .45rem .7rem; color: var(--white); background: var(--teal); border-radius: 999px; font-size: .75rem; font-weight: 800; }

#servicios { color: var(--ivory); background: var(--ink); }
#servicios h2 { color: var(--white); }
#servicios .lede { color: rgba(244,239,231,.74); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.service-card { min-height: 245px; color: var(--ink); background: var(--cream); transition: transform .2s ease, box-shadow .2s ease; }
.service-card .icon { margin-bottom: 12px; }
.service-card h3 { color: var(--ink); font-size: 1rem; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(0,0,0,.2); }
.service-card p { color: var(--muted); }

#clientes { color: var(--ivory); background: var(--chocolate); }
#clientes h2 { color: var(--white); }
#clientes .lede { color: rgba(244,239,231,.82); }
.audiences { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2.2rem; }
.audiences .card { color: var(--ink); background: var(--ivory); }
.audience-photo, .zone-photo, .finish-photo { width: 100%; aspect-ratio: 16 / 9; margin: 1.1rem 0; object-fit: cover; border-radius: 16px; }
.audience-photo { height: clamp(145px, 15vw, 190px) !important; aspect-ratio: auto; object-position: center; }
.zone-photo { height: clamp(145px, 15vw, 190px) !important; aspect-ratio: auto; object-position: center; }
.finish-photo { height: clamp(145px, 15vw, 190px) !important; aspect-ratio: auto; object-position: center; }

#trabajos { color: var(--ink); background: var(--white); }
#trabajos h2 { color: var(--ink); }
#trabajos .lede { color: var(--muted); }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2.2rem; }
.proof-grid--additional { margin-top: 1rem; }
.proof-placeholder { display: grid; place-items: center; min-height: 230px; padding: 1.5rem; color: var(--ivory); background: var(--chocolate); border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-soft); }
.proof-placeholder--photo { padding: 0; overflow: hidden; }
.proof-placeholder--photo img { display: block; width: 100%; height: 100%; min-height: 230px; object-fit: cover; object-position: center; }

#proceso { background: var(--sand); }
.step-list { display: grid; gap: .45rem; list-style: none; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: .8rem; border-radius: var(--radius-sm); }
.step:hover { background: rgba(255,255,255,.6); }
.step-number { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; color: var(--ivory); background: var(--olive); border-radius: 50%; font-weight: 800; box-shadow: 0 9px 20px rgba(29,33,27,.14); }
.step h3 { margin-top: .25rem; margin-bottom: .65rem; }
.step p { margin: 0; color: var(--muted); }

#opiniones { overflow: hidden; background: var(--white); }
.reviews-heading { margin-bottom: 2.4rem; }
.reviews-highlights {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .4rem 1.15rem;
  width: fit-content;
  max-width: 100%;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  background: transparent;
  border: 0;
}
.reviews-highlights li {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  gap: .3rem;
  min-height: 0;
  padding: 0;
  color: #62564f;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: .92rem;
  font-weight: 650;
  white-space: nowrap;
}
.reviews-highlights li + li { border-left: 0; }
.reviews-highlights span {
  display: inline;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  color: var(--chocolate);
  background: transparent;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1;
  font-weight: 750;
}
.reviews-summary { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem; margin-top: 1.5rem; color: var(--muted); }
.reviews-summary__score { color: var(--ink); font-size: 1.35rem; font-weight: 800; }
.review-stars { color: #f4b400; font-size: 1.05rem; letter-spacing: .08em; line-height: 1; }
.reviews-carousel { width: 100%; padding: .5rem 0 1.6rem; }
.reviews-track { display: flex; width: max-content; animation: reviews-marquee 58s linear infinite; will-change: transform; }
.reviews-set { display: flex; gap: 1.1rem; padding-right: 1.1rem; }
.review-card { display: flex; flex-direction: column; flex: 0 0 clamp(290px, 30vw, 410px); height: 320px; min-height: 0; padding: 1.25rem; color: var(--ink); background: var(--ivory); border: 1px solid rgba(90,56,43,.13); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.review-card header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.review-card header h3 { margin: 0 0 .15rem; font-size: 1rem; }
.review-card header p { margin: 0; color: var(--muted); font-size: .78rem; }
.review-avatar { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; overflow: hidden; color: var(--ivory); background: var(--teal-dark); border-radius: 50%; font-weight: 800; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; border: 0; border-radius: inherit; box-shadow: none; clip-path: circle(50% at center); }
.reviews-set .review-card:nth-child(1) .review-avatar { background: #455a64; }
.reviews-set .review-card:nth-child(2) .review-avatar { background: #689f38; }
.reviews-set .review-card:nth-child(6) .review-avatar { background: #f4511e; }
.reviews-set .review-card:nth-child(1) .review-avatar img,
.reviews-set .review-card:nth-child(2) .review-avatar img,
.reviews-set .review-card:nth-child(6) .review-avatar img { display: none; }
.reviews-set .review-card:nth-child(1) .review-avatar::after { content: "R"; }
.reviews-set .review-card:nth-child(2) .review-avatar::after,
.reviews-set .review-card:nth-child(6) .review-avatar::after { content: "P"; }
.review-card blockquote { display: -webkit-box; margin: .85rem 0 0; overflow: hidden; color: var(--ink); font-size: .93rem; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 8; }
.reviews-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: .5rem; }
@keyframes reviews-marquee { to { transform: translateX(-50%); } }

#zonas { color: var(--ivory); background: var(--chocolate); }
#zonas h2 { color: var(--white); }
#zonas .lede, #zonas .localities { color: rgba(244,239,231,.8); }
.zones-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr); align-items: stretch; gap: clamp(2rem, 5vw, 5rem); }
.zones-copy { display: flex; flex-direction: column; align-items: flex-start; }
.zones-image { min-height: 360px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.zones-image img { display: block; width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.zones-feature { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2.2rem; }
.zone-card { display: flex; flex-direction: column; color: var(--ink); background: var(--ivory); }
.zone-card__city-link { color: inherit; text-decoration: none; }
.zone-card__city-link:hover { text-decoration: underline; }
.zone-card p { color: var(--muted); }
.zone-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 44px;
  margin-top: 1.15rem;
  padding: .65rem 1rem;
  color: var(--teal-dark);
  background: transparent;
  border: 1px solid var(--teal);
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.zone-route:hover,
.zone-route:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}
.zone-route:focus-visible {
  outline: 3px solid rgba(20,121,144,.25);
  outline-offset: 4px;
}
.localities { margin-top: 2rem; }

/* El listado de localidades aprovecha todo el ancho disponible de la sección. */
#zonas .localities {
  width: 100%;
  max-width: none;
}

.process-dark, .cards, .finishes { display: grid; gap: 1rem; margin-top: 2.2rem; }
.process-dark { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards { grid-template-columns: repeat(4, minmax(0,1fr)); }
.finishes { grid-template-columns: repeat(3, minmax(0,1fr)); }
.section--dark .card { color: var(--ivory); background: var(--ink-soft); border-color: rgba(255,255,255,.08); box-shadow: none; }
.section--dark .card p { color: rgba(244,239,231,.78); }
.process-dark .card h3 { margin-top: 1rem; }
.status { display: inline-flex; margin-bottom: 1rem; padding: .35rem .65rem; color: var(--teal-dark); background: #e5f0f1; border-radius: 999px; font-size: .72rem; font-weight: 800; }

#reparacion-restauracion { background: var(--white); }
#precios, #preguntas { background: var(--sand); }
#barniz-al-agua, #acuchillado-barnizado, #contacto { background: var(--ink); }
#sin-polvo, #por-que-rialpu { background: var(--white); }
.finish-photo { margin-top: 1rem; }

.check-list { display: grid; gap: .8rem; margin: 1.4rem 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.6rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.price-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.price-photo-card { padding: 0; overflow: hidden; background: transparent; border: 0; }
.price-photo { width: 100%; max-height: 520px; object-fit: cover; border: 0; border-radius: 24px; }

details { margin-bottom: .8rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: 0 7px 22px rgba(29,33,27,.05); }
summary { position: relative; padding: 1.2rem 3.5rem 1.2rem 1.35rem; font-weight: 800; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 1.3rem; top: 50%; translate: 0 -50%; color: var(--teal); font-size: 1.5rem; }
details[open] summary::after { content: "−"; }
details > div, details > p { padding: 0 1.35rem 1.3rem; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(2rem, 7vw, 7rem); }
#contacto { color: var(--ivory); }
#contacto h1, #contacto h2, #contacto h3 { color: var(--white); }
#contacto h1 { max-width: 780px; margin-bottom: 1rem; font-size: clamp(2rem, 3.45vw, 3.55rem); }
.big-phone { display: block; margin: 2rem 0 .3rem; color: var(--white); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.contact-card { padding: clamp(1.4rem, 3vw, 2.4rem); color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.contact-card h2, .contact-card h3 { color: var(--ink) !important; }
.contact-card > p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
label { font-size: .9rem; font-weight: 800; }
input, textarea { width: 100%; padding: .78rem .9rem; color: var(--ink); background: var(--cream); border: 1px solid rgba(90,56,43,.28); border-radius: 12px; }
textarea { min-height: 125px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--teal); outline: 3px solid rgba(20,121,144,.16); }
.privacy-note { color: var(--muted); font-size: .75rem; }
#contact-form .privacy-note {
  margin-top: .8rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}
.checkbox { display: flex; align-items: flex-start; gap: .6rem; }
.checkbox input { width: auto; margin-top: .3rem; }
.checkbox a { color: var(--teal-dark); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; }
.form-status { min-height: 1.5rem; margin: .8rem 0; font-weight: 700; }
.form-status.success { color: var(--teal-dark); }
.form-status.error { color: #a43227; }
.contact-card .btn:disabled { cursor: wait; opacity: .72; transform: none; }

.site-footer { padding: 5rem 0 2rem; color: rgba(244,239,231,.78); background: #151713; }
.site-footer h2, .site-footer h3 { margin-bottom: 1rem; color: var(--white); }
.site-footer a:hover { color: #79c7d3; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 2rem; }
.footer-grid--without-services { grid-template-columns: 1.5fr repeat(2,1fr); }
.footer-grid ul { display: grid; gap: .55rem; list-style: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.instagram-link { display: inline-flex; align-items: center; gap: .5rem; width: fit-content; padding: .45rem .7rem; color: var(--white); border: 1px solid rgba(255,255,255,.25); border-radius: 10px; font-weight: 700; line-height: 1; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.instagram-link svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.instagram-link .instagram-dot { fill: currentColor; stroke: none; }
.instagram-link:hover { color: var(--white); border-color: var(--teal); background: var(--teal); }
.site-footer .btn--outline { color: var(--ivory); border-color: rgba(244,239,231,.35); }

.mobile-call { display: none; }
.cookie-banner { position: fixed; z-index: 400; right: 1rem; bottom: 1rem; left: 1rem; padding: .9rem; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 16px 48px rgba(29,33,27,.16); }
.cookie-layout { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; max-width: 900px; margin: auto; }
.cookie-banner h2, .cookie-panel h2 { font-size: 1.1rem; }
.cookie-banner p { margin: .3rem 0 0; color: var(--muted); font-size: .9rem; }
.cookie-banner a { color: var(--teal-dark); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .45rem; }
.cookie-panel { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 1rem; background: rgba(29,33,27,.66); }
.cookie-dialog { width: min(100%, 455px); max-height: 78vh; overflow: auto; padding: 1.35rem; background: var(--white); border-radius: 13px; box-shadow: 0 20px 58px rgba(0,0,0,.3); }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin: .8rem 0; padding: .7rem 0; border-top: 1px solid var(--line); }
.cookie-option h3 { margin-bottom: .35rem; }
.cookie-option p { margin: 0; color: var(--muted); }
[hidden] { display: none !important; }


@media (max-width: 1200px) {
  .header-cta { display: none; }
  .main-nav { gap: .75rem; }
}

@media (max-width: 1050px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .split, .price-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  :root { --header-height: 66px; }
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 2rem), var(--container)); }
  .brand-logo { width: 126px; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; align-items: stretch; padding: 1rem; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: .8rem !important; }
  .header-phone { text-align: center; }
  .hero { padding-top: 3.5rem; }
  .hero-copy h1 { font-size: clamp(2.8rem, 12vw, 4.8rem); }
  .floor-card { aspect-ratio: 4 / 3; }
  .audiences, .zones-feature, .proof-grid, .process-dark, .finishes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call { position: fixed; right: .75rem; bottom: .65rem; left: .75rem; z-index: 300; display: flex; align-items: center; justify-content: center; min-height: 52px; padding: .8rem 1rem; color: var(--white); background: var(--teal); border-radius: 999px; box-shadow: 0 14px 35px rgba(20,121,144,.36); font-weight: 800; }
  .cookie-banner { bottom: 4.8rem; }
  .cookie-layout { grid-template-columns: 1fr; }
  .cookie-actions .btn { flex: 1 1 150px; }
}

@media (max-width: 620px) {
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .section { padding: 4.2rem 0; }
  .hero-trust { border-radius: 18px; }
  .trust-grid, .services-grid, .cards, .mosaic { grid-template-columns: 1fr; }
  .reviews-highlights li { justify-content: flex-start; }
  .trust-grid .card, .service-card { min-height: auto; }
  .visual-placeholder--photo { min-height: 220px; }
  .btn-row .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reviews-track { animation: none !important; }
  .reviews-carousel { overflow-x: auto; scroll-snap-type: x proximity; }
  .review-card { scroll-snap-align: start; }
}

/* Rialpu redesign · July 2026 */
html { scroll-padding-top: 80px; }
body { background: var(--cream); color: var(--ink); }
h1 { font-size: clamp(2.7rem, 4.5vw, 4.65rem); }
h2 { max-width: 780px; font-size: clamp(2rem, 3.45vw, 3.55rem); }
h3 { font-size: 1.04rem; }
p { max-width: 72ch; }

.site-header {
  min-height: var(--header-height);
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(21,27,30,.04);
}
.nav-wrap { min-height: var(--header-height); gap: 1.25rem; }
.brand-logo { width: 148px; }
.main-nav { gap: 1rem; }
@media (min-width: 1201px) {
  .main-nav { gap: 4rem; }
}
.main-nav > a { position: relative; }
.main-nav > a:not(.header-phone)::after {
  content: "";
  position: absolute;
  right: .1rem;
  bottom: .25rem;
  left: .1rem;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); }
.header-phone { color: var(--teal-dark); background: #edf5f5; border: 1px solid #d4e6e7; border-radius: 12px; }

.btn { min-height: 52px; padding: .82rem 1.25rem; border-radius: 13px; }
.btn--primary { background: var(--teal); box-shadow: 0 10px 24px rgba(17,127,143,.20); }
.btn--primary:hover { background: var(--teal-dark); }
.btn--secondary { color: var(--teal-dark); background: var(--white); border-color: var(--teal); box-shadow: none; }
.btn--secondary:hover { color: var(--white); background: var(--teal-dark); border-color: var(--teal-dark); }
.btn--outline { border-color: var(--line); }

.hero { padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 6.5rem); background: var(--white); }
.hero-grid { grid-template-columns: minmax(0,.88fr) minmax(480px,1.12fr); align-items: center; justify-items: stretch; gap: clamp(2.5rem, 5vw, 5.5rem); }
.hero-copy { width: auto; text-align: left; }
.hero-copy h1 { max-width: 700px; margin: 1.4rem 0 1.3rem; }
.accent-word { color: var(--teal); }
#servicios .accent-word,
#acuchillado-barnizado .accent-word,
#barniz-al-agua .accent-word,
#contacto .accent-word { color: #8bd1da; }
#contacto .contact-card h2 .accent-word { color: var(--teal); }
.hero-copy .lede { max-width: 650px; margin-inline: 0; color: var(--muted); font-size: 1.04rem; line-height: 1.7; }
.hero-copy > p:not(.lede) { max-width: 620px; margin: 1.25rem 0 0; color: var(--muted); font-size: 1rem; }
.hero-copy .btn-row { justify-content: flex-start; margin-top: 1.75rem; }
.hero-actions { align-items: stretch; }
.btn--whatsapp, .btn--contact-whatsapp { gap: 10px; color: var(--white); background: var(--teal); }
.btn--whatsapp:hover, .btn--contact-whatsapp:hover { color: var(--white); background: var(--teal-dark); }
.btn--whatsapp img, .btn--contact-whatsapp img, .floating-whatsapp img, .mobile-contact-bar img { flex: 0 0 auto; filter: brightness(0) invert(1); }
.hero-trust { display: flex; justify-content: flex-start; width: fit-content; margin-top: 1.3rem; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; font-size: .8rem; }
.hero-visual { width: 100%; }
.floor-card { aspect-ratio: 4 / 3.1; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 24px 56px rgba(21,27,30,.14); }
.hero-main-photo { object-position: center; }
.comparison-inset { position: absolute; right: 1.25rem; bottom: 1.25rem; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; width: min(56%, 340px); aspect-ratio: 2 / 1; overflow: hidden; background: var(--white); border: 3px solid var(--white); border-radius: 16px; box-shadow: 0 15px 34px rgba(21,27,30,.25); }
.comparison-inset figure { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.comparison-inset img { width: 100%; height: 100%; object-fit: cover; }
.comparison-inset figure:first-child img { filter: saturate(.7) brightness(.86); }
.comparison-inset figcaption { position: absolute; left: .45rem; bottom: .4rem; padding: .2rem .42rem; color: var(--white); background: rgba(21,27,30,.76); border-radius: 6px; font-size: .66rem; font-weight: 800; }
.comparison-handle { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 28px; height: 28px; color: var(--teal-dark); background: var(--white); border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 5px 12px rgba(21,27,30,.18); translate: -50% -50%; font-size: .78rem; font-weight: 800; }

.section { padding: clamp(4.5rem, 6.5vw, 6.8rem) 0; }
.section .lede { max-width: 760px; margin: 1rem 0 2.2rem; font-size: 1.03rem; }
.card { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.card p { color: var(--muted); }

#confianza { background: var(--sand); }
.trust-title { margin: 0 auto 2.2rem; font-size: clamp(2rem, 3vw, 3rem); }
.trust-title span { color: var(--teal); }
.trust-grid { gap: 1.15rem; }
.trust-grid .card { min-height: 238px; }
.icon--outline { width: 48px; height: 48px; color: var(--teal); background: #f2f9f9; border: 1px solid #cfe4e6; box-shadow: none; }
.icon--outline img { filter: invert(41%) sepia(49%) saturate(1056%) hue-rotate(141deg) brightness(89%) contrast(91%); }
.trust-cta { margin-top: 1.5rem; }

#problemas, #trabajos, #opiniones, #reparacion-restauracion, #sin-polvo, #por-que-rialpu { background: var(--white); color: var(--ink); }
#clientes, #proceso, #zonas, #precios, #preguntas { color: var(--ink); background: var(--sand); }
#clientes h2, #zonas h2 { color: var(--ink); }
#clientes .lede, #zonas .lede, #zonas .localities { color: var(--muted); }
#servicios, #acuchillado-barnizado, #barniz-al-agua, #contacto { color: var(--ivory); background: var(--ink); }
#servicios .card, #acuchillado-barnizado .card, #barniz-al-agua .card { color: var(--ink); background: var(--white); border-color: var(--line); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
#acuchillado-barnizado .card h3,
#barniz-al-agua .card h3 { color: var(--ink); }
#barniz-al-agua .card h3 {
  display: block;
  margin-bottom: .25rem;
  color: var(--teal-dark);
  font-size: 1.08rem;
}
#servicios .card p, #acuchillado-barnizado .card p, #barniz-al-agua .card p { color: var(--muted); }
.service-card { min-height: 220px; background: var(--white); }
.service-card:hover { box-shadow: 0 18px 38px rgba(0,0,0,.18); }
.audiences .card, .zone-card, .review-card { background: var(--white); border-color: var(--line); }
.audience-photo, .zone-photo, .finish-photo { margin: 1rem 0; border-radius: 12px; }
.proof-placeholder { min-height: 280px; background: var(--ink-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.proof-placeholder--photo img { min-height: 280px; }

#proceso .split { display: block; }
#proceso .split > div:first-child { display: block; margin-bottom: 2.25rem; }
#proceso .split > div:first-child .btn { margin-top: 1rem; }
.step-list { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.step { grid-template-columns: 1fr; gap: .8rem; padding: 1.35rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.step:hover { background: var(--white); }
.step-number { width: 40px; height: 40px; background: var(--teal); box-shadow: 0 8px 18px rgba(17,127,143,.18); }
.process-dark { gap: 1.15rem; }

/* Connected service sequence */
#acuchillado-barnizado .process-dark {
  align-items: start;
  gap: 0;
  margin-top: 2rem;
}
#acuchillado-barnizado .lede { color: #aeb9be; }
#barniz-al-agua .lede { color: rgba(244,239,231,.82); }

/* Legal pages */
.legal-main { padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--cream); }
.legal-main .container { max-width: 960px; }
.legal-main h1 { max-width: 18ch; margin-bottom: .6rem; font-size: clamp(2.25rem, 5vw, 4.25rem); }
.legal-main h2 { margin-top: 2.5rem; margin-bottom: .85rem; font-size: clamp(1.35rem, 2.6vw, 2rem); }
.legal-main p, .legal-main li { max-width: 78ch; color: var(--muted); line-height: 1.75; }
.legal-main ul { margin: 0; padding-left: 1.25rem; }
.legal-main li + li { margin-top: .45rem; }
.legal-main a { color: var(--teal); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-main a:hover { color: var(--teal-dark); }
.legal-table { width: 100%; margin: 1.25rem 0 2rem; overflow: hidden; border: 1px solid var(--line); border-collapse: separate; border-radius: 14px; border-spacing: 0; background: var(--white); box-shadow: var(--shadow-soft); }
.legal-table th, .legal-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { color: var(--white); background: var(--ink-soft); }
.legal-table tr:last-child td { border-bottom: 0; }
@media (max-width: 700px) { .legal-main { padding: 2.75rem 0; } .legal-table { display: block; overflow-x: auto; } .legal-table th, .legal-table td { min-width: 150px; } }
#acuchillado-barnizado .process-dark .card {
  position: relative;
  min-width: 0;
  padding: 0 clamp(1rem, 2.8vw, 2.5rem);
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
#acuchillado-barnizado .process-dark .card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  right: calc(-50% + 42px);
  left: calc(50% + 42px);
  z-index: 0;
  border-top: 2px dashed rgba(139, 209, 218, .7);
}
#acuchillado-barnizado .process-dark .step-number {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin-inline: auto;
  color: var(--white);
  background: var(--teal);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 8px 20px rgba(17, 127, 143, .28);
}
#acuchillado-barnizado .process-dark .card h3 {
  margin: 1rem 0 .55rem;
  color: var(--white);
  font-size: 1.08rem;
}
#acuchillado-barnizado .process-dark .card p {
  max-width: 280px;
  margin: 0 auto;
  color: #c5ced2;
  line-height: 1.58;
}

.reviews-heading { max-width: 800px; margin-inline: auto; text-align: center; }
.reviews-highlights, .reviews-summary { justify-content: center; margin-inline: auto; }
.reviews-highlights li { color: var(--muted); }
.reviews-highlights span { color: var(--teal); }
.review-card { height: 306px; }
.zones-feature { gap: 1.15rem; }
.zone-route { color: var(--teal-dark); text-decoration-color: rgba(17,127,143,.35); }

.visual-placeholder { background: var(--sand); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.visual-placeholder.dark { background: repeating-linear-gradient(105deg, #e8eceb 0 32px, #d7dedd 32px 46px); }
.check-list li::before { color: var(--teal); }
.price-photo-card { border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.price-photo { border-radius: var(--radius); }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); align-items: start; gap: .8rem 1rem; margin-top: 2rem; }
#preguntas .faq-grid + .btn { margin-top: 1rem; }
.faq-grid details { margin: 0; box-shadow: none; }
.faq-grid summary { min-height: 68px; }
.faq-grid details[open] { box-shadow: var(--shadow-soft); }

.contact-grid { grid-template-columns: minmax(0,.72fr) minmax(560px,1.28fr); gap: clamp(2.5rem, 6vw, 6rem); }
.contact-copy { position: sticky; top: 110px; }
.big-phone { margin: 2rem 0 .55rem; font-size: clamp(2.7rem, 4.8vw, 4.65rem); }
.btn--contact-whatsapp { margin-top: 1.25rem; }
.contact-card { border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,.24); }
input, textarea { background: var(--cream); border-color: var(--line); }
.contact-card .btn--secondary { color: var(--teal-dark); }
.site-footer { background: var(--ink-soft); }

.floating-whatsapp { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 250; display: inline-flex; align-items: center; gap: .55rem; min-height: 48px; padding: .7rem 1rem; color: var(--white); background: var(--teal); border: 1px solid rgba(255,255,255,.22); border-radius: 13px; box-shadow: 0 12px 30px rgba(17,127,143,.27); font-size: .86rem; font-weight: 800; transition: opacity .2s ease, translate .2s ease, background .2s ease; }
.floating-whatsapp:hover { background: var(--teal-dark); translate: 0 -2px; }
.floating-whatsapp.is-hidden { pointer-events: none; opacity: 0; translate: 0 14px; }
.cookie-visible .floating-whatsapp { bottom: 9.25rem; }
.mobile-contact-bar { display: none; }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); gap: 2.5rem; }
  .hero-actions .btn { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 760px; }
  .hero-actions .btn { width: auto; }
  .step-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --header-height: 66px; }
  body { padding-bottom: 82px; }
  .site-header { min-height: var(--header-height); }
  .nav-wrap { min-height: var(--header-height); }
  .brand-logo { width: 124px; }
  .hero { padding-top: 2.75rem; }
  .hero-copy h1 { font-size: clamp(2.55rem, 10vw, 4.2rem); }
  .floor-card { aspect-ratio: 4 / 3; }
  .comparison-inset { right: .8rem; bottom: .8rem; width: min(62%, 330px); }
  #proceso .split > div:first-child { display: block; }
  #proceso .split > div:first-child .btn { margin-top: 1rem; }
  .floating-whatsapp { display: none; }
  .mobile-contact-bar { position: fixed; right: .65rem; bottom: .55rem; left: .65rem; z-index: 350; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 3px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 14px 36px rgba(21,27,30,.22); }
  .mobile-contact-bar a { display: flex; align-items: center; justify-content: center; gap: .45rem; min-width: 0; min-height: 52px; padding: .65rem .7rem; color: var(--teal-dark); border-radius: 11px; font-weight: 800; }
  .mobile-contact-bar a:last-child { color: var(--white); background: var(--teal); }
  .cookie-banner { bottom: 5.5rem; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  h2 { font-size: clamp(1.95rem, 9vw, 2.8rem); }
  .section { padding: 4.25rem 0; }
  .hero { padding: 2.6rem 0 4rem; }
  .hero-copy h1 { margin-top: 1.1rem; font-size: clamp(2.45rem, 11.5vw, 3.65rem); }
  .hero-copy .lede { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .btn--whatsapp { padding-inline: .9rem; font-size: .91rem; }
  .hero-trust { width: 100%; gap: .5rem .8rem; }
  .comparison-inset { width: 68%; border-width: 2px; border-radius: 12px; }
  .comparison-inset figcaption { left: .3rem; bottom: .28rem; font-size: .58rem; }
  .comparison-handle { width: 24px; height: 24px; }
  .trust-grid, .step-list { grid-template-columns: 1fr; }
  .trust-grid .card { min-height: auto; }
  .card { padding: 1.25rem; }
  .proof-placeholder, .proof-placeholder--photo img { min-height: 225px; }
  .contact-card { padding: 1.2rem; }
  .btn--contact-whatsapp { width: 100%; font-size: .9rem; }
  .faq-grid summary { min-height: 0; }
  .mobile-contact-bar { right: .45rem; bottom: .4rem; left: .45rem; }
}

/* Responsive density and image normalization */
.hero {
  padding-top: clamp(2.75rem, 4.5vw, 4.5rem);
  padding-bottom: clamp(3.25rem, 5vw, 5.25rem);
}
.section { padding: clamp(3.5rem, 5vw, 5.5rem) 0; }
.section .lede { margin-bottom: 1.65rem; }
.section h2 + p { margin-top: .85rem; }
.trust-title { margin-bottom: 1.65rem; }
.trust-cta, .works-cta { margin-top: 1.5rem; }
.audiences, .zones-feature, .proof-grid, .process-dark, .cards, .finishes { margin-top: 1.65rem; }

.floor-card { aspect-ratio: 16 / 10; }
.visual-placeholder--photo {
  min-height: 0;
  aspect-ratio: 16 / 10;
}
.dust-control-photo {
  aspect-ratio: 16 / 9;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.dust-control-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.trust-team-photo {
  aspect-ratio: 16 / 10;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trust-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}
.visual-placeholder--photo img,
.proof-placeholder--photo img,
.audience-photo,
.zone-photo,
.finish-photo,
.price-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.audience-photo,
.zone-photo,
.finish-photo {
  height: auto !important;
  aspect-ratio: 16 / 9;
}
.proof-placeholder { min-height: 0; }
.proof-placeholder--photo { aspect-ratio: 16 / 10; }
.proof-placeholder--photo img { min-height: 0; }
.price-photo {
  max-height: none;
  aspect-ratio: 4 / 3;
}

@media (max-width: 820px) {
  .zones-layout { grid-template-columns: 1fr; }
  .zones-image, .zones-image img { min-height: 240px; }
}

@media (min-width: 921px) and (max-width: 1120px) {
  .hero { padding-top: 3rem; padding-bottom: 3.75rem; }
  .section { padding-block: 3.75rem; }
  .audiences,
  .zones-feature,
  .proof-grid,
  .finishes { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (min-width: 821px) and (max-width: 960px) {
  .brand-logo { width: 126px; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: grid; }
  .main-nav a { padding: .8rem !important; }
  .header-phone { text-align: center; }
}

@media (min-width: 700px) and (max-width: 920px) {
  .hero { padding-top: 2.75rem; padding-bottom: 3.5rem; }
  .section { padding-block: 3.5rem; }
  .floor-card { aspect-ratio: 16 / 10; }
  .audiences,
  .zones-feature,
  .proof-grid,
  .finishes { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .step-list { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .faq-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (min-width: 780px) and (max-width: 920px) {
  .audiences,
  .zones-feature,
  .proof-grid,
  .finishes { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 699px) {
  .hero { padding: 2.25rem 0 3rem; }
  .section { padding-block: 3rem; }
  .floor-card { aspect-ratio: 16 / 10; }
  .section .lede { margin-bottom: 1.4rem; }
  .audiences, .zones-feature, .proof-grid, .process-dark, .cards, .finishes { margin-top: 1.35rem; }
  .trust-title { margin-bottom: 1.35rem; }
  .card { padding: 1.15rem; }
  .review-card { padding: 1.1rem; }
  #acuchillado-barnizado .process-dark { gap: 1.6rem; }
  #acuchillado-barnizado .process-dark .card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas: "number title" "number copy";
    gap: .35rem 1rem;
    padding: 0;
    text-align: left;
  }
  #acuchillado-barnizado .process-dark .card:not(:last-child)::after {
    top: 56px;
    right: auto;
    bottom: -1.25rem;
    left: 23px;
    border-top: 0;
    border-left: 2px dashed rgba(139, 209, 218, .7);
  }
  #acuchillado-barnizado .process-dark .step-number {
    grid-area: number;
    margin: 0;
  }
  #acuchillado-barnizado .process-dark .card h3 {
    grid-area: title;
    align-self: end;
    margin: 0;
  }
  #acuchillado-barnizado .process-dark .card p {
    grid-area: copy;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 820px) {
  .cities-menu__list { position: static; margin-top: .35rem; box-shadow: none; }
}

/* La fotografía de precios ocupa toda su superficie, sin marco interior blanco. */
.price-photo-card {
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.price-photo-card .price-photo {
  display: block;
  border-radius: 0;
}
