:root {
  color-scheme: dark;
  --ink: #0d1110;
  --ink-soft: #161c1a;
  --ink-raised: #202724;
  --paper: #f5f0e7;
  --paper-deep: #e6dfd3;
  --white: #fffdf8;
  --steel: #c1cbc6;
  --steel-dark: #59635e;
  --line: rgba(245, 240, 231, 0.22);
  --line-dark: rgba(13, 17, 16, 0.22);
  --orange: #f45131;
  --orange-bright: #ff684c;
  --orange-dark: #a82615;
  --brand-red: #e00808;
  --acid: #daf254;
  --focus: #daf254;
  --display: "Saira Condensed", "Franklin Gothic Medium", sans-serif;
  --body: "Manrope", "Trebuchet MS", sans-serif;
  --shell: 1240px;
  --header-height: 86px;
  --shadow-offset: 6px 6px 0 var(--paper);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--ink);
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(82px, 10vw, 146px);
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section--raised {
  background: var(--ink-soft);
}

.section--orange {
  background: var(--orange);
  color: var(--ink);
}

.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left center;
}

.utility-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #070a09;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-bar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  color: var(--paper);
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 17, 16, 0.94);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--paper);
  text-decoration: none;
}

.brand__mark {
  width: 62px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  overflow: hidden;
  background: url("/assets/images/central-auto-repair-logo-dark.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  transition: transform 180ms ease;
}

.brand:hover .brand__mark {
  transform: translateY(-2px) scale(1.025);
}

.brand__name {
  display: grid;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand__name small {
  margin-top: 7px;
  color: var(--steel);
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.desktop-nav a[aria-current="page"] {
  color: var(--acid);
}

.button,
.header-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px solid transparent;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button {
  padding: 14px 20px;
}

.header-cta {
  min-height: 50px;
  padding: 0 18px;
  background: var(--orange);
  box-shadow: var(--shadow-offset);
}

.button::after,
.header-cta::after {
  content: "→";
  transition: transform 180ms ease;
}

.button:hover,
.header-cta:hover {
  background: var(--acid);
  box-shadow: 5px 5px 0 var(--orange);
  transform: translate(-2px, -2px);
}

.button:hover::after,
.header-cta:hover::after {
  transform: translateX(4px);
}

.button--orange {
  background: var(--orange);
  color: var(--ink);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover {
  color: var(--ink);
}

.menu-button {
  position: relative;
  width: 52px;
  height: 52px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-button__lines,
.menu-button__lines::before,
.menu-button__lines::after {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-button__lines {
  position: relative;
}

.menu-button__lines::before,
.menu-button__lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-button__lines::before { top: -7px; }
.menu-button__lines::after { top: 7px; }

.menu-button[aria-expanded="true"] .menu-button__lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-button__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  z-index: 90;
  inset: calc(var(--header-height) + 34px) 0 0;
  display: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(245,240,231,.07) 50%, transparent 50.3%),
    var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.nav-drawer__inner {
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nav-drawer__links {
  margin: 0;
  padding: clamp(34px, 7vw, 72px);
  list-style: none;
}

.nav-drawer__links li {
  border-bottom: 1px solid var(--line);
}

.nav-drawer__links a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 5vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-drawer__links a::after {
  color: var(--orange);
  content: "↗";
  font-size: 1rem;
}

.nav-drawer__links a:hover,
.nav-drawer__links a[aria-current="page"] {
  color: var(--acid);
}

.nav-drawer__index {
  color: var(--steel);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nav-drawer__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 7vw, 72px);
  background: var(--orange);
  color: var(--ink);
}

.nav-drawer__aside p {
  max-width: 460px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.nav-drawer__contact {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.nav-drawer__contact a {
  font-weight: 800;
  text-underline-offset: 5px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 700;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--orange);
  content: "/";
}

.breadcrumb a {
  text-underline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--orange);
  content: "";
}

.section--paper .eyebrow,
.section--orange .eyebrow {
  color: var(--steel-dark);
}

.section--orange .eyebrow::before {
  background: var(--ink);
}

.section--orange .eyebrow,
.tpms-feature__copy .eyebrow {
  color: var(--ink);
}

.tpms-feature__copy .eyebrow::before {
  background: var(--ink);
}

.display-title,
.section-title,
.page-title,
h1,
h2,
h3 {
  font-family: var(--display);
}

.display-title,
.page-title,
h1 {
  letter-spacing: 0.004em;
  line-height: 0.93;
  text-wrap: balance;
}

.section-title,
h2 {
  letter-spacing: 0.002em;
  line-height: 0.98;
  text-wrap: balance;
}

h3 {
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 34px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero > *,
.section-heading > *,
.tpms-feature > *,
.cta-band > *,
.prose-grid > *,
.contact-grid > *,
.site-footer__main > * {
  min-width: 0;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 8vw, 128px) clamp(26px, 5vw, 74px) 64px max(20px, calc((100vw - var(--shell)) / 2));
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.5rem, 8.2vw, 8.7rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--paper);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__meta {
  margin: 26px 0 0;
  color: var(--steel);
  font-size: 0.78rem;
}

.hero__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-left: 8px solid var(--orange);
  background:
    repeating-linear-gradient(90deg, #1a201e 0 74px, #202724 74px 148px);
}

.hero__visual::before {
  position: absolute;
  z-index: 0;
  width: 80px;
  height: 140%;
  top: -20%;
  right: 24%;
  background: var(--orange);
  content: "";
  transform: rotate(24deg);
  transform-origin: center;
}

.hero__visual::after {
  position: absolute;
  z-index: 1;
  inset: 9%;
  border: 1px solid rgba(245, 240, 231, .42);
  content: "";
}

.hero__visual img {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 11%;
  width: 88%;
  height: auto;
}

.hero__bay-label,
.hero__service-label {
  position: absolute;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero__bay-label {
  top: 12%;
  left: 12%;
}

.hero__bay-label span {
  display: block;
  color: var(--acid);
}

.hero__service-label {
  right: 10%;
  bottom: 8%;
  min-width: 190px;
  padding: 18px;
  background: var(--paper);
  color: var(--ink);
}

.hero__service-label strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1;
}

.quick-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  color: var(--ink);
}

.quick-rail__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 24px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line-dark);
}

.quick-rail__item:last-child {
  border-right: 0;
}

.quick-rail__number {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 900;
}

.quick-rail__item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.quick-rail__item span:last-child {
  display: block;
  margin-top: 5px;
  color: var(--steel-dark);
  font-size: 0.76rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7.25rem);
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 530px;
  margin: 0;
  color: var(--steel);
  line-height: 1.75;
}

.section--paper .section-heading p,
.section--orange .section-heading p {
  color: #414844;
}

.section--orange .section-heading p {
  color: var(--ink);
}

.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-preview-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, .018);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.service-preview-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 44%, rgba(218,242,84,.12) 50%, transparent 56%);
  content: "";
  transform: translateX(-110%);
  transition: transform 420ms ease;
}

