@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Archivo Black";
  src: url("../fonts/archivo-black.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Gilroy ExtraBold";
  src: url("../fonts/gilroy-extrabold-webfont.woff2") format("woff2"),
       url("../fonts/Gilroy-ExtraBold.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #F5821F;
  --black: #0A0A0B;
  --grey: #8A8F98;
  --off-white: #F7F7F5;
  --white: #FFFFFF;
  --line: #E2E2DE;
  --ink-soft: #2C2C30;
  --focus: #00A3FF;
  --container: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 32px, 780px);
}

.skip-link,
.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;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  min-height: 58px;
  padding: 6px;
  background: var(--white);
  border-radius: 4px;
}

.brand img {
  width: 58px;
  max-height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a,
.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

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

.header-call {
  font-family: Consolas, "Courier New", monospace;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  border-radius: var(--radius);
  padding: 12px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

h1,
h2,
h3,
legend {
  margin: 0;
  color: var(--black);
  font-family: "Gilroy ExtraBold", "Gilroy", "Archivo Black", Impact, sans-serif;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  max-width: 880px;
}

h2 {
  font-size: clamp(31px, 4vw, 54px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0 0 18px;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--grey);
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

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

.button-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.button-secondary.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.text-link {
  color: var(--black);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--orange);
  text-underline-offset: 5px;
}

.hero {
  min-height: min(720px, calc(100vh - 78px));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 11, 0.96), rgba(10, 10, 11, 0.72), rgba(10, 10, 11, 0.48));
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 60px;
  transform: none;
}

.hero h1,
.hero h2,
.hero p {
  color: var(--white);
}

.hero-content > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 20px;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-badges li {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  font-family: Consolas, "Courier New", monospace;
  background: rgba(10, 10, 11, 0.5);
}

.section {
  padding: 82px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.intro-split {
  background: var(--white);
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-card,
.wide-image,
.service-row > picture img,
.image-row img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  background: #D7D7D1;
}

.image-card {
  height: 420px;
}

.image-card-offset {
  position: absolute;
  width: 58%;
  height: 280px;
  right: 0;
  bottom: 0;
  border: 8px solid var(--white);
}

.wide-image {
  min-height: 360px;
  max-height: 520px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card a {
  margin-left: 18px;
  margin-right: 18px;
}

.service-card h3 {
  margin-top: 18px;
}

.service-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--black);
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.insurance-strip,
.cta-band,
.stat-band {
  background: var(--black);
  color: var(--white);
}

.insurance-strip {
  padding: 44px 0;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.insurance-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.insurance-actions img {
  width: 180px;
  max-width: 42vw;
  background: var(--white);
  border-radius: var(--radius);
}

.insurance-strip h2,
.insurance-strip p,
.cta-band h2,
.cta-band p,
.stat-band h2 {
  color: var(--white);
}

.testimonial-carousel {
  position: relative;
}

.testimonial {
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial:not(.is-active):not(:first-child) {
  display: none;
}

.testimonial p {
  font-size: 20px;
  color: var(--ink-soft);
}

.testimonial footer {
  font-weight: 900;
}

.testimonial footer span {
  color: var(--grey);
  font-weight: 500;
}

.stars {
  color: #94500F;
  margin-bottom: 10px;
}

.sister-company {
  background: var(--white);
}

.cta-band {
  padding: 70px 0;
}

.cta-band .container {
  display: grid;
  gap: 18px;
}

.contact-strip {
  background: var(--white);
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(138, 143, 152, 0.25);
}

.hours-list dt {
  font-weight: 900;
}

.hours-list dd {
  margin: 0;
  color: var(--grey);
  font-family: Consolas, "Courier New", monospace;
  text-align: right;
}

.hours-list.large {
  max-width: 520px;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(1);
}

.page-hero {
  padding: 64px 0 48px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  font-size: 20px;
  margin-top: 12px;
}

.image-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
}

.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.64);
}

.image-hero .container {
  position: relative;
  z-index: 1;
}

.hero-bg,
.image-hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-grid div {
  background: var(--black);
  padding: 28px;
}

.stat-grid strong {
  display: block;
  color: var(--white);
  font-family: "Gilroy ExtraBold", "Gilroy", "Archivo Black", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-grid span {
  color: #D7D7D1;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.image-row img {
  aspect-ratio: 1 / 1;
}

.services-overview {
  background: var(--off-white);
  padding-top: 46px;
}

.service-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: center;
  padding: 22px;
  margin-bottom: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(10, 10, 11, 0.06);
}

.service-intro-panel picture,
.service-intro-panel img {
  width: 100%;
  height: 100%;
}

