:root {
  --navy-950: #030a11;
  --navy-900: #061422;
  --navy-850: #081a2a;
  --navy-800: #0a2034;
  --navy-700: #12324d;
  --blue-600: #0979d8;
  --blue-500: #1498ff;
  --blue-400: #55b7ff;
  --blue-100: #dff2ff;
  --green-600: #13a957;
  --green-500: #1fc66a;
  --ink: #0a1723;
  --ink-soft: #344554;
  --muted: #657482;
  --paper: #f6f8fb;
  --paper-2: #edf2f6;
  --white: #ffffff;
  --line: #d9e2ea;
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(4, 17, 29, 0.15);
  --shadow-lg: 0 34px 100px rgba(2, 12, 22, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 46px;
  --container: min(1220px, calc(100vw - 40px));
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --font-display: "Arial Narrow", "Aptos Display", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { color: var(--white); background: var(--blue-600); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-600);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(72px, 8vw, 118px) 0; }
.section-light { background: var(--white); }
.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 4%, rgba(20, 152, 255, 0.22), transparent 32%),
    linear-gradient(145deg, var(--navy-850), var(--navy-950) 70%);
}
.section-dark::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.48;
  background-image: url("/assets/img/garage-grid.webp");
  background-size: 512px 512px;
  mask-image: linear-gradient(to bottom, black, transparent 96%);
}
.section-dark > .container { position: relative; }

.icon { width: 24px; height: 24px; flex: 0 0 auto; }
.mini-icon { width: 17px; height: 17px; flex: 0 0 auto; }
.btn-icon { width: 20px; height: 20px; flex: 0 0 auto; }
.google-mark { width: 38px; height: 38px; flex: 0 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 17px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  content: "";
  background: currentColor;
}
.eyebrow-light { color: var(--blue-400); }

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
h1 { font-size: clamp(3rem, 6.2vw, 6.2rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.08; }
p { margin: 0; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(20, 152, 255, 0.38);
  outline-offset: 3px;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 13px 32px rgba(9, 121, 216, 0.25);
}
.btn-primary:hover { box-shadow: 0 17px 38px rgba(9, 121, 216, 0.35); }
.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 13px 32px rgba(19, 169, 87, 0.22);
}
.btn-whatsapp:hover { box-shadow: 0 17px 38px rgba(19, 169, 87, 0.34); }
.btn-outline-dark {
  color: var(--ink);
  border-color: rgba(10, 23, 35, 0.3);
  background: transparent;
}
.btn-outline-dark:hover { color: var(--blue-600); border-color: var(--blue-500); }
.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
}
.btn-outline-light:hover { border-color: var(--blue-400); background: rgba(20, 152, 255, 0.1); }
.btn-light { color: var(--navy-900); background: var(--white); }
.btn-facebook { color: var(--white); background: #1877f2; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.text-link { color: var(--blue-600); font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }

.topbar {
  position: relative;
  z-index: 80;
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.77rem;
  font-weight: 650;
}
.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar a,
.topbar span { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--white); }
.topbar-right { display: flex; align-items: center; gap: 24px; }

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  color: var(--white);
  background: rgba(6, 20, 34, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(140%);
}
.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 0; }
.brand img {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.32));
}
.brand-copy { display: grid; min-width: 0; line-height: 1; }
.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.53rem;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav > a:not(.btn):not(.header-phone) {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 750;
}
.site-nav > a:not(.btn):not(.header-phone)::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav > a:not(.btn):not(.header-phone):hover,
.site-nav > a[aria-current="page"] { color: var(--white); }
.site-nav > a:not(.btn):not(.header-phone):hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}
.nav-cta { min-height: 46px; padding: 11px 17px; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.nav-toggle svg { width: 25px; height: 25px; }
.menu-close-icon { display: none; }
.menu-open .menu-open-icon { display: none; }
.menu-open .menu-close-icon { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(20, 152, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950) 72%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image: url("/assets/img/garage-grid.webp");
  background-size: 512px 512px;
  mask-image: linear-gradient(to right, black, transparent 68%);
}
.hero-grid {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: clamp(45px, 6vw, 92px);
  padding-top: clamp(58px, 7vw, 94px);
  padding-bottom: clamp(58px, 7vw, 94px);
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 800px; }
.hero h1 span { display: block; color: var(--blue-400); }
.hero-lead {
  max-width: 690px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-links { display: flex; flex-wrap: wrap; gap: 21px; margin-top: 23px; }
.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.87rem;
  font-weight: 700;
}
.hero-links a:hover { color: var(--blue-400); }
.hero-facts {
  display: grid;
  max-width: 610px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.hero-facts div { padding-right: 26px; }
.hero-facts div + div { padding-left: 26px; border-left: 1px solid rgba(255, 255, 255, 0.13); }
.hero-facts dt {
  color: var(--blue-400);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-facts dd { margin: 7px 0 0; color: rgba(255, 255, 255, 0.88); font-size: 0.92rem; line-height: 1.45; }
.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--navy-850);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(2, 10, 17, 0.82), transparent 58%);
}
.hero-visual picture,
.hero-visual img { width: 100%; height: 100%; border-radius: inherit; }
.hero-visual img { position: absolute; inset: 0; object-fit: cover; object-position: 54% 50%; }
.hero-logo {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(3, 13, 23, 0.76);
  backdrop-filter: blur(15px);
}
.hero-logo img { position: static; width: 72px; height: 72px; flex: 0 0 auto; }
.hero-logo div { display: grid; }
.hero-logo strong { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: -0.025em; }
.hero-logo span { margin-top: 5px; color: rgba(255, 255, 255, 0.64); font-size: 0.75rem; }
.hero-location {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: -22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 18px 45px rgba(9, 121, 216, 0.32);
}
.hero-location svg { width: 23px; height: 23px; }
.hero-location span { display: grid; font-size: 0.75rem; line-height: 1.35; }
.hero-location strong { font-size: 0.93rem; }

