:root {
  --black: #080a0c;
  --black-soft: #0d1013;
  --graphite: #14191e;
  --graphite-light: #20262c;
  --orange: #f05a20;
  --orange-dark: #c84310;
  --amber: #ff9a3d;
  --silver: #c9ced2;
  --silver-dark: #7f898f;
  --white: #f5f7f8;
  --paper: #eceff1;
  --ink: #101316;
  --muted: #596269;
  --line-dark: rgba(245, 247, 248, 0.13);
  --line-light: rgba(8, 10, 12, 0.16);
  --display: "Arial Black", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --shell: min(1180px, calc(100% - 40px));
  --section-space: clamp(80px, 10vw, 150px);
  --ease: 220ms ease;
  --ease-slow: 700ms cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--black);
  background: var(--orange);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 span,
h2 span {
  color: var(--orange);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--black);
  background: var(--white);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform var(--ease);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--silver-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-block;
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--orange);
  transform: skewX(-32deg);
}

.eyebrow i {
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition:
    color var(--ease),
    background-color var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
}

.button::before {
  width: 4px;
  height: 16px;
  background: currentColor;
  content: "";
  opacity: 0.45;
  transform: skewX(-22deg);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.7rem;
}

.button-large {
  min-height: 60px;
  padding: 17px 27px;
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 16px 40px rgba(240, 90, 32, 0.18);
}

.button-primary:hover {
  background: #ff682e;
  box-shadow: 0 18px 48px rgba(240, 90, 32, 0.28);
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-light:hover {
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
  font-size: 1rem;
  transition: transform var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 12, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 132px;
  height: auto;
  mix-blend-mode: screen;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 4vw, 48px);
}

.desktop-nav a {
  position: relative;
  padding-block: 9px;
  color: var(--silver);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 74px);
  padding: clamp(48px, 7vw, 88px) 0 30px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  top: -220px;
  right: -250px;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(240, 90, 32, 0.11), transparent 68%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  background: var(--orange);
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 37%, 0 70%, 100% 67%, 100% 100%, 0 100%);
  opacity: 0.75;
}

.hero-grid-lines,
.final-grid {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-layout {
  display: grid;
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
}

.hero-layout > *,
.hero-copy,
.final-inner {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6.2vw, 6.6rem);
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 590px;
  margin-bottom: 32px;
  color: #aeb5b9;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 15px;
}

.hero-microcopy {
  max-width: 520px;
  margin-bottom: 0;
  color: #717b82;
  font-size: 0.72rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(201, 206, 210, 0.18);
  background:
    linear-gradient(145deg, transparent 0 35%, rgba(255, 255, 255, 0.025) 35.3%, transparent 35.8%),
    radial-gradient(circle at 72% 25%, rgba(240, 90, 32, 0.12), transparent 28%),
    linear-gradient(145deg, #151a1f, #090b0d 68%);
  box-shadow: var(--shadow);
  clip-path: polygon(7% 0, 100% 0, 100% 87%, 93% 100%, 0 100%, 0 12%);
}

.visual-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.3), transparent 27%, transparent 62%, rgba(8, 10, 12, 0.7)),
    linear-gradient(110deg, transparent 45%, rgba(255, 255, 255, 0.06) 50%, transparent 55%);
  content: "";
  pointer-events: none;
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(0.9) contrast(1.04);
}

.inspection-lights {
  position: absolute;
  z-index: 2;
  top: 15%;
  left: 11%;
  display: flex;
  width: 52%;
  gap: 14px;
  transform: skewX(-28deg) rotate(-5deg);
}

.inspection-lights span {
  width: 24%;
  height: 4px;
  background: #f9fbfb;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.65);
}

.inspection-lights span:nth-child(3),
.inspection-lights span:nth-child(4) {
  background: var(--amber);
  box-shadow: 0 0 14px rgba(255, 154, 61, 0.55);
}

