:root {
  color-scheme: light;
  --page: #F7F7F5;
  --surface: #FFFFFF;
  --surface-soft: #FFF1F1;
  --ink: #242222;
  --text: #484445;
  --muted: #6F696A;
  --brand: #C8102E;
  --brand-dark: #A80D27;
  --brand-deep: #242222;
  --brand-pale: #FCE5E8;
  --line: #E5DDDE;
  --star: #C8102E;
  --white: #FFFFFF;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-small: 12px;
  --radius-card: 22px;
  --radius-large: 32px;
  --radius-pill: 999px;
  --shadow-card: 0 16px 42px rgba(36, 34, 34, .08);
  --shadow-float: 0 12px 28px rgba(36, 34, 34, .14);
  --content-max: 1510px;
  --page-gutter: clamp(18px, 5vw, 84px);
  --section-space: clamp(12px, min(2vw, 2.4svh), 20px);
  --section-inset: var(--section-space);
  --section-tail: clamp(18px, 3svh, 32px);
  --header-height: 78px;
  --header-offset: var(--header-height);
  --visual-viewport-height: 100svh;
  --section-panel-height: calc(100svh - var(--header-height) + 2px);
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; background: var(--page); }
body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-offset);
  background: var(--page);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--star); outline-offset: 3px; border-radius: 8px; }
img, svg { display: block; max-width: 100%; }
address { font-style: normal; }
.shell { width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max)); margin-inline: auto; }
.icon { display: inline-grid; flex: 0 0 auto; place-items: center; width: 19px; height: 19px; }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 14px;
  top: -80px;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--brand-deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(207, 228, 226, .95);
  box-shadow: 0 6px 24px rgba(6, 77, 86, .07);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header-inner { position: relative; display: flex; min-height: var(--header-height); align-items: center; gap: clamp(14px, 3vw, 42px); }