.trust-strip { color: var(--white); background: var(--navy-850); border-top: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-grid > div {
  display: flex;
  min-height: 134px;
  align-items: center;
  gap: 14px;
  padding: 24px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-grid > div:first-child { border-left: 1px solid rgba(255, 255, 255, 0.1); }
.trust-grid svg { width: 33px; height: 33px; color: var(--blue-400); }
.trust-grid span { display: grid; }
.trust-grid strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -0.015em; line-height: 1.15; }
.trust-grid small { margin-top: 7px; color: rgba(255, 255, 255, 0.55); font-size: 0.72rem; line-height: 1.4; }

.section-heading { margin-bottom: clamp(34px, 5vw, 64px); }
.section-heading h2 { max-width: 840px; }
.section-heading > p:not(.eyebrow),
.split-heading > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.03rem;
}
.split-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr); align-items: end; gap: 50px; }
.centered { max-width: 800px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p:not(.eyebrow) { max-width: 650px; margin: 22px auto 0; }

.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--white), #f9fbfd);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.service-card::before {
  position: absolute;
  right: -38px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(20, 152, 255, 0.12), transparent 68%);
  transition: transform 240ms ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(20, 152, 255, 0.5); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scale(1.35); }
.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-600);
  background: var(--blue-100);
}
.service-icon svg { width: 30px; height: 30px; }
.service-number {
  position: absolute;
  top: 29px;
  right: 28px;
  color: #c2ced8;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 850;
}
.service-card h3 { margin-top: 28px; max-width: 260px; }
.service-card p { margin-top: 14px; color: var(--muted); font-size: 0.91rem; line-height: 1.55; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--blue-600); font-size: 0.79rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }
.service-card:hover .card-link svg { transform: translateX(4px); }
.card-link svg { transition: transform 180ms ease; }

.serious-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(44px, 7vw, 94px); }
.serious-media { position: relative; }
.serious-media picture,
.serious-media img { width: 100%; border-radius: var(--radius-lg); }
.serious-media img { aspect-ratio: 16 / 9; object-fit: cover; box-shadow: var(--shadow-lg); }
.media-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(3, 13, 23, 0.8);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 700;
}
.serious-copy h2 { max-width: 700px; }
.serious-copy > p:not(.eyebrow) { margin-top: 24px; color: rgba(255, 255, 255, 0.68); font-size: 1.04rem; }
.dark-text > p:not(.eyebrow) { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 30px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; color: rgba(255, 255, 255, 0.85); font-weight: 700; }
.check-list svg { width: 21px; height: 21px; color: var(--blue-400); }
.check-list.dark li { color: var(--ink-soft); }