.visual-index,
.visual-label {
  position: absolute;
  z-index: 2;
  top: 28px;
  color: var(--silver-dark);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visual-index {
  right: 30px;
}

.visual-label {
  bottom: 30px;
  left: 32px;
  top: auto;
  color: var(--silver);
}

.car-line-art {
  position: absolute;
  z-index: 1;
  right: -12%;
  bottom: 14%;
  width: 117%;
  filter: drop-shadow(0 25px 34px rgba(0, 0, 0, 0.72));
}

.light-sweep {
  position: absolute;
  z-index: 3;
  top: -35%;
  bottom: -35%;
  left: -70%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  pointer-events: none;
  transform: skewX(-15deg);
}

.js .hero-visual.is-entered .light-sweep {
  animation: light-sweep 1.45s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes light-sweep {
  to {
    left: 145%;
  }
}

.visual-meta {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  display: flex;
  gap: 15px;
}

.visual-meta span {
  color: #697178;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-rail {
  display: grid;
  align-items: center;
  margin-top: clamp(42px, 6vw, 70px);
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  gap: 17px;
  grid-template-columns: auto 1fr auto 1fr auto 1fr;
}

.hero-rail span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.7rem;
}

.hero-rail p {
  margin: 0;
  color: #7a848b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-strip {
  overflow: hidden;
  border-block: 1px solid rgba(240, 90, 32, 0.25);
  background: var(--orange);
}

.service-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 100%;
  min-height: 56px;
  padding-inline: 24px;
  gap: clamp(20px, 3vw, 42px);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-ticker i {
  width: 6px;
  height: 6px;
  background: #fff;
  transform: rotate(45deg);
}

.services-section,
.process-section,
.info-section {
  color: var(--ink);
  background: var(--white);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: clamp(35px, 8vw, 120px);
  margin-bottom: clamp(45px, 7vw, 80px);
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
}

.section-heading h2,
.process-intro h2,
.faq-block h2,
.location-card h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 5.8vw, 5.65rem);
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 2px;
  color: var(--muted);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  padding: clamp(24px, 3vw, 37px);
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition:
    color var(--ease),
    background-color var(--ease),
    transform var(--ease-slow);
}

.service-card::after {
  position: absolute;
  right: -14px;
  bottom: -24px;
  width: 120px;
  height: 88px;
  border: 1px solid rgba(240, 90, 32, 0.26);
  content: "";
  opacity: 0;
  transform: skewX(-27deg) translateY(25px);
  transition:
    opacity var(--ease),
    transform var(--ease-slow);
}

.service-card:hover,
.service-card[aria-pressed="true"] {
  color: var(--white);
  background: var(--graphite);
}

.service-card:hover::after,
.service-card[aria-pressed="true"]::after {
  opacity: 1;
  transform: skewX(-27deg) translateY(0);
}

.service-number {
  color: var(--silver-dark);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 32px 0 28px;
  border: 1px solid var(--line-light);
  place-items: center;
  transform: skewX(-5deg);
}

.service-card:hover .service-icon,
.service-card[aria-pressed="true"] .service-icon {
  color: var(--orange);
  border-color: rgba(240, 90, 32, 0.5);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.service-card strong {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.service-card > span:not(.service-number, .service-icon) {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.62;
  transition: color var(--ease);
}

.service-card:hover > span:not(.service-number, .service-icon),
.service-card[aria-pressed="true"] > span:not(.service-number, .service-icon) {
  color: #99a2a8;
}

.service-card em {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  color: var(--orange);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--ease),
    transform var(--ease);
}

.service-card:hover em,
.service-card[aria-pressed="true"] em {
  opacity: 1;
  transform: translateY(0);
}

.service-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 22px 24px;
  gap: 24px;
  color: var(--white);
  background: var(--graphite);
}

.service-selection p {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 8px;
  color: #90999f;
  font-size: 0.78rem;
}

.service-selection strong {
  color: var(--white);
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-right: 5px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(240, 90, 32, 0.12);
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
}

.portfolio-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 33vw;
  height: 7px;
  background: var(--orange);
  content: "";
  transform: skewX(-34deg) translateX(8px);
  transform-origin: right;
}

.portfolio-heading h2 {
  color: var(--white);
}

.portfolio-heading > .text-link {
  justify-self: end;
}

.portfolio-grid {
  display: grid;
  min-height: 750px;
  gap: 12px;
  grid-auto-rows: minmax(260px, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-slot {
  position: relative;
  display: flex;
  min-height: 270px;
  padding: 27px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-dark);
  background: var(--graphite);
  isolation: isolate;
}

.portfolio-slot::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.32), transparent 34%, rgba(8, 10, 12, 0.9)),
    linear-gradient(120deg, rgba(240, 90, 32, 0.08), transparent 38%);
  content: "";
  pointer-events: none;
}

.portfolio-slot::after {
  position: absolute;
  z-index: 1;
  right: -16%;
  bottom: -40%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 90, 32, 0.23);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.portfolio-slot-tall {
  grid-row: span 2;
}

.portfolio-slot-wide {
  grid-column: span 2;
}

.portfolio-slot-full {
  min-height: 380px;
  grid-column: 1 / -1;
}