.service-preview-card:hover {
  background: var(--paper);
  color: var(--ink);
}

.service-preview-card:hover::before {
  transform: translateX(110%);
}

.service-preview-card__index {
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-preview-card h3 {
  position: relative;
  margin: 50px 0 14px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 800;
  text-transform: uppercase;
}

.service-preview-card p {
  position: relative;
  margin: 0;
  color: var(--steel);
  font-size: 0.86rem;
}

.service-preview-card:hover p {
  color: #414844;
}

.service-preview-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.2rem;
}

.service-preview-card--accent {
  background: var(--orange);
  color: var(--ink);
}

.service-preview-card--accent .service-preview-card__index,
.service-preview-card--accent p {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

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

.tpms-feature {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  min-height: 650px;
  background: var(--orange);
  color: var(--ink);
}

.tpms-feature__visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  background: var(--acid);
}

.tpms-feature__visual::before,
.tpms-feature__visual::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(13,17,16,.3);
  border-radius: 50%;
  content: "";
}

.tpms-feature__visual::after {
  width: 510px;
  height: 510px;
  border-style: dashed;
  transition: transform 500ms cubic-bezier(.22,1,.36,1);
}

.tpms-feature__visual:hover::after {
  transform: rotate(12deg);
}

.tpms-feature__visual img {
  position: relative;
  z-index: 2;
  width: min(54%, 290px);
}