.service-intro-panel img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.service-panel {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 100%;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(10, 10, 11, 0.05);
  overflow: hidden;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--orange);
}

.service-panel-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-panel h2 {
  font-size: 25px;
  margin-bottom: 7px;
}

.service-panel p {
  color: var(--ink-soft);
  margin-bottom: 0;
  line-height: 1.45;
}

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

.service-checklist li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
}

.service-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.service-panel .button {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 15px;
}

.services-page .page-hero {
  padding: 56px 0 40px;
}

.services-page .page-hero h1 {
  max-width: 760px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
}

.steps li::before {
  content: counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  background: var(--orange);
  color: var(--black);
  border-radius: 50%;
  font-family: Consolas, "Courier New", monospace;
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 12px 0;
}

summary {
  min-height: 44px;
  cursor: pointer;
  font-weight: 900;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-filters button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.gallery-filters button.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

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

.gallery-grid figure {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.before-after {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.before-after img,
.after-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.before-after img {
  object-fit: cover;
}

.after-layer {
  overflow: hidden;
  border-right: 3px solid var(--orange);
}

.before-after input {
  position: absolute;
  inset: auto 20px 18px 20px;
  width: calc(100% - 40px);
  accent-color: var(--orange);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 28px;
}

fieldset {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

legend {
  padding: 0 8px;
  font-size: 25px;
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

label.full,
.checkbox.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #C8C8C2;
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--black);
  padding: 12px;
  font: inherit;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

.mono-field,
.mono {
  font-family: Consolas, "Courier New", monospace;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox input {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 4px;
  accent-color: var(--orange);
}

.field-error,
.form-alert {
  margin: 4px 0 0;
  color: #8D1F12;
  font-weight: 800;
}

.form-alert {
  padding: 14px 16px;
  background: #FFF2EF;
  border: 1px solid #F2B4A7;
  border-radius: var(--radius);
}

.help-text {
  color: var(--grey);
  font-weight: 500;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.contact-aside {
  position: sticky;
  top: 106px;
}

.aside-panel {
  margin-top: 18px;
  padding: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
}

.aside-panel h2,
.aside-panel p {
  color: var(--white);
}

.prose p {
  font-size: 18px;
}

.site-footer {
  padding: 52px 0 88px;
  background:
    linear-gradient(180deg, #111114, var(--black));
  color: var(--white);
  border-top: 4px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-brand p {
  max-width: 310px;
  font-size: 15px;
  line-height: 1.55;
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  min-height: 118px;
  padding: 8px;
  margin-bottom: 18px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.footer-logo {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-wheel-logo {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.site-footer h2 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-family: Consolas, "Courier New", monospace;
  letter-spacing: 0;
}

.site-footer p,
.site-footer dd,
.site-footer a {
  color: #E6E6E1;
}

.site-footer a {
  text-decoration-color: rgba(245, 130, 31, 0.7);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

.site-footer .hours-list div {
  padding: 6px 0;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-footer .hours-list dt {
  color: #F7F7F5;
}

.site-footer .hours-list dd {
  color: #C9CBC7;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--grey);
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 18px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 52px;
    font-size: 18px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 72px);
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-intro-panel,
  .service-panel-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .steps,
  .footer-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-aside {
    position: static;
  }

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

  .service-panel {
    grid-template-columns: 118px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand img {
    width: 54px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-content {
    padding: 38px 0 46px;
    transform: none;
  }

  .hero::after {
    background: rgba(10, 10, 11, 0.78);
  }

  .section,
  .page-hero {
    padding: 42px 0;
  }

  .button-row,
  .strip-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-badges {
    display: grid;
  }

  .image-stack {
    min-height: 390px;
  }

  .image-card {
    height: 300px;
  }

  .image-card-offset {
    height: 210px;
    width: 64%;
  }

  .card-grid.four,
  .steps,
  .footer-grid,
  .stat-grid,
  .gallery-grid,
  .image-row,
  .form-grid,
  .service-panel,
  .service-checklist {
    grid-template-columns: 1fr;
  }

  .service-intro-panel,
  .service-panel {
    padding: 14px;
  }

  .service-panel-media img {
    aspect-ratio: 16 / 9;
  }

  .services-page .page-hero {
    padding: 40px 0 32px;
  }

  .services-overview {
    padding-top: 30px;
  }

  fieldset {
    padding: 22px 16px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-action-bar a {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
    background: var(--black);
  }

  .mobile-action-bar a:last-child {
    background: var(--orange);
    color: var(--black);
  }
}

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