.process-section { background: var(--paper-2); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-grid li {
  position: relative;
  min-height: 260px;
  padding: 34px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}
.process-grid li:first-child { border-left: 1px solid var(--line); border-radius: var(--radius-md) 0 0 var(--radius-md); }
.process-grid li:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.process-grid li > span { color: var(--blue-500); font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; letter-spacing: -0.06em; }
.process-grid h3 { margin-top: 26px; }
.process-grid p { margin-top: 14px; color: var(--muted); font-size: 0.9rem; }

.reviews-section { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr); align-items: stretch; gap: 42px; }
.reviews-copy { padding: 20px 0; }
.reviews-copy h2 { max-width: 650px; }
.reviews-copy > p:not(.eyebrow):not(.privacy-note) { margin-top: 23px; max-width: 610px; color: var(--muted); font-size: 1.03rem; }
.google-label { display: flex; align-items: center; gap: 14px; margin-top: 29px; }
.google-label div { display: grid; }
.google-label strong { font-size: 1.04rem; }
.google-label span { color: var(--muted); font-size: 0.82rem; }
.privacy-note { margin-top: 14px; color: var(--muted); font-size: 0.76rem; }
.embed-card {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(20, 152, 255, 0.24), transparent 28%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow);
}
.embed-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image: url("/assets/img/garage-grid.webp");
}
.embed-card iframe { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; border: 0; background: var(--white); }
.embed-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 42px;
  color: var(--white);
  text-align: center;
}
.embed-placeholder .embed-logo {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 18px;
  color: var(--blue-400);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.embed-placeholder strong { margin-top: 23px; font-family: var(--font-display); font-size: 1.8rem; letter-spacing: -0.035em; }
.embed-placeholder p { max-width: 470px; margin: 13px 0 25px; color: rgba(255, 255, 255, 0.63); font-size: 0.92rem; }
.embed-card.is-loaded .embed-placeholder { display: none; }

.social-section { color: var(--white); background: var(--navy-900); }
.social-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr); gap: 28px; }
.facebook-card {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(24, 119, 242, 0.22), transparent 52%),
    var(--navy-850);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.facebook-card-top { display: flex; align-items: center; gap: clamp(26px, 4vw, 52px); }
.facebook-card img { width: clamp(150px, 20vw, 230px); height: auto; flex: 0 0 auto; filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.35)); }
.facebook-card h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.facebook-card p:not(.eyebrow) { margin: 20px 0 28px; color: rgba(255, 255, 255, 0.68); }
.facebook-embed { min-height: 520px; }
.facebook-logo { color: #77adff !important; }
.facebook-embed iframe { background: #f0f2f5; }

.location-section { background: var(--paper-2); }
.location-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr); align-items: center; gap: clamp(44px, 7vw, 90px); }
.location-copy > p:not(.eyebrow) { max-width: 670px; margin-top: 23px; color: var(--muted); font-size: 1.02rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 31px 0 24px; }
.contact-cards > a,
.contact-cards > span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}
.contact-cards svg { color: var(--blue-600); }
.contact-cards span span,
.contact-cards a span { display: grid; }
.contact-cards small { color: var(--muted); font-size: 0.7rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.09em; }
.contact-cards strong { margin-top: 6px; font-size: 0.82rem; line-height: 1.42; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 29px; }
.area-chips span { padding: 7px 12px; border: 1px solid #cbd8e2; border-radius: 999px; color: var(--ink-soft); background: rgba(255, 255, 255, 0.62); font-size: 0.76rem; font-weight: 700; }
.location-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(20, 152, 255, 0.24), transparent 30%),
    linear-gradient(150deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-lg);
}
.location-panel-logo { display: flex; align-items: center; gap: 16px; padding-bottom: 25px; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.location-panel-logo img { width: 94px; height: 94px; }
.location-panel-logo div { display: grid; }
.location-panel-logo strong { font-family: var(--font-display); font-size: 1.5rem; }
.location-panel-logo span { margin-top: 5px; color: rgba(255, 255, 255, 0.57); font-size: 0.75rem; }
.location-panel dl { display: grid; gap: 19px; margin: 25px 0; }
.location-panel dl div { display: grid; grid-template-columns: 95px minmax(0, 1fr); gap: 15px; }
.location-panel dt { color: var(--blue-400); font-size: 0.69rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.location-panel dd { margin: 0; color: rgba(255, 255, 255, 0.8); font-size: 0.88rem; line-height: 1.48; }
.panel-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.panel-actions a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 10px; color: rgba(255, 255, 255, 0.85); font-size: 0.78rem; font-weight: 800; }
.panel-actions a:hover { border-color: var(--blue-400); color: var(--white); }
.panel-actions svg { width: 19px; height: 19px; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(44px, 7vw, 90px); align-items: start; }
.faq-intro { position: sticky; top: 132px; }
.faq-intro > p:not(.eyebrow) { margin-top: 22px; color: var(--muted); }
.faq-intro .btn { margin-top: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 52px 20px 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  content: "";
  background: var(--blue-600);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}
.faq-item summary span::after { top: 0; right: 0; transform: rotate(90deg); }
.faq-item[open] summary span::after { transform: rotate(0); }
.faq-item > div { padding: 0 50px 24px 0; }
.faq-item p { max-width: 760px; color: var(--muted); }

.cta-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(85, 183, 255, 0.3), transparent 28%),
    linear-gradient(130deg, #075ca8, #0b83e8 56%, #075ca8);
}
.cta-inner { display: flex; min-height: 300px; align-items: center; justify-content: space-between; gap: 45px; padding-top: 55px; padding-bottom: 55px; }
.cta-inner h2 { max-width: 760px; }
.cta-inner p:not(.eyebrow) { margin-top: 18px; color: rgba(255, 255, 255, 0.76); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; flex: 0 0 auto; }