.slot-index {
  position: relative;
  z-index: 2;
  color: var(--orange);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.portfolio-caption {
  position: relative;
  z-index: 2;
}

.portfolio-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03);
  transition:
    filter 600ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-slot:hover .portfolio-image {
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.025);
}

.portfolio-image-polimento {
  object-position: center 61%;
}

.portfolio-image-interior {
  object-position: center 49%;
}

.portfolio-image-vitrificacao {
  object-position: center 68%;
}

.portfolio-image-insulfilm {
  object-position: center 67%;
}

.portfolio-slot strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-slot small {
  display: block;
  color: #727c82;
  font-size: 0.62rem;
}

.slot-art {
  position: absolute;
  z-index: -1;
  inset: 16% 8% 18%;
  opacity: 0.7;
}

.slot-art-shield {
  background:
    linear-gradient(133deg, transparent 45%, rgba(245, 247, 248, 0.5) 45.5% 46%, transparent 46.5%),
    radial-gradient(ellipse at 40% 70%, rgba(240, 90, 32, 0.33), transparent 44%);
  clip-path: polygon(50% 0, 88% 14%, 84% 68%, 50% 100%, 16% 68%, 12% 14%);
  border: 1px solid rgba(245, 247, 248, 0.28);
}

.slot-art-gloss {
  inset: 25% -15% 18% 15%;
  border-top: 4px solid rgba(245, 247, 248, 0.48);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(240, 90, 32, 0.24), transparent 62%);
  transform: rotate(-12deg);
}

.slot-art-interior {
  inset: 25% 10% 24%;
  border: 1px solid rgba(245, 247, 248, 0.3);
  background:
    linear-gradient(140deg, transparent 45%, rgba(240, 90, 32, 0.3) 46% 50%, transparent 51%),
    linear-gradient(30deg, transparent 34%, rgba(245, 247, 248, 0.1) 35% 62%, transparent 63%);
  border-radius: 8% 8% 45% 12%;
  transform: skewX(-9deg);
}

.slot-art-light {
  inset: 13% 8% 25%;
  background:
    linear-gradient(120deg, transparent 15%, rgba(245, 247, 248, 0.55) 16% 17%, transparent 18% 35%, rgba(240, 90, 32, 0.52) 36% 37%, transparent 38%),
    linear-gradient(60deg, transparent 25%, rgba(245, 247, 248, 0.4) 26% 27%, transparent 28% 58%, rgba(245, 247, 248, 0.4) 59% 60%, transparent 61%);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.22));
}

.portfolio-note {
  display: flex;
  max-width: 780px;
  margin: 26px 0 0 auto;
  padding: 17px 20px;
  border: 1px solid var(--line-dark);
  gap: 14px;
  color: #858f95;
  font-size: 0.73rem;
  line-height: 1.55;
}

.portfolio-note span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--orange);
  border: 1px solid rgba(240, 90, 32, 0.55);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  place-items: center;
}

.process-layout {
  display: grid;
  gap: clamp(55px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.process-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.process-intro h2 {
  margin-bottom: 28px;
}

.process-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 34px;
  color: var(--muted);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  min-height: 215px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
  gap: 28px;
  grid-template-columns: 58px 1fr;
}

.process-step:first-child {
  border-top: 1px solid var(--line-light);
}

.process-step > span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.85rem;
}

.process-step small {
  display: block;
  margin-bottom: 13px;
  color: var(--silver-dark);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  text-transform: uppercase;
}

.process-step p {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--muted);
}

.trust-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--graphite);
}

.trust-section::after {
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(240, 90, 32, 0.05));
  content: "";
  transform: skewX(-13deg);
}

.trust-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(55px, 10vw, 140px);
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
}

.trust-art {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
}

.trust-art::before,
.trust-art::after {
  position: absolute;
  border: 1px solid rgba(245, 247, 248, 0.12);
  content: "";
  inset: 10%;
  transform: rotate(45deg);
}

.trust-art::after {
  inset: 23%;
  border-color: rgba(240, 90, 32, 0.3);
  transform: rotate(45deg);
}

.trust-art > img {
  position: relative;
  z-index: 2;
  width: min(78%, 400px);
  height: auto;
  filter: drop-shadow(16px 14px 0 rgba(240, 90, 32, 0.26));
  mix-blend-mode: screen;
}

.trust-hex {
  position: absolute;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(245, 247, 248, 0.22);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.trust-hex-one {
  top: 4%;
  right: 0;
}

.trust-hex-two {
  bottom: 4%;
  left: 0;
  border-color: rgba(240, 90, 32, 0.45);
}

.trust-copy h2 {
  max-width: 750px;
  margin-bottom: 30px;
  font-size: clamp(2.5rem, 5.4vw, 5.25rem);
  text-transform: uppercase;
}

.trust-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 42px;
  color: #969fa4;
  font-size: 1rem;
  line-height: 1.8;
}

