:root {
  --red: #d9354e;
  --red-dark: #b8243d;
  --charcoal: #363435;
  --black: #000;
  --soft-black: #202020;
  --white: #fff;
  --shop-floor: #eaefec;
  --gray: #777;
  --line: rgba(32, 32, 32, 0.2);
  --display: "Montserrat", Arial, sans-serif;
  --body: "Lato", Arial, sans-serif;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--soft-black);
  background: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* Qualquer elemento com display explicito no CSS ignora o atributo hidden do HTML.
   Esta regra faz o hidden sempre vencer — sem ela a pilula de garantia e os cards de
   avaliacao filtrados continuavam visiveis depois de o JS marcar hidden = true. */
[hidden] { display: none !important; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: var(--soft-black);
  border-bottom: 4px solid var(--red);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 88px;
  margin-inline: auto;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 135px;
  height: auto;
  border: 2px solid var(--white);
}

.brand span {
  color: #d6d6d6;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  color: #ededed;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover { color: var(--white); }
.site-nav .nav-cta { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-call {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
  text-decoration: none;
}

.header-call svg { display: none; }

.header-call-lead {
  color: #c8c8c8;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-call-num {
  font-family: var(--display);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: clamp(700px, calc(100svh - 88px), 840px);
  overflow: hidden;
  color: var(--white);
  background: #080808;
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.35) 0%, rgba(8,8,8,0) 25%, rgba(8,8,8,0) 64%, rgba(8,8,8,0.9) 100%);
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 68%;
  background: #111;
  box-shadow: -3px 0 0 #080808;
}

.hero-media::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 82%;
  background: linear-gradient(90deg, #080808 0%, rgba(8,8,8,0.98) 34%, rgba(8,8,8,0.9) 68%, rgba(8,8,8,0) 100%);
  content: "";
  pointer-events: none;
}

.hero-video,
.hero-end-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.86) contrast(1.06) blur(1.1px);
  transform: scale(1.012);
}

.hero-video {
  object-position: 58% center;
}

.hero-end-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  object-position: 64% center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1000ms cubic-bezier(.22,.68,.24,1);
}

.hero-media.is-image-visible .hero-end-image {
  opacity: 1;
}

.hero-media-label {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  bottom: 110px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-media-label i { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: clamp(90px, 12vh, 150px) 0 clamp(135px, 17vh, 185px);
}

.hero-context,
.section-heading > p,
.section-heading > div > p,
.commitment-intro > p,
.appointment-copy > p:first-child {
  margin: 0 0 20px;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-context-mobile,
.hero-lead-mobile { display: none; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--charcoal);
  font-size: clamp(3rem, 5.3vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  width: min(710px, 60vw);
  max-width: none;
  margin: 0 0 28px -24px;
  padding: 19px 24px 22px;
  color: var(--white);
  font-size: clamp(3.2rem, 5vw, 5.3rem);
  line-height: 0.98;
  text-align: center;
  text-shadow: 0 20px 54px rgba(0,0,0,0.5);
  background: linear-gradient(90deg, rgba(8,8,8,0.96), rgba(8,8,8,0.86) 74%, rgba(8,8,8,0));
  border-left: 5px solid var(--red);
}

.hero h1 span { color: var(--red); }

.hero-lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: #c8c8c8;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { color: var(--soft-black); background: transparent; border-color: var(--soft-black); }
.button-secondary:hover { color: var(--white); background: var(--soft-black); }
.hero .button-secondary { color: var(--white); border-color: rgba(255,255,255,0.78); }
.hero .button-secondary:hover { color: var(--soft-black); background: var(--white); }
.button-dark { width: 100%; color: var(--white); background: var(--soft-black); cursor: pointer; }
.button-dark:hover { background: var(--black); }

.hero-stats-wrap {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 48px), var(--max));
  margin: -76px auto 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
  border-top: 6px solid var(--red);
  box-shadow: 0 26px 58px rgba(0,0,0,0.22);
}

.hero-stats > * {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 25px 30px;
  color: inherit;
  text-decoration: none;
}