.site-footer { color: rgba(255, 255, 255, 0.68); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.8fr 0.72fr 1.1fr; gap: 50px; padding-top: 70px; padding-bottom: 55px; }
.brand-footer .brand-copy strong { color: var(--white); }
.footer-brand > p { max-width: 330px; margin-top: 20px; font-size: 0.86rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.footer-social a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line-dark); border-radius: 8px; font-size: 0.75rem; font-weight: 750; }
.footer-social a:hover { color: var(--white); border-color: var(--blue-500); }
.footer-social svg { width: 18px; height: 18px; color: var(--blue-400); }
.site-footer h2 { margin-bottom: 19px; color: var(--white); font-family: var(--font-body); font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-size: 0.82rem; }
.site-footer li a:hover { color: var(--blue-400); }
.footer-contact address { display: grid; gap: 13px; }
.footer-contact address > a,
.footer-contact address > span { display: flex; align-items: flex-start; gap: 11px; font-size: 0.81rem; line-height: 1.48; }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue-400); margin-top: 2px; }
.footer-bottom { display: flex; min-height: 75px; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255, 255, 255, 0.09); font-size: 0.74rem; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a:hover { color: var(--white); }

.mobile-actions { display: none; }

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 35px; color: rgba(255, 255, 255, 0.55); font-size: 0.75rem; font-weight: 650; }
.breadcrumbs a:hover { color: var(--blue-400); }
.breadcrumbs span[aria-current="page"] { color: rgba(255, 255, 255, 0.86); }
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(20, 152, 255, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-850), var(--navy-950));
}
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background-image: url("/assets/img/garage-grid.webp");
}
.page-hero > .container { position: relative; padding-top: clamp(58px, 7vw, 90px); padding-bottom: clamp(65px, 8vw, 105px); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); align-items: center; gap: 60px; }
.page-hero h1 { max-width: 920px; font-size: clamp(3rem, 6vw, 6rem); }
.page-hero-grid > div:first-child > p:not(.eyebrow) { max-width: 760px; margin-top: 25px; color: rgba(255, 255, 255, 0.72); font-size: 1.08rem; }
.service-hero-symbol {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.service-hero-symbol > span { display: grid; width: 116px; height: 116px; place-items: center; border-radius: 28px; color: var(--blue-400); background: rgba(20, 152, 255, 0.13); border: 1px solid rgba(85, 183, 255, 0.24); }
.service-hero-symbol > span svg { width: 62px; height: 62px; }
.service-hero-symbol > img { width: 170px; height: 170px; }
.service-hero-symbol small { margin-top: 27px; color: rgba(255, 255, 255, 0.52); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.service-hero-symbol strong { margin-top: 8px; font-family: var(--font-display); font-size: 1.55rem; }
.compact-hero > .container { padding-bottom: 70px; }
.compact-hero h1 { font-size: clamp(3rem, 5vw, 5rem); }

.two-col { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr); align-items: start; gap: clamp(48px, 7vw, 92px); }
.service-content h2 { max-width: 750px; }
.service-content .two-col > div > p:not(.eyebrow) { max-width: 760px; margin-top: 22px; color: var(--muted); }
.symptom-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 31px 0 0; padding: 0; list-style: none; }
.symptom-list li { display: flex; align-items: center; gap: 12px; min-height: 76px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); font-size: 0.88rem; font-weight: 700; }
.symptom-list svg { width: 20px; height: 20px; color: var(--blue-600); }
.appointment-card {
  position: sticky;
  top: 126px;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 8%, rgba(20, 152, 255, 0.25), transparent 30%),
    linear-gradient(150deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-lg);
}
.appointment-card img { width: 112px; height: 112px; margin-bottom: 23px; }
.appointment-card h2 { font-size: 2.3rem; }
.appointment-card p { margin: 17px 0 26px; color: rgba(255, 255, 255, 0.67); }
.appointment-card .btn { width: 100%; }
.appointment-card .text-link { display: block; margin-top: 17px; color: var(--blue-400); text-align: center; font-size: 0.8rem; }
.included-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.included-list li { min-height: 210px; padding: 27px 23px; border-top: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.included-list li:first-child { border-left: 1px solid var(--line-dark); border-radius: var(--radius-md) 0 0 var(--radius-md); }
.included-list li:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.included-list span { color: var(--blue-400); font-family: var(--font-display); font-size: 2rem; font-weight: 900; }
.included-list p { margin-top: 30px; color: rgba(255, 255, 255, 0.78); font-size: 0.9rem; font-weight: 650; }
.related-section { background: var(--paper-2); }
.related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.contact-section { background: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr); align-items: start; gap: clamp(42px, 7vw, 90px); }
.contact-details h2 { max-width: 690px; }
.contact-list { display: grid; gap: 12px; margin-top: 30px; }
.contact-list > a,
.contact-list > span { display: flex; align-items: flex-start; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.contact-list svg { color: var(--blue-600); }
.contact-list span span,
.contact-list a span { display: grid; }
.contact-list small { color: var(--muted); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.contact-list strong { margin-top: 5px; font-size: 0.91rem; line-height: 1.4; }
.whatsapp-form { padding: clamp(30px, 4vw, 50px); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.form-head { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.form-head img { width: 82px; height: 82px; }
.form-head .eyebrow { margin-bottom: 10px; }
.form-head h2 { font-size: clamp(2rem, 3vw, 3.1rem); }
.whatsapp-form label { display: grid; gap: 8px; margin-top: 17px; color: var(--ink-soft); font-size: 0.78rem; font-weight: 800; }
.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfe;
}
.whatsapp-form input,
.whatsapp-form select { min-height: 52px; padding: 0 14px; }
.whatsapp-form textarea { padding: 13px 14px; resize: vertical; }
.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus { border-color: var(--blue-500); background: var(--white); }
.whatsapp-form .btn { width: 100%; margin-top: 22px; }
.form-note { margin-top: 13px; color: var(--muted); font-size: 0.72rem; text-align: center; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, 0.35fr); align-items: start; gap: 65px; }
.article-layout article { max-width: 830px; }
.article-layout article h2 { margin-top: 48px; font-size: clamp(2rem, 3.5vw, 3.4rem); }
.article-layout article h2:first-of-type { margin-top: 0; }
.article-layout article p { margin-top: 19px; color: var(--muted); font-size: 1rem; }
.notice-box { margin-top: 45px; padding: 30px; border-left: 4px solid var(--blue-500); border-radius: 0 var(--radius-md) var(--radius-md) 0; background: var(--blue-100); }
.notice-box strong { font-family: var(--font-display); font-size: 1.45rem; }
.notice-box p { margin: 10px 0 20px !important; color: var(--ink-soft) !important; }

.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 46px; font-size: clamp(2rem, 3.5vw, 3.2rem); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-top: 18px; color: var(--muted); }
.legal-content a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 3px; }