.fact-list {
  max-width: 720px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.fact-list li {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--silver);
  font-size: 0.83rem;
  gap: 18px;
  grid-template-columns: 36px 1fr;
}

.fact-list span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.65rem;
}

.trust-profile {
  display: flex;
  align-items: center;
  max-width: 720px;
  margin-top: 30px;
  gap: 17px;
}

.trust-profile img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 2px solid var(--orange);
  border-radius: 50%;
  object-fit: cover;
}

.trust-profile p,
.trust-profile strong,
.trust-profile span {
  display: block;
  margin: 0;
}

.trust-profile strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.trust-profile span {
  color: #737d84;
  font-size: 0.67rem;
}

.info-layout {
  display: grid;
  gap: clamp(55px, 9vw, 120px);
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
}

.location-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  color: var(--white);
  background: var(--graphite);
  clip-path: polygon(0 0, 92% 0, 100% 9%, 100% 100%, 0 100%);
}

.location-card::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(240, 90, 32, 0.28);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 40px rgba(240, 90, 32, 0.025),
    0 0 0 80px rgba(240, 90, 32, 0.018);
}

.location-kicker {
  display: inline-block;
  margin-bottom: clamp(60px, 10vw, 115px);
  color: var(--orange);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.location-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 23px;
}

.location-card > p {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin-bottom: 32px;
  color: #929ba1;
}

.pending-data {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  padding: 20px 0;
  border-block: 1px solid var(--line-dark);
  gap: 15px;
}

.pending-data svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
}

.pending-data small,
.pending-data strong {
  display: block;
}

.pending-data small {
  color: #737d84;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pending-data strong {
  margin-top: 4px;
  font-size: 0.8rem;
}

.location-card .button-outline {
  position: relative;
  z-index: 1;
  color: var(--white);
  border-color: rgba(245, 247, 248, 0.45);
}

.location-card .button-outline:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.faq-block {
  align-self: center;
}

.faq-block h2 {
  margin-bottom: clamp(36px, 5vw, 58px);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px 4px;
  gap: 22px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.23rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 11px;
  right: 3px;
  left: 3px;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: transform var(--ease);
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 54px 24px 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-fallback {
  padding-block: 42px;
  color: var(--white);
  background: var(--orange-dark);
}

.contact-fallback[hidden] {
  display: none;
}

.contact-fallback-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.contact-fallback .eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-fallback .eyebrow-line {
  background: #fff;
}

.contact-fallback h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.contact-fallback p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.contact-fallback .button {
  flex: 0 0 auto;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 13vw, 180px) 0;
  isolation: isolate;
}

.final-cta::before {
  position: absolute;
  z-index: -2;
  top: -30%;
  right: -10%;
  width: 63%;
  height: 160%;
  background: linear-gradient(135deg, rgba(240, 90, 32, 0.14), transparent 57%);
  content: "";
  transform: skewX(-15deg);
}

.final-grid {
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-inner .eyebrow {
  justify-content: center;
}

.final-inner h2 {
  max-width: 1000px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 7.8vw, 7.4rem);
  text-transform: uppercase;
}

.final-inner > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 34px;
  color: #969fa4;
  font-size: 1.02rem;
}

.final-inner > small {
  margin-top: 16px;
  color: #687178;
  font-size: 0.67rem;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: #050607;
}

.footer-main {
  display: grid;
  align-items: center;
  min-height: 150px;
  gap: 35px;
  grid-template-columns: auto 1fr auto;
}

.footer-main > p {
  margin: 0;
  color: #737c82;
  font-size: 0.77rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #a7afb4;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-footer .brand-logo {
  width: 172px;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border-top: 1px solid var(--line-dark);
  color: #525b61;
  font-size: 0.67rem;
}

.js .hero-animate,
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .hero-animate.is-entered,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--ease-slow),
    transform var(--ease-slow);
}

.js .hero-copy .hero-animate:nth-child(2) {
  transition-delay: 80ms;
}

.js .hero-copy .hero-animate:nth-child(3) {
  transition-delay: 150ms;
}

.js .hero-copy .hero-animate:nth-child(4) {
  transition-delay: 220ms;
}

.js .hero-copy .hero-animate:nth-child(5) {
  transition-delay: 290ms;
}

.js .hero-visual.hero-animate {
  transform: translateX(32px);
  transition-delay: 180ms;
}

.js .hero-visual.hero-animate.is-entered {
  transform: translateX(0);
}

