:root {
  --red: #d91f30;
  --red-dark: #9f121e;
  --red-bright: #ef263c;
  --black: #070707;
  --surface: #101010;
  --surface-soft: #171717;
  --white: #f7f4ef;
  --muted: #c4c0bc;
  --line: #333;
  --shell: 1120px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body, button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -70px; padding: 12px 18px; border-radius: 8px; background: var(--white); color: #000; transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red-bright);
  border-radius: 999px;
  padding: 11px 28px;
  background: linear-gradient(180deg, #e8283d 0%, #c81426 100%);
  box-shadow: 0 9px 24px rgba(217, 31, 48, .24);
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217, 31, 48, .35); filter: brightness(1.08); }
.button:active { transform: translateY(0); }
.button:focus-visible, .carousel-arrow:focus-visible, a:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.button-small { min-height: 36px; border-radius: 3px; padding: 9px 17px; font-size: .73rem; }
.button-compact { min-height: 38px; padding: 9px 23px; font-size: .75rem; }
.button-light { background: #0b0b0b; border-color: #0b0b0b; box-shadow: none; }

.home-header {
  position: absolute;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(5, 5, 5, .94);
  transition: background .2s ease, box-shadow .2s ease;
}
.home-header.is-scrolled { position: fixed; background: rgba(5, 5, 5, .98); box-shadow: 0 8px 32px rgba(0, 0, 0, .45); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.home-brand img { width: 94px; height: auto; }

.hero {
  position: relative;
  min-height: 590px;
  padding-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
  background: #0b0b0b url("/assets/img/home/hero-interior-1920.webp") center 57% / cover no-repeat;
}
.hero-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(4,4,4,.97) 0%, rgba(4,4,4,.79) 42%, rgba(4,4,4,.16) 79%), linear-gradient(0deg, rgba(4,4,4,.82) 0%, transparent 45%); }
.hero-inner { position: relative; min-height: calc(590px - var(--header-height)); display: flex; align-items: center; }
.hero-copy { position: relative; z-index: 2; width: min(54%, 570px); padding-block: 62px 80px; }
.eyebrow { margin-bottom: 10px; color: var(--red-bright); font-size: .73rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { max-width: 530px; margin-bottom: 22px; font-family: "Protest Strike", Impact, sans-serif; font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 400; letter-spacing: .015em; line-height: .98; text-transform: uppercase; text-wrap: balance; }
.hero h1 em { display: block; color: var(--red); font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 390px; margin-bottom: 27px; color: #e4e0dc; font-size: 1.05rem; line-height: 1.55; }
.hero-nowrap { white-space: nowrap; }
.hero-person { position: absolute; z-index: 1; right: -2%; bottom: -1px; width: min(56vw, 600px); max-height: 600px; object-fit: contain; object-position: bottom; filter: drop-shadow(-22px 12px 32px rgba(0,0,0,.44)); }

.benefits { position: relative; z-index: 4; overflow: hidden; border-block: 2px solid var(--red); background: #090909; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefits article { display: flex; min-height: 112px; align-items: center; gap: 16px; padding: 17px 22px; border-right: 1px solid #3a3a3a; }
.benefits article:nth-child(4), .benefits article:last-child { border-right: 0; }
.benefits .benefit-clone { display: none; }
.benefit-icon { display: block; width: 58px; height: 58px; flex: 0 0 58px; }
.benefits strong, .benefits small { display: block; }
.benefits strong { font-family: "Protest Strike", Impact, sans-serif; font-size: 1.04rem; font-weight: 400; letter-spacing: .035em; line-height: 1.08; text-transform: uppercase; }
.benefits small { margin-top: 5px; color: #c3bfbb; font-size: .73rem; }

.section-dark { background: #090909; }
.services { padding: 70px 0 62px; }
.services-grid { display: grid; max-width: 1050px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 86px; }
.service-column { display: grid; align-content: start; gap: 32px; }
.service-group h2 { width: 100%; margin-bottom: 17px; border-radius: 999px; padding: 8px 22px; background: var(--red); font-size: 1.1rem; text-align: center; }
.service-group ul { margin: 0; padding: 0; list-style: none; }
.service-group li { display: flex; min-height: 50px; align-items: center; gap: 14px; border-bottom: 1px solid #5b5b5b; padding: 8px 11px 8px 4px; font-size: 1.05rem; }
.service-group li > img { width: 36px; height: 36px; flex: 0 0 36px; object-fit: contain; }
.service-group li > span { margin-right: auto; }
.service-group li strong { white-space: nowrap; font-size: .98rem; }
.service-cta { margin-top: 42px; text-align: center; }
.service-cta a { display: inline-flex; padding-bottom: 5px; border-bottom: 1px solid var(--red); color: #eee; font-size: .8rem; font-weight: 700; }

.results { position: relative; padding: 54px 0 66px; overflow: hidden; background: linear-gradient(rgba(184, 25, 37, .8), rgba(184, 25, 37, .8)), url("/assets/img/home/prancheta.webp") center / cover no-repeat; }
.results h2 { margin-bottom: 30px; font-family: "Protest Strike", Impact, sans-serif; font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 400; line-height: 1; }
.eyebrow.light { margin-bottom: 7px; color: #f9dadd; }
.carousel { position: relative; padding-inline: 43px; }
.carousel-track { display: flex; gap: 18px; overflow: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; transition: opacity .18s ease; }
[data-carousel].is-wrapping .carousel-track { opacity: 0; }
.carousel figure { min-width: calc((100% - 36px) / 3); aspect-ratio: .78; margin: 0; overflow: hidden; border: 5px solid #090909; border-radius: 14px; background: #222; scroll-snap-align: start; }
.carousel img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.carousel-arrow { position: absolute; z-index: 4; top: 50%; display: grid; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 50%; background: #fff; color: #111; font-size: 2rem; line-height: 1; transform: translateY(-50%); transition: transform .18s ease, background .18s ease; }
.carousel-arrow:hover { background: #111; color: #fff; transform: translateY(-50%) scale(1.08); }
.carousel-prev { left: -3px; }
.carousel-next { right: -3px; }

.professionals { max-width: var(--shell); margin-inline: auto; background: #080808; }
.professionals-title { margin: 0; padding: 54px 64px 34px; font-family: "Protest Strike", Impact, sans-serif; font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.05; }
.professional-card { position: relative; display: grid; min-height: 318px; grid-template-columns: 43% 57%; overflow: hidden; border-bottom: 1px solid #363636; background: #090909; }
.professional-photo { position: relative; min-height: 318px; overflow: hidden; background: #090909; }
.professional-photo::after { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; }
.professional-featured .professional-photo::after { background: linear-gradient(90deg, transparent 42%, rgba(9,9,9,.26) 60%, rgba(9,9,9,.78) 80%, #090909 96%); }
.professional-reverse .professional-photo::after { display: none; }
.professional-photo img { position: absolute; z-index: 1; inset: auto 0 0; width: 100%; height: 112%; object-fit: contain; object-position: bottom center; }
.professional-featured .professional-photo img { height: 100%; object-fit: cover; object-position: center 35%; -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 44%, rgba(0,0,0,.82) 58%, rgba(0,0,0,.42) 73%, rgba(0,0,0,.1) 86%, transparent 96%); mask-image: linear-gradient(90deg, #000 0%, #000 44%, rgba(0,0,0,.82) 58%, rgba(0,0,0,.42) 73%, rgba(0,0,0,.1) 86%, transparent 96%); }
.professional-reverse .professional-photo img { -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.16) 17%, rgba(0,0,0,.68) 40%, #000 62%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.16) 17%, rgba(0,0,0,.68) 40%, #000 62%); }
.professional-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 45px 64px; }
.professional-copy h3 { width: 100%; margin-bottom: 18px; color: var(--white); font-family: "Protest Strike", Impact, sans-serif; font-size: 2.4rem; font-weight: 400; line-height: 1.08; }
.professional-featured .professional-copy h3 { padding: 8px 20px; background: linear-gradient(90deg, var(--red), rgba(120,8,18,.1)); font-family: "Protest Strike", Impact, sans-serif; font-weight: 400; line-height: 1; }
.professional-copy p:not(.professional-role) { max-width: 430px; margin-bottom: 24px; color: var(--muted); font-size: 1.08rem; line-height: 1.55; }
.professional-role { margin-bottom: 8px; color: var(--red); font-size: .74rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.professional-reverse { min-height: 260px; grid-template-columns: 55% 45%; }
.professional-reverse .professional-photo { min-height: 260px; grid-column: 2; }
.professional-reverse .professional-copy { grid-column: 1; grid-row: 1; }
.professional-reverse .professional-photo img { left: auto; width: 92%; height: 116%; object-fit: cover; object-position: center 30%; }

.environment { padding: 58px 0; background: #070707; }
.environment-card { display: grid; min-height: 390px; grid-template-columns: 52% 48%; overflow: hidden; background: #121212; box-shadow: 0 22px 50px rgba(0,0,0,.35); }
.environment-image { position: relative; min-height: 390px; overflow: hidden; background: #121212; }
.environment-track { position: absolute; inset: 0; height: 100%; gap: 0; }
.environment-track img { width: 100%; min-width: 100%; height: 100%; object-fit: cover; object-position: center 54%; scroll-snap-align: start; }
.environment-image .carousel-prev { left: 14px; }
.environment-image .carousel-next { right: 14px; }
.environment-copy { display: flex; flex-direction: column; justify-content: center; padding: 50px 54px; background: linear-gradient(135deg, rgba(25,25,25,.97), rgba(7,7,7,.92)); }
.environment-copy h2 { margin-bottom: 19px; font-family: "Protest Strike", Impact, sans-serif; font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; line-height: 1.02; text-transform: uppercase; }
.environment-copy p:last-child { margin-bottom: 0; color: var(--muted); line-height: 1.6; }

.reviews { padding: 78px 0 90px; text-align: center; background: #080808; }
.reviews h2 { margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.google-score { margin-bottom: 7px; color: #ddd; }
.google-score span { margin-right: 9px; color: #fff; letter-spacing: .09em; }
.google-maps-attribution { color: #fff; font-family: Roboto, Inter, Arial, sans-serif; font-weight: 600; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.review-carousel { margin-top: 34px; padding-inline: 43px; }
.review-carousel .review-grid { display: flex; grid-template-columns: none; overflow: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; }
.review-carousel .review-card { min-width: calc((100% - 60px) / 3); scroll-snap-align: start; }
.review-card { display: flex; min-height: 245px; flex-direction: column; align-items: center; justify-content: center; border: 2px solid var(--red); border-radius: 9px; padding: 30px 24px; background: #0c0c0c; }
.review-card > span { color: var(--red-bright); letter-spacing: .08em; }
.review-card p { min-height: 68px; margin: 20px 0; color: #d2cecb; font-size: .88rem; line-height: 1.55; }
.review-card a { border-bottom: 1px solid var(--red); font-size: .78rem; font-weight: 700; }
.review-author { display: flex; min-height: 38px; align-items: center; justify-content: center; gap: 10px; }
.review-author img { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 50%; object-fit: cover; }
.review-author div { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left; }
.review-author a { border-bottom: 0; color: var(--white); }
.review-author small { color: #999; font-size: .66rem; }
.review-source { margin-top: 16px; }
.review-attributions { margin-top: 16px; color: #8f8f8f; font-size: .68rem; }
.review-attributions a { color: #b8b8b8; text-decoration: underline; }
.review-loading { position: relative; overflow: hidden; border-color: #242424; }
.review-loading::after { content: ""; width: 70%; height: 55%; border-radius: 8px; background: linear-gradient(90deg, #141414 25%, #222 50%, #141414 75%); background-size: 200% 100%; animation: review-loading 1.25s linear infinite; }
.review-unavailable { min-width: 100% !important; }
.review-unavailable p { min-height: 0; }
@keyframes review-loading { to { background-position: -200% 0; } }

.whatsapp-float { position: fixed; z-index: 90; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom)); display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: #25d366; box-shadow: 0 8px 24px rgba(0,0,0,.38); color: #fff; transition: transform .18s ease, filter .18s ease, box-shadow .18s ease; }
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); filter: brightness(1.06); box-shadow: 0 10px 28px rgba(0,0,0,.46); }
.whatsapp-float svg { width: 25px; height: 25px; }

.location { padding-bottom: 62px; background: #080808; }
.location-banner { background: linear-gradient(rgba(184, 25, 37, .8), rgba(184, 25, 37, .8)), url("/assets/img/home/prancheta.webp") center / cover no-repeat; }
.location-grid { display: grid; min-height: 320px; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 60px; padding-block: 44px; }
.location-copy h2 { max-width: 590px; margin-bottom: 9px; font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1.06; }
.location-copy h2 span { white-space: nowrap; }
.location-copy p { margin-bottom: 25px; font-size: 1.12rem; }
.map-meta { display: flex; flex-direction: column; align-items: flex-start; padding-left: 40px; border-left: 1px solid rgba(255,255,255,.35); }
.map-meta strong { margin-bottom: 7px; font-size: 1.45rem; }
.map-meta span { color: #f6dfe1; font-size: .9rem; line-height: 1.45; }
.map-meta a { margin-top: 17px; border-bottom: 1px solid #fff; font-size: .82rem; font-weight: 700; }
.map-frame { height: 320px; margin-top: 28px; overflow: hidden; border: 1px solid #343434; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05); }

.home-footer { border-top: 2px solid var(--red); padding: 35px 0 42px; background: #070707; }
.footer-grid { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); gap: 45px; align-items: start; }
.footer-brand img { width: 110px; }
.footer-grid nav, .footer-social { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-grid strong { margin-bottom: 4px; color: #aaa; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { color: #c8c4c0; font-size: .75rem; }
.footer-grid a:hover { color: var(--red-bright); }

.reveal-ready [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits article:nth-child(2) { border-right: 0; }
  .benefits article:nth-child(-n+2) { border-bottom: 1px solid #333; }
  .professional-copy { padding: 38px; }
  .environment-copy { padding: 40px; }
}

@media (max-width: 680px) {
  :root { --header-height: 64px; }
  .shell { width: min(calc(100% - 34px), var(--shell)); }
  .button { min-height: 39px; padding: 9px 22px; font-size: .72rem; }
  .button-small { min-height: 32px; border-radius: 2px; padding: 8px 13px; font-size: .63rem; }
  .home-brand img { width: 72px; }

  .hero { min-height: 520px; background-image: url("/assets/img/home/hero-interior-900.webp"); background-position: 45% 55%; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,4,4,.93) 0%, rgba(4,4,4,.72) 55%, rgba(4,4,4,.12) 100%), linear-gradient(0deg, rgba(4,4,4,.82), transparent 50%); }
  .hero-inner { min-height: calc(520px - var(--header-height)); align-items: flex-start; }
  .hero-copy { width: 77%; padding-top: 44px; }
  .hero h1 { margin-bottom: 14px; font-size: clamp(2.15rem, 10.5vw, 3.05rem); line-height: 1; }
  .hero-copy > p:not(.eyebrow) { max-width: 260px; margin-bottom: 18px; font-size: .79rem; line-height: 1.45; }
  .hero-person { right: -28%; width: 85vw; max-height: 420px; }
  .eyebrow { font-size: .62rem; }

  .benefits-grid { display: flex; width: max-content; max-width: none; margin: 0; animation: benefits-marquee 18s linear infinite; touch-action: pan-y; will-change: transform; }
  .benefits article, .benefits article:nth-child(2), .benefits article:nth-child(-n+2) { width: 250px; min-width: 250px; min-height: 76px; gap: 10px; border-right: 1px solid #3a3a3a; border-bottom: 0; padding: 9px 15px; }
  .benefits article:nth-child(4) { border-right: 1px solid #3a3a3a; }
  .benefits article:last-child { border-right: 0; }
  .benefits .benefit-clone { display: flex; }
  .benefit-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .benefits strong { font-size: .76rem; }
  .benefits small { font-size: .56rem; }

  .services { padding: 45px 0 42px; }
  .services-grid { max-width: 330px; grid-template-columns: 1fr; gap: 30px; }
  .service-column { gap: 28px; }
  .service-group h2 { padding-block: 5px; font-size: .78rem; }
  .service-group li { min-height: 36px; gap: 8px; padding: 5px 3px; font-size: .7rem; }
  .service-group li > img { width: 26px; height: 26px; flex-basis: 26px; }
  .service-group li strong { font-size: .68rem; }
  .service-cta { margin-top: 32px; }

  .results { padding: 38px 0 48px; }
  .results h2 { margin-bottom: 22px; font-size: 2rem; }
  .carousel { width: calc(100% + 34px); margin-left: -17px; padding-inline: 28px; }
  .carousel-track { display: flex; gap: 11px; overflow-x: auto; scrollbar-width: none; }
  .carousel-track::-webkit-scrollbar { display: none; }
  .carousel figure { min-width: 66%; aspect-ratio: .72; border-width: 3px; border-radius: 10px; }
  .carousel-arrow { width: 31px; height: 31px; font-size: 1.5rem; }
  .carousel-prev { left: 6px; }
  .carousel-next { right: 6px; }

  .professionals-title { padding: 36px 17px 24px; font-size: 2rem; }
  .professional-card, .professional-reverse { min-height: 198px; grid-template-columns: 42% 58%; }
  .professional-photo { min-height: 198px; }
  .professional-featured .professional-photo::after { background: linear-gradient(90deg, transparent 38%, rgba(9,9,9,.25) 58%, rgba(9,9,9,.88) 88%, #090909 100%); }
  .professional-reverse { grid-template-columns: 58% 42%; }
  .professional-reverse .professional-photo::after { display: none; }
  .professional-reverse .professional-photo img { height: 122%; object-fit: cover; object-position: center 28%; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 20%, #000 52%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 20%, #000 52%); }
  .professional-photo img { height: 108%; }
  .professional-copy { grid-column: 2; grid-row: 1; padding: 20px 16px; }
  .professional-reverse .professional-photo { grid-column: 2; }
  .professional-reverse .professional-copy { grid-column: 1; grid-row: 1; }
  .professional-copy h3 { margin-bottom: 11px; padding: 0; font-size: 1.48rem; }
  .professional-featured .professional-copy h3 { padding: 6px 10px; font-size: 1.62rem; }
  .professional-copy p:not(.professional-role) { margin-bottom: 13px; font-size: .76rem; line-height: 1.45; }
  .professional-role { margin-bottom: 5px; font-size: .55rem; }
  .button-compact { min-height: 31px; padding: 7px 15px; font-size: .64rem; }

  .environment { padding: 0; }
  .environment-card { width: 100%; min-height: 470px; grid-template-columns: 1fr; grid-template-rows: 470px; }
  .environment-image { min-height: 470px; grid-area: 1 / 1; background-position: 47% 48%; }
  .environment-copy { z-index: 2; grid-area: 1 / 1; align-self: end; padding: 90px 26px 27px; background: linear-gradient(0deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.79) 52%, transparent 100%); }
  .environment-copy { pointer-events: none; }
  .environment-track { overflow-x: auto; overscroll-behavior-inline: contain; touch-action: pan-x pan-y; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .environment-track::-webkit-scrollbar { display: none; }
  .environment-copy h2 { max-width: 330px; margin-bottom: 10px; font-size: 2rem; }
  .environment-copy p:last-child { max-width: 330px; font-size: .76rem; line-height: 1.5; }

  .reviews { padding: 52px 0 60px; }
  .reviews h2 { max-width: 300px; margin-inline: auto; font-size: 1.55rem; }
  .google-score { margin-bottom: 6px; font-size: .85rem; }
  .review-grid { display: flex; width: calc(100% + 17px); gap: 16px; overflow-x: auto; padding-right: 17px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .review-carousel { padding-inline: 38px; }
  .review-carousel .review-grid { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; touch-action: pan-x pan-y; padding-right: 0; -webkit-overflow-scrolling: touch; }
  .review-carousel .review-card { min-width: 76%; }
  .review-grid::-webkit-scrollbar { display: none; }
  .review-card { min-width: 76%; min-height: 235px; padding: 25px 20px; scroll-snap-align: center; }

  .whatsapp-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); width: 42px; height: 42px; }
  .whatsapp-float svg { width: 23px; height: 23px; }

  .location { padding-bottom: 35px; }
  .location-grid { min-height: 310px; grid-template-columns: 1fr; gap: 30px; padding-block: 42px; text-align: center; }
  .location-copy h2 { max-width: 310px; margin-inline: auto; font-size: 2.15rem; }
  .location-copy h2 span { white-space: normal; }
  .location-copy p { margin-bottom: 18px; font-size: .88rem; }
  .map-meta { align-items: center; padding-left: 0; border-left: 0; }
  .map-meta strong { font-size: 1.08rem; }
  .map-meta span { font-size: .73rem; }
  .map-meta a { margin-top: 9px; }
  .map-frame { width: min(calc(100% - 52px), 430px); height: 250px; margin-top: 25px; }

  .home-footer { padding: 24px 0 30px; }
  .footer-grid { grid-template-columns: .8fr repeat(3, 1fr); gap: 10px; }
  .footer-brand img { width: 67px; }
  .footer-grid strong { font-size: .48rem; }
  .footer-grid a, .footer-grid span { font-size: .53rem; }
}

@media (max-width: 380px) {
  .hero-copy { width: 80%; }
  .hero h1 { font-size: 2rem; }
  .hero-person { right: -34%; width: 88vw; }
  .benefits article { width: 230px; min-width: 230px; padding-inline: 12px; }
  .benefit-icon { width: 38px; height: 38px; flex-basis: 38px; }
}

@keyframes benefits-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
  .benefits-grid { animation: none; overflow-x: auto; touch-action: pan-x pan-y; will-change: auto; }
}