.hero-stats > * + * { border-left: 1px solid var(--line); }
.hero-stats strong { color: var(--charcoal); font-family: var(--display); font-size: clamp(1rem, 1.7vw, 1.35rem); line-height: 1.2; text-transform: uppercase; }
.hero-stats strong span { color: #f4b400; }
.hero-stats small { margin-top: 3px; color: var(--gray); font-size: 0.78rem; }

.transition-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 27px max(28px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--red);
  border-bottom: 1px solid rgba(0,0,0,0.22);
}

.transition-strip p { margin-bottom: 2px; font-family: var(--display); font-size: 1.05rem; font-weight: 800; }
.transition-strip span { font-size: 0.92rem; opacity: 0.92; }
.transition-strip a { flex: 0 0 auto; font-family: var(--display); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }

.section {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding-block: clamp(88px, 10vw, 150px);
}

.section-heading { max-width: 840px; margin-bottom: 64px; }
.section-heading h2,
.appointment h2 {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: clamp(2.45rem, 5vw, 5.3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.commitment {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(90px, 10vw, 150px) max(28px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--soft-black);
}

.commitment > *,
.appointment > * { min-width: 0; }

.commitment-intro h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.6rem); font-weight: 900; letter-spacing: -0.06em; text-transform: uppercase; }
.commitment-list { border-top: 1px solid rgba(255,255,255,0.25); }
.commitment-list article { display: grid; grid-template-columns: 50px minmax(160px, 0.42fr) 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.25); }
.commitment-list span { color: var(--red); font-family: var(--display); font-size: 0.75rem; font-weight: 800; }
.commitment-list h3 { margin: 0; font-size: 1.2rem; }
.commitment-list p { margin: 0; color: #bdbdbd; font-size: 0.96rem; line-height: 1.55; }

.services-heading { display: grid; grid-template-columns: 1.1fr 0.7fr; align-items: end; max-width: none; gap: 80px; }
.services-heading > p { margin: 0 0 8px; color: #626062; font-family: var(--body); font-size: 1.05rem; font-weight: 400; letter-spacing: 0; line-height: 1.65; text-transform: none; }
.service-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--soft-black); }
.service-list article { min-height: 260px; padding: 32px 32px 32px 0; border-bottom: 1px solid var(--line); }
.service-list article:not(:nth-child(3n+1)) { padding-left: 32px; border-left: 1px solid var(--line); }
.service-icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 42px; color: var(--white); background: var(--red); font-family: var(--display); font-weight: 900; }
.service-list h3 { margin-bottom: 12px; color: var(--charcoal); font-size: 1.25rem; text-transform: uppercase; }
.service-list p { margin: 0; color: #666; font-size: 0.95rem; line-height: 1.55; }

.manifesto {
  padding: clamp(48px, 6vw, 78px) 28px;
  color: var(--white);
  background: var(--black);
  border-block: 6px solid var(--red);
  text-align: center;
}

.manifesto-slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
}

.manifesto-clause {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(12px, 1.8vw, 24px);
  margin: 0;
  font-family: var(--display);
  line-height: 0.96;
  text-transform: uppercase;
}

.manifesto-clause small { color: var(--white); font-size: clamp(1.15rem, 2.2vw, 2.15rem); font-weight: 700; }
.manifesto-clause strong { color: var(--red); font-size: clamp(2.35rem, 4.9vw, 5.2rem); font-weight: 900; letter-spacing: -0.055em; }
.manifesto-divider { width: 2px; height: clamp(42px, 5vw, 72px); background: #383838; }
.manifesto > p { max-width: 620px; margin: 24px auto 0; color: #999; font-size: 0.9rem; }

.vehicle-brands {
  padding: 36px 0 40px;
  overflow: hidden;
  background: var(--shop-floor);
  border-bottom: 1px solid #d6dcda;
}

.vehicle-brands-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 26px;
  gap: 28px;
}

.vehicle-brands h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.vehicle-brands-heading p { margin: 0; color: var(--gray); font-size: 0.9rem; }
.brands-marquee { overflow: hidden; }

.brands-track {
  display: flex;
  width: max-content;
  animation: brands-scroll 34s linear infinite;
}

.brands-marquee:hover .brands-track,
.brands-marquee:focus-within .brands-track { animation-play-state: paused; }

.brands-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(30px, 4vw, 66px);
  padding-right: clamp(30px, 4vw, 66px);
}