.js .hero-rail.hero-animate {
  transition-delay: 340ms;
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 34px, 900px);
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-copy h1 {
    max-width: 740px;
  }

  .visual-frame {
    min-height: min(64vw, 590px);
  }

  .car-line-art {
    right: -5%;
    width: 105%;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-layout,
  .trust-layout,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .process-intro > p:not(.eyebrow) {
    max-width: 700px;
  }

  .trust-art {
    min-height: 330px;
  }

  .location-card {
    max-width: 720px;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-main > p {
    text-align: right;
  }

  .footer-links {
    justify-content: flex-start;
    grid-column: 1 / -1;
    padding-bottom: 34px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --section-space: 82px;
  }

  .header-inner {
    min-height: 66px;
  }

  .header-inner .brand-logo {
    width: 104px;
  }

  .header-inner .button-small {
    min-height: 44px;
    padding: 9px 13px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero::after {
    width: 5px;
  }

  .hero-layout {
    gap: 45px;
  }

  .hero-copy .eyebrow {
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: 0.6rem;
  }

  .hero-copy h1 {
    margin-bottom: 20px;
    max-width: 100%;
    font-size: clamp(2.7rem, 12.8vw, 4.15rem);
  }

  .hero-subtitle {
    margin-bottom: 24px;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    margin-bottom: 12px;
    flex-direction: column;
    gap: 10px;
  }

  .button-wide-mobile {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-microcopy {
    font-size: 0.66rem;
  }

  .visual-frame {
    min-height: 360px;
  }

  .car-line-art {
    right: -18%;
    bottom: 17%;
    width: 135%;
  }

  .inspection-lights {
    left: 8%;
    width: 67%;
  }

  .visual-meta {
    display: none;
  }

  .hero-rail {
    grid-template-columns: auto 1fr;
  }

  .service-ticker {
    justify-content: flex-start;
    min-width: max-content;
    padding-inline: 18px;
    gap: 17px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 44px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .process-intro h2,
  .faq-block h2,
  .location-card h2 {
    font-size: clamp(2.3rem, 10.8vw, 3.7rem);
  }

  .section-heading > p {
    font-size: 0.91rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 265px;
    padding: 25px;
  }

  .service-icon {
    margin: 22px 0 20px;
  }

  .service-card em {
    padding-top: 18px;
    opacity: 1;
    transform: none;
  }

  .service-selection {
    align-items: stretch;
    flex-direction: column;
  }

  .service-selection p {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .portfolio-heading > .text-link {
    justify-self: start;
  }

  .portfolio-grid {
    min-height: 0;
    grid-auto-rows: 290px;
    grid-template-columns: 1fr;
  }

  .portfolio-slot-tall,
  .portfolio-slot-wide,
  .portfolio-slot-full {
    grid-row: auto;
    grid-column: auto;
  }

  .portfolio-slot-full {
    min-height: 330px;
  }

  .portfolio-slot:first-child {
    min-height: 390px;
  }

  .portfolio-note {
    margin-top: 20px;
  }

  .process-layout {
    gap: 50px;
  }

  .process-step {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 44px 1fr;
  }

  .trust-art {
    min-height: 280px;
  }

  .trust-copy h2 {
    font-size: clamp(2.3rem, 10.8vw, 3.8rem);
  }

  .location-card {
    padding: 32px 25px;
  }

  .location-kicker {
    margin-bottom: 46px;
  }

  .pending-data strong {
    font-size: 0.72rem;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 0.95rem;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .contact-fallback-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 26px;
  }

  .final-inner h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 4.35rem);
  }

  .final-inner .button {
    width: 100%;
  }

  .footer-main {
    align-items: start;
    padding: 45px 0 34px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .brand-footer .brand-logo {
    width: 158px;
  }

  .footer-main > p {
    text-align: left;
  }

  .footer-links {
    align-items: flex-start;
    padding: 0;
    flex-direction: column;
    grid-column: auto;
    gap: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .header-inner .button::before {
    display: none;
  }

  .header-inner .button-small {
    gap: 8px;
    padding-inline: 11px;
  }

  .hero-copy h1 {
    font-size: 2.68rem;
  }

  .button-large {
    padding-inline: 18px;
  }

  .visual-frame {
    min-height: 320px;
  }

  .service-card {
    min-height: 255px;
    padding: 24px;
  }

  .final-inner h2 {
    font-size: 2.38rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .hero-animate,
  .js .reveal,
  .js .hero-visual.hero-animate {
    opacity: 1;
    transform: none;
  }

  .light-sweep {
    display: none;
  }
}