.brand { display: inline-flex; flex: 0 0 auto; min-width: max-content; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand__text { display: grid; gap: 3px; }
.brand__name { font: 800 17px/1 var(--font-display); letter-spacing: -.04em; }
.brand__descriptor { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.brand-logo { display: inline-block; flex: 0 0 auto; width: 42px; height: 42px; object-fit: contain; vertical-align: middle; }
.brand:has(.brand-logo) { gap: 10px; }
.site-navigation { flex: 1 1 auto; min-width: 0; }
.nav-list { display: flex; align-items: center; justify-content: center; gap: clamp(8px, 2.2vw, 28px); margin: 0; padding: 0; list-style: none; }
.nav-link { position: relative; display: inline-flex; min-height: 44px; align-items: center; color: var(--muted); font-size: 12px; font-weight: 750; text-decoration: none; white-space: nowrap; transition: color .18s ease; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: 6px; left: 0; height: 2px; border-radius: 2px; background: var(--brand); opacity: 0; transform: scaleX(.45); transition: opacity .18s ease, transform .18s ease; }
.nav-link:hover, .nav-link[aria-current="location"] { color: var(--brand-dark); }
.nav-link[aria-current="location"]::after { opacity: 1; transform: scaleX(1); }
.header-cta { display: inline-flex; flex: 0 0 auto; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; gap: 8px; padding: 0 17px; border-radius: var(--radius-pill); background: var(--brand); color: var(--white); font-size: 12px; font-weight: 800; text-decoration: none; box-shadow: 0 9px 20px rgba(8, 114, 118, .20); transition: background .18s ease, transform .18s ease, box-shadow .18s ease; }
.header-cta:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(8, 114, 118, .28); }
.header-cta .icon { width: 16px; height: 16px; }
.nav-toggle { display: none; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; padding: 0 10px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--surface); color: var(--ink); font-size: 0; cursor: pointer; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after { display: block; width: 19px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.hero-section { padding: 0; background: var(--brand-deep); scroll-margin-top: var(--header-offset); }
.hero-backdrop { position: relative; isolation: isolate; overflow: hidden; background: var(--brand-deep); }
.hero-backdrop::before, .hero-backdrop::after { content: ""; position: absolute; z-index: -1; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; pointer-events: none; }
.hero-backdrop::before { width: 600px; height: 600px; right: -110px; top: -350px; }
.hero-backdrop::after { width: 750px; height: 750px; right: -280px; bottom: -570px; }
.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(370px, .98fr); min-height: calc(100svh - var(--header-height)); align-items: center; gap: clamp(30px, 5vw, 86px); padding-block: clamp(28px, 5.5vh, 66px); }
.hero__copy { position: relative; z-index: 2; max-width: 650px; }
.eyebrow { margin: 0 0 17px; color: var(--brand); font-size: 10px; line-height: 1.4; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow--hero { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid rgba(200, 16, 46, .18); border-radius: var(--radius-pill); background: #FFF1F1; color: #C8102E; letter-spacing: .11em; }
.eyebrow--hero::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #C8102E; box-shadow: 0 0 0 4px rgba(200, 16, 46, .10); }
.hero__title { max-width: 680px; margin: 0; color: var(--white); font: 820 clamp(42px, 5.8vw, 77px)/.98 var(--font-display); letter-spacing: -.07em; }
.hero__body { max-width: 450px; margin: 22px 0 0; color: #C3E3E1; font-size: clamp(15px, 1.25vw, 17px); line-height: 1.7; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 19px; color: #A6D5D2; font-size: 12px; font-weight: 700; }
.hero__meta .icon { width: 16px; height: 16px; color: #8DE0D5; }
.hero__meta-separator { color: rgba(255, 255, 255, .36); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid transparent; border-radius: var(--radius-pill); font-size: 12px; font-weight: 800; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--light { background: var(--white); color: var(--brand-deep); box-shadow: 0 10px 22px rgba(0, 0, 0, .14); }
.button--light:hover { background: #E9FFFC; box-shadow: 0 13px 26px rgba(0, 0, 0, .20); }
.button--outline { border-color: #C8102E; background: #FFFFFF; color: #C8102E; }
.button--outline:hover { border-color: #A80D27; background: #FFF1F1; }
.button--primary { background: var(--brand); color: var(--white); box-shadow: 0 10px 22px rgba(8, 114, 118, .20); }
.button--primary:hover { background: var(--brand-dark); box-shadow: 0 13px 26px rgba(8, 114, 118, .28); }
.hero__visual-wrap { display: grid; min-width: 0; place-items: center; }
.hero__visual { width: min(100%, 560px); margin: 0; }
.hero__frame { position: relative; overflow: hidden; border: 10px solid rgba(255, 255, 255, .88); border-radius: 28px; background: #E8E6E0; box-shadow: 0 24px 44px rgba(0, 24, 31, .24); transform: rotate(1.2deg); }
.hero__frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(6, 77, 86, .20); border-radius: 18px; pointer-events: none; }
.hero__illustration { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 45%; }

.content-section { padding: var(--section-inset) 0 var(--section-tail); scroll-margin-top: var(--header-offset); }
.page-main > [data-section]:not(#inicio) { min-height: var(--section-panel-height); }
.page-main { padding-bottom: var(--header-offset); }
.section-intro { max-width: 700px; }
.section-title { max-width: 720px; margin: 0; color: var(--ink); font: 800 clamp(31px, 4vw, 51px)/1.06 var(--font-display); letter-spacing: -.06em; }
.section-copy { max-width: 610px; margin: clamp(8px, 1.8svh, 15px) 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.services-section { background: var(--page); padding: var(--section-inset) 0 var(--section-tail); }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(9px, 1.4svh, 15px); margin-top: clamp(16px, 2.8svh, 30px); }
.service-card { position: relative; min-height: clamp(128px, 18svh, 170px); padding: clamp(18px, 2.5svh, 24px) clamp(18px, 1.7vw, 21px) clamp(18px, 2.2svh, 21px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: 0 8px 25px rgba(6, 77, 86, .045); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card::after { content: ""; position: absolute; right: -24px; bottom: -32px; width: 100px; height: 100px; border: 1px solid var(--brand-pale); border-radius: 50%; }
.service-card:hover { transform: translateY(-4px); border-color: #A9D9D4; box-shadow: var(--shadow-card); }
.service-card__icon { display: grid; width: 47px; height: 47px; place-items: center; border-radius: 15px; background: var(--brand-pale); color: var(--brand-dark); }
.service-card__icon .icon { width: 23px; height: 23px; }
.service-card__title { max-width: 180px; margin: clamp(17px, 2.3svh, 25px) 0 0; color: var(--ink); font: 760 17px/1.15 var(--font-display); letter-spacing: -.035em; }

.reputation-section { padding: var(--section-inset) 0 var(--section-tail); background: #EAF7F5; scroll-margin-top: var(--header-offset); }
.reviews-summary { display: inline-flex; align-items: center; gap: 15px; margin-top: clamp(14px, 2.8svh, 27px); padding: 12px 17px; border: 1px solid #B7DAD4; border-radius: 17px; background: var(--surface); box-shadow: 0 8px 22px rgba(6, 77, 86, .06); }
.reviews-summary__score { color: var(--ink); font: 820 clamp(34px, 4.2vw, 54px)/.9 var(--font-display); letter-spacing: -.07em; }
.reviews-summary__text { display: grid; gap: 4px; }
.reviews-summary__label { color: var(--muted); font-size: 12px; font-weight: 750; }
.review-stars { display: inline-block; color: var(--star); font-size: 15px; letter-spacing: .12em; line-height: 1; white-space: nowrap; }
.reviews-track { display: flex; gap: 16px; width: 100%; margin-top: clamp(12px, 2.3svh, 23px); padding: 4px 2px 14px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { display: flex; flex: 0 0 min(360px, calc(100vw - (var(--page-gutter) * 2))); min-height: 176px; flex-direction: column; justify-content: space-between; gap: 26px; padding: 23px; border: 1px solid #B9D9D4; border-radius: var(--radius-card); background: var(--surface); box-shadow: 0 12px 28px rgba(6, 77, 86, .07); scroll-snap-align: start; }
.review-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.review-card__author { color: var(--ink); font-size: 13px; line-height: 1.35; }
.review-card__stars { flex: 0 0 auto; font-size: 12px; }
.review-card__quote { margin: 0; color: var(--text); font-size: 16px; font-weight: 650; line-height: 1.5; }
.review-card__source { margin: 0; color: var(--muted); font-size: 11px; font-weight: 780; letter-spacing: .02em; }
.reputation-cta { margin-top: 9px; }
.reputation-cta .icon { width: 17px; height: 17px; }

.location-section { padding: var(--section-inset) 0 var(--section-tail); background: var(--page); }
.location-panel { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr); margin-top: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-large); background: var(--surface); box-shadow: var(--shadow-card); }
.location-map { display: block; position: relative; min-height: 370px; overflow: hidden; background: #E9E7E5; color: inherit; cursor: pointer; text-decoration: none; }
.location-map:focus-visible { outline: 3px solid #F0B429; outline-offset: -3px; }
.location-map svg { width: 100%; height: 100%; min-height: 370px; }
.location-map__coordinates { position: absolute; right: 18px; bottom: 16px; padding: 8px 11px; border: 1px solid rgba(74, 119, 112, .18); border-radius: 9px; background: rgba(255, 255, 255, .90); color: #355E59; font-size: 10px; font-weight: 750; }
.location-details { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(29px, 4.2vw, 53px); }
.location-details .eyebrow { margin-bottom: 13px; }
.location-details__address { max-width: 390px; color: var(--ink); font: 740 clamp(20px, 2.15vw, 27px)/1.35 var(--font-display); letter-spacing: -.045em; }
.location-details__hint { max-width: 370px; margin: 19px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.location-details__button { margin-top: 25px; }

.hours-section { padding: var(--section-inset) 0 var(--section-tail); background: var(--page); }
.hours-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(35px, 8vw, 120px); align-items: start; }
.hours-table { padding: 9px 25px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: 0 12px 33px rgba(6, 77, 86, .055); }
.hours-row { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row__days { color: var(--muted); font-size: 14px; font-weight: 650; }
.hours-row__time { color: var(--ink); font-size: 16px; font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours-row--heading { min-height: 45px; }
.hours-row--heading .hours-row__days, .hours-row--heading .hours-row__time { color: var(--brand-dark); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }

.contact-section { display: flex; flex-direction: column; justify-content: center; padding: 0; background: var(--page); scroll-margin-top: var(--header-offset); }
.contact-panel { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; overflow: hidden; padding: clamp(36px, 4vw, 46px); border-radius: var(--radius-large); background: var(--brand); color: var(--white); }
.contact-panel::after { content: ""; position: absolute; right: -100px; bottom: -190px; width: 420px; height: 420px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; pointer-events: none; }
.contact-copy { position: relative; z-index: 1; max-width: 700px; }
.contact-copy .section-intro--light .section-title { max-width: 640px; }
.contact-details { display: flex; flex-wrap: wrap; gap: 11px 22px; margin-top: 21px; }
.contact-detail { display: inline-flex; max-width: 100%; align-items: flex-start; gap: 8px; color: #D5F2EF; font-size: 12px; font-weight: 700; line-height: 1.5; text-decoration: none; }
.contact-detail:hover { color: var(--white); }
.contact-detail .icon { width: 17px; height: 17px; margin-top: 1px; color: #A8E6DE; }
.contact-detail--address { max-width: 390px; }
.contact-cta { position: relative; z-index: 1; flex: 0 0 auto; }
.section-intro--light .eyebrow { color: #CBEFEA; }
.section-intro--light .section-title { color: var(--white); }
.section-intro--light .section-copy { color: #D3F2EE; }

@media (min-width: 781px) {
  .hours-layout {
    min-height: max(260px, calc(var(--section-panel-height) - var(--section-inset) - var(--section-tail)));
    align-items: stretch;
  }
  .hours-table {
    display: flex;
    align-self: start;
    min-height: clamp(260px, min(64svh, calc(var(--section-panel-height) - var(--section-inset) - var(--section-tail)), 380px), 380px);
    flex-direction: column;
    justify-content: flex-start;
    padding-block: clamp(18px, 2.5svh, 26px);
  }
  .hours-row:not(.hours-row--heading) { min-height: 0; flex: 1 1 0; }
  .contact-panel { min-height: clamp(280px, 60svh, 360px); }
  .reputation-section .reviews-track {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    overflow: visible;
    padding: 0;
  }
  .reputation-section .review-card {
    display: grid;
    flex: none;
    width: 100%;
    min-height: 148px;
    grid-template-columns: minmax(210px, .45fr) minmax(0, 1.55fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(24px, 4vw, 56px);
    align-items: center;
    padding: 18px 22px;
  }
  .reputation-section .review-card__top { grid-column: 1; grid-row: 1; }
  .reputation-section .review-card__quote { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .reputation-section .review-card__source { grid-column: 1; grid-row: 2; align-self: end; }
  .reputation-cta { margin-top: clamp(8px, 1.8svh, 14px); }
}

.site-footer { padding: 32px 0 calc(31px + env(safe-area-inset-bottom)); background: #FFFFFF; color: #6F696A; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 13px 30px; align-items: center; }
.footer-brand { color: var(--white); font-size: 17px; font-weight: 800; letter-spacing: -.035em; text-decoration: none; }
.footer-info { display: flex; flex-wrap: wrap; gap: 7px 19px; color: #A9CDCA; font-size: 11px; line-height: 1.6; }
.footer-info > * { max-width: 100%; overflow-wrap: anywhere; }
.footer-link { color: var(--white); font-weight: 750; text-decoration-color: rgba(255, 255, 255, .42); text-underline-offset: 3px; }
.footer-credit { margin: 0; text-align: right; }
.footer-credit__link { color: var(--white); font-size: 12px; font-weight: 800; text-decoration-color: rgba(255, 255, 255, .42); text-underline-offset: 3px; }

.load-error { display: grid; min-height: calc(100svh - var(--header-offset)); align-content: center; justify-items: start; width: min(calc(100% - 40px), 620px); margin: auto; color: var(--ink); }
.load-error__mark { color: var(--brand); font-size: 42px; }
.load-error h1 { margin: 16px 0 0; font-size: 32px; letter-spacing: -.05em; }
.load-error p { max-width: 440px; color: var(--muted); line-height: 1.65; }
.noscript-message { width: min(calc(100% - 40px), 620px); margin: 120px auto; color: var(--ink); }
.noscript-message p { color: var(--muted); }

@media (max-width: 1000px) {
  :root { --section-space: clamp(12px, min(2vw, 2.4svh), 20px); }
  .header-inner { gap: 17px; }
  .nav-list { gap: clamp(7px, 1.6vw, 18px); }
  .nav-link { font-size: 11px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr); gap: 28px; }
  .hero__title { font-size: clamp(42px, 6vw, 68px); }
  .hero__frame { border-width: 8px; border-radius: 23px; }
  .services-grid { gap: 11px; }
  .service-card { padding-inline: 17px; }
  .service-card__title { font-size: 15px; }
  .location-panel { grid-template-columns: 1fr 1fr; }
  .location-details { padding-inline: 35px; }
}

@media (max-width: 780px) {
  :root { --header-height: 76px; }
  .header-inner { min-height: var(--header-height); }
  .brand-logo { width: 38px; height: 38px; }
  .brand__name { font-size: 15px; }
  .brand__descriptor { font-size: 9px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-cta { min-height: 44px; padding-inline: 13px; }
  .header-cta__label { display: none; }
  .site-navigation { position: absolute; z-index: 5; top: calc(100% - 1px); right: 0; left: 0; display: none; padding: 10px var(--page-gutter) 16px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .98); box-shadow: 0 15px 24px rgba(6, 77, 86, .12); }
  .site-navigation.is-open { display: block; }
  .nav-list { display: grid; gap: 2px; justify-content: stretch; }
  .nav-link { width: 100%; min-height: 46px; padding-inline: 12px; border-radius: 10px; font-size: 13px; }
  .nav-link:hover, .nav-link[aria-current="location"] { background: var(--surface-soft); }
  .nav-link::after { right: auto; bottom: 8px; left: 12px; width: 20px; }
  .hero { grid-template-columns: 1fr; min-height: calc(100svh - var(--header-height)); gap: 15px; align-content: center; padding-block: clamp(21px, 4vh, 42px); }
  .hero__copy { max-width: 650px; }
  .hero__visual-wrap { margin-top: 2px; }
  .hero__visual { width: min(100%, 440px); }
  .hero__frame { border-width: 7px; border-radius: 21px; transform: rotate(.7deg); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-panel { grid-template-columns: 1fr; }
  .location-map, .location-map svg { min-height: 300px; }
  .location-details { padding: 31px var(--page-gutter) 35px; }
  .hours-layout { grid-template-columns: 1fr; gap: 30px; }
  .contact-panel { display: block; }
  .contact-cta { margin-top: 27px; }
  .reputation-section .reviews-track { overflow: visible; }
  .reputation-section .review-card { flex-basis: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-credit { text-align: left; }
}

@media (max-width: 520px) {
  :root { --section-space: clamp(12px, min(2vw, 2.4svh), 20px); }
  .shell { width: min(calc(100% - 36px), var(--content-max)); }
  .brand { gap: 8px; }
  .brand-logo { width: 34px; height: 34px; }
  .brand__name { font-size: 14px; }
  .brand__descriptor { font-size: 8px; letter-spacing: .1em; }
  .header-cta { padding-inline: 11px; }
  .header-cta .icon { width: 17px; height: 17px; }
  .hero__title { font-size: clamp(39px, 12vw, 58px); }
  .hero__body { margin-top: 16px; font-size: 14px; line-height: 1.58; }
  .hero__meta { margin-top: 14px; font-size: 11px; }
  .hero__actions { gap: 8px; margin-top: 23px; }
  .button { min-height: 46px; padding-inline: 15px; font-size: 11px; }
  .hero__visual { width: min(100%, 365px); }
  .hero__frame { border-width: 6px; border-radius: 18px; }
  .section-title { font-size: clamp(30px, 9vw, 40px); }
  .section-copy { margin-top: 12px; font-size: 14px; }
  .services-section { padding-top: var(--section-inset); }
  .services-grid { gap: clamp(9px, 1.4svh, 12px); margin-top: clamp(14px, 2.8svh, 25px); }
  .service-card { min-height: clamp(128px, 18svh, 145px); padding: clamp(16px, 2.5svh, 18px) 16px; }
  .service-card__icon { width: 41px; height: 41px; border-radius: 13px; }
  .service-card__icon .icon { width: 20px; height: 20px; }
  .service-card__title { margin-top: 18px; font-size: 14px; }
  .reviews-summary { margin-top: 25px; }
  .reviews-summary__label { max-width: 170px; font-size: 11px; }
  .reviews-track { margin-top: 18px; }
  .reviews-track { overflow: visible; }
  .review-card { flex-basis: 100%; min-height: 166px; padding: 20px; }
  .review-card__quote { font-size: 15px; }
  .reputation-cta { margin-top: 7px; }
  .location-map, .location-map svg { min-height: 245px; }
  .location-details { padding: 25px 22px 29px; }
  .location-details__address { font-size: 21px; }
  .location-map__coordinates { right: 10px; bottom: 10px; font-size: 9px; }
  .hours-table { padding-inline: 18px; }
  .hours-row { min-height: 60px; }
  .hours-row__days { font-size: 13px; }
  .hours-row__time { font-size: 14px; }
  .contact-section { padding-bottom: 0; }
  .contact-panel { padding: 27px 23px 30px; border-radius: 25px; }
  .contact-details { display: grid; gap: 12px; }
  .contact-detail { font-size: 11px; }
  .footer-inner { grid-template-columns: 1fr; gap: 10px; }
  .footer-info { gap: 6px 14px; }
}

@media (max-width: 360px) and (max-height: 700px) {
  .section-title { font-size: 28px; }
  .section-copy { font-size: 12px; line-height: 1.35; }
  .services-grid { gap: 7px; margin-top: 12px; }
  .service-card { min-height: 76px; padding: 11px 10px; border-radius: 16px; }
  .service-card__icon { width: 32px; height: 32px; border-radius: 10px; }
  .service-card__icon .icon { width: 16px; height: 16px; }
  .service-card__title { margin-top: 10px; font-size: 12px; line-height: 1.08; }
  .reviews-summary { margin-top: 13px; padding: 9px 12px; }
  .reviews-track { margin-top: 10px; }
  .review-card { min-height: 142px; padding: 16px; gap: 13px; }
  .review-card__quote { font-size: 13px; line-height: 1.35; }
  .reputation-cta { margin-top: 6px; }
  .location-panel { margin-top: 14px; }
  .location-map, .location-map svg { min-height: 180px; }
  .location-details { padding: 18px 18px 20px; }
  .location-details__address { font-size: 18px; }
  .location-details__hint { margin-top: 10px; font-size: 12px; }
  .location-details__button { margin-top: 14px; }
  .hours-layout { gap: 15px; }
  .hours-table { padding-block: 2px; }
  .hours-row { min-height: 43px; }
  .hours-row--heading { min-height: 34px; }
  .hours-row__days { font-size: 11px; }
  .hours-row__time { font-size: 12px; }
  .contact-panel { padding: 22px 18px 24px; }
  .contact-details { margin-top: 13px; gap: 8px; }
  .contact-cta { margin-top: 17px; }
  .hero { gap: 5px; padding-block: 10px; }
  .eyebrow--hero { gap: 6px; padding: 6px 10px; font-size: 8px; letter-spacing: .06em; }
  .hero__title { font-size: 31px; line-height: .94; }
  .hero__body { margin-top: 8px; font-size: 11px; line-height: 1.35; }
  .hero__meta { margin-top: 7px; gap: 4px; font-size: 9px; }
  .hero__actions { flex-wrap: nowrap; gap: 5px; margin-top: 5px; }
  .hero__actions .button { min-width: 0; padding-inline: 7px; font-size: 9px; gap: 5px; }
  .hero__actions .icon { width: 14px; height: 14px; }
  .hero__visual { width: 180px; }
}

@media (orientation: landscape) and (max-height: 600px) {
  :root { --header-height: 70px; }
  .hero { grid-template-columns: minmax(0, 1.22fr) minmax(240px, .78fr); min-height: calc(100svh - var(--header-height)); gap: 16px; padding-block: 10px; }
  .hero__title { font-size: clamp(29px, 4.2vw, 40px); line-height: .94; }
  .hero__body { margin-top: 9px; font-size: 12px; line-height: 1.35; }
  .hero__meta { margin-top: 8px; font-size: 10px; }
  .hero__actions { gap: 7px; margin-top: 11px; }
  .hero__actions .button { min-height: 40px; padding-inline: 12px; font-size: 10px; }
  .hero__visual { width: min(100%, 285px); }
  .hero__frame { border-width: 5px; border-radius: 17px; }
}

@media (min-width: 781px) and (max-height: 700px) {
  .hero {
    grid-template-columns: minmax(0, .92fr) minmax(340px, 500px);
    gap: 22px 30px;
    padding-block: 18px;
  }
  .hero__visual { width: min(100%, 500px); }
  .hero__secondary-image, .hero__location-card { min-height: 92px; height: 92px; }
  .hero__location-card { padding: 12px; }
  .hero__location-copy { font-size: 10px; }
  .hero-service-strip__inner { min-height: 88px; }
  .hero-service-strip__item { padding-block: 10px; }
  .hours-table {
    display: block;
    min-height: 0;
    padding-block: 9px;
  }
  .hours-row:not(.hours-row--heading) { min-height: 66px; flex: none; }
}

@media (max-width: 520px) {
  .hero {
    gap: 10px;
    padding-block: 18px 14px;
  }
  .hero__title { font-size: clamp(34px, 9.5vw, 42px); line-height: .92; }
  .hero__body { margin-top: 10px; font-size: 12px; line-height: 1.4; }
  .hero__meta { margin-top: 9px; font-size: 10px; line-height: 1.35; }
  .hero__actions { flex-wrap: nowrap; gap: 6px; margin-top: 14px; }
  .hero__actions .button { min-width: 0; min-height: 42px; padding-inline: 10px; font-size: 10px; gap: 6px; }
  .hero__actions .icon { width: 15px; height: 15px; }
  .hero__illustration { height: 190px; aspect-ratio: auto; object-fit: cover; object-position: center; }
  .hero__secondary-image, .hero__location-card { min-height: 72px; height: 72px; }
  .hero__location-card { padding: 10px 9px; }
  .hero__location-copy { font-size: 8px; }
  .hero-service-strip__inner { min-height: 135px; }
  .hero-service-strip__item { padding-block: 8px; }
  .location-map, .location-map svg { min-height: 220px; }
  .location-details { padding: 20px 18px 22px; }
  .service-card { min-height: 122px; padding: 15px 15px 14px; }
  .service-card__icon { width: 38px; height: 38px; }
  .service-card__icon .icon { width: 19px; height: 19px; }
  .service-card__title { margin-top: 12px; font-size: 13px; }
}

@media (max-width: 360px) and (max-height: 700px) {
  .hero { gap: 8px; padding-block: 14px 10px; }
  .hero__title { font-size: 30px; line-height: .9; }
  .hero__body { margin-top: 7px; font-size: 10px; line-height: 1.3; }
  .hero__meta { margin-top: 6px; font-size: 9px; }
  .hero__actions { margin-top: 9px; gap: 4px; }
  .hero__actions .button { min-height: 38px; padding-inline: 7px; font-size: 9px; gap: 4px; }
  .hero__illustration { height: 142px; }
  .hero__secondary-image, .hero__location-card { min-height: 64px; height: 64px; }
  .hero__location-card { padding: 7px; }
  .hero__location-copy { font-size: 7px; }
  .hero-service-strip__inner { min-height: 82px; }
  .hero-service-strip__item { padding: 6px 4px; }
  .hero-service-strip__label { font-size: 8px; }
}

@media (min-width: 361px) and (max-width: 520px) and (orientation: portrait) {
  .hero-service-strip__inner { min-height: 135px; }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 600px) and (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas: "copy visual" "lower lower";
    min-height: auto;
    gap: 10px 18px;
    padding-block: 16px 12px;
  }
  .hero__title { font-size: clamp(30px, 5vw, 38px); line-height: .92; }
  .hero__body { margin-top: 9px; font-size: 11px; line-height: 1.35; }
  .hero__meta { margin-top: 7px; font-size: 9px; }
  .hero__actions { flex-wrap: nowrap; gap: 5px; margin-top: 10px; }
  .hero__actions .button { min-height: 38px; padding-inline: 7px; font-size: 9px; gap: 4px; }
  .hero__visual-wrap { align-self: start; }
  .hero__visual { width: 100%; }
  .hero__illustration { height: 210px; aspect-ratio: auto; object-fit: cover; }
  .hero__lower { grid-template-columns: 1fr 1fr; max-width: none; gap: 8px; }
  .hero__secondary-image, .hero__location-card { min-height: 66px; height: 66px; }
  .hero__location-card { padding: 7px; }
  .hero__location-copy { font-size: 7px; }
  .hero-service-strip__inner { min-height: 82px; }
}

/* Ajuste fino 1.0.19: el encabezado vuelve a ocupar toda la experiencia
   inicial y conserva la fotografía aprobada como extensión desenfocada. */
@media (min-width: 781px) {
  .hero__visual-wrap {
    inset: 0 0 0 28%;
    overflow: visible;
  }
  .hero__visual-wrap::before {
    position: absolute;
    z-index: 0;
    inset: -22px -22px -22px -39%;
    content: "";
    background: url("./drcotera-hero-perro-gato-alimentos.png") center 45% / cover no-repeat;
    filter: blur(18px);
    opacity: .68;
    transform: scale(1.035);
    pointer-events: none;
  }
  .hero__visual {
    position: relative;
    z-index: 1;
  }
  .hero__visual-wrap::after {
    z-index: 2;
    top: -22px;
    right: 0;
    bottom: -22px;
    left: -39%;
    background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.77) 18%, rgba(255,255,255,.52) 34%, rgba(255,255,255,.17) 52%, rgba(255,255,255,0) 72%);
  }
  .reputation-section .reviews-summary {
    display: grid;
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
  }
  .reputation-section .reputation-cta {
    justify-self: end;
    margin-top: 0;
  }
  .reputation-section .review-card,
  .reputation-section .reviews-track .review-card {
    min-height: 210px;
  }
}

@media (min-width: 1600px) {
  :root {
    --content-max: 1680px;
    --page-gutter: clamp(48px, 4vw, 110px);
  }
  .section-title { font-size: clamp(42px, 3.15vw, 62px); }
  .section-copy { font-size: 18px; }
  .services-grid { gap: 18px; margin-top: 30px; }
  .service-card { min-height: 180px; padding: 26px 25px 23px; }
  .service-card__icon { width: 56px; height: 56px; }
  .service-card__icon .icon { width: 27px; height: 27px; }
  .service-card__title { margin-top: 18px; font-size: 20px; }
  .reputation-section .reviews-summary { min-height: 96px; padding: 16px 24px; }
  .reviews-summary__score { font-size: 62px; }
  .reviews-summary__label { font-size: 14px; }
  .reputation-section .review-card { min-height: 236px; padding: 24px; }
  .review-card__author { font-size: 16px; }
  .review-card__stars { font-size: 14px; }
  .review-card__quote { font-size: 17px; line-height: 1.42; }
  .review-card__date, .review-card__source { font-size: 12px; }
  .reputation-section .reputation-cta { min-height: 52px; padding-inline: 24px; font-size: 14px; }
  .hours-visual { height: 380px; }
  .hours-row { min-height: 68px; }
  .hours-row__days, .hours-row__time { font-size: 17px; }
  .contact-section .contact-panel { min-height: 430px; padding: 58px; }
  .contact-copy .section-title { font-size: clamp(48px, 3.6vw, 66px); }
  .contact-detail { min-height: 68px; font-size: 15px; }
  .contact-detail .icon { width: 24px; height: 24px; }
  .contact-cta { min-height: 56px; padding-inline: 24px; font-size: 14px; }
}

@media (max-width: 780px) {
  .reputation-section .reviews-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }
  .reputation-section .reputation-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
    margin-top: 2px;
  }
}

/* Ajustes finales responsive: la primera pantalla conserva su altura útil y
   la tableta mantiene las tres opiniones en un solo renglón. */
@media (orientation: portrait) and (max-width: 780px) {
  .hero-section { min-height: calc(var(--visual-viewport-height) - var(--header-offset)); }
  .hero-backdrop { min-height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); }
  .hero { min-height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); }
}
@media (min-width: 600px) and (max-width: 780px) and (orientation: portrait) {
  .reputation-section .reviews-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-inline: 1px;
  }
  .reputation-section .review-card {
    width: auto;
    min-width: 0;
    min-height: 164px;
    padding: 13px;
  }
  .reputation-section .review-card__author { font-size: 13px; }
  .reputation-section .review-card__stars { font-size: 12px; }
  .reputation-section .review-card__quote { font-size: 12px; line-height: 1.32; }
  .reputation-section .review-card__date,
  .reputation-section .review-card__source { font-size: 9px; }
}
@media (max-width: 599px) {
  .reputation-section .reviews-track {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 1px;
  }
  .reputation-section .review-card {
    flex: 0 0 min(86vw, 310px);
    width: auto;
  }
}

/* Ajustes finales responsive: la primera pantalla conserva su altura útil y
   la tableta mantiene las tres opiniones en un solo renglón. */
@media (orientation: portrait) and (max-width: 780px) {
  .hero-section { min-height: calc(var(--visual-viewport-height) - var(--header-offset)); }
  .hero-backdrop { min-height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); }
  .hero { min-height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); }
}
@media (min-width: 600px) and (max-width: 780px) and (orientation: portrait) {
  .reputation-section .reviews-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-inline: 1px;
  }
  .reputation-section .review-card {
    width: auto;
    min-width: 0;
    min-height: 164px;
    padding: 13px;
  }
  .reputation-section .review-card__author { font-size: 13px; }
  .reputation-section .review-card__stars { font-size: 12px; }
  .reputation-section .review-card__quote { font-size: 12px; line-height: 1.32; }
  .reputation-section .review-card__date,
  .reputation-section .review-card__source { font-size: 9px; }
}
@media (max-width: 599px) {
  .reputation-section .reviews-track {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 1px;
  }
  .reputation-section .review-card {
    flex: 0 0 min(86vw, 310px);
    width: auto;
  }
}

@media (min-width: 600px) and (max-width: 780px) and (orientation: portrait) {
  .hero-section { min-height: calc(var(--visual-viewport-height) - var(--header-offset)); }
  .hero { min-height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); }
  .reputation-section .reviews-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-inline: 1px;
  }
  .reputation-section .review-card {
    width: auto;
    min-width: 0;
    min-height: 164px;
    padding: 13px;
  }
  .reputation-section .review-card__author { font-size: 13px; }
  .reputation-section .review-card__stars { font-size: 12px; }
  .reputation-section .review-card__quote { font-size: 12px; line-height: 1.32; }
  .reputation-section .review-card__date,
  .reputation-section .review-card__source { font-size: 9px; }
}

/* Corrección de composición 1.0.18: esta capa final define la referencia aprobada. */
:root {
  --header-height: 58px;
  --header-offset: 58px;
  --hero-strip-height: 82px;
  --section-panel-height: calc(100svh - var(--header-height) + 2px);
  --page-gutter: clamp(18px, 4vw, 84px);
}

.site-header,
.header-inner { min-height: var(--header-height); }
.site-header { border-bottom-color: #ECE7E7; }
.header-inner { gap: clamp(16px, 3vw, 42px); }
.brand { gap: 9px; }
.brand-logo {
  width: 45px;
  height: 42px;
  object-fit: cover;
  object-position: 23% 28%;
  border-radius: 4px;
}
.brand__name {
  color: #C8102E;
  font-size: clamp(9px, .72vw, 12px);
  font-weight: 900;
  letter-spacing: .08em;
}
.brand__descriptor {
  color: #C8102E;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .9;
}
.nav-list { gap: clamp(9px, 2vw, 27px); }
.nav-link { min-height: 40px; font-size: clamp(11px, .82vw, 13px); }
.nav-link::after { bottom: 3px; }
.header-cta { min-height: 36px; padding-inline: clamp(14px, 1.6vw, 23px); border-radius: 8px; font-size: clamp(11px, .88vw, 13px); }

.hero-section { background: #FFFFFF; }
.hero-backdrop { overflow: visible; background: #FFFFFF; }
.hero {
  display: block;
  height: max(430px, calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)));
  min-height: 430px;
  padding: 46px 0 0;
}
.hero__visual-wrap {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 28%;
  display: block;
  min-height: 0;
  place-items: initial;
}
.hero__visual-wrap::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.97) 20%, rgba(255,255,255,.72) 40%, rgba(255,255,255,.18) 64%, rgba(255,255,255,0) 83%);
}
.hero__visual,
.hero__frame,
.hero__illustration { width: 100%; height: 100%; }
.hero__visual { max-width: none; }
.hero__frame { border: 0; border-radius: 0; box-shadow: none; transform: none; }
.hero__frame::after { display: none; }
.hero__illustration { aspect-ratio: auto; object-fit: cover; object-position: center center; }
.hero__copy {
  position: relative;
  z-index: 2;
  width: min(50%, 520px);
  max-width: 520px;
}
.eyebrow--hero {
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #C8102E;
  letter-spacing: .17em;
}
.eyebrow--hero::before { width: 38px; height: 2px; border-radius: 0; background: #C8102E; box-shadow: none; }
.hero__title {
  max-width: 470px;
  color: #242222;
  font-size: clamp(44px, 4.45vw, 66px);
  line-height: .92;
  letter-spacing: -.065em;
}
.hero__title-accent { color: #C8102E; }
.hero__body { max-width: 430px; margin-top: 18px; color: #484445; font-size: clamp(13px, 1.02vw, 16px); line-height: 1.42; }
.hero__meta { display: none; }
.hero__actions { gap: 12px; margin-top: 19px; }
.hero__actions .button { min-height: 40px; padding-inline: 17px; border-radius: 8px; font-size: 12px; }
.hero__lower {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: -39px;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(150px, .76fr);
  align-items: end;
  width: min(500px, 47%);
  max-width: 500px;
  gap: 10px;
}
.hero__secondary-card { height: 140px; margin: 0; border: 1px solid #E5DDDE; border-radius: 16px; background: #FFFFFF; box-shadow: 0 8px 20px rgba(36,34,34,.10); }
.hero__secondary-image { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero__location-card { min-height: 100px; height: 100px; padding: 14px 12px; border: 1px solid #F1D5D8; border-radius: 14px; background: #FFF7F7; }
.hero__location-card > .icon { width: 19px; height: 19px; color: #C8102E; }
.hero__location-copy { font-size: 10px; line-height: 1.42; }
.hero-service-strip { position: relative; z-index: 1; min-height: var(--hero-strip-height); border-top: 1px solid #ECE7E7; background: #FFFFFF; }
.hero-service-strip__inner { min-height: var(--hero-strip-height); }
.hero-service-strip__item { gap: 8px; padding: 10px 8px; }
.hero-service-strip__icon { width: 38px; height: 38px; background: #FFF1F1; color: #C8102E; }
.hero-service-strip__icon .icon { width: 19px; height: 19px; }
.hero-service-strip__label { max-width: 112px; color: #3F3A3B; font-size: 10px; }

.page-main > [data-section]:not(#inicio) { min-height: var(--section-panel-height); scroll-margin-top: var(--header-offset); }
.content-section,
.services-section,
.reputation-section,
.location-section,
.hours-section,
.contact-section { min-height: var(--section-panel-height); padding: 0; }
.content-section > .shell,
.services-section > .shell,
.reputation-section > .shell,
.location-section > .shell,
.hours-section > .hours-layout {
  min-height: var(--section-panel-height);
  padding-block: clamp(30px, 5vh, 54px);
  justify-content: center;
}
.section-intro { max-width: 820px; }
.section-intro .eyebrow { margin-bottom: 9px; }
.section-title { max-width: 820px; color: #242222; font-size: clamp(34px, 3.25vw, 50px); line-height: .98; }
.section-copy { max-width: 700px; margin-top: 12px; color: #6F696A; font-size: clamp(14px, 1.02vw, 17px); line-height: 1.42; }

.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin-top: 22px; }
.service-card { min-height: 126px; padding: 18px 18px 16px; border-color: #E5DDDE; border-radius: 16px; background: #FFFFFF; box-shadow: 0 9px 23px rgba(36,34,34,.055); }
.service-card::after { border-color: #F5DDE0; }
.service-card__icon { width: 46px; height: 46px; border-radius: 14px; background: #FFF1F1; color: #C8102E; }
.service-card__icon .icon { width: 23px; height: 23px; }
.service-card__title { max-width: 210px; margin-top: 13px; color: #242222; font-size: clamp(15px, 1.15vw, 18px); line-height: 1.08; }

.reputation-section { background: #F3F2F0; }
.reviews-summary { margin-top: 17px; padding: 12px 17px; border-color: #E5DDDE; background: #FFFFFF; }
.reviews-summary__score { font-size: clamp(40px, 4vw, 56px); }
.reviews-summary__label { font-size: 12px; }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 16px;
  padding: 0 1px 3px;
  overflow: visible;
}
.review-card { display: flex; width: auto; min-height: 174px; padding: 17px; gap: 9px; border-color: #E5DDDE; border-radius: 16px; background: #FFFFFF; box-shadow: 0 10px 24px rgba(36,34,34,.055); }
.review-card__top { gap: 7px; }
.review-card__author { color: #242222; font-size: 14px; }
.review-card__stars { color: #C8102E; font-size: 13px; }
.review-card__quote { color: #484445; font-size: 14px; line-height: 1.34; }
.review-card__date, .review-card__source { color: #6F696A; font-size: 10px; }
.reputation-cta { min-height: 43px; margin-top: 14px; }

.location-panel { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); margin-top: 20px; border-color: #E5DDDE; border-radius: 20px; box-shadow: 0 14px 32px rgba(36,34,34,.065); }
.location-map, .location-map svg { min-height: 330px; }
.location-details { padding: clamp(27px, 3.5vw, 50px); }
.location-details__address { max-width: 410px; color: #242222; font-size: clamp(20px, 2vw, 29px); line-height: 1.18; }
.location-details__hint { max-width: 390px; margin-top: 14px; color: #6F696A; font-size: 14px; line-height: 1.42; }
.location-details__button { min-height: 45px; margin-top: 18px; }

.hours-section { background: #F7F7F5; }
.hours-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.hours-visual { width: 100%; height: min(330px, 47svh); margin: 0; overflow: hidden; border: 1px solid #E5DDDE; border-radius: 18px; background: #FFFFFF; box-shadow: 0 12px 28px rgba(36,34,34,.065); }
.hours-visual__image { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hours-content .section-intro { max-width: 580px; }
.hours-table { margin-top: 19px; padding: 5px 20px; border-color: #E5DDDE; border-radius: 16px; background: #FFFFFF; box-shadow: 0 10px 26px rgba(36,34,34,.055); }
.hours-row { min-height: 54px; border-color: #E5DDDE; }
.hours-row__days { color: #6F696A; font-size: 14px; }
.hours-row__time { color: #242222; font-size: 17px; }
.hours-row--heading { min-height: 35px; }
.hours-row--heading .hours-row__days, .hours-row--heading .hours-row__time { color: #C8102E; }

.contact-section { display: flex; flex-direction: column; justify-content: center; background: #F3F2F0; }
.contact-section .contact-panel { align-self: center; width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max)); min-height: 360px; padding: clamp(30px, 4vw, 52px); border: 1px solid #E5DDDE; border-top: 4px solid #C8102E; border-radius: 18px; background: #FFFFFF; color: #242222; box-shadow: 0 14px 32px rgba(36,34,34,.065); }
.contact-panel::after { border-color: rgba(200,16,46,.11); }
.contact-copy { max-width: 760px; }
.contact-copy .section-title { font-size: clamp(36px, 3.7vw, 54px); }
.contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 20px; }
.contact-detail { min-height: 58px; align-items: center; padding: 11px 13px; border: 1px solid #F1D5D8; border-radius: 13px; background: #FFF7F7; color: #6F696A; font-size: 13px; line-height: 1.35; }
.contact-detail .icon { width: 21px; height: 21px; color: #C8102E; }
.contact-detail--address { grid-column: 1 / -1; align-items: flex-start; }
.contact-cta { justify-self: end; min-height: 49px; padding-inline: 20px; background: #C8102E; color: #FFFFFF; }
.section-intro--light .eyebrow, .section-intro--light .section-title, .section-intro--light .section-copy { color: #242222; }

.site-footer { border-top: 1px solid #ECE7E7; background: #FFFFFF; }
.footer-link, .footer-credit__link { color: #C8102E; }

@media (min-width: 781px) {
  .hero__visual-wrap { width: auto; }
  .reputation-section .reviews-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; overflow: visible; padding: 0 1px 3px; }
  .reputation-section .review-card { display: flex; width: auto; min-height: 174px; grid-template-columns: none; grid-template-rows: none; padding: 17px; }
  .reputation-section .review-card__top, .reputation-section .review-card__quote, .reputation-section .review-card__source { grid-column: auto; grid-row: auto; }
  .reputation-section .review-card__quote { align-self: auto; }
  .hours-layout { min-height: var(--section-panel-height); align-content: center; }
  .hours-table { display: block; min-height: 0; padding-block: 5px; }
  .hours-row:not(.hours-row--heading) { min-height: 54px; flex: none; }
}

@media (min-width: 781px) and (max-height: 700px) {
  :root { --hero-strip-height: 82px; }
  .hero { height: max(430px, calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height))); min-height: 430px; padding-top: 43px; }
  .hero__copy { width: min(49%, 500px); }
  .hero__title { max-width: 470px; font-size: clamp(43px, 4.35vw, 60px); }
  .hero__body { max-width: 410px; margin-top: 15px; font-size: 13px; }
  .hero__actions { margin-top: 16px; }
  .hero__lower { bottom: -39px; width: min(500px, 47%); }
  .hero__secondary-card { height: 140px; }
  .hero__location-card { height: 100px; }
  .hero-service-strip__inner { min-height: 82px; }
  .hero-service-strip__item { padding-block: 8px; }
  .services-grid { gap: 11px; margin-top: 17px; }
  .service-card { min-height: 116px; padding: 15px; }
  .service-card__icon { width: 42px; height: 42px; }
  .service-card__title { margin-top: 10px; font-size: 15px; }
  .reviews-track { margin-top: 12px; }
  .review-card { min-height: 158px; padding: 14px; }
  .review-card__quote { font-size: 13px; }
  .location-panel { margin-top: 15px; }
  .location-map, .location-map svg { min-height: 285px; }
  .location-details { padding: 24px 30px; }
  .hours-visual { height: 285px; }
  .hours-table { margin-top: 13px; }
  .hours-row { min-height: 46px; }
  .contact-section .contact-panel { min-height: 330px; }
}

@media (max-width: 780px) {
  :root { --header-height: 62px; --header-offset: 62px; --hero-strip-height: 112px; --section-panel-height: calc(100svh - var(--header-height) + 2px); }
  .site-header, .header-inner { min-height: var(--header-height); }
  .brand-logo { width: 40px; height: 38px; }
  .brand__name { font-size: 8px; }
  .brand__descriptor { font-size: 18px; }
  .header-cta { min-width: 44px; padding-inline: 11px; }
  .header-cta__label { display: none; }
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "copy" "visual" "lower";
    height: auto;
    min-height: 0;
    gap: 16px;
    padding-block: 25px 18px;
  }
  .hero__visual-wrap { position: relative; inset: auto; grid-area: visual; width: 100%; height: 220px; }
  .hero__visual-wrap::after { display: none; }
  .hero__copy { grid-area: copy; width: 100%; max-width: 680px; }
  .hero__title { max-width: 560px; font-size: clamp(37px, 9.5vw, 56px); line-height: .93; }
  .hero__body { max-width: 510px; margin-top: 13px; font-size: 13px; line-height: 1.4; }
  .hero__actions { margin-top: 16px; }
  .hero__visual, .hero__frame, .hero__illustration { height: 100%; }
  .hero__frame { border-radius: 16px; }
  .hero__lower { position: relative; grid-area: lower; left: auto; bottom: auto; width: 100%; max-width: 620px; }
  .hero__secondary-card { height: 94px; }
  .hero__location-card { height: 94px; min-height: 94px; }
  .hero-service-strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: var(--hero-strip-height); }
  .hero-service-strip__item:nth-child(-n + 3) { border-bottom: 1px solid #ECE7E7; }
  .hero-service-strip__item:nth-child(3), .hero-service-strip__item:nth-child(6) { border-right: 0; }
  .content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell, .hours-section > .hours-layout { min-height: var(--section-panel-height); padding-block: 28px; }
  .section-title { font-size: clamp(28px, 7vw, 40px); }
  .section-copy { font-size: 14px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 18px; }
  .service-card { min-height: 106px; padding: 14px; border-radius: 14px; }
  .service-card__icon { width: 38px; height: 38px; border-radius: 12px; }
  .service-card__icon .icon { width: 19px; height: 19px; }
  .service-card__title { margin-top: 10px; font-size: 14px; }
  .reviews-summary { margin-top: 14px; }
  .reviews-track, .reputation-section .reviews-track { display: flex; gap: 10px; margin-top: 13px; padding: 0 1px 7px; overflow-x: auto; }
  .review-card, .reputation-section .review-card { display: flex; flex: 0 0 min(86vw, 330px); width: auto; min-height: 174px; padding: 16px; }
  .reputation-cta { margin-top: 11px; }
  .location-panel { grid-template-columns: 1fr; margin-top: 16px; }
  .location-map, .location-map svg { min-height: 225px; }
  .location-details { padding: 22px 20px 24px; }
  .location-details__address { font-size: clamp(20px, 6vw, 28px); }
  .hours-layout { grid-template-columns: 1fr; gap: 21px; align-content: center; }
  .hours-visual { height: 215px; }
  .hours-table { margin-top: 15px; padding-inline: 15px; }
  .hours-row { min-height: 48px; }
  .hours-row__days { font-size: 13px; }
  .hours-row__time { font-size: 16px; }
  .contact-section .contact-panel { width: min(calc(100% - 36px), var(--content-max)); min-height: 360px; padding: 26px 22px; }
  .contact-panel { display: block; }
  .contact-copy .section-title { font-size: clamp(32px, 8vw, 46px); }
  .contact-details { grid-template-columns: 1fr; gap: 9px; margin-top: 16px; }
  .contact-detail--address { grid-column: auto; }
  .contact-cta { display: inline-flex; margin-top: 16px; }
}

@media (max-width: 520px) {
  .hero { gap: 12px; padding-block: 19px 15px; }
  .hero__title { font-size: clamp(33px, 9.6vw, 43px); }
  .hero__body { font-size: 12px; }
  .hero__actions { flex-wrap: nowrap; gap: 6px; }
  .hero__actions .button { min-width: 0; padding-inline: 10px; font-size: 10px; }
  .hero__visual-wrap { height: 185px; }
  .hero__secondary-card, .hero__location-card { height: 78px; min-height: 78px; }
  .hero__location-card { padding: 9px 8px; gap: 5px; }
  .hero__location-copy { font-size: 8px; }
  .hero-service-strip__inner { min-height: 112px; }
  .hero-service-strip__item { gap: 5px; padding: 7px 4px; }
  .hero-service-strip__icon { width: 28px; height: 28px; }
  .hero-service-strip__icon .icon { width: 14px; height: 14px; }
  .hero-service-strip__label { font-size: 8px; }
  .content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell, .hours-section > .hours-layout { padding-block: 23px; }
  .section-title { font-size: clamp(26px, 7.2vw, 34px); }
  .section-copy { margin-top: 8px; font-size: 13px; }
  .services-grid { margin-top: 13px; gap: 8px; }
  .service-card { min-height: 91px; padding: 11px; }
  .service-card__icon { width: 32px; height: 32px; }
  .service-card__title { margin-top: 7px; font-size: 12px; }
  .review-card, .reputation-section .review-card { flex-basis: min(86vw, 310px); min-height: 165px; padding: 14px; }
  .location-map, .location-map svg { min-height: 190px; }
  .location-details { padding: 18px 16px 20px; }
  .hours-visual { height: 175px; }
  .hours-table { margin-top: 11px; }
  .hours-row { min-height: 43px; }
  .contact-section .contact-panel { min-height: 330px; padding: 21px 17px; }
}

@media (max-width: 360px) and (max-height: 700px) {
  .brand-logo { width: 36px; height: 34px; }
  .brand__descriptor { font-size: 16px; }
  .hero__title { font-size: 30px; }
  .hero__body { font-size: 10px; }
  .hero__visual-wrap { height: 145px; }
  .hero__secondary-card, .hero__location-card { height: 64px; min-height: 64px; }
  .hero-service-strip__inner { min-height: 92px; }
  .hero-service-strip__label { font-size: 7px; }
  .service-card { min-height: 82px; }
  .service-card__title { font-size: 11px; }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 600px) and (max-width: 900px) {
  :root { --header-height: 54px; --header-offset: 54px; --hero-strip-height: 82px; }
  .site-header, .header-inner { min-height: var(--header-height); }
  .hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: auto auto; grid-template-areas: "copy visual" "lower lower"; height: auto; min-height: 0; gap: 10px 18px; padding-block: 15px 12px; }
  .hero__visual-wrap { position: relative; inset: auto; grid-area: visual; width: 100%; height: 200px; }
  .hero__visual-wrap::after { display: none; }
  .hero__copy { width: 100%; }
  .hero__title { font-size: clamp(30px, 5vw, 40px); }
  .hero__body { margin-top: 8px; font-size: 11px; }
  .hero__actions { margin-top: 8px; }
  .hero__actions .button { min-height: 36px; padding-inline: 8px; font-size: 9px; }
  .hero__lower { position: relative; grid-area: lower; left: auto; bottom: auto; width: 100%; max-width: none; }
  .hero__secondary-card, .hero__location-card { height: 66px; min-height: 66px; }
  .hero-service-strip__inner { min-height: 82px; }
}

/* Última capa de composición 1.0.18: prevalece sobre los ajustes históricos. */
:root { --hero-strip-height: 108px; --reference-red: #C8102E; --reference-ink: #242222; --reference-page: #F7F7F5; }
body { background: var(--reference-page); }
.site-header, .header-inner { min-height: 78px; }
.site-header { background: #FFFFFF; border-bottom-color: #ECE7E7; box-shadow: 0 2px 12px rgba(36,34,34,.04); }
.header-inner { gap: clamp(18px, 2.8vw, 42px); }
.brand { gap: 11px; }
.brand-logo { width: 49px; height: 49px; object-fit: contain; }
.brand__text { gap: 2px; }
.brand__name { color: var(--reference-red); font-size: clamp(10px, .78vw, 13px); font-weight: 900; letter-spacing: .08em; }
.brand__descriptor { color: var(--reference-red); font-size: clamp(16px, 1.45vw, 23px); font-weight: 950; letter-spacing: -.045em; line-height: .95; }
.nav-list { gap: clamp(15px, 2.1vw, 34px); }
.nav-link { color: #4D4748; font-size: clamp(12px, .95vw, 15px); font-weight: 800; }
.nav-link:hover, .nav-link[aria-current="location"] { color: var(--reference-red); }
.header-cta { min-height: 46px; padding-inline: clamp(16px, 1.8vw, 25px); border-radius: 10px; background: var(--reference-red); font-size: clamp(12px, .95vw, 14px); }

.hero-section { min-height: calc(var(--visual-viewport-height) - var(--header-offset)); background: #FFFFFF; }
.hero-backdrop { min-height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); background: #FFFFFF; }
.hero { grid-template-columns: minmax(390px, .62fr) minmax(600px, 1.38fr); grid-template-rows: 1fr auto; grid-template-areas: "copy visual" "lower visual"; height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); min-height: 0; align-items: stretch; gap: clamp(20px, 2.2vw, 32px); padding-block: clamp(24px, 4vh, 42px); }
.hero__copy { max-width: 530px; align-self: center; }
.eyebrow--hero { color: var(--reference-red); }
.hero__title { max-width: 500px; color: var(--reference-ink); font-size: clamp(45px, 4.55vw, 72px); line-height: .96; letter-spacing: -.07em; }
.hero__title-accent { color: var(--reference-red); }
.hero__body { max-width: 420px; margin-top: 20px; color: #4D4748; font-size: clamp(14px, 1.12vw, 17px); line-height: 1.5; }
.hero__meta { display: none; }
.hero__actions { margin-top: 22px; }
.hero__visual-wrap { align-self: stretch; place-items: stretch; }
.hero__visual { width: 100%; height: 100%; max-width: none; }
.hero__frame { height: 100%; border: 0; border-radius: 0; background: #F0EEEC; box-shadow: 0 16px 34px rgba(36,34,34,.10); transform: none; }
.hero__illustration { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center 52%; }
.hero__lower { max-width: 450px; grid-template-columns: minmax(0, 1.28fr) minmax(150px, .72fr); gap: 14px; align-self: end; }
.hero__secondary-card, .hero__location-card { min-height: 100px; height: 100px; }
.hero__secondary-image { height: 100%; object-position: center 48%; }
.hero__location-card { padding: 14px 15px; }
.hero__location-copy { font-size: 11px; line-height: 1.38; }
.hero-service-strip, .hero-service-strip__inner { min-height: var(--hero-strip-height); }
.hero-service-strip__item { gap: 11px; padding-inline: 14px; }
.hero-service-strip__icon { width: 42px; height: 42px; }
.hero-service-strip__icon .icon { width: 20px; height: 20px; }
.hero-service-strip__label { font-size: 11px; }

.content-section, .services-section, .reputation-section, .location-section, .hours-section { min-height: var(--section-panel-height); background: var(--reference-page); }
.content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell, .hours-section > .hours-layout { min-height: var(--section-panel-height); padding-block: clamp(28px, 5vh, 54px); justify-content: center; }
.section-intro { max-width: 780px; }
.section-intro .eyebrow { margin-bottom: 10px; }
.section-title { max-width: 780px; color: var(--reference-ink); font-size: clamp(32px, 3.45vw, 52px); line-height: 1; letter-spacing: -.06em; }
.section-copy { max-width: 660px; margin-top: 14px; color: #5F595A; font-size: clamp(15px, 1.1vw, 18px); line-height: 1.5; }
.services-grid { margin-top: 28px; gap: 16px; }
.service-card { min-height: 136px; padding: 22px 22px 20px; border-color: #E5DDDE; border-radius: 18px; background: #FFFFFF; box-shadow: 0 11px 28px rgba(36,34,34,.06); }
.service-card__icon { width: 54px; height: 54px; border-radius: 16px; background: #FFF1F1; color: var(--reference-red); }
.service-card__icon .icon { width: 27px; height: 27px; }
.service-card__title { max-width: 210px; margin-top: 18px; color: var(--reference-ink); font-size: clamp(16px, 1.25vw, 20px); line-height: 1.12; }

.reputation-section { background: #F3F2F0; }
.reviews-summary { margin-top: 24px; padding: 15px 21px; border-color: #E5DDDE; background: #FFFFFF; }
.reviews-summary__score { font-size: clamp(42px, 4.2vw, 58px); }
.reviews-summary__label { font-size: 13px; }
.reviews-track { margin-top: 22px; gap: 16px; padding: 0 1px 6px; }
.review-card { min-height: 176px; padding: 21px; gap: 10px; border-color: #E5DDDE; border-radius: 18px; background: #FFFFFF; box-shadow: 0 12px 28px rgba(36,34,34,.06); }
.review-card__top { gap: 10px; }
.review-card__author { color: var(--reference-ink); font-size: 15px; }
.review-card__stars { color: var(--reference-red); font-size: 14px; }
.review-card__quote { color: #3F3A3B; font-size: 16px; line-height: 1.38; }
.review-card__date, .review-card__source { margin: 0; color: #70696A; font-size: 11px; font-weight: 750; }
.review-card__date { margin-top: auto; }
.reputation-cta { margin-top: 20px; min-height: 48px; }
.location-panel { grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); margin-top: 28px; border-color: #E5DDDE; }
.location-map, .location-map svg { min-height: 350px; }
.location-details { padding: clamp(32px, 4vw, 60px); }
.location-details__address { max-width: 440px; font-size: clamp(22px, 2.2vw, 31px); line-height: 1.22; }
.location-details__hint { max-width: 420px; margin-top: 18px; font-size: 15px; line-height: 1.5; }
.location-details__button { margin-top: 24px; min-height: 50px; }

.hours-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 76px); align-items: center; }
.hours-visual { width: 100%; height: min(360px, 46svh); margin: 0; overflow: hidden; border: 1px solid #E5DDDE; border-radius: 20px; background: #FFFFFF; box-shadow: 0 14px 32px rgba(36,34,34,.07); }
.hours-visual__image { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hours-content { min-width: 0; }
.hours-table { margin-top: 25px; padding: 9px 25px; border-color: #E5DDDE; border-radius: 18px; background: #FFFFFF; box-shadow: 0 12px 30px rgba(36,34,34,.06); }
.hours-row { min-height: 62px; }
.hours-row__days { color: #70696A; font-size: 15px; }
.hours-row__time { color: var(--reference-ink); font-size: 19px; }
.hours-row--heading { min-height: 42px; }
.hours-row--heading .hours-row__days, .hours-row--heading .hours-row__time { color: var(--reference-red); }

.contact-section { min-height: var(--section-panel-height); background: #F3F2F0; }
.contact-panel { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr); align-items: center; min-height: 380px; padding: clamp(34px, 5vw, 58px); border: 1px solid #E5DDDE; border-top: 5px solid var(--reference-red); border-radius: 20px; background: #FFFFFF; color: var(--reference-ink); box-shadow: 0 16px 36px rgba(36,34,34,.07); }
.contact-copy { max-width: 720px; }
.contact-copy .section-title { font-size: clamp(36px, 4vw, 56px); }
.contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 24px; }
.contact-detail { min-height: 64px; align-items: center; padding: 12px 14px; border: 1px solid #F1D5D8; border-radius: 14px; background: #FFF7F7; color: #484445; font-size: 14px; line-height: 1.42; }
.contact-detail .icon { width: 22px; height: 22px; margin-top: 0; color: var(--reference-red); }
.contact-detail--address { grid-column: 1 / -1; max-width: none; align-items: flex-start; }
.contact-cta { justify-self: end; min-height: 52px; padding-inline: 23px; background: var(--reference-red); color: #FFFFFF; }
.section-intro--light .eyebrow, .section-intro--light .section-title, .section-intro--light .section-copy { color: var(--reference-ink); }
.site-footer { background: #FFFFFF; }
.footer-brand { color: var(--reference-ink); }
.footer-link, .footer-credit__link { color: var(--reference-red); }

@media (max-width: 1120px) and (min-width: 781px) {
  .hero { grid-template-columns: minmax(390px, .9fr) minmax(430px, 1.1fr); gap: 24px; }
  .hero__title { font-size: clamp(42px, 5vw, 60px); }
  .hero__lower { max-width: 450px; }
  .nav-list { gap: 14px; }
  .nav-link { font-size: 11px; }
  .header-cta { padding-inline: 16px; }
}
@media (min-width: 781px) and (max-height: 700px) {
  :root { --hero-strip-height: 84px; }
  .hero { grid-template-columns: minmax(390px, .62fr) minmax(520px, 1.38fr); padding-block: 0 15px; gap: 20px 24px; }
  .hero__title { max-width: 500px; font-size: clamp(40px, 4.8vw, 60px); }
  .hero__body { margin-top: 14px; font-size: 14px; line-height: 1.4; }
  .hero__actions { margin-top: 17px; }
  .hero__secondary-card, .hero__location-card { min-height: 104px; height: 104px; }
  .hero-service-strip, .hero-service-strip__inner { min-height: var(--hero-strip-height); }
  .hero-service-strip__item { padding-block: 9px; }
  .section-title { font-size: clamp(30px, 3.1vw, 43px); }
  .service-card { min-height: 116px; padding: 17px; }
  .service-card__icon { width: 46px; height: 46px; }
  .service-card__title { margin-top: 13px; font-size: 16px; }
  .review-card { min-height: 142px; padding: 16px; }
  .review-card__quote { font-size: 14px; }
  .reputation-cta { margin-top: 12px; min-height: 44px; }
  .location-map, .location-map svg { min-height: 285px; }
  .location-details { padding: 28px; }
  .location-details__address { font-size: 24px; }
  .hours-visual { height: 270px; }
  .hours-table { margin-top: 17px; }
  .hours-row { min-height: 50px; }
  .contact-panel { min-height: 320px; padding: 31px 40px; }
  .contact-copy .section-title { font-size: 43px; }
}
@media (max-width: 780px) {
  :root { --header-height: 72px; --hero-strip-height: 112px; }
  .site-header, .header-inner { min-height: var(--header-height); }
  .brand-logo { width: 42px; height: 42px; }
  .brand__name { font-size: 9px; }
  .brand__descriptor { font-size: 17px; }
  .hero-section, .hero-backdrop { min-height: auto; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; grid-template-areas: "copy" "visual" "lower"; height: auto; min-height: 0; gap: 15px; padding-block: 25px 21px; }
  .hero__copy { max-width: 100%; }
  .hero__title { max-width: 100%; font-size: clamp(34px, 9.2vw, 48px); line-height: .96; }
  .hero__body { max-width: 100%; margin-top: 14px; font-size: 13px; line-height: 1.45; }
  .hero__actions { margin-top: 17px; }
  .hero__visual-wrap { width: 100%; height: auto; }
  .hero__visual { width: min(100%, 560px); height: auto; margin-inline: auto; }
  .hero__frame { height: auto; aspect-ratio: 1.48; }
  .hero__illustration { height: 100%; }
  .hero__lower { width: 100%; max-width: 560px; margin-inline: auto; }
  .hero__secondary-card, .hero__location-card { min-height: 88px; height: 88px; }
  .hero-service-strip, .hero-service-strip__inner { min-height: var(--hero-strip-height); }
  .hero-service-strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-service-strip__item:nth-child(-n + 3) { border-bottom: 1px solid #ECE7E7; }
  .hero-service-strip__item:nth-child(3), .hero-service-strip__item:nth-child(6) { border-right: 0; }
  .hero-service-strip__item { gap: 7px; padding: 9px 7px; }
  .hero-service-strip__icon { width: 32px; height: 32px; }
  .hero-service-strip__icon .icon { width: 16px; height: 16px; }
  .hero-service-strip__label { font-size: 9px; }
  .content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell, .hours-section > .hours-layout { min-height: var(--section-panel-height); padding-block: 26px; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
  .section-copy { margin-top: 11px; font-size: 14px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
  .service-card { min-height: 126px; padding: 17px 16px; }
  .service-card__icon { width: 46px; height: 46px; }
  .service-card__title { margin-top: 14px; font-size: 15px; }
  .reviews-track { overflow-x: auto; margin-top: 16px; padding-bottom: 7px; }
  .review-card { flex: 0 0 min(88vw, 360px); min-height: 170px; }
  .location-panel { grid-template-columns: 1fr; margin-top: 19px; }
  .location-map, .location-map svg { min-height: 250px; }
  .location-details { padding: 28px 24px 31px; }
  .location-details__address { font-size: 23px; }
  .hours-layout { grid-template-columns: 1fr; gap: 20px; align-content: center; }
  .hours-visual { height: clamp(170px, 28svh, 260px); }
  .hours-table { margin-top: 16px; padding-inline: 18px; }
  .hours-row { min-height: 54px; }
  .hours-row__days { font-size: 14px; }
  .hours-row__time { font-size: 17px; }
  .contact-panel { width: min(calc(100% - 36px), var(--content-max)); grid-template-columns: 1fr; min-height: 0; padding: 31px 24px 34px; }
  .contact-copy .section-title { font-size: clamp(32px, 9vw, 45px); }
  .contact-details { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .contact-detail { min-height: 58px; font-size: 13px; }
  .contact-detail--address { grid-column: auto; }
  .contact-cta { justify-self: start; margin-top: 20px; }
}
@media (max-width: 780px) and (orientation: landscape) and (max-height: 600px) {
  :root { --header-height: 68px; --hero-strip-height: 78px; }
  .site-header, .header-inner { min-height: var(--header-height); }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: 1fr auto; grid-template-areas: "copy visual" "lower visual"; height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); min-height: 0; gap: 10px 18px; padding-block: 13px 9px; }
  .hero__title { font-size: clamp(27px, 5vw, 40px); }
  .hero__body { margin-top: 8px; font-size: 10px; line-height: 1.35; }
  .hero__actions { margin-top: 9px; gap: 5px; }
  .hero__actions .button { min-height: 38px; padding-inline: 8px; font-size: 9px; }
  .hero__visual-wrap, .hero__visual, .hero__frame { height: 100%; }
  .hero__visual { width: 100%; }
  .hero__secondary-card, .hero__location-card { min-height: 60px; height: 60px; }
  .hero__location-card { padding: 7px; }
  .hero__location-copy { font-size: 7px; }
  .hero-service-strip__item { padding: 5px 4px; }
  .hero-service-strip__icon { width: 26px; height: 26px; }
  .hero-service-strip__label { font-size: 8px; }
}
@media (max-width: 360px) and (max-height: 700px) {
  .hero { gap: 8px; padding-block: 15px 11px; }
  .hero__title { font-size: 28px; line-height: .93; }
  .hero__body { margin-top: 7px; font-size: 10px; line-height: 1.3; }
  .hero__actions { margin-top: 8px; gap: 4px; }
  .hero__actions .button { min-height: 35px; padding-inline: 6px; font-size: 8px; gap: 4px; }
  .hero__visual { width: 180px; }
  .hero__frame { aspect-ratio: 1.5; }
  .hero__secondary-card, .hero__location-card { min-height: 62px; height: 62px; }
  .hero__location-copy { font-size: 7px; }
  .hero-service-strip, .hero-service-strip__inner { min-height: 82px; }
  .hero-service-strip__item { padding: 5px 3px; }
  .hero-service-strip__icon { width: 25px; height: 25px; }
  .hero-service-strip__label { font-size: 7px; }
  .content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell, .hours-section > .hours-layout { padding-block: 19px; }
  .section-title { font-size: 28px; }
  .section-copy { font-size: 12px; line-height: 1.35; }
  .services-grid { gap: 8px; margin-top: 14px; }
  .service-card { min-height: 82px; padding: 10px; }
  .service-card__icon { width: 32px; height: 32px; }
  .service-card__icon .icon { width: 16px; height: 16px; }
  .service-card__title { margin-top: 9px; font-size: 12px; }
  .review-card { min-height: 132px; padding: 14px; }
  .review-card__quote { font-size: 13px; line-height: 1.3; }
  .location-map, .location-map svg { min-height: 180px; }
  .location-details { padding: 18px; }
  .location-details__address { font-size: 18px; }
  .hours-layout { gap: 12px; }
  .hours-visual { height: 135px; }
  .hours-table { margin-top: 10px; padding-block: 2px; }
  .hours-row { min-height: 42px; }
  .hours-row__days { font-size: 11px; }
  .hours-row__time { font-size: 13px; }
  .contact-panel { padding: 22px 18px 24px; }
  .contact-copy .section-title { font-size: 31px; }
  .contact-detail { min-height: 47px; padding: 8px 10px; font-size: 11px; }
  .contact-cta { margin-top: 14px; min-height: 40px; font-size: 10px; }
}

/* Composición visual 1.0.18: réplica material de la referencia aprobada. */
:root {
  --hero-strip-height: 108px;
  --reference-red: #C8102E;
  --reference-ink: #242222;
  --reference-page: #F7F7F5;
}

body { background: var(--reference-page); }
.site-header { min-height: 78px; border-bottom-color: #ECE7E7; }
.header-inner { min-height: 78px; gap: clamp(18px, 2.8vw, 42px); }
.brand { gap: 11px; }
.brand-logo { width: 49px; height: 49px; object-fit: contain; }
.brand__text { gap: 2px; }
.brand__name {
  color: var(--reference-red);
  font-size: clamp(10px, .78vw, 13px);
  font-weight: 900;
  letter-spacing: .08em;
}
.brand__descriptor {
  color: var(--reference-red);
  font-size: clamp(16px, 1.45vw, 23px);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: .95;
}
.nav-list { gap: clamp(15px, 2.1vw, 34px); }
.nav-link { color: #4D4748; font-size: clamp(12px, .95vw, 15px); font-weight: 800; }
.nav-link:hover, .nav-link[aria-current="location"] { color: var(--reference-red); }
.header-cta {
  min-height: 46px;
  padding-inline: clamp(16px, 1.8vw, 25px);
  border-radius: 10px;
  background: var(--reference-red);
  font-size: clamp(12px, .95vw, 14px);
}

.hero-section {
  min-height: calc(var(--visual-viewport-height) - var(--header-offset));
  background: #FFFFFF;
}
.hero-backdrop {
  min-height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height));
  background: #FFFFFF;
}
.hero {
  grid-template-columns: minmax(390px, .62fr) minmax(600px, 1.38fr);
  grid-template-rows: 1fr auto;
  grid-template-areas: "copy visual" "lower visual";
  height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height));
  min-height: 0;
  align-items: stretch;
  gap: clamp(20px, 2.2vw, 32px);
  padding-block: clamp(24px, 4vh, 42px);
}
.hero__copy { max-width: 530px; align-self: center; }
.eyebrow--hero { color: var(--reference-red); }
.hero__title {
  max-width: 500px;
  color: var(--reference-ink);
  font-size: clamp(45px, 4.55vw, 72px);
  line-height: .96;
  letter-spacing: -.07em;
}
.hero__title-accent { color: var(--reference-red); }
.hero__body {
  max-width: 420px;
  margin-top: 20px;
  color: #4D4748;
  font-size: clamp(14px, 1.12vw, 17px);
  line-height: 1.5;
}
.hero__meta { display: none; }
.hero__actions { margin-top: 22px; }
.hero__visual-wrap { align-self: stretch; place-items: stretch; }
.hero__visual { width: 100%; height: 100%; max-width: none; }
.hero__frame {
  height: 100%;
  border: 0;
  border-radius: 0;
  background: #F0EEEC;
  box-shadow: 0 16px 34px rgba(36, 34, 34, .10);
  transform: none;
}
.hero__illustration {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 52%;
}
.hero__lower {
  max-width: 450px;
  grid-template-columns: minmax(0, 1.28fr) minmax(150px, .72fr);
  gap: 14px;
  align-self: end;
}
.hero__secondary-card, .hero__location-card { min-height: 100px; height: 100px; }
.hero__secondary-image { height: 100%; object-position: center 48%; }
.hero__location-card { padding: 14px 15px; }
.hero__location-copy { font-size: 11px; line-height: 1.38; }
.hero-service-strip { min-height: var(--hero-strip-height); }
.hero-service-strip__inner { min-height: var(--hero-strip-height); }
.hero-service-strip__item { gap: 11px; padding-inline: 14px; }
.hero-service-strip__icon { width: 42px; height: 42px; }
.hero-service-strip__icon .icon { width: 20px; height: 20px; }
.hero-service-strip__label { font-size: 11px; }

.content-section, .services-section, .reputation-section, .location-section, .hours-section {
  min-height: var(--section-panel-height);
  background: var(--reference-page);
}
.content-section > .shell,
.services-section > .shell,
.reputation-section > .shell,
.location-section > .shell,
.hours-section > .hours-layout {
  min-height: var(--section-panel-height);
  padding-block: clamp(28px, 5vh, 54px);
  justify-content: center;
}
.section-intro { max-width: 780px; }
.section-intro .eyebrow { margin-bottom: 10px; }
.section-title {
  max-width: 780px;
  color: var(--reference-ink);
  font-size: clamp(32px, 3.45vw, 52px);
  line-height: 1;
  letter-spacing: -.06em;
}
.section-copy { max-width: 660px; margin-top: 14px; color: #5F595A; font-size: clamp(15px, 1.1vw, 18px); line-height: 1.5; }

.services-grid { margin-top: 28px; gap: 16px; }
.service-card {
  min-height: 136px;
  padding: 22px 22px 20px;
  border-color: #E5DDDE;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 11px 28px rgba(36, 34, 34, .06);
}
.service-card__icon { width: 54px; height: 54px; border-radius: 16px; background: #FFF1F1; color: var(--reference-red); }
.service-card__icon .icon { width: 27px; height: 27px; }
.service-card__title { max-width: 210px; margin-top: 18px; color: var(--reference-ink); font-size: clamp(16px, 1.25vw, 20px); line-height: 1.12; }

.reputation-section { background: #F3F2F0; }
.reviews-summary { margin-top: 24px; padding: 15px 21px; border-color: #E5DDDE; background: #FFFFFF; }
.reviews-summary__score { font-size: clamp(42px, 4.2vw, 58px); }
.reviews-summary__label { font-size: 13px; }
.reviews-track { margin-top: 22px; gap: 16px; padding: 0 1px 6px; }
.review-card {
  min-height: 176px;
  padding: 21px;
  gap: 10px;
  border-color: #E5DDDE;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 12px 28px rgba(36, 34, 34, .06);
}
.review-card__top { gap: 10px; }
.review-card__author { color: var(--reference-ink); font-size: 15px; }
.review-card__stars { color: var(--reference-red); font-size: 14px; }
.review-card__quote { color: #3F3A3B; font-size: 16px; line-height: 1.38; }
.review-card__date, .review-card__source { margin: 0; color: #70696A; font-size: 11px; font-weight: 750; }
.review-card__date { margin-top: auto; }
.reputation-cta { margin-top: 20px; min-height: 48px; }

.location-section { background: var(--reference-page); }
.location-panel { grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); margin-top: 28px; border-color: #E5DDDE; }
.location-map, .location-map svg { min-height: 350px; }
.location-details { padding: clamp(32px, 4vw, 60px); }
.location-details .eyebrow { margin-bottom: 12px; }
.location-details__address { max-width: 440px; font-size: clamp(22px, 2.2vw, 31px); line-height: 1.22; }
.location-details__hint { max-width: 420px; margin-top: 18px; font-size: 15px; line-height: 1.5; }
.location-details__button { margin-top: 24px; min-height: 50px; }

.hours-section { background: var(--reference-page); }
.hours-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 76px); align-items: center; }
.hours-visual { width: 100%; height: min(360px, 46svh); margin: 0; overflow: hidden; border: 1px solid #E5DDDE; border-radius: 20px; background: #FFFFFF; box-shadow: 0 14px 32px rgba(36, 34, 34, .07); }
.hours-visual__image { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hours-content { min-width: 0; }
.hours-content .section-intro { max-width: 580px; }
.hours-table { margin-top: 25px; padding: 9px 25px; border-color: #E5DDDE; border-radius: 18px; background: #FFFFFF; box-shadow: 0 12px 30px rgba(36, 34, 34, .06); }
.hours-row { min-height: 62px; }
.hours-row__days { color: #70696A; font-size: 15px; }
.hours-row__time { color: var(--reference-ink); font-size: 19px; }
.hours-row--heading { min-height: 42px; }
.hours-row--heading .hours-row__days, .hours-row--heading .hours-row__time { color: var(--reference-red); }

.contact-section { min-height: var(--section-panel-height); background: #F3F2F0; }
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
  align-items: center;
  min-height: 380px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid #E5DDDE;
  border-top: 5px solid var(--reference-red);
  border-radius: 20px;
  background: #FFFFFF;
  color: var(--reference-ink);
  box-shadow: 0 16px 36px rgba(36, 34, 34, .07);
}
.contact-copy { max-width: 720px; }
.contact-copy .section-title { font-size: clamp(36px, 4vw, 56px); }
.contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 24px; }
.contact-detail {
  min-height: 64px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #F1D5D8;
  border-radius: 14px;
  background: #FFF7F7;
  color: #484445;
  font-size: 14px;
  line-height: 1.42;
}
.contact-detail .icon { width: 22px; height: 22px; margin-top: 0; color: var(--reference-red); }
.contact-detail--address { grid-column: 1 / -1; max-width: none; align-items: flex-start; }
.contact-cta { justify-self: end; min-height: 52px; padding-inline: 23px; background: var(--reference-red); color: #FFFFFF; }
.section-intro--light .eyebrow, .section-intro--light .section-title, .section-intro--light .section-copy { color: var(--reference-ink); }

.site-footer { background: #FFFFFF; }
.footer-brand { color: var(--reference-ink); }
.footer-link, .footer-credit__link { color: var(--reference-red); }

@media (max-width: 1120px) and (min-width: 781px) {
  .hero { grid-template-columns: minmax(390px, .9fr) minmax(430px, 1.1fr); gap: 24px; }
  .hero__title { font-size: clamp(42px, 5vw, 60px); }
  .hero__lower { max-width: 560px; }
  .hero__location-copy { font-size: 10px; }
  .nav-list { gap: 14px; }
  .nav-link { font-size: 11px; }
  .header-cta { padding-inline: 16px; }
}

@media (min-width: 781px) and (max-height: 700px) {
  :root { --hero-strip-height: 84px; }
  .hero {
    grid-template-columns: minmax(390px, .62fr) minmax(520px, 1.38fr);
    padding-block: 0 15px;
    gap: 20px 24px;
  }
  .hero__title { font-size: clamp(40px, 4.8vw, 60px); }
  .hero__body { margin-top: 14px; font-size: 14px; line-height: 1.4; }
  .hero__actions { margin-top: 17px; }
  .hero__secondary-card, .hero__location-card { min-height: 104px; height: 104px; }
  .hero-service-strip, .hero-service-strip__inner { min-height: var(--hero-strip-height); }
  .hero-service-strip__item { padding-block: 9px; }
  .section-title { font-size: clamp(30px, 3.1vw, 43px); }
  .section-copy { font-size: 14px; }
  .services-grid { margin-top: 20px; gap: 12px; }
  .service-card { min-height: 116px; padding: 17px; }
  .service-card__icon { width: 46px; height: 46px; }
  .service-card__title { margin-top: 13px; font-size: 16px; }
  .reviews-summary { margin-top: 16px; }
  .reviews-track { margin-top: 14px; }
  .review-card { min-height: 142px; padding: 16px; }
  .review-card__quote { font-size: 14px; }
  .reputation-cta { margin-top: 12px; min-height: 44px; }
  .location-panel { margin-top: 18px; }
  .location-map, .location-map svg { min-height: 285px; }
  .location-details { padding: 28px; }
  .location-details__address { font-size: 24px; }
  .hours-visual { height: 270px; }
  .hours-table { margin-top: 17px; }
  .hours-row { min-height: 50px; }
  .contact-panel { min-height: 320px; padding: 31px 40px; }
  .contact-copy .section-title { font-size: 43px; }
}

@media (max-width: 780px) {
  :root { --header-height: 72px; --hero-strip-height: 112px; }
  .site-header, .header-inner { min-height: var(--header-height); }
  .brand-logo { width: 42px; height: 42px; }
  .brand__name { font-size: 9px; }
  .brand__descriptor { font-size: 17px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-cta { min-height: 44px; padding-inline: 12px; }
  .header-cta__label { display: none; }
  .hero-section { min-height: auto; }
  .hero-backdrop { min-height: auto; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "copy" "visual" "lower";
    height: auto;
    min-height: 0;
    gap: 15px;
    padding-block: 25px 21px;
  }
  .hero__copy { max-width: 100%; }
  .hero__title { max-width: 100%; font-size: clamp(34px, 9.2vw, 48px); line-height: .96; }
  .hero__body { max-width: 100%; margin-top: 14px; font-size: 13px; line-height: 1.45; }
  .hero__actions { margin-top: 17px; }
  .hero__visual-wrap { width: 100%; height: auto; }
  .hero__visual { width: min(100%, 560px); height: auto; margin-inline: auto; }
  .hero__frame { height: auto; aspect-ratio: 1.48; }
  .hero__illustration { height: 100%; }
  .hero__lower { width: 100%; max-width: 560px; margin-inline: auto; }
  .hero__secondary-card, .hero__location-card { min-height: 88px; height: 88px; }
  .hero__location-card { padding: 12px 11px; }
  .hero__location-copy { font-size: 9px; }
  .hero-service-strip, .hero-service-strip__inner { min-height: var(--hero-strip-height); }
  .hero-service-strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-service-strip__item:nth-child(-n + 3) { border-bottom: 1px solid #ECE7E7; }
  .hero-service-strip__item:nth-child(3), .hero-service-strip__item:nth-child(6) { border-right: 0; }
  .hero-service-strip__item { gap: 7px; padding: 9px 7px; }
  .hero-service-strip__icon { width: 32px; height: 32px; }
  .hero-service-strip__icon .icon { width: 16px; height: 16px; }
  .hero-service-strip__label { font-size: 9px; }
  .content-section > .shell,
  .services-section > .shell,
  .reputation-section > .shell,
  .location-section > .shell,
  .hours-section > .hours-layout { min-height: var(--section-panel-height); padding-block: 26px; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
  .section-copy { margin-top: 11px; font-size: 14px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
  .service-card { min-height: 126px; padding: 17px 16px; border-radius: 16px; }
  .service-card__icon { width: 46px; height: 46px; }
  .service-card__icon .icon { width: 23px; height: 23px; }
  .service-card__title { margin-top: 14px; font-size: 15px; }
  .reviews-summary { margin-top: 17px; }
  .reviews-track { overflow-x: auto; margin-top: 16px; padding-bottom: 7px; }
  .review-card { flex: 0 0 min(88vw, 360px); min-height: 170px; }
  .review-card__quote { font-size: 15px; }
  .reputation-cta { margin-top: 13px; }
  .location-panel { grid-template-columns: 1fr; margin-top: 19px; }
  .location-map, .location-map svg { min-height: 250px; }
  .location-details { padding: 28px 24px 31px; }
  .location-details__address { font-size: 23px; }
  .location-details__hint { font-size: 14px; }
  .hours-layout { grid-template-columns: 1fr; gap: 20px; align-content: center; }
  .hours-visual { height: clamp(170px, 28svh, 260px); }
  .hours-table { margin-top: 16px; padding-inline: 18px; }
  .hours-row { min-height: 54px; }
  .hours-row__days { font-size: 14px; }
  .hours-row__time { font-size: 17px; }
  .contact-section { padding: 0; }
  .contact-panel { width: min(calc(100% - 36px), var(--content-max)); grid-template-columns: 1fr; min-height: 0; padding: 31px 24px 34px; }
  .contact-copy .section-title { font-size: clamp(32px, 9vw, 45px); }
  .contact-details { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .contact-detail { min-height: 58px; font-size: 13px; }
  .contact-detail--address { grid-column: auto; }
  .contact-cta { justify-self: start; margin-top: 20px; }
}

@media (max-width: 780px) and (orientation: landscape) and (max-height: 600px) {
  :root { --header-height: 68px; --hero-strip-height: 78px; }
  .site-header, .header-inner { min-height: var(--header-height); }
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    grid-template-areas: "copy visual" "lower visual";
    height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height));
    min-height: 0;
    gap: 10px 18px;
    padding-block: 13px 9px;
  }
  .hero__title { font-size: clamp(27px, 5vw, 40px); }
  .hero__body { margin-top: 8px; font-size: 10px; line-height: 1.35; }
  .hero__actions { margin-top: 9px; gap: 5px; }
  .hero__actions .button { min-height: 38px; padding-inline: 8px; font-size: 9px; }
  .hero__visual-wrap { height: 100%; }
  .hero__visual { height: 100%; width: 100%; }
  .hero__frame { height: 100%; }
  .hero__lower { gap: 7px; }
  .hero__secondary-card, .hero__location-card { min-height: 60px; height: 60px; }
  .hero__location-card { padding: 7px; }
  .hero__location-copy { font-size: 7px; }
  .hero-service-strip__item { padding: 5px 4px; }
  .hero-service-strip__icon { width: 26px; height: 26px; }
  .hero-service-strip__label { font-size: 8px; }
}

@media (max-width: 360px) and (max-height: 700px) {
  .hero { gap: 8px; padding-block: 15px 11px; }
  .hero__title { font-size: 28px; line-height: .93; }
  .hero__body { margin-top: 7px; font-size: 10px; line-height: 1.3; }
  .hero__actions { margin-top: 8px; gap: 4px; }
  .hero__actions .button { min-height: 35px; padding-inline: 6px; font-size: 8px; gap: 4px; }
  .hero__actions .icon { width: 13px; height: 13px; }
  .hero__visual { width: 180px; }
  .hero__frame { aspect-ratio: 1.5; }
  .hero__secondary-card, .hero__location-card { min-height: 62px; height: 62px; }
  .hero__location-copy { font-size: 7px; }
  .hero-service-strip, .hero-service-strip__inner { min-height: 82px; }
  .hero-service-strip__item { padding: 5px 3px; }
  .hero-service-strip__icon { width: 25px; height: 25px; }
  .hero-service-strip__label { font-size: 7px; }
  .content-section > .shell,
  .services-section > .shell,
  .reputation-section > .shell,
  .location-section > .shell,
  .hours-section > .hours-layout { padding-block: 19px; }
  .section-title { font-size: 28px; }
  .section-copy { font-size: 12px; line-height: 1.35; }
  .services-grid { gap: 8px; margin-top: 14px; }
  .service-card { min-height: 82px; padding: 10px; }
  .service-card__icon { width: 32px; height: 32px; border-radius: 10px; }
  .service-card__icon .icon { width: 16px; height: 16px; }
  .service-card__title { margin-top: 9px; font-size: 12px; }
  .reviews-summary { margin-top: 12px; padding: 9px 12px; }
  .reviews-track { margin-top: 9px; }
  .review-card { min-height: 132px; padding: 14px; }
  .review-card__quote { font-size: 13px; line-height: 1.3; }
  .location-panel { margin-top: 12px; }
  .location-map, .location-map svg { min-height: 180px; }
  .location-details { padding: 18px; }
  .location-details__address { font-size: 18px; }
  .hours-layout { gap: 12px; }
  .hours-visual { height: 135px; }
  .hours-table { margin-top: 10px; padding-block: 2px; }
  .hours-row { min-height: 42px; }
  .hours-row__days { font-size: 11px; }
  .hours-row__time { font-size: 13px; }
  .contact-panel { padding: 22px 18px 24px; }
  .contact-copy .section-title { font-size: 31px; }
  .contact-detail { min-height: 47px; padding: 8px 10px; font-size: 11px; }
  .contact-cta { margin-top: 14px; min-height: 40px; font-size: 10px; }
}

/* Ajustes finales de encuadre para las dimensiones críticas de QA. */
@media (min-width: 361px) and (max-width: 520px) and (orientation: portrait) {
  .hero-service-strip__inner { min-height: 135px; }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 600px) and (max-width: 900px) {
  .hero__actions { margin-top: 5px; }
}

@media (orientation: landscape) and (max-height: 760px) and (min-width: 781px) {
  .section-copy { margin-top: 8px; line-height: 1.45; }
  .services-grid { margin-top: clamp(14px, 2.8svh, 22px); gap: clamp(8px, 1.4svh, 12px); }
  .service-card { min-height: clamp(112px, 20svh, 136px); padding: clamp(14px, 2.5svh, 20px) clamp(16px, 1.6vw, 21px); }
  .service-card__icon { width: 42px; height: 42px; }
  .service-card__title { margin-top: clamp(14px, 2svh, 20px); font-size: 16px; }
  .reviews-summary { margin-top: clamp(12px, 2.2svh, 18px); padding: 10px 15px; }
  .reviews-track { margin-top: clamp(10px, 2svh, 14px); }
  .reputation-section .review-card { min-height: 132px; padding: 17px 20px; }
  .review-card__quote { font-size: 15px; line-height: 1.35; }
  .reputation-cta { margin-top: clamp(6px, 1.5svh, 10px); min-height: 44px; }
  .location-panel { margin-top: clamp(12px, 2.2svh, 18px); align-items: start; }
  .location-map { height: clamp(220px, 42svh, 270px); min-height: 0; }
  .location-map svg { height: 100%; min-height: 0; }
  .location-details { padding: clamp(18px, 3svh, 28px) clamp(22px, 2.8vw, 34px); }
  .location-details .eyebrow { margin-bottom: 8px; }
  .location-details__address { font-size: clamp(18px, 2vw, 23px); line-height: 1.2; }
  .location-details__hint { margin-top: 10px; line-height: 1.4; }
  .location-details__button { margin-top: 13px; min-height: 44px; }
  .hours-layout { gap: clamp(24px, 5vw, 60px); }
  .hours-table { padding-block: 4px; }
  .hours-row { min-height: 52px; }
  .contact-panel {
    min-height: clamp(280px, 60svh, 360px);
    padding: clamp(24px, 4svh, 34px) clamp(28px, 3vw, 40px);
  }
}

@media (max-width: 600px) {
  .brand, .nav-toggle, .nav-link, .header-cta, .hero__actions .button,
  .location-details__button, .contact-detail, .contact-cta, .footer-brand,
  .footer-link, .footer-credit__link, .reputation-cta { min-height: 44px; display: inline-flex; align-items: center; }
  .nav-toggle { min-width: 44px; justify-content: center; }
}

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

/* Composición aprobada: blanco, rojo, negro y grises neutros. */
html, body {
  background: #F7F7F5;
  scrollbar-width: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; }
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #ECE7E7;
  box-shadow: 0 2px 12px rgba(36, 34, 34, .04);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.brand { color: #242222; }
.brand__name { color: #242222; }
.brand__descriptor { color: #777071; }
.nav-link { color: #6F696A; }
.nav-link::after { background: #C8102E; }
.nav-link:hover, .nav-link[aria-current="location"] { color: #C8102E; }
.header-cta { border-radius: 8px; background: #C8102E; box-shadow: none; }
.header-cta:hover { background: #A80D27; box-shadow: none; }
.nav-toggle { border-color: #E5DDDE; color: #242222; }

.hero-section { background: #FFFFFF; }
.hero-backdrop { overflow: visible; background: #FFFFFF; }
.hero-backdrop::before, .hero-backdrop::after { display: none; }
.hero {
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  grid-template-rows: auto auto;
  grid-template-areas: "copy visual" "lower visual";
  min-height: clamp(420px, calc(var(--visual-viewport-height) - var(--header-offset) - 112px), 760px);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding-block: clamp(28px, 5vh, 60px);
}
.hero__copy { grid-area: copy; max-width: 630px; }
.eyebrow--hero {
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #C8102E;
  letter-spacing: .16em;
}
.eyebrow--hero::before {
  width: 34px;
  height: 2px;
  border-radius: 0;
  background: #C8102E;
  box-shadow: none;
}
.hero__title {
  max-width: 650px;
  color: #242222;
  font-size: clamp(39px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -.065em;
}
.hero__title-accent { color: #C8102E; }
.hero__body { max-width: 470px; color: #6F696A; font-size: clamp(14px, 1.15vw, 17px); line-height: 1.65; }
.hero__meta { color: #6F696A; }
.hero__meta .icon { color: #C8102E; }
.hero__meta-separator { color: #B8AFB0; }
.hero__actions { margin-top: 26px; }
.button--primary { border-color: #C8102E; background: #C8102E; color: #FFFFFF; box-shadow: none; }
.button--primary:hover { background: #A80D27; box-shadow: none; }
.button--outline-light { border-color: #C8102E; background: #FFFFFF; color: #C8102E; }
.button--outline-light:hover { border-color: #A80D27; background: #FFF1F1; color: #A80D27; }
.hero__visual-wrap { grid-area: visual; align-self: stretch; min-height: 0; }
.hero__visual { width: min(100%, 690px); }
.hero__frame {
  border: 0;
  border-radius: 22px;
  background: #F0EEEC;
  box-shadow: 0 16px 34px rgba(36, 34, 34, .10);
  transform: none;
}
.hero__frame::after { display: none; }
.hero__illustration { aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.hero__lower {
  grid-area: lower;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(170px, .92fr);
  align-self: start;
  gap: 12px;
  width: 100%;
  max-width: 630px;
}
.hero__secondary-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #E5DDDE;
  border-radius: 15px;
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(36, 34, 34, .06);
}
.hero__secondary-image { width: 100%; height: 112px; object-fit: cover; object-position: center 48%; }
.hero__location-card {
  display: flex;
  min-height: 112px;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 15px;
  border: 1px solid #F1D5D8;
  border-radius: 15px;
  background: #FFF7F7;
  color: #484445;
}
.hero__location-card > .icon { width: 20px; height: 20px; margin-top: 1px; color: #C8102E; }
.hero__location-copy { white-space: pre-line; font-size: 11px; font-weight: 700; line-height: 1.5; }
.hero-service-strip { border-top: 1px solid #ECE7E7; background: #FFFFFF; }
.hero-service-strip__inner { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); min-height: 112px; }
.hero-service-strip__item { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 10px; padding: 14px 12px; border-right: 1px solid #ECE7E7; color: #3F3A3B; }
.hero-service-strip__item:last-child { border-right: 0; }
.hero-service-strip__icon { display: grid; width: 37px; height: 37px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #FFF1F1; color: #C8102E; }
.hero-service-strip__icon .icon { width: 18px; height: 18px; }
.hero-service-strip__label { max-width: 120px; color: #484445; font-size: 10px; font-weight: 800; line-height: 1.25; text-align: left; }

.page-main > [data-section]:not(#inicio) { min-height: var(--section-panel-height); }
.content-section, .services-section, .reputation-section, .location-section, .hours-section {
  min-height: var(--section-panel-height);
  padding: 0;
  background: #F7F7F5;
}
.content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell {
  min-height: var(--section-panel-height);
  padding-block: var(--section-inset);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-intro { max-width: 760px; }
.section-title { color: #242222; }
.section-copy { color: #6F696A; }
.services-grid { margin-top: clamp(18px, 3vh, 30px); }
.service-card { border-color: #E5DDDE; background: #FFFFFF; box-shadow: 0 8px 25px rgba(36, 34, 34, .045); }
.service-card::after { border-color: #F5DDE0; }
.service-card:hover { border-color: #E9AEB7; box-shadow: 0 16px 34px rgba(36, 34, 34, .09); }
.service-card__icon { background: #FFF1F1; color: #C8102E; }
.service-card__title { color: #242222; }
.reputation-section { background: #F3F2F0; }
.reviews-summary { border-color: #E5DDDE; box-shadow: 0 8px 22px rgba(36, 34, 34, .05); }
.reviews-summary__score { color: #242222; }
.reviews-summary__label, .review-card__source { color: #6F696A; }
.review-stars { color: #C8102E; }
.review-card { border-color: #E5DDDE; box-shadow: 0 12px 28px rgba(36, 34, 34, .06); }
.review-card__author, .review-card__quote { color: #242222; }
.review-card__quote { color: #484445; }
.location-panel { border-color: #E5DDDE; box-shadow: 0 16px 36px rgba(36, 34, 34, .07); }
.location-map { background: #E9E7E5; }
.location-map:focus-visible { outline-color: #C8102E; }
.location-map__coordinates { border-color: rgba(80, 73, 74, .16); color: #484445; }
.location-details__address, .hours-row__time { color: #242222; }
.hours-section { background: #F7F7F5; }
.hours-layout { min-height: var(--section-panel-height); align-content: center; }
.hours-table { border-color: #E5DDDE; box-shadow: 0 12px 33px rgba(36, 34, 34, .05); }
.hours-row { border-color: #E5DDDE; }
.hours-row--heading .hours-row__days, .hours-row--heading .hours-row__time { color: #C8102E; }

.contact-section { min-height: var(--section-panel-height); background: #F3F2F0; }
.contact-panel {
  min-height: clamp(280px, 60svh, 360px);
  border: 1px solid #E5DDDE;
  border-top: 4px solid #C8102E;
  border-radius: 18px;
  background: #FFFFFF;
  color: #242222;
  box-shadow: 0 16px 36px rgba(36, 34, 34, .07);
}
.contact-panel::after { border-color: rgba(200, 16, 46, .12); }
.contact-detail { color: #6F696A; }
.contact-detail:hover { color: #C8102E; }
.contact-detail .icon { color: #C8102E; }
.section-intro--light .eyebrow { color: #C8102E; }
.section-intro--light .section-title { color: #242222; }
.section-intro--light .section-copy { color: #6F696A; }
.contact-cta { background: #C8102E; color: #FFFFFF; box-shadow: none; }
.contact-cta:hover { background: #A80D27; }

.site-footer { border-top: 1px solid #ECE7E7; background: #FFFFFF; color: #6F696A; }
.footer-brand { color: #242222; }
.footer-info { color: #6F696A; }
.footer-link, .footer-credit__link { color: #C8102E; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: minmax(0, .92fr) minmax(300px, 1.08fr); gap: 28px; }
  .hero__title { font-size: clamp(40px, 6vw, 68px); }
  .hero__location-copy { font-size: 10px; }
}

@media (max-width: 780px) {
  .site-navigation { border-color: #E5DDDE; background: rgba(255, 255, 255, .99); box-shadow: 0 15px 24px rgba(36, 34, 34, .10); }
  .nav-link:hover, .nav-link[aria-current="location"] { background: #FFF1F1; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "copy" "visual" "lower";
    min-height: auto;
    align-content: start;
    gap: 20px;
    padding-block: 34px 30px;
  }
  .hero__copy { max-width: 700px; }
  .hero__visual-wrap { margin-top: 0; }
  .hero__visual { width: min(100%, 620px); margin-inline: auto; }
  .hero__lower { width: min(100%, 620px); margin-inline: auto; }
  .hero-service-strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 128px; }
  .hero-service-strip__item:nth-child(-n + 3) { border-bottom: 1px solid #ECE7E7; }
  .hero-service-strip__item:nth-child(3) { border-right: 0; }
  .hero-service-strip__item:nth-child(6) { border-right: 0; }
  .content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell { min-height: var(--section-panel-height); }
  .hours-layout { min-height: var(--section-panel-height); align-content: center; }
  .contact-panel { align-self: center; width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max)); }
}

@media (max-width: 520px) {
  .hero { gap: 16px; padding-block: 27px 24px; }
  .hero__title { font-size: clamp(38px, 11.5vw, 58px); }
  .hero__body { max-width: 390px; }
  .hero__actions { gap: 8px; margin-top: 21px; }
  .hero__actions .button { padding-inline: 14px; }
  .hero__lower { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero__secondary-image, .hero__location-card { min-height: 92px; height: 92px; }
  .hero__location-card { padding: 12px 10px; gap: 6px; }
  .hero__location-card > .icon { width: 17px; height: 17px; }
  .hero__location-copy { font-size: 9px; line-height: 1.35; }
  .hero-service-strip__inner { min-height: 112px; }
  .hero-service-strip__item { gap: 6px; padding: 10px 6px; }
  .hero-service-strip__icon { width: 30px; height: 30px; }
  .hero-service-strip__icon .icon { width: 15px; height: 15px; }
  .hero-service-strip__label { font-size: 9px; }
  .contact-panel { width: min(calc(100% - 36px), var(--content-max)); }
}

@media (orientation: landscape) and (max-height: 600px) {
  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr);
    grid-template-rows: auto auto;
    min-height: calc(var(--visual-viewport-height) - var(--header-offset) - 104px);
    gap: 15px 24px;
    padding-block: 18px;
  }
  .hero__title { font-size: clamp(30px, 4.4vw, 48px); }
  .hero__body { margin-top: 12px; font-size: 12px; line-height: 1.4; }
  .hero__meta { margin-top: 10px; font-size: 10px; }
  .hero__actions { margin-top: 15px; }
  .hero__actions .button { min-height: 42px; }
  .hero__lower { gap: 8px; }
  .hero__secondary-image, .hero__location-card { min-height: 74px; height: 74px; }
  .hero__location-card { padding: 8px 9px; }
  .hero__location-copy { font-size: 8px; }
  .hero-service-strip__inner { min-height: 82px; }
  .hero-service-strip__item { padding-block: 8px; }
}

@media (min-width: 781px) and (max-height: 700px) {
  .hero {
    grid-template-columns: minmax(0, .92fr) minmax(340px, 500px);
    gap: 22px 30px;
    padding-block: 18px;
  }
  .hero__visual { width: min(100%, 500px); }
  .hero__secondary-image, .hero__location-card { min-height: 92px; height: 92px; }
  .hero__location-card { padding: 12px; }
  .hero__location-copy { font-size: 10px; }
  .hero-service-strip__inner { min-height: 88px; }
  .hero-service-strip__item { padding-block: 10px; }
  .hours-table {
    display: block;
    min-height: 0;
    padding-block: 9px;
  }
  .hours-row:not(.hours-row--heading) { min-height: 66px; flex: none; }
}

@media (max-width: 520px) {
  .hero {
    gap: 10px;
    padding-block: 18px 14px;
  }
  .hero__title { font-size: clamp(34px, 9.5vw, 42px); line-height: .92; }
  .hero__body { margin-top: 10px; font-size: 12px; line-height: 1.4; }
  .hero__meta { margin-top: 9px; font-size: 10px; line-height: 1.35; }
  .hero__actions { flex-wrap: nowrap; gap: 6px; margin-top: 14px; }
  .hero__actions .button { min-width: 0; min-height: 42px; padding-inline: 10px; font-size: 10px; gap: 6px; }
  .hero__actions .icon { width: 15px; height: 15px; }
  .hero__illustration { height: 190px; aspect-ratio: auto; object-fit: cover; object-position: center; }
  .hero__secondary-image, .hero__location-card { min-height: 72px; height: 72px; }
  .hero__location-card { padding: 10px 9px; }
  .hero__location-copy { font-size: 8px; }
  .hero-service-strip__inner { min-height: 135px; }
  .hero-service-strip__item { padding-block: 8px; }
  .location-map, .location-map svg { min-height: 220px; }
  .location-details { padding: 20px 18px 22px; }
  .service-card { min-height: 122px; padding: 15px 15px 14px; }
  .service-card__icon { width: 38px; height: 38px; }
  .service-card__icon .icon { width: 19px; height: 19px; }
  .service-card__title { margin-top: 12px; font-size: 13px; }
}

@media (max-width: 360px) and (max-height: 700px) {
  .hero { gap: 8px; padding-block: 14px 10px; }
  .hero__title { font-size: 30px; line-height: .9; }
  .hero__body { margin-top: 7px; font-size: 10px; line-height: 1.3; }
  .hero__meta { margin-top: 6px; font-size: 9px; }
  .hero__actions { margin-top: 9px; gap: 4px; }
  .hero__actions .button { min-height: 38px; padding-inline: 7px; font-size: 9px; gap: 4px; }
  .hero__illustration { height: 142px; }
  .hero__secondary-image, .hero__location-card { min-height: 64px; height: 64px; }
  .hero__location-card { padding: 7px; }
  .hero__location-copy { font-size: 7px; }
  .hero-service-strip__inner { min-height: 82px; }
  .hero-service-strip__item { padding: 6px 4px; }
  .hero-service-strip__label { font-size: 8px; }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 600px) and (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas: "copy visual" "lower lower";
    min-height: auto;
    gap: 10px 18px;
    padding-block: 16px 12px;
  }
  .hero__title { font-size: clamp(30px, 5vw, 38px); line-height: .92; }
  .hero__body { margin-top: 9px; font-size: 11px; line-height: 1.35; }
  .hero__meta { margin-top: 7px; font-size: 9px; }
  .hero__actions { flex-wrap: nowrap; gap: 5px; margin-top: 5px; }
  .hero__actions .button { min-height: 38px; padding-inline: 7px; font-size: 9px; gap: 4px; }
  .hero__visual-wrap { align-self: start; }
  .hero__visual { width: 100%; }
  .hero__illustration { height: 210px; aspect-ratio: auto; object-fit: cover; }
  .hero__lower { grid-template-columns: 1fr 1fr; max-width: none; gap: 8px; }
  .hero__secondary-image, .hero__location-card { min-height: 66px; height: 66px; }
  .hero__location-card { padding: 7px; }
  .hero__location-copy { font-size: 7px; }
  .hero-service-strip__inner { min-height: 82px; }
}

/* Capa final absoluta 1.0.18: prevalece sobre todo el CSS histórico. */
:root {
  --header-height: 58px;
  --header-offset: 58px;
  --hero-strip-height: 82px;
  --section-panel-height: calc(100svh - var(--header-height) + 2px);
}
.site-header, .header-inner { min-height: var(--header-height); }
.brand-logo { width: 45px; height: 42px; object-fit: cover; object-position: 23% 28%; border-radius: 4px; }
.brand__name { color: #C8102E; font-size: clamp(9px, .72vw, 12px); font-weight: 900; letter-spacing: .08em; }
.brand__descriptor { color: #C8102E; font-size: clamp(18px, 1.55vw, 25px); font-weight: 950; letter-spacing: -.055em; line-height: .9; }
.nav-link { min-height: 40px; font-size: clamp(11px, .82vw, 13px); }
.header-cta { min-height: 36px; padding-inline: clamp(14px, 1.6vw, 23px); border-radius: 8px; font-size: clamp(11px, .88vw, 13px); }

.hero-section, .hero-backdrop { background: #FFFFFF; }
.hero { display: block; height: max(430px, calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height))); min-height: 430px; padding: 46px 0 0; }
.hero__visual-wrap { position: absolute; z-index: 0; inset: 0 0 0 28%; display: block; min-height: 0; }
.hero__visual-wrap::after { position: absolute; z-index: 1; inset: 0; content: ""; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.97) 20%, rgba(255,255,255,.72) 40%, rgba(255,255,255,.18) 64%, rgba(255,255,255,0) 83%); }
.hero__visual, .hero__frame, .hero__illustration { width: 100%; height: 100%; }
.hero__visual { max-width: none; }
.hero__frame { border: 0; border-radius: 0; box-shadow: none; transform: none; }
.hero__frame::after { display: none; }
.hero__illustration { aspect-ratio: auto; object-fit: cover; object-position: center center; }
.hero__copy { position: relative; z-index: 2; width: min(50%, 520px); max-width: 520px; }
.eyebrow--hero { gap: 10px; padding: 0; border: 0; border-radius: 0; background: transparent; color: #C8102E; letter-spacing: .17em; }
.eyebrow--hero::before { width: 38px; height: 2px; border-radius: 0; background: #C8102E; box-shadow: none; }
.hero__title { max-width: 470px; color: #242222; font-size: clamp(44px, 4.45vw, 66px); line-height: .92; letter-spacing: -.065em; }
.hero__title-accent { color: #C8102E; }
.hero__body { max-width: 430px; margin-top: 18px; color: #484445; font-size: clamp(13px, 1.02vw, 16px); line-height: 1.42; }
.hero__meta { display: none; }
.hero__actions { gap: 12px; margin-top: 19px; }
.hero__actions .button { min-height: 40px; padding-inline: 17px; border-radius: 8px; font-size: 12px; }
.hero__lower { position: absolute; z-index: 4; left: 0; bottom: -39px; display: grid; grid-template-columns: minmax(0, 1.34fr) minmax(150px, .76fr); align-items: end; width: min(500px, 47%); max-width: 500px; gap: 10px; }
.hero__secondary-card { height: 140px; margin: 0; border: 1px solid #E5DDDE; border-radius: 16px; background: #FFFFFF; box-shadow: 0 8px 20px rgba(36,34,34,.10); }
.hero__secondary-image { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero__location-card { min-height: 100px; height: 100px; padding: 14px 12px; border: 1px solid #F1D5D8; border-radius: 14px; background: #FFF7F7; }
.hero__location-card > .icon { width: 19px; height: 19px; color: #C8102E; }
.hero__location-copy { font-size: 10px; line-height: 1.42; }
.hero-service-strip { position: relative; z-index: 1; min-height: var(--hero-strip-height); border-top: 1px solid #ECE7E7; background: #FFFFFF; }
.hero-service-strip__inner { min-height: var(--hero-strip-height); }
.hero-service-strip__item { gap: 8px; padding: 10px 8px; }
.hero-service-strip__icon { width: 38px; height: 38px; background: #FFF1F1; color: #C8102E; }
.hero-service-strip__label { color: #3F3A3B; font-size: 10px; }

.page-main > [data-section]:not(#inicio), .content-section, .services-section, .reputation-section, .location-section, .hours-section, .contact-section { min-height: var(--section-panel-height); padding: 0; }
.content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell, .hours-section > .hours-layout { min-height: var(--section-panel-height); padding-block: clamp(30px, 5vh, 54px); justify-content: center; }
.section-title { max-width: 820px; color: #242222; font-size: clamp(34px, 3.25vw, 50px); line-height: .98; }
.section-copy { max-width: 700px; margin-top: 12px; color: #6F696A; font-size: clamp(14px, 1.02vw, 17px); line-height: 1.42; }
.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin-top: 22px; }
.service-card { min-height: 126px; padding: 18px 18px 16px; border-color: #E5DDDE; border-radius: 16px; background: #FFFFFF; box-shadow: 0 9px 23px rgba(36,34,34,.055); }
.service-card__icon { width: 46px; height: 46px; border-radius: 14px; background: #FFF1F1; color: #C8102E; }
.service-card__title { margin-top: 13px; color: #242222; font-size: clamp(15px, 1.15vw, 18px); }
.reputation-section { background: #F3F2F0; }
.reviews-summary { margin-top: 17px; padding: 12px 17px; border-color: #E5DDDE; background: #FFFFFF; }
.reviews-track, .reputation-section .reviews-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; margin-top: 16px; padding: 0 1px 3px; overflow: visible; }
.review-card, .reputation-section .review-card { display: flex; width: auto; min-height: 174px; padding: 17px; gap: 9px; border-color: #E5DDDE; border-radius: 16px; background: #FFFFFF; box-shadow: 0 10px 24px rgba(36,34,34,.055); }
.review-card__author { color: #242222; font-size: 14px; }
.review-card__stars { color: #C8102E; font-size: 13px; }
.review-card__quote { color: #484445; font-size: 14px; line-height: 1.34; }
.review-card__date, .review-card__source { color: #6F696A; font-size: 10px; }
.reputation-cta { min-height: 43px; margin-top: 14px; }
.location-panel { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); margin-top: 20px; border-color: #E5DDDE; border-radius: 20px; }
.location-map, .location-map svg { min-height: 330px; }
.location-details { padding: clamp(27px, 3.5vw, 50px); }
.location-details__address { max-width: 410px; color: #242222; font-size: clamp(20px, 2vw, 29px); line-height: 1.18; }
.location-details__hint { margin-top: 14px; color: #6F696A; font-size: 14px; }
.location-details__button { min-height: 45px; margin-top: 18px; }
.hours-section { background: #F7F7F5; }
.hours-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.hours-visual { width: 100%; height: min(330px, 47svh); margin: 0; overflow: hidden; border: 1px solid #E5DDDE; border-radius: 18px; background: #FFFFFF; }
.hours-visual__image { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hours-table { margin-top: 19px; padding: 5px 20px; border-color: #E5DDDE; border-radius: 16px; background: #FFFFFF; }
.hours-row { min-height: 54px; border-color: #E5DDDE; }
.hours-row__days { color: #6F696A; font-size: 14px; }
.hours-row__time { color: #242222; font-size: 17px; }
.contact-section { display: flex; flex-direction: column; justify-content: center; background: #F3F2F0; }
.contact-section .contact-panel { align-self: center; width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max)); min-height: 360px; padding: clamp(30px, 4vw, 52px); border: 1px solid #E5DDDE; border-top: 4px solid #C8102E; border-radius: 18px; background: #FFFFFF; color: #242222; }
.contact-copy .section-title { font-size: clamp(36px, 3.7vw, 54px); }
.contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 20px; }
.contact-detail { min-height: 58px; align-items: center; padding: 11px 13px; border: 1px solid #F1D5D8; border-radius: 13px; background: #FFF7F7; color: #6F696A; font-size: 13px; }
.contact-detail .icon { width: 21px; height: 21px; color: #C8102E; }
.contact-detail--address { grid-column: 1 / -1; align-items: flex-start; }
.contact-cta { justify-self: end; min-height: 49px; background: #C8102E; color: #FFFFFF; }
.site-footer { border-top: 1px solid #ECE7E7; background: #FFFFFF; }
.footer-link, .footer-credit__link { color: #C8102E; }

@media (min-width: 781px) and (max-height: 700px) {
  .hero { height: max(430px, calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height))); min-height: 430px; padding-top: 43px; }
  .hero__title { max-width: 470px; font-size: clamp(43px, 4.35vw, 60px); }
  .hero__body { max-width: 410px; margin-top: 15px; font-size: 13px; }
  .hero__actions { margin-top: 16px; }
  .hero__lower { bottom: -39px; width: min(500px, 47%); }
  .hero__secondary-card { height: 140px; }
  .hero__location-card { height: 100px; }
  .hero-service-strip__inner { min-height: 82px; }
  .service-card { min-height: 116px; padding: 15px; }
  .review-card, .reputation-section .review-card { min-height: 158px; padding: 14px; }
  .review-card__quote { font-size: 13px; }
  .location-panel { margin-top: 15px; }
  .location-map, .location-map svg { min-height: 285px; }
  .hours-visual { height: 285px; }
  .hours-row { min-height: 46px; }
  .contact-section .contact-panel { min-height: 330px; }
}

@media (max-width: 780px) {
  :root { --header-height: 62px; --header-offset: 62px; --hero-strip-height: 112px; --section-panel-height: calc(100svh - var(--header-height) + 2px); }
  .site-header, .header-inner { min-height: var(--header-height); }
  .brand-logo { width: 40px; height: 38px; }
  .brand__name { font-size: 8px; }
  .brand__descriptor { font-size: 18px; }
  .header-cta { min-width: 44px; padding-inline: 11px; }
  .header-cta__label { display: none; }
  .hero { display: grid; grid-template-columns: 1fr; grid-template-rows: auto auto auto; grid-template-areas: "copy" "visual" "lower"; height: auto; min-height: 0; gap: 16px; padding-block: 25px 18px; }
  .hero__visual-wrap { position: relative; inset: auto; grid-area: visual; width: 100%; height: 220px; }
  .hero__visual-wrap::after { display: none; }
  .hero__copy { width: 100%; max-width: 680px; }
  .hero__title { max-width: 560px; font-size: clamp(37px, 9.5vw, 56px); }
  .hero__body { max-width: 510px; margin-top: 13px; font-size: 13px; }
  .hero__visual, .hero__frame, .hero__illustration { height: 100%; }
  .hero__frame { border-radius: 16px; }
  .hero__lower { position: relative; left: auto; bottom: auto; width: 100%; max-width: 620px; }
  .hero__secondary-card { height: 94px; }
  .hero__location-card { height: 94px; min-height: 94px; }
  .hero-service-strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: var(--hero-strip-height); }
  .content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell, .hours-section > .hours-layout { min-height: var(--section-panel-height); padding-block: 28px; }
  .section-title { font-size: clamp(28px, 7vw, 40px); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 18px; }
  .service-card { min-height: 106px; padding: 14px; }
  .service-card__icon { width: 38px; height: 38px; }
  .service-card__title { margin-top: 10px; font-size: 14px; }
  .reviews-track, .reputation-section .reviews-track { display: flex; gap: 10px; overflow-x: auto; }
  .review-card, .reputation-section .review-card { flex: 0 0 min(86vw, 330px); min-height: 174px; }
  .location-panel { grid-template-columns: 1fr; }
  .location-map, .location-map svg { min-height: 225px; }
  .hours-layout { grid-template-columns: 1fr; gap: 21px; align-content: center; }
  .hours-visual { height: 215px; }
  .contact-section .contact-panel { width: min(calc(100% - 36px), var(--content-max)); min-height: 360px; padding: 26px 22px; }
  .contact-panel { display: block; }
  .contact-details { grid-template-columns: 1fr; gap: 9px; margin-top: 16px; }
  .contact-detail--address { grid-column: auto; }
  .contact-cta { display: inline-flex; margin-top: 16px; }
}
@media (max-width: 520px) {
  .hero { gap: 12px; padding-block: 19px 15px; }
  .hero__title { font-size: clamp(33px, 9.6vw, 43px); }
  .hero__body { font-size: 12px; }
  .hero__actions { flex-wrap: nowrap; gap: 6px; }
  .hero__actions .button { min-width: 0; padding-inline: 10px; font-size: 10px; }
  .hero__visual-wrap { height: 185px; }
  .hero__secondary-card, .hero__location-card { height: 78px; min-height: 78px; }
  .hero__location-copy { font-size: 8px; }
  .hero-service-strip__inner { min-height: 112px; }
  .hero-service-strip__item { gap: 5px; padding: 7px 4px; }
  .hero-service-strip__icon { width: 28px; height: 28px; }
  .hero-service-strip__label { font-size: 8px; }
  .content-section > .shell, .services-section > .shell, .reputation-section > .shell, .location-section > .shell, .hours-section > .hours-layout { padding-block: 23px; }
  .section-title { font-size: clamp(26px, 7.2vw, 34px); }
  .services-grid { margin-top: 13px; gap: 8px; }
  .service-card { min-height: 91px; padding: 11px; }
  .service-card__icon { width: 32px; height: 32px; }
  .service-card__title { margin-top: 7px; font-size: 12px; }
  .review-card, .reputation-section .review-card { flex-basis: min(86vw, 310px); min-height: 165px; padding: 14px; }
  .location-map, .location-map svg { min-height: 190px; }
  .hours-visual { height: 175px; }
  .hours-row { min-height: 43px; }
  .contact-section .contact-panel { min-height: 330px; padding: 21px 17px; }
}
@media (max-width: 360px) and (max-height: 700px) {
  .hero__title { font-size: 30px; }
  .hero__visual-wrap { height: 145px; }
  .hero__secondary-card, .hero__location-card { height: 64px; min-height: 64px; }
  .hero-service-strip__inner { min-height: 92px; }
}

/* Ajuste visible de encuadre: el texto completo debe convivir con la composición. */
@media (min-width: 781px) {
  .hero__title { max-width: 520px; font-size: clamp(40px, 3.5vw, 48px); line-height: .94; }
  .hero__copy { width: min(52%, 540px); }
}
.hero__visual-wrap::after { background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.98) 12%, rgba(255,255,255,.78) 23%, rgba(255,255,255,.34) 36%, rgba(255,255,255,.06) 49%, rgba(255,255,255,0) 60%); }
.hours-section > .hours-layout { display: grid; }
@media (min-width: 781px) {
  .hero__copy { transform: translateY(-16px); }
  .hero__title { line-height: .86; }
  .hero__body { margin-top: 12px; }
  .hero__actions { margin-top: 13px; }
}

/* En horizontal angosto se conserva la composición de dos columnas dentro
   del ancho real de la caja, sin extender la imagen fuera del documento. */
:root { scroll-behavior: auto; scroll-padding-top: 0; }

/* Ajustes finales responsive: la primera pantalla conserva su altura útil y
   la tableta mantiene las tres opiniones en un solo renglón. */
@media (orientation: portrait) and (max-width: 780px) {
  .hero-section { min-height: calc(var(--visual-viewport-height) - var(--header-offset)); }
  .hero-backdrop { min-height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); }
  .hero { min-height: calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)); }
}
@media (min-width: 600px) and (max-width: 780px) and (orientation: portrait) {
  .reputation-section .reviews-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-inline: 1px;
  }
  .reputation-section .review-card {
    width: auto;
    min-width: 0;
    min-height: 164px;
    padding: 13px;
  }
  .reputation-section .review-card__author { font-size: 13px; }
  .reputation-section .review-card__stars { font-size: 12px; }
  .reputation-section .review-card__quote { font-size: 12px; line-height: 1.32; }
  .reputation-section .review-card__date,
  .reputation-section .review-card__source { font-size: 9px; }
}
@media (max-width: 599px) {
  .reputation-section .reviews-track {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 1px;
  }
  .reputation-section .review-card {
    flex: 0 0 min(86vw, 310px);
    width: auto;
  }
}
@media (orientation: landscape) and (max-height: 600px) and (min-width: 600px) and (max-width: 900px) {
  :root { --header-height: 54px; --header-offset: 54px; --hero-strip-height: 82px; }
  .site-header, .header-inner { min-height: var(--header-height); }
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas: "copy visual" "lower lower";
    height: auto;
    min-height: 0;
    gap: 10px 18px;
    padding: 15px 0 12px;
  }
  .hero__visual-wrap {
    position: relative;
    inset: auto;
    grid-area: visual;
    width: 100%;
    height: 200px;
    overflow: hidden;
  }
  .hero__visual-wrap::after { display: none; }
  .hero__copy { width: 100%; transform: none; }
  .hero__title { max-width: 100%; font-size: clamp(30px, 5vw, 40px); line-height: .9; }
  .hero__body { margin-top: 8px; font-size: 11px; }
  .hero__actions { margin-top: 8px; }
  .hero__actions .button { min-height: 36px; padding-inline: 8px; font-size: 9px; }
  .hero__lower {
    position: relative;
    left: auto;
    bottom: auto;
    grid-area: lower;
    width: 100%;
    max-width: none;
  }
  .hero__secondary-card, .hero__location-card { height: 66px; min-height: 66px; }
  .hero-service-strip__inner { min-height: 82px; }
}

/* Restauración 1.0.20: el fondo del encabezado ocupa el viewport completo;
   la fotografía nítida conserva la composición de 1.0.18 y sólo se extiende
   hacia la derecha. La capa de continuidad es sutil y queda detrás del texto. */
@media (min-width: 781px) {
  .hero-backdrop {
    overflow: hidden;
    background: #F7F7F5;
  }
  .hero-backdrop::before {
    display: block;
    z-index: 0;
    inset: -16px 0;
    border: 0;
    border-radius: 0;
    background: url("./drcotera-hero-perro-gato-alimentos.png") center 48% / cover no-repeat;
    filter: blur(15px);
    opacity: .22;
    transform: scale(1.025);
  }
  .hero-backdrop::after {
    display: block;
    z-index: 1;
    inset: 0;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(247,247,245,.82) 0%, rgba(247,247,245,.73) 20%, rgba(247,247,245,.42) 40%, rgba(247,247,245,.12) 60%, rgba(247,247,245,0) 78%);
  }
  .hero__visual-wrap {
    right: calc((100% - 100vw) / 2);
    overflow: visible;
  }
  .hero__visual-wrap::before,
  .hero__visual-wrap::after {
    display: none;
  }
}

/* Restauración 1.0.21: la fotografía principal es un fondo continuo en
   todas las orientaciones. El velo central vuelve a integrar la zona de
   lectura con la fotografía nítida sin crear un panel borroso independiente. */
.hero-backdrop {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #F7F7F5;
}
.hero-backdrop::before {
  display: block;
  position: absolute;
  z-index: 0;
  inset: -22px;
  content: "";
  border: 0;
  border-radius: 0;
  background: url("./drcotera-hero-perro-gato-alimentos.png") center 48% / cover no-repeat;
  filter: blur(20px);
  opacity: .17;
  transform: scale(1.04);
  pointer-events: none;
}
.hero-backdrop::after {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(247,247,245,.76) 0%, rgba(247,247,245,.58) 22%, rgba(247,247,245,.28) 42%, rgba(247,247,245,.08) 56%, rgba(247,247,245,0) 73%);
  pointer-events: none;
}
.hero {
  position: relative;
  z-index: 2;
}
.hero__visual-wrap {
  position: absolute;
  z-index: 0;
  top: 0;
  right: calc((100% - 100vw) / 2);
  bottom: 0;
  left: 28%;
  display: block;
  min-height: 0;
  overflow: visible;
  background: url("./drcotera-hero-perro-gato-alimentos.png") center 48% / cover no-repeat;
}
.hero__visual-wrap::before {
  display: none;
}
.hero__visual-wrap::after {
  display: block;
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(247,247,245,.96) 0%, rgba(247,247,245,.86) 14%, rgba(247,247,245,.68) 30%, rgba(247,247,245,.38) 46%, rgba(247,247,245,.10) 58%, rgba(247,247,245,0) 72%);
  pointer-events: none;
}
.hero__visual,
.hero__frame,
.hero__illustration {
  opacity: 0;
  pointer-events: none;
}
.hero__copy {
  position: relative;
  z-index: 3;
}
.hero__lower {
  z-index: 4;
}

@media (max-width: 780px) {
  .hero {
    display: block;
    height: max(430px, calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)));
    min-height: 430px;
    padding-block: 25px 18px;
  }
  .hero__visual-wrap {
    top: 0;
    right: calc((100% - 100vw) / 2);
    bottom: 0;
    left: calc((100% - 100vw) / 2);
    width: auto;
    height: auto;
    margin: 0;
    background-position: 58% center;
  }
  .hero__visual-wrap::after {
    background: linear-gradient(180deg, rgba(247,247,245,.92) 0%, rgba(247,247,245,.78) 30%, rgba(247,247,245,.38) 61%, rgba(247,247,245,.08) 100%);
  }
  .hero__copy {
    width: 100%;
    max-width: 680px;
  }
  .hero__lower {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .hero {
    height: max(430px, calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)));
    min-height: 430px;
    padding-block: 19px 15px;
  }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 600px) and (max-width: 900px) {
  .hero {
    display: block;
    height: max(250px, calc(var(--visual-viewport-height) - var(--header-offset) - var(--hero-strip-height)));
    min-height: 250px;
    padding: 7px 0 4px;
  }
  .hero__visual-wrap {
    top: 0;
    right: calc((100% - 100vw) / 2);
    bottom: 0;
    left: calc((100% - 100vw) / 2);
    width: auto;
    height: auto;
    background-position: 58% center;
  }
  .hero__visual-wrap::after {
    background: linear-gradient(90deg, rgba(247,247,245,.88) 0%, rgba(247,247,245,.58) 34%, rgba(247,247,245,.12) 64%, rgba(247,247,245,0) 100%);
  }
  .hero__copy {
    width: 64%;
    max-width: 64%;
    transform: none;
  }
  .hero__title { max-width: 100%; font-size: clamp(19px, 4.2vh, 28px); line-height: .82; }
  .hero__body { max-width: 100%; margin-top: 3px; font-size: clamp(7px, 1.35vh, 9px); line-height: 1.16; }
  .hero__actions { gap: 4px; margin-top: 4px; }
  .hero__actions .button { min-height: 28px; padding-inline: 6px; font-size: 7px; gap: 3px; }
  .hero__actions .icon { width: 12px; height: 12px; }
  .hero__lower {
    right: auto;
    bottom: 1px;
    left: 0;
    width: 64%;
    max-width: 64%;
  }
  .hero__secondary-card,
  .hero__location-card { min-height: 38px; height: 38px; border-radius: 7px; }
  .hero__location-card { padding: 5px; }
  .hero__location-card > .icon { width: 12px; height: 12px; }
  .hero__location-copy { font-size: 6.5px; line-height: 1.1; }
}