.brands-group span {
  position: relative;
  flex: 0 0 auto;
  padding-left: 14px;
  color: #484647;
  font-family: var(--display);
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.brands-group span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.appointment {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(50px, 8vw, 120px);
}

.appointment h2 { font-size: clamp(2.3rem, 3.4vw, 3.75rem); }

.appointment-copy > p:not(:first-child) { max-width: 520px; margin-top: 26px; color: #5d5a5b; }
.contact-note { display: flex; flex-direction: column; margin-top: 44px; padding: 24px; background: var(--shop-floor); border-left: 5px solid var(--red); }
.contact-note strong { font-family: var(--display); }
.contact-note a { color: var(--red); font-family: var(--display); font-size: 1.4rem; font-weight: 900; }
.contact-note span { color: var(--gray); font-size: 0.9rem; }

.service-form { padding: clamp(28px, 4vw, 54px); background: var(--shop-floor); border-top: 8px solid var(--red); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-form label { display: block; margin-bottom: 20px; font-family: var(--display); font-size: 0.79rem; font-weight: 800; }
.service-form label span { color: var(--gray); font-family: var(--body); font-weight: 400; }
.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--soft-black);
  background: var(--white);
  border: 1px solid #aaa;
  border-radius: 0;
  font-family: var(--body);
}
.service-form textarea { resize: vertical; }
.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus { border-color: var(--red); outline: 2px solid rgba(217,53,78,0.22); outline-offset: 1px; }
.form-disclaimer { margin: 12px 0 0; color: var(--gray); font-size: 0.78rem; line-height: 1.45; text-align: center; }
.form-status { display: none; margin-top: 16px; padding: 14px; color: var(--soft-black); background: var(--white); border-left: 4px solid var(--red); font-size: 0.9rem; }
.form-status.is-visible { display: block; animation: status-in 240ms ease-out both; }

.reviews {
  padding: clamp(82px, 9vw, 130px) 0;
  background: #f2f4f3;
  border-top: 1px solid #dfe3e1;
}

.reviews-inner {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.reviews-heading p {
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.reviews-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.reviews-rating {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid #d7dbd9;
  text-decoration: none;
}

.reviews-rating span { color: #f4b400; font-size: 1.05rem; letter-spacing: 0.05em; }
.reviews-rating strong { color: var(--charcoal); font-family: var(--display); font-size: 0.8rem; text-transform: uppercase; }

.reviews-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 16px;
}

.reviews-track {
  display: grid;
  grid-auto-columns: calc((100% - 48px) / 3);
  grid-auto-flow: column;
  grid-template-rows: minmax(240px, auto);
  gap: 24px;
  overflow-x: auto;
  padding: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  margin: 0;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d9dddb;
  scroll-snap-align: start;
}

.review-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: var(--red);
  content: "";
}

.review-stars { margin-bottom: 18px; color: #f4b400; font-size: 0.95rem; letter-spacing: 0.06em; }
.review-card p { margin-bottom: 28px; color: #383637; font-size: 1rem; line-height: 1.5; }
.review-card cite { display: flex; flex-direction: column; font-style: normal; }
.review-card cite strong { color: var(--charcoal); font-family: var(--display); font-size: 0.82rem; }
.review-card cite span { color: #8a8a8a; font-size: 0.74rem; }

.reviews-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0 0 4px;
  color: var(--white);
  background: var(--charcoal);
  border: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.reviews-arrow:hover { background: var(--red); transform: scale(1.04); }
.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.reviews-dots button { width: 8px; height: 8px; padding: 0; background: transparent; border: 1px solid #8c8c8c; border-radius: 50%; cursor: pointer; }
.reviews-dots button.is-active { background: var(--red); border-color: var(--red); }

.site-footer {
  color: var(--white);
  background: #131313;
  border-top: 6px solid var(--red);
}

.footer-about {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding-block: clamp(88px, 10vw, 140px);
  gap: clamp(52px, 7vw, 100px);
}

.footer-about-copy,
.location-carousel { min-width: 0; }

.footer-kicker {
  margin-bottom: 24px;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-about h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.4vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.footer-about h2 span { color: var(--red); }
.footer-about-copy > p:not(.footer-kicker) { max-width: 580px; color: #aaa; }
.footer-about-copy .footer-about-lead { color: #e4e4e4; font-size: 1.08rem; font-weight: 700; }

.footer-about-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.about-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  width: 100%;
  background: var(--red);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
  overflow: hidden;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 10px;
  color: var(--white);
  gap: 10px;
}

.amenity-item + .amenity-item {
  border-left: 1px solid rgba(255,255,255,0.22);
}

.amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
}

.amenity-title {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 38px;
}

.footer-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 14px;
  color: inherit;
  border: 1px solid transparent;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

a.footer-info-row:hover { background: #1c1c1c; border-color: #353535; }

.footer-info-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--red);
}

.footer-info-icon svg { width: 21px; height: 21px; }
.footer-info-row > span:last-child { display: flex; flex-direction: column; }
.footer-info-row small { color: #858585; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-info-row strong { color: var(--white); font-family: var(--display); font-size: 0.95rem; line-height: 1.4; }

.location-carousel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #090909;
  border: 1px solid #3a3a3a;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.42);
}

.location-slides { position: absolute; inset: 0; }

.location-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 700ms ease, transform 3.5s ease;
}

.location-slide:nth-child(2) { object-position: 50% 35%; }
/* a placa da unidade de Tyler fica na borda esquerda: o corte 4/3 puxa para lá */
.location-slide[src$="tyler-1.webp"] { object-position: 30% 50%; }
.location-slide.is-active { opacity: 1; transform: scale(1); }

.location-carousel::after {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  content: "";
  pointer-events: none;
}

.location-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(0,0,0,0.82);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.location-badge i { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }

.location-dots {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.location-dots button {
  width: 24px;
  height: 4px;
  padding: 0;
  background: rgba(255,255,255,0.46);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.location-dots button.is-active { width: 38px; background: var(--red); }

.footer-columns {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding: 72px 0;
  gap: clamp(44px, 8vw, 120px);
  border-top: 1px solid #343434;
}

.footer-brand img { width: 140px; height: auto; margin-bottom: 24px; }
.footer-brand p { max-width: 420px; color: #999; }
.footer-brand > strong { color: var(--red); font-family: var(--display); font-size: 0.85rem; text-transform: uppercase; }
.footer-columns h3 { margin-bottom: 24px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; }
.footer-nav a { margin-bottom: 10px; color: #999; text-decoration: none; }
.footer-nav a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 18px; font-style: normal; }
.footer-contact a, .footer-contact p { display: flex; flex-direction: column; margin: 0; color: inherit; text-decoration: none; }
.footer-contact strong { color: var(--red); font-family: var(--display); font-size: 0.73rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-contact span { color: #999; font-size: 0.94rem; line-height: 1.45; }
.footer-contact a:hover span { color: var(--white); }

.footer-base {
  display: flex;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding: 24px 0 34px;
  color: #737373;
  border-top: 1px solid #343434;
  font-size: 0.78rem;
}

.footer-base a { color: #aaa; }

.hero-context,
.hero h1,
.hero-lead,
.hero-actions { animation: hero-in 560ms cubic-bezier(.2,.72,.24,1) both; }
.hero h1 { animation-delay: 60ms; }
.hero-lead { animation-delay: 120ms; }
.hero-actions { animation-delay: 180ms; }
.hero-media { animation: hero-image-in 720ms cubic-bezier(.2,.72,.24,1) both; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes status-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes brands-scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   DUAS UNIDADES — abas do "Visit us", chips de avaliação e o
   pop-up que pergunta a loja antes de ligar ou abrir o mapa
   ============================================================ */
.location-tabs {
  display: flex;
  gap: 8px;
  margin-top: 38px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #353535;
  border-radius: 999px;
}

.location-tab {
  flex: 1 1 0;
  min-width: 0;
  padding: 11px 14px;
  color: #b4b4b4;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.location-tab:hover { color: var(--white); }
.location-tab.is-active { color: var(--white); background: var(--red); }

.reviews-ratings { display: flex; flex: 0 0 auto; gap: 10px; }

/* as mesmas abas, agora sobre o fundo claro da seção de avaliações */
.reviews-tabs {
  width: fit-content;
  margin: 0 0 30px;
  background: rgba(32, 32, 32, 0.05);
  border-color: #d7dbd9;
}

.reviews-tabs .location-tab { flex: 0 0 auto; min-width: 148px; color: var(--gray); }
.reviews-tabs .location-tab:hover { color: var(--charcoal); }
.reviews-tabs .location-tab.is-active { color: var(--white); background: var(--red); }

.contact-note a { display: flex; flex-direction: column; margin-top: 10px; line-height: 1.15; }
.contact-note a em {
  color: var(--gray);
  font-family: var(--body);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chooser {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 10, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms;
}

.chooser.is-open { opacity: 1; visibility: visible; }

.chooser-box {
  position: relative;
  width: min(540px, 100%);
  padding: 34px clamp(22px, 4vw, 38px) 30px;
  background: var(--white);
  border-top: 8px solid var(--red);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  transform: translateY(14px);
  transition: transform 260ms ease;
}

.chooser.is-open .chooser-box { transform: none; }

.chooser-box h3 {
  margin: 0 0 8px;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.chooser-box > p { margin: 0 0 22px; color: var(--gray); font-size: 0.95rem; }

.chooser-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: var(--gray);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.chooser-close:hover { color: var(--charcoal); }
.chooser-options { display: flex; flex-direction: column; gap: 12px; }

.chooser-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  color: inherit;
  background: var(--shop-floor);
  border: 1px solid transparent;
  text-decoration: none;
  transition: border-color 180ms ease, transform 140ms ease;
}

.chooser-option:hover { border-color: var(--red); transform: translateY(-2px); }

.chooser-option .pin {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--red);
}

.chooser-option .pin svg { width: 20px; height: 20px; }
.chooser-option > span:last-child { display: flex; flex-direction: column; }
.chooser-option .city { font-family: var(--display); font-size: 0.98rem; font-weight: 900; text-transform: uppercase; }
.chooser-option .detail { color: var(--gray); font-size: 0.86rem; }

/* ============================================================
   BARRA DA LOJA — endereço, telefone e nota logo abaixo do hero
   ============================================================ */
.shop-bar {
  width: min(calc(100% - 48px), var(--max));
  margin: 46px auto 0;
}

.shop-bar-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 18px;
}

.shop-bar-head .location-tabs { margin-left: auto; }

/* selo de garantia: pilula vermelha ao lado do titulo, so na loja que anuncia */
.shop-bar-warranty {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 8px 15px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.shop-bar-warranty svg { width: 17px; height: 17px; flex-shrink: 0; }

.shop-bar-head h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-bar-tabs { margin: 0; background: rgba(32, 32, 32, 0.05); border-color: #d7dbd9; }
.shop-bar-tabs .location-tab { flex: 0 0 auto; min-width: 132px; color: var(--gray); }
.shop-bar-tabs .location-tab:hover { color: var(--charcoal); }
.shop-bar-tabs .location-tab.is-active { color: var(--white); background: var(--red); }

.shop-bar-info {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  align-items: center;
  gap: 1px;
  background: rgba(32, 32, 32, 0.14);
  border-left: 5px solid var(--red);
}

.shop-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 20px 22px;
  color: inherit;
  background: var(--shop-floor);
  text-decoration: none;
  transition: background-color 180ms ease;
}

a.shop-bar-item:hover { background: #dfe6e1; }

.shop-bar-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--red);
}

.shop-bar-icon svg { width: 19px; height: 19px; }
.shop-bar-item > span:last-child { display: flex; min-width: 0; flex-direction: column; }
.shop-bar-item small { color: var(--gray); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.shop-bar-item strong { color: var(--charcoal); font-family: var(--display); font-size: 0.93rem; line-height: 1.35; }
.shop-bar-cta { justify-self: stretch; height: 100%; margin: 0; border-radius: 0; }

/* ============================================================
   BARRA FIXA DO CELULAR — ligar e agendar sempre à mão
   ============================================================ */
.mobile-bar {
  position: fixed;
  z-index: 95;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(100%);
  transition: transform 260ms ease;
}

.mobile-bar.is-visible { transform: none; }
body.menu-open .mobile-bar { transform: translateY(100%); }

.mobile-bar a {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 10px calc(16px + env(safe-area-inset-bottom));
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-bar svg { width: 17px; height: 17px; flex-shrink: 0; }
.mobile-bar-call { color: var(--white); background: var(--soft-black); }
.mobile-bar-book { color: var(--white); background: var(--red); }

/* ============================================================
   FILIACOES E PREMIOS — painel claro dentro do rodape escuro
   ============================================================ */
.affiliations {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 68px;
  padding: 36px clamp(20px, 3vw, 44px) 34px;
  background: var(--white);
  border-top: 6px solid var(--red);
}

.affiliations h2 {
  margin: 0 0 30px;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.affiliation-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.affiliation-list li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.affiliation-list img {
  width: auto;
  max-width: 100%;
  height: 58px;
  object-fit: contain;
}

.affiliation-list span {
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 1060px) {
  .shop-bar-info { grid-template-columns: 1fr 1fr; }
  .shop-bar-cta { grid-column: 1 / -1; }
  .header-inner { display: flex; justify-content: space-between; align-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px 24px 24px;
    background: #181818;
    border-bottom: 3px solid var(--red);
    box-shadow: 0 20px 48px rgba(0,0,0,0.65);
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    display: block;
    padding: 14px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav a:hover { color: var(--red); }
  .site-nav .nav-cta {
    display: inline-flex;
    margin-top: 16px;
    padding: 13px 20px;
    background: var(--red);
    color: var(--white);
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    justify-content: center;
    border-radius: 2px;
    border-bottom: 0;
  }
  .site-nav .nav-cta:hover { background: var(--red-dark); color: var(--white); }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 2px;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    color: var(--white);
    flex-shrink: 0;
  }
  .menu-bar {
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: transform 200ms ease, opacity 200ms ease;
  }
  .menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero-media { width: 72%; }
  .hero h1 { max-width: 540px; font-size: clamp(3rem, 5.8vw, 4.7rem); }
  .commitment { grid-template-columns: 1fr; }
  .commitment-intro h2 br { display: inline; content: " "; }
  .appointment { grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
}

@media (max-width: 820px) {
  .affiliation-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .affiliation-list li:nth-child(4) { grid-column: 1 / 2; }
  .affiliation-list li:nth-child(5) { grid-column: 2 / 4; }
  body { padding-bottom: 66px; }
  .mobile-bar { display: flex; }
  .shop-bar { margin-top: 34px; }
  .shop-bar-head { align-items: flex-start; flex-direction: column; gap: 12px; }
  .shop-bar-head .location-tabs { margin-left: 0; }
  .shop-bar-tabs { width: 100%; }
  .shop-bar-tabs .location-tab { flex: 1 1 0; min-width: 0; }
  .hero { flex-direction: column; min-height: auto; }
  .hero::after { background: linear-gradient(180deg, rgba(8,8,8,0) 58%, #080808 100%); }
  .hero-media { position: relative; width: 100%; aspect-ratio: 16 / 10; max-height: 62vh; box-shadow: none; }
  .hero-media::before { inset: 0; width: auto; height: auto; background: linear-gradient(90deg, rgba(8,8,8,0.55), rgba(8,8,8,0.08) 64%), linear-gradient(180deg, rgba(8,8,8,0) 40%, #080808 100%); }
  .hero-video { object-position: center; }
  .hero-end-image { object-position: 64% center; }
  .hero-media-label { right: 22px; bottom: 30px; }
  .hero-copy { width: min(calc(100% - 48px), var(--max)); min-height: auto; margin-top: -210px; padding: 0 0 102px; }
  .hero-context { width: 100%; text-align: center; text-shadow: 0 2px 12px #000; }
  .hero h1 { width: min(100%, 620px); max-width: 620px; margin-left: 0; }
  .hero-stats-wrap { margin-top: -58px; }
  .transition-strip { align-items: flex-start; flex-direction: column; gap: 16px; }
  .appointment, .footer-about { grid-template-columns: 1fr; }
  .services-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .service-list article:not(:nth-child(3n+1)) { padding-left: 0; border-left: 0; }
  .service-list article:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--line); }
  .reviews-heading { align-items: flex-start; flex-direction: column; }
  .reviews-rating { align-items: flex-start; }
  .reviews-track { grid-auto-columns: calc((100% - 24px) / 2); }
  .location-carousel { max-width: 680px; }
  .about-amenities { grid-template-columns: repeat(2, 1fr); margin: 0; }
  .amenity-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.22); }
  .amenity-item:nth-child(odd) { border-left: 0; }
  .amenity-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.22); }
  .amenity-item { padding: 18px 12px; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .affiliations { width: min(calc(100% - 24px), var(--max)); margin-bottom: 52px; padding: 28px 16px 26px; }
  .affiliation-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
  .affiliation-list li:nth-child(4) { grid-column: auto; }
  .affiliation-list li:nth-child(5) { grid-column: 1 / -1; }
  .affiliation-list img { height: 48px; }
  .affiliation-list span { font-size: 0.72rem; }
  .shop-bar { width: min(calc(100% - 24px), var(--max)); }
  .shop-bar-info { grid-template-columns: 1fr; }
  .shop-bar-item { padding: 15px 16px; }
  .shop-bar-warranty { font-size: 0.68rem; letter-spacing: 0.01em; }
  .reviews-ratings { flex-direction: column; width: 100%; }
  .reviews-rating { align-items: flex-start; }
  .location-tab { padding: 10px 8px; font-size: 0.72rem; letter-spacing: 0.03em; }
  .chooser-box { padding: 30px 20px 24px; }
  body { font-size: 16px; }
  .header-inner { width: min(calc(100% - 24px), var(--max)); min-height: 66px; gap: 8px; }
  .brand img { width: 96px; }
  .brand span { display: none; }
  .header-call {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    background: var(--red);
    border-radius: 2px;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
    transition: background-color 150ms ease;
  }
  .header-call:hover { background: var(--red-dark); }
  .header-call svg { display: block; }
  .header-call-lead { display: none; }
  .header-call-num { font-size: 0.76rem; font-weight: 800; }
  .hero-media { aspect-ratio: 4 / 3; }
  .hero-video { object-position: 72% center; }
  .hero-end-image { object-position: 61% center; }
  .hero-media-label { display: none; }
  .hero-copy { width: min(calc(100% - 32px), var(--max)); margin-top: -172px; padding: 0 0 78px; }
  .hero-copy > .hero-context { display: none; }
  .hero-context-mobile {
    position: absolute;
    z-index: 4;
    top: 14px;
    right: 16px;
    left: 16px;
    display: block;
    margin: 0;
    text-align: center;
  }
  .hero-context {
    padding: 9px 10px;
    font-size: clamp(0.66rem, 2.9vw, 0.76rem);
    letter-spacing: 0.04em;
    background: rgba(8,8,8,0.94);
    border-bottom: 1px solid rgba(217,53,78,0.55);
  }
  .hero h1 { padding: 14px 14px 16px; border-left-width: 4px; font-size: clamp(2.15rem, 9.5vw, 2.7rem); }
  /* .hero-context tem width:100% a partir de 1060px; sem isto o right:16px nao vale
     e a faixa vaza 16px pra fora, escondida pelo overflow-x: clip do body */
  .hero-context-mobile { width: auto; }
  .hero-copy > .hero-lead:not(.hero-lead-mobile) { display: none; }
  .hero-lead-mobile { display: block; }
  .hero-lead { margin-bottom: 18px; font-size: 0.94rem; line-height: 1.5; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 10px 8px;
    font-size: clamp(0.64rem, 3vw, 0.73rem);
    letter-spacing: 0.01em;
  }
  .hero-stats-wrap { width: min(calc(100% - 24px), var(--max)); margin-top: -54px; }
  .hero-stats > * { padding: 14px 6px; text-align: center; }
  .hero-stats strong { font-size: clamp(0.7rem, 2.2vw, 0.78rem); }
  .hero-stats small { font-size: 0.64rem; line-height: 1.25; }
  .section { width: min(calc(100% - 32px), var(--max)); padding-block: 72px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2, .appointment h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .commitment { grid-template-columns: 1fr; padding: 72px 18px; }
  .commitment-list article { grid-template-columns: 34px 1fr; gap: 8px 12px; padding: 26px 0; }
  .commitment-list p { grid-column: 2; }
  .service-list { grid-template-columns: 1fr; }
  .service-list article, .service-list article:nth-child(even) { min-height: auto; padding: 24px 0; border-left: 0; }
  .service-icon { margin-bottom: 18px; }
  .manifesto { padding: 42px 18px; }
  .manifesto-slogan { flex-direction: column; gap: 14px; }
  .manifesto-clause { width: min(100%, 340px); justify-content: space-between; }
  .manifesto-clause small { font-size: 1rem; }
  .manifesto-clause strong { font-size: clamp(2.1rem, 11vw, 3.1rem); }
  .manifesto-divider { width: min(100%, 340px); height: 1px; }
  .manifesto > p { margin-top: 18px; }
  .vehicle-brands { padding-block: 28px 30px; }
  .vehicle-brands-heading { align-items: flex-start; flex-direction: column; width: min(calc(100% - 32px), var(--max)); margin-bottom: 20px; gap: 6px; }
  .vehicle-brands-heading p { font-size: 0.82rem; }
  .brands-track { animation-duration: 27s; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .service-form { margin-inline: 0; padding: 24px 18px; }
  .service-form input, .service-form select, .service-form textarea { font-size: 16px !important; }
  .reviews-inner { width: min(calc(100% - 24px), var(--max)); }
  .reviews-heading h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .reviews-carousel { grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 8px; margin-inline: -4px; }
  .reviews-arrow { width: 38px; height: 38px; font-size: 1.5rem; }
  .reviews-track { grid-auto-columns: 100%; grid-template-rows: 1fr; gap: 12px; -webkit-overflow-scrolling: touch; }
  .review-card { min-height: 220px; padding: 22px; }
  .footer-about { width: min(calc(100% - 32px), var(--max)); padding-block: 68px; gap: 38px; }
  .footer-about h2 { font-size: clamp(2.05rem, 10vw, 2.9rem); }
  .about-amenities { grid-template-columns: repeat(2, 1fr); margin: 0; border-radius: 8px; }
  .amenity-item { padding: 16px 8px; gap: 8px; }
  .amenity-icon svg { width: 25px; height: 25px; }
  .amenity-title { font-size: 0.68rem; line-height: 1.2; }
  .footer-info-row { padding-inline: 0; min-height: 48px; }
  .location-carousel { aspect-ratio: 16 / 11; border-radius: 6px; }
  .footer-columns { grid-template-columns: 1fr; width: min(calc(100% - 32px), var(--max)); padding-block: 52px; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-base { flex-direction: column; width: min(calc(100% - 32px), var(--max)); gap: 10px; }
}

@media (max-width: 365px) {
  .brand img { width: 88px; }
  .header-call-num { font-size: 0.7rem; }
  .header-call { padding: 8px 9px; }
  .hero-stats strong { font-size: 0.68rem; }
  .hero-stats small { font-size: 0.6rem; }
  .amenity-item { padding: 14px 5px; }
  .amenity-title { font-size: 0.62rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .location-slide { transform: none; }
  .brands-marquee { overflow-x: auto; }
  .brands-track { animation: none; }
  .brands-group[aria-hidden="true"] { display: none; }
}
