@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("/assets/fonts/barlow-semi-condensed-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("/assets/fonts/barlow-semi-condensed-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("/assets/fonts/barlow-semi-condensed-latin-800-normal.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --orange: #f25a05;
  --orange-strong: #ff6814;
  --ink: #080909;
  --ink-soft: #101112;
  --panel: #151617;
  --cream: #f2f1ee;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #b7b9bb;
  --white: #ffffff;
  --header-height: 80px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-synthesis: none;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 7, 7, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { display: block; margin-right: auto; }
.brand-crop {
  position: relative;
  display: block;
  width: 195px;
  height: 54px;
  overflow: hidden;
}
.brand-crop img {
  position: absolute;
  width: 210px;
  height: 210px;
  max-width: none;
  top: -78px;
  left: -8px;
  object-fit: cover;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  position: relative;
  color: #dcddde;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}
.nav a:hover, .nav a:focus-visible { color: var(--white); }
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }

.header-cta {
  flex: 0 0 auto;
  border-radius: 5px;
  background: var(--orange);
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover { background: var(--orange-strong); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 19px; height: 2px; background: var(--white); transition: .2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 0 128px;
  background: #0c0d0e;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(5, 6, 6, .82) 0%, rgba(5, 6, 6, .58) 46%, rgba(5, 6, 6, .08) 78%),
    url('/hero-workshop.jpg');
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .24), transparent 38%, rgba(5, 5, 5, .55)),
    repeating-linear-gradient(135deg, transparent 0 48px, rgba(255, 255, 255, .018) 49px 50px);
}

.hero-content { position: relative; z-index: 2; padding-top: 12px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #dedfe0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { display: block; width: 32px; height: 3px; background: var(--orange); }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 em { display: block; color: var(--orange); font-style: normal; }

.hero-content > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c7c9ca;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); }
.button-primary:hover { background: var(--orange-strong); }
.button-secondary { border-color: rgba(255,255,255,.34); background: rgba(0,0,0,.24); }
.button-secondary:hover { border-color: rgba(255,255,255,.7); background: rgba(0,0,0,.42); }