.error-body { min-height: 100vh; color: var(--white); background: radial-gradient(circle at 50% 15%, rgba(20, 152, 255, 0.2), transparent 32%), var(--navy-950); }
.error-page { display: flex; min-height: 100vh; align-items: center; justify-content: center; flex-direction: column; padding: 40px 20px; text-align: center; }
.error-page img { width: 150px; height: 150px; }
.error-code { margin-top: 18px; color: var(--blue-400); font-family: var(--font-display); font-size: 5rem; font-weight: 900; line-height: 1; }
.error-page h1 { margin-top: 10px; font-size: clamp(2.7rem, 6vw, 5rem); }
.error-page > p:not(.error-code) { margin-top: 18px; color: rgba(255, 255, 255, 0.65); }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 560ms ease, transform 560ms ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .site-nav { gap: 17px; }
  .site-nav > a:not(.btn):not(.header-phone) { font-size: 0.82rem; }
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr); gap: 48px; }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid > div:nth-child(2) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .trust-grid > div:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .included-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .included-list li { border-bottom: 1px solid var(--line-dark); }
  .included-list li:first-child { border-radius: var(--radius-md) 0 0 0; }
  .included-list li:nth-child(3) { border-radius: 0 var(--radius-md) 0 0; }
  .included-list li:nth-child(4) { border-left: 1px solid var(--line-dark); border-radius: 0 0 0 var(--radius-md); }
  .included-list li:last-child { border-radius: 0 0 var(--radius-md) 0; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-contact address { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .topbar-right span { display: none; }
  .nav-toggle { display: grid; }
  .site-nav {
    position: fixed;
    top: 124px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 28px 20px max(30px, env(safe-area-inset-bottom));
    color: var(--white);
    background: rgba(3, 10, 17, 0.985);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }
  .menu-open .site-nav { transform: translateX(0); visibility: visible; }
  .site-nav > a:not(.btn):not(.header-phone) { padding: 18px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-family: var(--font-display); font-size: 1.55rem; }
  .site-nav > a:not(.btn):not(.header-phone)::after { display: none; }
  .site-nav .nav-cta { margin-top: 22px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: 540px; }
  .hero-location { right: 22px; }
  .split-heading { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .serious-grid,
  .reviews-grid,
  .social-grid,
  .location-grid,
  .faq-grid,
  .page-hero-grid,
  .two-col,
  .contact-grid,
  .article-layout { grid-template-columns: 1fr; }
  .serious-media { order: 2; }
  .serious-copy { order: 1; }
  .reviews-grid { gap: 36px; }
  .social-grid { grid-template-columns: 1fr; }
  .facebook-card { min-height: auto; }
  .faq-intro,
  .appointment-card { position: static; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid li:first-child { border-radius: var(--radius-md) 0 0 0; }
  .process-grid li:nth-child(2) { border-radius: 0 var(--radius-md) 0 0; }
  .process-grid li:nth-child(3) { border-left: 1px solid var(--line); border-radius: 0 0 0 var(--radius-md); }
  .process-grid li:last-child { border-radius: 0 0 var(--radius-md) 0; }
  .service-hero-symbol { min-height: 260px; }
  .contact-cards { max-width: 800px; }
  .article-layout .appointment-card { max-width: 560px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1220px); }
  html { scroll-padding-top: 90px; }
  body { font-size: 15px; }
  .topbar { display: none; }
  .site-header { top: 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 56px; height: 56px; }
  .brand-copy strong { font-size: 1.28rem; }
  .brand-copy small { font-size: 0.58rem; letter-spacing: 0.08em; }
  .site-nav { top: 76px; }
  .hero-grid { min-height: 0; padding-top: 56px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-links { align-items: flex-start; flex-direction: column; }
  .hero-facts { grid-template-columns: 1fr; gap: 18px; }
  .hero-facts div { padding-right: 0; }
  .hero-facts div + div { padding-top: 18px; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.13); border-left: 0; }
  .hero-visual { min-height: 420px; }
  .hero-logo { right: 14px; bottom: 14px; left: 14px; padding: 12px 13px; }
  .hero-logo img { width: 60px; height: 60px; }
  .hero-logo strong { font-size: 1.15rem; }
  .hero-logo span { font-size: 0.67rem; }
  .hero-location { top: 14px; right: 14px; min-width: 165px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 112px; border-right: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); border-left: 1px solid rgba(255, 255, 255, 0.1); }
  .trust-grid > div + div { border-top: 0; }
  .services-grid,
  .related-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { border-left: 1px solid var(--line); border-radius: 0 !important; }
  .process-grid li:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0 !important; }
  .process-grid li:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md) !important; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-cards > a,
  .contact-cards > span { min-height: auto; }
  .facebook-card-top { align-items: flex-start; flex-direction: column; }
  .facebook-card img { width: 150px; }
  .embed-card,
  .facebook-embed { min-height: 440px; }
  .embed-placeholder { padding: 28px; }
  .location-panel { padding: 27px; }
  .faq-item summary { padding-right: 42px; font-size: 1.08rem; }
  .faq-item > div { padding-right: 20px; }
  .symptom-list { grid-template-columns: 1fr; }
  .included-list { grid-template-columns: 1fr; }
  .included-list li { border-left: 1px solid var(--line-dark); border-radius: 0 !important; }
  .included-list li:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0 !important; }
  .included-list li:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md) !important; }
  .page-hero > .container { padding-top: 45px; padding-bottom: 65px; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .service-hero-symbol { min-height: 230px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-contact { grid-column: auto; }
  .footer-contact address { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 24px 0; }
  .mobile-actions {
    position: fixed;
    z-index: 95;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    overflow: hidden;
    color: var(--white);
    background: rgba(4, 15, 25, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
    transform: translateY(145%);
    transition: transform 220ms ease;
  }
  .mobile-actions-visible .mobile-actions { transform: translateY(0); }
  .mobile-actions a { display: flex; min-height: 56px; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; font-weight: 800; }
  .mobile-actions a:first-child { border-right: 1px solid rgba(255, 255, 255, 0.14); }
  .mobile-actions a:last-child { background: rgba(31, 198, 106, 0.18); }
  .mobile-actions svg { width: 20px; height: 20px; }
  .site-footer { padding-bottom: 80px; }
}

@media (max-width: 430px) {
  .brand-copy small { display: none; }
  .hero-visual { min-height: 360px; }
  .hero-location { display: none; }
  .hero-logo span { display: none; }
  .hero-logo img { width: 54px; height: 54px; }
  .hero-logo strong { font-size: 1.1rem; }
  .location-panel dl div { grid-template-columns: 1fr; gap: 5px; }
  .panel-actions { grid-template-columns: 1fr; }
  .form-head { align-items: flex-start; }
  .form-head img { width: 68px; height: 68px; }
}

@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; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* Final responsive and visual integrity pass */
:root {
  --container: min(1280px, calc(100vw - 48px));
}
html {
  scroll-padding-bottom: 96px;
  overscroll-behavior-x: none;
}
body {
  min-width: 0;
  overscroll-behavior-x: none;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p,
li,
dd {
  text-wrap: pretty;
}
.hero-grid > *,
.split-heading > *,
.serious-grid > *,
.reviews-grid > *,
.social-grid > *,
.facebook-card-top > *,
.location-grid > *,
.faq-grid > *,
.page-hero-grid > *,
.two-col > *,
.contact-grid > *,
.article-layout > *,
.footer-grid > * {
  min-width: 0;
}
.btn {
  text-align: center;
}

/* Desktop hero */
.hero-grid {
  min-height: 640px;
  grid-template-columns: minmax(0, 1.25fr) minmax(400px, 0.75fr);
  gap: clamp(36px, 4vw, 54px);
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
}
.hero-copy {
  min-width: 0;
}
.hero h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 4.45vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.052em;
}
.hero-lead {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.58;
}
.hero-actions {
  margin-top: 28px;
}
.hero-links {
  margin-top: 20px;
}
.hero-facts {
  margin-top: 28px;
  padding-top: 23px;
}
.hero-visual {
  min-height: clamp(460px, 34vw, 510px);
}
.hero-location {
  right: 20px;
}

/* Page and service heroes */
.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.9rem, 5vw, 5rem);
}