.tpms-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 126px);
}

.tpms-feature__copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.7rem, 7vw, 7.4rem);
  font-weight: 800;
  text-transform: uppercase;
}

.tpms-feature__copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.03rem;
  line-height: 1.75;
}

.tpms-feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 30px 0;
  padding: 0;
  background: rgba(13, 17, 16, .35);
  list-style: none;
}

.tpms-feature__list li {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tpms-feature__copy .button {
  align-self: flex-start;
}

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

.process-step {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-step__number {
  display: block;
  margin-bottom: 64px;
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}

.process-step h3 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: #4a514d;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  padding-block: clamp(70px, 8vw, 110px);
}

.cta-band h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.4rem, 6.6vw, 7rem);
  font-weight: 800;
  text-transform: uppercase;
}

.cta-band p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--steel);
}

.cta-band__actions {
  min-width: 250px;
  display: grid;
  gap: 12px;
}

.page-hero {
  position: relative;
  padding-block: clamp(82px, 10vw, 150px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -40%;
  right: 8%;
  width: 110px;
  height: 190%;
  background: var(--orange);
  content: "";
  transform: rotate(25deg);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(4.2rem, 9vw, 9.2rem);
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero__lead {
  max-width: 730px;
  margin: 28px 0 0;
  color: var(--steel);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-finder {
  position: sticky;
  z-index: 10;
  top: calc(var(--header-height) + 14px);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 46px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(13,17,16,.15);
}

.service-search {
  position: relative;
}

.service-search label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-search input {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.service-count {
  min-width: 160px;
  margin: 22px 0 0;
  color: var(--steel-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-group {
  border: 1px solid var(--line-dark);
  background: var(--white);
  color: var(--ink);
}

.service-group[hidden] {
  display: none;
}

.service-group summary {
  position: relative;
  min-height: 116px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

.service-group summary::-webkit-details-marker {
  display: none;
}

.service-group summary::after {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  content: "+";
  font-size: 1.25rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-group[open] summary::after {
  background: var(--ink);
  color: var(--paper);
  content: "−";
  transform: rotate(180deg);
}

.service-group summary:hover {
  background: var(--acid);
}

.service-group__index {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
}

.service-group summary h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
}

.service-group__content {
  padding: 0 24px 28px 92px;
  border-top: 1px solid var(--line-dark);
}

.service-group__content > p {
  margin: 24px 0;
  color: #454d49;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 12px 0 12px 19px;
  border-bottom: 1px solid rgba(13, 17, 16, .13);
  font-size: 0.9rem;
}

.service-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  content: "";
}

.service-note {
  margin-top: 42px;
  padding: 24px;
  border-left: 6px solid var(--orange);
  background: var(--paper-deep);
  color: #313734;
}

.service-note strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.no-results {
  grid-column: 1 / -1;
  padding: 44px;
  border: 2px dashed var(--steel-dark);
  text-align: center;
}

.no-results[hidden] {
  display: none;
}

.prose-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.prose-grid__aside {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.prose-grid__aside h2,
.prose-grid__content h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  text-transform: uppercase;
}

.prose-grid__content > p:first-child {
  margin-top: 0;
  font-size: 1.16rem;
}

.prose-grid__content p {
  color: #414844;
  line-height: 1.85;
}

.prose-grid__content h3 {
  margin: 42px 0 12px;
  font-size: 1.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.fact-card {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.fact-card span {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 900;
}

.fact-card h3 {
  margin: 40px 0 10px;
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-card p {
  margin: 0;
  color: #454d49;
}

.tpms-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tpms-step {
  min-height: 300px;
  padding: 28px;
  border-top: 6px solid var(--orange);
  background: var(--ink-soft);
}

.tpms-step span {
  color: var(--acid);
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 900;
}

.tpms-step h3 {
  margin: 54px 0 12px;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tpms-step p {
  margin: 0;
  color: var(--steel);
}

.faq-list {
  max-width: 980px;
  margin-inline: auto;
  border-top: 1px solid var(--line-dark);
}

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

.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--orange-dark); content: "+"; font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 790px; margin: 0 0 28px; color: #454d49; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  border: 1px solid var(--line-dark);
}

.contact-card {
  padding: clamp(38px, 6vw, 84px);
  background: var(--ink-soft);
  color: var(--paper);
}

.contact-card h2 {
  margin: 0 0 28px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card address {
  margin-bottom: 28px;
  color: var(--paper);
  font-size: 1.06rem;
  font-style: normal;
}

.contact-card__row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-card__row span {
  display: block;
  margin-bottom: 5px;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card__row a {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.contact-map {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(34deg, transparent 48%, var(--orange) 49% 52%, transparent 53%),
    repeating-linear-gradient(90deg, #e4ddd2 0 52px, #eee8de 52px 104px);
  color: var(--ink);
}

.contact-map::before,
.contact-map::after {
  position: absolute;
  width: 130%;
  height: 20px;
  background: var(--ink);
  content: "";
  transform: rotate(-31deg);
}

.contact-map::after {
  transform: rotate(48deg);
}

.map-pin {
  position: relative;
  z-index: 2;
  width: min(78%, 390px);
  padding: 32px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--orange);
}

.map-pin::before {
  width: 22px;
  height: 22px;
  display: block;
  margin-bottom: 24px;
  border: 7px solid var(--orange);
  border-radius: 50%;
  content: "";
}

.map-pin strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.map-pin p {
  margin: 12px 0 24px;
  color: #414844;
}

.privacy-prose {
  max-width: 850px;
}

.privacy-prose h2 {
  margin: 48px 0 12px;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.privacy-prose p,
.privacy-prose li {
  color: #414844;
}

.not-found {
  min-height: calc(100svh - var(--header-height) - 34px);
  display: grid;
  grid-template-columns: 1fr .72fr;
}

.not-found__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) max(20px, calc((100vw - var(--shell)) / 2));
}

.not-found__code {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(7rem, 19vw, 17rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: .7;
}

.not-found h1 {
  margin: 40px 0 20px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 800;
  text-transform: uppercase;
}

.not-found p {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--steel);
}

.not-found__visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--orange);
}

.not-found__visual span {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  line-height: .8;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

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

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) .8fr .8fr 1fr;
  gap: 44px;
  padding-block: 70px;
}

.site-footer .brand {
  align-self: start;
}

.footer-intro p {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--steel);
  font-size: .88rem;
}

.footer-column h2 {
  margin: 0 0 17px;
  color: var(--steel);
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  font-size: .88rem;
  text-underline-offset: 4px;
}

.footer-column address {
  color: var(--paper);
  font-size: .88rem;
  font-style: normal;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px 90px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: .72rem;
}

.site-footer__legal a {
  color: var(--paper);
  text-underline-offset: 4px;
}

.mobile-actions {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 480ms ease, transform 480ms cubic-bezier(.22,1,.36,1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button,
  .nav-drawer {
    display: grid;
  }

  .no-js .site-header__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 12px;
  }

  .no-js .desktop-nav {
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  .no-js .desktop-nav ul {
    justify-content: flex-start;
    min-width: max-content;
  }

  .no-js .menu-button,
  .no-js .nav-drawer {
    display: none;
  }

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

  .hero__copy {
    min-height: 690px;
    padding-right: max(20px, calc((100vw - var(--shell)) / 2));
  }

  .hero__visual {
    min-height: 650px;
    border-top: 8px solid var(--orange);
    border-left: 0;
  }

  .service-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tpms-feature {
    grid-template-columns: 1fr;
  }

  .tpms-feature__copy {
    order: -1;
  }

  .site-footer__main {
    grid-template-columns: 1.2fr .8fr .8fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root { --header-height: 74px; }

  .utility-bar .shell {
    justify-content: center;
  }

  .utility-bar p:first-child {
    display: none;
  }

  .brand__mark { width: 54px; }
  .brand__name { font-size: 1.05rem; }

  .nav-drawer {
    inset-block-start: calc(var(--header-height) + 34px);
  }

  .nav-drawer__inner {
    grid-template-columns: 1fr;
  }

  .nav-drawer__aside {
    min-height: 330px;
  }

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

  .quick-rail__item {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .quick-rail__item:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .cta-band,
  .prose-grid,
  .contact-grid,
  .not-found {
    grid-template-columns: 1fr;
  }

  .service-directory {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .tpms-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 250px;
  }

  .process-step__number {
    margin-bottom: 38px;
  }

  .prose-grid__aside {
    position: static;
  }

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

  .contact-map {
    min-height: 520px;
  }

  .not-found__visual {
    min-height: 380px;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 48px;
  }

  .brand__name {
    font-size: .92rem;
  }

  .brand__name small {
    font-size: .51rem;
    letter-spacing: .12em;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .nav-drawer__links,
  .nav-drawer__aside {
    padding: 24px;
  }

  .nav-drawer__links a {
    grid-template-columns: 38px 1fr auto;
    min-height: 66px;
    font-size: 1.65rem;
  }

  .hero__copy {
    min-height: 620px;
    padding: 74px 20px 54px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.35rem);
    letter-spacing: 0;
    line-height: .95;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero__actions,
  .page-hero__actions {
    display: grid;
  }

  .hero__actions .button,
  .page-hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 470px;
  }

  .hero__visual::before {
    width: 54px;
  }

  .hero__service-label {
    right: 7%;
    bottom: 6%;
    min-width: 160px;
    padding: 14px;
  }

  .hero__service-label strong {
    font-size: 1.55rem;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .tpms-feature__copy h2,
  .cta-band h2,
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
    line-height: .96;
  }

  .service-preview-grid {
    grid-template-columns: 1fr;
  }

  .service-preview-card {
    min-height: 225px;
  }

  .tpms-feature__copy {
    padding: 76px 20px 58px;
  }

  .tpms-feature__list {
    grid-template-columns: 1fr;
  }

  .tpms-feature__list li {
    min-height: 62px;
  }

  .tpms-feature__visual {
    min-height: 410px;
  }

  .tpms-feature__visual::before {
    width: 250px;
    height: 250px;
  }

  .tpms-feature__visual::after {
    width: 360px;
    height: 360px;
  }

  .cta-band__actions {
    min-width: 0;
  }

  .page-hero {
    padding-block: 76px;
  }

  .page-hero::after {
    right: -10%;
    opacity: .28;
  }

  .service-finder {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .service-count {
    min-width: 0;
    margin-top: 0;
    text-align: left;
  }

  .service-group summary {
    grid-template-columns: 38px 1fr auto;
    min-height: 104px;
    padding: 17px;
  }

  .service-group summary::after {
    width: 30px;
    height: 30px;
  }

  .service-group__content {
    padding: 0 18px 24px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .fact-card {
    min-height: 200px;
  }

  .contact-card,
  .not-found__copy {
    padding: 72px 20px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    padding-block: 58px;
  }

  .footer-intro {
    grid-column: auto;
  }

  .site-footer__legal {
    flex-direction: column;
    padding-bottom: 90px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 2px solid var(--ink);
  }

  .mobile-actions a {
    min-height: calc(62px + env(safe-area-inset-bottom));
    display: grid;
    place-items: center;
    background: var(--acid);
    color: var(--ink);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-actions a:last-child {
    background: var(--orange);
  }

  .back-to-top {
    right: 14px;
    bottom: 76px;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }
}