.rating-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  color: #e8e9e9;
  font-size: 13px;
}
.rating-pill .stars { color: #ffb800; letter-spacing: 1px; }
.rating-pill strong { color: var(--white); }

.hero-services {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(5,5,5,.73);
  backdrop-filter: blur(12px);
}
.service-ticker {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #d7d8d9;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.service-ticker span { flex: 1; display: flex; justify-content: center; text-align: center; }
.service-ticker i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

.section { padding: 112px 0; }
.services-section {
  position: relative;
  padding-top: 88px;
  background:
    radial-gradient(circle at 87% 10%, rgba(242,90,5,.07), transparent 24%),
    #0b0c0d;
}

.section-heading { margin-bottom: 54px; }
.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  gap: 70px;
  align-items: center;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 28px; height: 3px; background: currentColor; }
.section-heading h2, .about-copy h2, .reviews-title h2, .location-card h2 {
  margin: 0;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-heading > p, .services-heading-side > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.services-heading-side { max-width: 520px; }
.services-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 24px; }
.services-summary span { color: #85898b; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.services-summary a { border-bottom: 1px solid rgba(242,90,5,.55); padding-bottom: 4px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 354px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  padding: 28px;
  transition: background .25s ease, transform .25s ease;
}
.service-card:hover { position: relative; z-index: 1; background: #151617; transform: translateY(-4px); }
.service-card-top { display: flex; align-items: flex-start; justify-content: flex-end; margin-bottom: 30px; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242,90,5,.22);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(242,90,5,.14), rgba(242,90,5,.05));
  color: var(--orange);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.service-icon svg { width: 28px; height: 28px; fill: currentColor; stroke: none; }
.service-card:hover .service-icon { background: var(--orange); color: #111; transform: translateY(-2px); }
.service-card h3 { margin: 0 0 14px; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 23px; font-weight: 700; letter-spacing: .01em; text-transform: uppercase; }
.service-card p { margin: 0; color: #aeb0b2; font-size: 14px; line-height: 1.65; }
.service-links { display: grid; gap: 12px; margin-top: auto; padding-top: 24px; }
.service-links a { display: flex; align-items: center; gap: 8px; color: #e4e5e6; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.service-links a svg, .text-link svg, .footer-whatsapp svg { width: 17px; min-width: 17px; max-width: 17px; height: 17px; min-height: 17px; max-height: 17px; flex: 0 0 17px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s ease; }
.service-links a:hover { color: var(--orange); }
.service-links a:hover svg, .text-link:hover svg, .footer-whatsapp:hover svg { transform: translateX(4px); }
.service-links .service-whatsapp-link { width: max-content; border-bottom: 1px solid rgba(242,90,5,.45); padding-bottom: 4px; color: var(--orange); }

.cta-band { position: relative; overflow: hidden; background: var(--orange); color: var(--white); }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background: repeating-linear-gradient(135deg, transparent 0 36px, rgba(0,0,0,.5) 37px 38px);
}
.cta-band-inner { min-height: 220px; position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 42px; }
.cta-symbol { min-width: 245px; font-family: Impact, "Arial Black", sans-serif; font-size: clamp(70px, 6vw, 94px); font-style: italic; font-weight: 900; line-height: .8; letter-spacing: -.07em; white-space: nowrap; opacity: .14; }
.cta-band-inner span { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cta-band-inner h2 { margin: 0; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: clamp(29px, 3.5vw, 48px); font-weight: 700; line-height: 1.05; text-transform: uppercase; }
.button-dark { background: #111; color: var(--white); }
.button-dark:hover { background: #000; }
.button-dark svg { fill: none; stroke: currentColor; }

.about-section { background: #f2f1ee; color: #121313; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 7vw, 100px); align-items: center; }
.about-media { position: relative; min-height: 560px; }
.about-media::before { content: ""; position: absolute; inset: -18px 42px 42px -18px; border: 2px solid rgba(242,90,5,.55); }
.about-media img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.8) contrast(1.03); }
.about-tag { position: absolute; right: -26px; bottom: 36px; min-width: 185px; background: var(--orange); color: #fff; padding: 22px 24px; }
.about-tag span { display: block; margin-bottom: 5px; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.about-tag strong { font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 27px; font-weight: 700; text-transform: uppercase; }
.about-copy .section-kicker { margin-bottom: 20px; }
.about-copy h2 { max-width: 620px; margin-bottom: 30px; }
.about-copy p { color: #4d5052; font-size: 16px; line-height: 1.74; }
.about-copy .text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; border-bottom: 2px solid var(--orange); padding-bottom: 6px; color: #141515; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.features-section { padding: 94px 0 102px; background: #111213; }
.centered-heading { max-width: 700px; margin-inline: auto; text-align: center; }
.centered-heading .section-kicker::before { display: none; }
.features-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.features-grid article { position: relative; padding: 34px 32px 10px; border-right: 1px solid var(--line); }
.features-grid article:last-child { border-right: 0; }
.features-grid svg { width: 39px; height: 39px; margin-bottom: 24px; fill: none; stroke: var(--orange); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.features-grid h3 { margin: 0 0 11px; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 21px; font-weight: 700; text-transform: uppercase; }
.features-grid p { margin: 0; color: #a5a8aa; font-size: 14px; line-height: 1.65; }

.reviews-section { background: #090a0a; }
.reviews-grid { display: grid; grid-template-columns: 1fr .8fr .8fr; gap: 22px; align-items: stretch; }
.reviews-title { padding-right: 38px; }
.reviews-title h2 em { display: block; color: var(--orange); font-style: normal; }
.reviews-title p { max-width: 440px; margin: 26px 0 0; color: var(--muted); line-height: 1.7; }
.rating-card, .reviews-placeholder { min-height: 410px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); padding: 38px; background: #121314; }
.rating-card { align-items: center; text-align: center; }
.rating-card-score { font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 90px; font-weight: 700; line-height: 1; }
.rating-card-stars { margin: 8px 0 18px; color: #ffb800; font-size: 21px; letter-spacing: 3px; }
.rating-card strong { font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; }
.rating-card > span { margin-top: 6px; color: #9fa2a4; font-size: 13px; }
.rating-card .button { width: 100%; margin-top: 28px; padding-inline: 16px; font-size: 11px; }
.reviews-placeholder { position: relative; overflow: hidden; justify-content: flex-end; background: linear-gradient(155deg, #1a1b1c, #111); }
.reviews-placeholder::after { content: ""; position: absolute; width: 210px; height: 210px; top: -105px; right: -85px; border: 45px solid rgba(242,90,5,.08); border-radius: 50%; }
.quote-mark { height: 98px; color: var(--orange); font-family: Georgia, serif; font-size: 150px; line-height: .8; }
.reviews-placeholder p { position: relative; z-index: 1; margin: 0 0 14px; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 27px; font-weight: 600; line-height: 1.2; text-transform: uppercase; }
.reviews-placeholder span { position: relative; z-index: 1; color: #989b9d; font-size: 13px; line-height: 1.6; }

.location-section { min-height: 680px; position: relative; background: #d8d6d1; color: #111; }
.map-wrap { position: absolute; inset: 0; }
.map-wrap iframe { width: 100%; height: 100%; display: block; border: 0; filter: saturate(.72) contrast(1.03); }
.location-card {
  position: relative;
  z-index: 2;
  width: min(540px, calc(100% - 48px));
  min-height: 580px;
  margin-left: max(24px, calc((100% - 1180px) / 2));
  padding: 52px 54px;
  background: #f7f6f3;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.location-card h2 { margin-bottom: 32px; font-size: clamp(36px, 4vw, 52px); }
.contact-row { display: grid; grid-template-columns: 30px 1fr; gap: 16px; align-items: start; padding: 18px 0; border-top: 1px solid #d9d7d2; }
.contact-row > svg { width: 24px; height: 24px; fill: none; stroke: var(--orange); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-row div > span { display: block; margin-bottom: 6px; color: #777a7b; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-row strong, .contact-row a { color: #222425; font-size: 14px; font-style: normal; line-height: 1.6; }
.contact-row a { font-size: 17px; font-weight: 700; }
.location-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 24px; }
.location-actions .button { min-height: 48px; padding-inline: 12px; font-size: 10px; }
.location-actions .button:first-child { grid-column: 1 / -1; }
.button-outline-dark { border-color: #c9c7c2; color: #181919; background: transparent; }
.button-outline-dark:hover { border-color: #7d7c78; background: #edebe6; }

.site-footer { background: #070808; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) minmax(130px, .58fr) minmax(120px, .58fr) minmax(410px, 1.7fr);
  gap: clamp(28px, 3vw, 48px);
  padding-top: 80px;
  padding-bottom: 62px;
}
.footer-logo-crop { position: relative; display: block; width: 230px; height: 66px; overflow: hidden; margin-bottom: 23px; }
.footer-logo-crop img { position: absolute; width: 250px; height: 250px; top: -92px; left: -10px; max-width: none; object-fit: cover; }
.footer-brand p { max-width: 320px; margin: 0; color: #8e9294; font-size: 14px; line-height: 1.7; }
.footer-grid h3 { margin: 8px 0 24px; color: #f0f1f1; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 18px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li, .footer-grid address { margin: 0 0 11px; color: #919496; font-size: 13px; font-style: normal; line-height: 1.6; }
.footer-hours { margin: 15px 0 0; color: #919496; font-size: 12px; line-height: 1.6; }
.footer-grid address { word-break: normal; overflow-wrap: normal; text-wrap: pretty; }
.footer-hours, .footer-phone, .footer-whatsapp { white-space: nowrap; }
.footer-grid li a:hover { color: var(--orange); }
.footer-phone { display: block; margin-top: 18px; color: #f4f4f4; font-size: 18px; font-weight: 700; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 7px; margin-top: 17px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.footer-bottom { min-height: 92px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border-top: 1px solid var(--line); color: #707477; font-size: 11px; text-align: center; }
.footer-bottom > a { position: absolute; top: 50%; right: 0; color: #b7b9ba; font-weight: 800; text-transform: uppercase; transform: translateY(-50%); }
.footer-credit { color: #777b7d; }
.footer-credit a { color: var(--orange); font-weight: 700; }
.footer-credit a:hover { color: #ff7a30; }

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: #20a85a;
  padding: 0 19px 0 15px;
  box-shadow: 0 14px 34px rgba(0,0,0,.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.floating-whatsapp:hover { background: #15964d; transform: translateY(-2px); }
.floating-whatsapp svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Páginas individuais de serviços */
.service-hero {
  min-height: 610px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 92px;
  background: #090a0a url('/hero-workshop.jpg') center/cover no-repeat;
}
.service-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,6,.97) 0%, rgba(5,6,6,.82) 53%, rgba(5,6,6,.32) 100%); }
.service-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,6,6,.5), transparent 45%); }
.service-hero .container { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 25px; color: #aeb0b2; font-size: 12px; }
.breadcrumbs a { color: #d6d8d9; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span[aria-current="page"] { color: var(--orange); }
.service-hero h1 { max-width: 820px; margin: 0; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: clamp(54px, 7vw, 94px); font-weight: 700; line-height: .94; letter-spacing: -.035em; text-transform: uppercase; }
.service-hero h1 em { display: block; color: var(--orange); font-style: normal; }
.service-hero p { max-width: 700px; margin: 27px 0 0; color: #c7c9ca; font-size: 18px; line-height: 1.65; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.service-content { background: var(--cream); color: #161717; }
.service-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .65fr); gap: 80px; align-items: start; }
.service-copy h2, .signals-section h2, .related-services h2 { margin: 0 0 25px; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: clamp(37px, 4.5vw, 61px); font-weight: 700; line-height: 1; letter-spacing: -.025em; text-transform: uppercase; }
.service-copy h3 { margin: 38px 0 13px; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 27px; font-weight: 700; text-transform: uppercase; }
.service-copy p { margin: 0 0 18px; color: #4d5052; font-size: 16px; line-height: 1.78; }
.service-checklist { display: grid; gap: 14px; margin: 27px 0 0; padding: 0; list-style: none; }
.service-checklist li { position: relative; padding-left: 31px; color: #343637; line-height: 1.55; }
.service-checklist li::before { content: ""; position: absolute; top: 7px; left: 0; width: 14px; height: 8px; border-left: 3px solid var(--orange); border-bottom: 3px solid var(--orange); transform: rotate(-45deg); }
.service-side-card { position: sticky; top: 105px; border-top: 5px solid var(--orange); background: #111213; color: #fff; padding: 34px 30px; box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.service-side-card span { display: block; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.service-side-card h2 { margin: 11px 0 17px; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 32px; font-weight: 700; line-height: 1.05; text-transform: uppercase; }
.service-side-card p { margin: 0 0 25px; color: #b9bcbd; font-size: 14px; line-height: 1.65; }
.service-side-card .button { width: 100%; padding-inline: 14px; }
.service-side-card .side-phone { display: block; margin-top: 20px; color: #f2f2f2; font-size: 16px; font-weight: 700; text-align: center; }
.signals-section { border-top: 1px solid #d9d7d1; background: #efede7; color: #171818; }
.signals-heading { max-width: 760px; margin-bottom: 42px; }
.signals-heading p { color: #5b5d5f; line-height: 1.7; }
.signals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #d4d1ca; border: 1px solid #d4d1ca; }
.signals-grid article { min-height: 190px; background: #faf9f5; padding: 29px; }
.signals-grid strong { display: block; margin-bottom: 11px; font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; }
.signals-grid p { margin: 0; color: #5c5f60; font-size: 14px; line-height: 1.65; }
.related-services { background: #090a0a; }
.related-services .section-kicker { margin-bottom: 17px; }
.related-services h2 { max-width: 680px; color: #fff; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 42px; background: var(--line); border: 1px solid var(--line); }
.related-grid a { min-height: 138px; display: flex; flex-direction: column; justify-content: space-between; background: #141516; padding: 25px; transition: background .2s ease; }
.related-grid a:hover { background: #1b1c1d; }
.related-grid strong { font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; }
.related-grid span { color: var(--orange); font-size: 11px; font-weight: 700; text-transform: uppercase; }

@media (max-width: 900px) {
  .service-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-side-card { position: static; }
  .signals-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .service-hero { min-height: auto; padding: 126px 0 68px; }
  .service-hero h1 { font-size: clamp(45px, 14vw, 66px); }
  .service-hero p { font-size: 16px; }
  .service-hero-actions .button { width: 100%; }
  .signals-grid, .related-grid { grid-template-columns: 1fr; }
  .signals-grid article { min-height: 0; }
}

@media (max-width: 1080px) {
  .header-inner { gap: 18px; }
  .nav { gap: 18px; }
  .nav a { font-size: 12px; }
  .header-cta { display: none; }
  .cta-band-inner { grid-template-columns: 1fr auto; }
  .cta-symbol { display: none; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-grid article { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
  .features-grid article:nth-child(2) { border-right: 0; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-title { grid-column: 1 / -1; padding-right: 0; margin-bottom: 20px; }
  .footer-grid { grid-template-columns: minmax(190px, 1fr) minmax(120px, .6fr) minmax(350px, 1.6fr); }
  .footer-grid > div:nth-child(3) { display: none; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .container, .header-inner { width: min(100% - 34px, 1180px); }
  .brand-crop { width: 166px; height: 48px; }
  .brand-crop img { width: 180px; height: 180px; top: -66px; left: -7px; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 17px;
    right: 17px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111213;
    box-shadow: 0 24px 70px rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .2s ease;
  }
  .nav-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .hero { min-height: max(760px, 100svh); padding: calc(var(--header-height) + 52px) 0 112px; align-items: flex-start; }
  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(5,6,6,.8) 0%, rgba(5,6,6,.53) 52%, rgba(5,6,6,.85) 100%),
      url('/hero-workshop.jpg');
    background-position: 62% center;
  }
  .hero h1 { max-width: 650px; font-size: clamp(46px, 11vw, 76px); }
  .hero-content > p { max-width: 580px; font-size: 16px; }
  .service-ticker { min-height: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; overflow: visible; padding: 12px 0; }
  .service-ticker i { display: none; }
  .service-ticker span { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 8px; padding-inline: 6px; font-size: 11px; white-space: nowrap; text-align: center; }
  .service-ticker span::before { content: ""; width: 5px; height: 5px; flex: 0 0 5px; border-radius: 50%; background: var(--orange); }
  .section { padding: 82px 0; }
  .heading-split { grid-template-columns: 1fr; gap: 22px; }
  .section-heading { margin-bottom: 40px; }
  .service-card { min-height: 330px; }
  .cta-band-inner { min-height: 270px; grid-template-columns: 1fr auto; gap: 26px; }
  .cta-symbol { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { min-height: 500px; }
  .about-tag { right: 20px; }
  .about-copy { padding-top: 12px; }
  .location-section { display: flex; flex-direction: column; min-height: auto; }
  .map-wrap { position: relative; order: 2; height: 420px; }
  .location-card { width: 100%; min-height: auto; margin: 0; padding: 62px max(24px, calc((100% - 680px) / 2)); box-shadow: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  :root { --header-height: 66px; }
  .container, .header-inner { width: calc(100% - 32px); }
  .site-header { background: rgba(6, 7, 7, .96); backdrop-filter: blur(12px); }
  .brand-crop { width: 150px; height: 44px; }
  .brand-crop img { width: 166px; height: 166px; top: -61px; left: -7px; }
  .menu-toggle { width: 44px; height: 44px; border-radius: 6px; }
  .nav { top: var(--header-height); left: 10px; right: 10px; max-height: calc(100svh - var(--header-height) - 10px); overflow-y: auto; padding: 6px; }
  .nav a { padding: 15px 14px; font-size: 14px; }

  .hero { min-height: max(730px, 100svh); padding: calc(var(--header-height) + 38px) 0 104px; }
  .hero-content { padding-top: 0; }
  .eyebrow { align-items: flex-start; margin-bottom: 18px; font-size: 10.5px; line-height: 1.45; letter-spacing: .13em; }
  .eyebrow span { flex: 0 0 auto; margin-top: 7px; }
  .hero h1 { max-width: 350px; font-size: clamp(42px, 12.5vw, 54px); line-height: .95; letter-spacing: -.03em; }
  .hero h1 em { display: inline; }
  .hero-content > p { max-width: 350px; margin-top: 18px; font-size: 14.5px; line-height: 1.58; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .button { width: 100%; min-height: 52px; padding-inline: 18px; font-size: 12px; }
  .rating-pill { justify-content: center; flex-wrap: nowrap; margin: 22px auto 0; padding: 9px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(0,0,0,.28); font-size: 12px; line-height: 1.2; }
  .rating-pill .stars { letter-spacing: 0; }
  .service-ticker { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; padding: 10px 0; }
  .service-ticker span { min-height: 36px; display: grid; grid-template-columns: 4px minmax(0, 92px); justify-content: center; align-items: center; gap: 5px; padding: 0; font-size: clamp(8px, 2.25vw, 9px); text-align: left; }
  .service-ticker span::before { width: 4px; height: 4px; }
  .section { padding: 64px 0; }
  .services-section { padding-top: 64px; }
  .section-heading { margin-bottom: 32px; }
  .heading-split { gap: 18px; }
  .section-heading h2, .about-copy h2, .reviews-title h2 { font-size: clamp(36px, 10.5vw, 40px); line-height: 1; }
  .section-heading > p, .services-heading-side > p { font-size: 14.5px; line-height: 1.65; }
  .services-summary { display: flex; justify-content: flex-end; align-items: center; margin-top: 18px; }
  .services-summary a { font-size: 10px; line-height: 1.35; white-space: nowrap; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 24px 22px 22px; }
  .service-card-top { margin-bottom: 18px; }
  .service-icon { width: 50px; height: 50px; border-radius: 10px; }
  .service-icon svg { width: 25px; height: 25px; }
  .service-card h3 { margin-bottom: 11px; font-size: 22px; }
  .service-card h3 a { display: inline-flex; align-items: center; gap: 8px; }
  .service-card h3 a::after { content: ""; width: 7px; height: 7px; border-top: 1.5px solid var(--orange); border-right: 1.5px solid var(--orange); transform: rotate(45deg); opacity: .8; }
  .service-card p { font-size: 14px; line-height: 1.64; }
  .service-links { gap: 0; margin-top: 18px; padding-top: 0; }
  .service-links a:first-child { display: none !important; }
  .service-links a svg { width: 17px !important; min-width: 17px !important; max-width: 17px !important; height: 17px !important; min-height: 17px !important; max-height: 17px !important; flex: 0 0 17px !important; }
  .service-links .service-whatsapp-link { font-size: 10.5px; }

  .cta-band-inner { min-height: 280px; grid-template-columns: 1fr; align-content: center; gap: 24px; }
  .cta-band-inner span { margin-bottom: 9px; font-size: 11px; }
  .cta-band-inner h2 { max-width: 340px; font-size: 34px; line-height: 1.02; }
  .cta-band-inner .button { width: 100%; }
  .about-grid { gap: 50px; }
  .about-media { min-height: 330px; }
  .about-media::before { inset: -10px 24px 24px -10px; }
  .about-tag { right: 12px; bottom: 18px; min-width: 165px; padding: 17px 19px; }
  .about-tag strong { font-size: 21px; }
  .about-copy { padding-top: 0; }
  .about-copy h2 { margin-bottom: 22px; }
  .about-copy p { font-size: 15px; line-height: 1.7; }
  .features-section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid article, .features-grid article:nth-child(2) { border-right: 0; padding: 27px 6px; }
  .features-grid svg { margin-bottom: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-title { margin-bottom: 6px; }
  .rating-card { min-height: 330px; padding: 30px 22px; }
  .reviews-placeholder { min-height: 310px; padding: 30px 22px; }
  .rating-card-score { font-size: 72px; }
  .map-wrap { height: 300px; }
  .location-card { padding: 50px 20px; }
  .location-card h2 { margin-bottom: 26px; font-size: 34px; }
  .contact-row { grid-template-columns: 26px 1fr; gap: 12px; padding: 16px 0; }
  .contact-row > svg { width: 22px; height: 22px; }
  .contact-row strong, .contact-row a { font-size: 13.5px; }
  .location-actions { grid-template-columns: 1fr; }
  .location-actions .button:first-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 52px; padding-bottom: 42px; }
  .footer-grid > div:nth-child(2) { display: none; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-hours { white-space: normal; }
  .footer-logo-crop { width: 210px; height: 60px; margin-bottom: 18px; }
  .footer-logo-crop img { width: 228px; height: 228px; top: -84px; left: -9px; }
  .footer-brand p { font-size: 13.5px; }
  .footer-bottom { min-height: auto; padding: 22px 0 24px; align-items: center; gap: 7px; text-align: center; }
  .footer-bottom > a { position: static; margin-top: 8px; transform: none; }
  .floating-whatsapp { width: 52px; height: 52px; min-height: 52px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); justify-content: center; padding: 0; border-radius: 50%; }
  .floating-whatsapp span { display: none; }

  .service-hero { min-height: auto; padding: calc(var(--header-height) + 42px) 0 58px; }
  .breadcrumbs { margin-bottom: 18px; font-size: 11px; }
  .service-hero h1 { font-size: clamp(40px, 13vw, 54px); line-height: .95; }
  .service-hero p { margin-top: 20px; font-size: 15px; line-height: 1.62; }
  .service-hero-actions { gap: 10px; margin-top: 26px; }
  .service-layout { gap: 42px; }
  .service-copy h2, .signals-section h2, .related-services h2 { font-size: 36px; }
  .service-copy h3 { margin-top: 32px; font-size: 24px; }
  .service-copy p { font-size: 15px; line-height: 1.7; }
  .service-side-card { padding: 28px 22px; }
  .service-side-card h2 { font-size: 29px; }
}

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