/* Reviews and social panels */
.reviews-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 3.5vw, 46px);
}
.social-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(22px, 2.4vw, 32px);
}
.facebook-card {
  min-height: 500px;
  padding: clamp(34px, 4vw, 54px);
  overflow: hidden;
}
.facebook-card-top {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(132px, 168px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 3vw, 40px);
}
.facebook-card-top > div {
  min-width: 0;
}
.facebook-card img {
  width: 100%;
  max-width: 168px;
  height: auto;
  justify-self: center;
}
.facebook-card h2 {
  max-width: 430px;
  font-size: clamp(2.2rem, 2.7vw, 3.2rem);
  line-height: 1;
  overflow-wrap: anywhere;
  word-break: normal;
}
.facebook-card p:not(.eyebrow) {
  max-width: 440px;
  margin: 18px 0 26px;
  line-height: 1.6;
}
.facebook-card .btn {
  max-width: 100%;
}
.facebook-embed {
  min-height: 500px;
}
.embed-placeholder {
  padding: clamp(28px, 4vw, 42px);
}
.embed-placeholder strong {
  max-width: 100%;
  text-wrap: balance;
}

/* Comfortable interaction sizes */
.site-nav > a,
.footer-bottom a,
.footer-social a,
.breadcrumbs a {
  min-height: 40px;
}
.site-nav > a:not(.btn):not(.header-phone) {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 1180px) {
  .header-phone {
    display: none;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 42px;
  }
  .hero h1 {
    font-size: clamp(3rem, 5.2vw, 4.35rem);
  }
  .hero-visual {
    min-height: 470px;
  }
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
  .facebook-card,
  .facebook-embed {
    min-height: 440px;
  }
  .facebook-card {
    padding: clamp(34px, 5vw, 58px);
  }
  .facebook-card-top {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  }
  .facebook-card img {
    max-width: 190px;
  }
  .facebook-card h2 {
    max-width: 670px;
    font-size: clamp(2.45rem, 5vw, 3.7rem);
  }
}

/* Tablet and compact desktop */
@media (max-width: 1060px) {
  .topbar-right span {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .site-nav {
    position: fixed;
    top: 124px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    max-width: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 28px 20px max(30px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--white);
    background: rgba(3, 10, 17, 0.985);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .menu-open .site-nav {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
  }
  .site-nav > a:not(.btn):not(.header-phone) {
    min-height: 58px;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-display);
    font-size: 1.55rem;
  }
  .site-nav > a:not(.btn):not(.header-phone)::after {
    display: none;
  }
  .site-nav .nav-cta {
    margin-top: 22px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-copy {
    max-width: 820px;
  }
  .hero h1 {
    max-width: 790px;
    font-size: clamp(3.05rem, 7vw, 4.75rem);
  }
  .hero-visual {
    width: min(100%, 820px);
    min-height: 500px;
  }
  .hero-location {
    right: 22px;
  }
  .split-heading,
  .serious-grid,
  .reviews-grid,
  .location-grid,
  .faq-grid,
  .page-hero-grid,
  .two-col,
  .contact-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .serious-media {
    order: 2;
  }
  .serious-copy {
    order: 1;
  }
  .reviews-copy,
  .location-panel {
    max-width: 820px;
  }
  .faq-intro,
  .appointment-card {
    position: static;
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-hero-symbol {
    min-height: 260px;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .services-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-cards > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-contact address {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Phones and narrow tablets */
@media (max-width: 760px) {
  :root {
    --container: min(calc(100% - 28px), 1280px);
  }
  html {
    scroll-padding-top: 86px;
    scroll-padding-bottom: 92px;
  }
  body {
    font-size: 15px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .topbar {
    display: none;
  }
  .site-header {
    top: 0;
  }
  .header-inner {
    min-height: 74px;
  }
  .site-nav {
    top: 74px;
  }
  .brand img {
    width: 54px;
    height: 54px;
  }
  .brand-copy strong {
    font-size: 1.2rem;
  }
  .brand-copy small {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }
  .nav-toggle {
    width: 46px;
    height: 46px;
  }
  .section {
    padding: clamp(58px, 15vw, 82px) 0;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(3, 12, 21, 0.97) 0%, rgba(3, 12, 21, 0.91) 62%, rgba(3, 12, 21, 0.78) 100%),
      url("/assets/img/hero-workshop.webp") 58% 50% / cover no-repeat;
  }
  .hero-grid-bg {
    opacity: 0.22;
  }
  .hero-grid {
    min-height: 0;
    gap: 0;
    padding-top: 45px;
    padding-bottom: 54px;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.4vw, 2.9rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }
  .hero-lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.56;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
  }
  .hero-links a {
    min-height: 38px;
  }
  .hero-facts {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 25px;
    padding-top: 21px;
  }
  .hero-facts div {
    padding-right: 0;
  }
  .hero-facts div + div {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }
  .hero-visual {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid li {
    border-left: 1px solid var(--line);
    border-radius: 0 !important;
  }
  .process-grid li:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
  }
  .process-grid li:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-cards > :last-child:nth-child(odd) {
    grid-column: auto;
  }

  .facebook-card {
    min-height: auto;
    padding: 30px 24px;
  }
  .facebook-card-top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }
  .facebook-card img {
    width: 132px;
    max-width: 132px;
  }
  .facebook-card-top > div {
    width: 100%;
  }
  .facebook-card .eyebrow {
    justify-content: center;
  }
  .facebook-card h2 {
    max-width: 300px;
    margin-inline: auto;
    font-size: clamp(2.1rem, 10vw, 2.85rem);
    overflow-wrap: normal;
  }
  .facebook-card p:not(.eyebrow) {
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
  }
  .facebook-card .btn {
    width: 100%;
    max-width: 280px;
  }
  .facebook-embed,
  .embed-card {
    min-height: 400px;
  }
  .embed-placeholder {
    padding: 26px 20px;
  }
  .embed-placeholder strong {
    font-size: 1.5rem;
  }

  .page-hero > .container {
    padding-top: 45px;
    padding-bottom: 65px;
  }
  .page-hero h1 {
    font-size: clamp(2.35rem, 9.2vw, 3.6rem);
  }
  .service-hero-symbol {
    min-height: 230px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-contact {
    grid-column: auto;
  }
  .footer-contact address {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }
  .mobile-actions {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
  }
  .mobile-actions a {
    min-height: 54px;
  }
  .site-footer {
    padding-bottom: 86px;
  }
}

@media (max-width: 600px) {
  .services-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 270px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    min-height: 72px;
    gap: 10px;
  }
  .brand {
    gap: 9px;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
  .brand-copy strong {
    font-size: 1.08rem;
  }
  .brand-copy small {
    display: none;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
  }
  .site-nav {
    top: 72px;
  }
  .hero-grid {
    padding-top: 43px;
    padding-bottom: 50px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 10.3vw, 2.7rem);
  }
  .hero-lead {
    font-size: 0.97rem;
  }
  .hero-facts dd {
    font-size: 0.86rem;
  }
  .facebook-card {
    padding: 31px 22px;
  }
  .facebook-card img {
    width: 118px;
    max-width: 118px;
  }
  .embed-placeholder .embed-logo {
    width: 64px;
    height: 64px;
  }
  .embed-placeholder strong {
    font-size: 1.4rem;
  }
  .embed-placeholder .btn {
    width: 100%;
  }
  .location-panel {
    padding: 24px 20px;
  }
}

@media (max-width: 350px) {
  :root {
    --container: min(calc(100% - 20px), 1280px);
  }
  .header-inner {
    gap: 8px;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brand-copy strong {
    font-size: 1rem;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .btn {
    padding-inline: 16px;
  }
  .mobile-actions {
    right: 6px;
    left: 6px;
  }
}

/* Compact desktop and landscape tablet refinement */
@media (max-width: 1060px) {
  .hero-copy,
  .hero-visual { margin-inline: auto; }
}

@media (min-width: 761px) and (max-width: 1060px) {
  .topbar { display: none; }
  .site-nav { top: 86px; }
}

@media (min-width: 901px) and (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: center;
    gap: 30px;
  }
  .hero-copy,
  .hero-visual {
    width: auto;
    max-width: none;
    margin-inline: 0;
  }
  .hero h1 {
    max-width: 590px;
    font-size: clamp(3rem, 5.5vw, 3.65rem);
  }
  .hero-lead {
    max-width: 560px;
    font-size: 1rem;
  }
  .hero-visual { min-height: 430px; }
  .hero-logo { right: 16px; bottom: 16px; left: 16px; }
  .hero-logo img { width: 60px; height: 60px; }
  .hero-logo strong { font-size: 1.18rem; }
  .hero-logo span { font-size: 0.68rem; }
  .hero-location { top: 16px; right: 14px; min-width: 170px; }
}

@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;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}
