:root {
  --red: #36a3d5;
  --red-dark: #0c8bc6;
  --black: #171717;
  --near-black: #1e1e1e;
  --panel: #252525;
  --panel-light: #2d2d2d;
  --white: #ffffff;
  --muted: #c4c4c4;
  --muted-light: #dcdcdc;
  --border: #2b2b2b;
  --border-strong: #3a3a3a;
  --max-width: 1180px;
  --section-space: clamp(64px, 8vw, 112px);
  --side-space: clamp(16px, 5vw, 72px);
  --radius: 8px;
  --focus: #7ec8ea;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  top: 0;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--white);
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

section {
  scroll-margin-top: 88px;
}

/* Header and navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(94%, var(--max-width));
  min-height: 78px;
  margin: 0 auto;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  flex-shrink: 0;
  color: var(--white);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo span {
  color: var(--red);
}

.logo:hover {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:not(.estimate-btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--red);
}

.nav-links a:not(.estimate-btn):hover::after {
  transform: scaleX(1);
}

.estimate-btn {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 18px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(54, 163, 213, 0.2);
  color: var(--white) !important;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.estimate-btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: clamp(540px, 78vh, 760px);
  padding: 96px var(--side-space) 108px;
  overflow: hidden;
  isolation: isolate;
  background-color: #050505;
  touch-action: pan-y;
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel {
  overflow: hidden;
  pointer-events: none;
}

.hero-slide {
  opacity: 0;
  transition: opacity 2.1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-slide.is-leaving {
  z-index: 0;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.55, 0, 1, 1);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
  filter: brightness(1.14) contrast(1.04) saturate(1.06);
  transform: scale(1.06);
  will-change: transform;
}

.hero-slide:nth-child(2) img {
  object-position: 46% 38%;
}

.hero-slide:nth-child(3) img {
  object-position: 84% 48%;
}

.hero-slide:nth-child(4) img {
  object-position: 28% 40%;
}

.hero-slide.is-active img,
.hero-slide.is-leaving img {
  animation: heroKenBurns 6.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-slide:nth-child(even).is-active img,
.hero-slide:nth-child(even).is-leaving img {
  animation-name: heroKenBurnsAlt;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.04) translate3d(1.1%, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(-1.4%, -0.8%, 0);
  }
}

@keyframes heroKenBurnsAlt {
  from {
    transform: scale(1.05) translate3d(-1%, 0.4%, 0);
  }

  to {
    transform: scale(1.12) translate3d(1.3%, -0.7%, 0);
  }
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 48%, rgba(0, 0, 0, 0.12) 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero-carousel-controls {
  position: absolute;
  right: var(--side-space);
  bottom: 28px;
  left: var(--side-space);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.hero-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  background: rgba(5, 5, 5, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-dot.is-active {
  background: var(--white);
  transform: scale(1.35);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--red) !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(32px, 6.4vw, 60px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-location {
  margin: 0 0 12px !important;
  color: var(--muted-light);
  font-size: 15px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero h1 span {
  color: var(--red);
}

.hero .hero-copy,
.hero-content > p:not(.eyebrow):not(.hero-location) {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted-light);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: #111111;
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(8, 8, 8, 0.45);
  border-color: rgba(255, 255, 255, 0.48);
}

/* Shared sections */
.section,
#services,
#gallery,
#about,
#estimate,
#contact {
  padding: var(--section-space) var(--side-space);
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-black,
#gallery,
#contact {
  background: var(--black);
}

.section-dark,
#services {
  background: var(--near-black);
}

.section-mid,
#about {
  background: var(--panel);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(38px, 5vw, 58px);
}

.section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
#services h2,
#gallery h2,
#about h2,
#estimate h2,
#contact h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 285px;
  padding: 36px;
  overflow: hidden;
  background: var(--panel-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-card:hover {
  border-color: #4a4a4a;
  transform: translateY(-7px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.card-number {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.2;
}

.service-card p {
  color: var(--muted);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease;
}

.gallery-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
}

.gallery-placeholder,
.gallery img {
  position: relative;
  display: grid;
  width: 100%;
  height: 290px;
  place-items: center;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(54, 163, 213, 0.12), transparent 45%),
    repeating-linear-gradient(-45deg, #171717 0, #171717 14px, #121212 14px, #121212 28px);
  border: 0;
}

.gallery-placeholder::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
}

.gallery-placeholder span {
  position: relative;
  z-index: 1;
  padding: 9px 13px;
  background: rgba(8, 8, 8, 0.82);
  border-left: 3px solid var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card > h3,
.gallery-card-copy {
  padding: 22px 24px;
}

.gallery-card-copy {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gallery-card-copy span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gallery-card h3 {
  font-size: 18px;
  line-height: 1.25;
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.about-content .section-heading {
  margin-bottom: 0;
}

.about-copy {
  padding-top: 36px;
  border-top: 1px solid var(--border-strong);
}

.about-copy p,
#about .about-copy p {
  max-width: none;
  margin-bottom: 20px;
  color: var(--muted-light);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span,
.text-link:hover {
  color: var(--red);
}

/* Estimate form */
.estimate-section,
#estimate {
  background:
    radial-gradient(circle at 100% 0%, rgba(54, 163, 213, 0.12), transparent 34%),
    #101010;
}

.estimate-form {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  background: #151515;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.estimate-form fieldset {
  margin: 0 0 42px;
  padding: 0 0 42px;
  border: 0;
  border-bottom: 1px solid var(--border);
}

.estimate-form fieldset:last-of-type {
  margin-bottom: 28px;
}

.estimate-form legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.estimate-form legend span {
  margin-right: 10px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.12em;
}

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

.vehicle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-group-wide {
  grid-column: 1 / -1;
}

.form-group label,
.group-label {
  color: #f2f2f2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  background: #0e0e0e;
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  color: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #777777;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(54, 163, 213, 0.28);
  outline: none;
}

.form-group input:user-invalid,
.form-group select:user-invalid,
.form-group textarea:user-invalid {
  border-color: #e08a8a;
}

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

.form-status:empty,
.form-error[hidden] {
  display: none;
}

.form-status,
.form-error {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 14px;
}

.form-status {
  background: rgba(54, 163, 213, 0.12);
  border: 1px solid rgba(54, 163, 213, 0.45);
}

.form-error {
  background: rgba(176, 62, 62, 0.16);
  border: 1px solid #b03e3e;
  color: #f3d2d2;
}

.choice-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.estimate-form .choice-fieldset {
  margin: 0;
  padding: 0 0 8px;
  border: 0;
}

.choice-fieldset .group-label {
  margin-bottom: 8px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.choice {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 13px;
  background: #0e0e0e;
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  color: var(--muted-light);
  cursor: pointer;
  font-size: 14px;
  transition: border-color 160ms ease, color 160ms ease;
}

.choice:hover,
.choice:has(input:checked) {
  border-color: var(--red);
  color: var(--white);
}

.choice input {
  width: 17px;
  min-height: auto;
  height: 17px;
  margin-right: 9px;
  accent-color: var(--red);
}

.upload-group input[type="file"] {
  height: auto;
  padding: 16px;
}

.upload-group input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 12px;
  background: var(--panel-light);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
}

.form-group small,
.form-note {
  color: #8f8f8f;
  font-size: 12px;
}

.form-group .text-link {
  margin-top: 4px;
  align-self: flex-start;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted-light);
  cursor: pointer;
  font-size: 14px;
}

.consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--red);
}

.form-submit {
  width: 100%;
}

.form-note {
  max-width: 680px;
  margin: 14px auto 0;
  text-align: center;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  min-height: 205px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
}

.contact-label {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 5px;
  font-size: 19px;
}

.contact-card p {
  color: var(--muted);
  font-size: 14px;
}

/* Footer */
.footer {
  padding: 48px var(--side-space) 28px;
  background: #050505;
  border-top: 1px solid var(--border);
  color: #c2c2c2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(100%, var(--max-width));
  margin: 0 auto 28px;
}

.footer-heading,
.footer .logo {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  color: var(--muted-light);
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--red);
}

.footer-links {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-copy {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: #9a9a9a;
  font-size: 13px;
}

@media (max-width: 1120px) and (min-width: 981px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .estimate-btn {
    min-height: 40px;
    padding: 8px 12px;
  }
}

/* Responsive */
.logo {
  order: 0;
}

.nav-links {
  order: 1;
  margin-left: auto;
}

.nav-tools {
  order: 2;
  margin-left: 12px;
}

@media (max-width: 980px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav-tools {
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding: 12px var(--side-space) 22px;
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.36);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #1f1f1f;
  }

  .nav-links li:last-child a {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

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

  .contact-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .navbar {
    min-height: 70px;
  }

  .nav-links {
    top: 70px;
  }

  section {
    scroll-margin-top: 78px;
  }

  .hero {
    align-items: center;
    min-height: 560px;
    padding-top: 88px;
    padding-bottom: 96px;
    text-align: center;
  }

  .hero-slide img {
    object-position: 72% 38%;
  }

  .hero-slide:nth-child(2) img {
    object-position: 48% 36%;
  }

  .hero-slide:nth-child(3) img {
    object-position: 90% 52%;
  }

  .hero-slide:nth-child(4) img {
    object-position: 18% 38%;
  }

  .hero-carousel-controls {
    bottom: 18px;
    justify-content: center;
  }

  .hero::before {
    background: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58));
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(30px, 11vw, 48px);
  }

  .hero .eyebrow,
  .section-heading-centered .eyebrow {
    justify-content: center;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .services-grid,
  .gallery,
  .contact-grid,
  .form-grid,
  .vehicle-grid,
  .choice-grid,
  .about-content {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .gallery-placeholder,
  .gallery img {
    height: 250px;
  }

  .about-content {
    gap: 32px;
  }

  .about-content .section-heading {
    margin-bottom: 0;
  }

  .about-copy {
    padding-top: 28px;
  }

  .estimate-form {
    padding: 24px 18px;
  }

  .estimate-form fieldset {
    margin-bottom: 34px;
    padding-bottom: 34px;
  }

  .form-group-wide,
  .contact-card:last-child {
    grid-column: auto;
  }

  .contact-card {
    min-height: 170px;
  }

  .contact-label {
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-items: center;
  }
}

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

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

.contact-card a {
  color: var(--red);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--white);
}

.gallery-card a {
  display: block;
  cursor: zoom-in;
}

.gallery-card a img {
  display: block;
  width: 100%;
}

.lightbox {
  width: min(96vw, 1100px);
  max-height: 92vh;
  padding: 48px 16px 16px;
  overflow: auto;
  background: #0b0b0b;
  border: 1px solid var(--border-strong);
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox img[hidden],
.lightbox-video-wrap[hidden] {
  display: none;
}

.lightbox-video-wrap {
  display: grid;
  gap: 12px;
  width: min(100%, 360px);
  margin: 0 auto;
  justify-items: center;
}

.lightbox-video-wrap iframe {
  width: 100%;
  height: min(72vh, 620px);
  border: 0;
  background: #000;
  border-radius: 8px;
}

.lightbox-tiktok-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery-video-card a {
  position: relative;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: rgba(8, 8, 8, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.gallery-video-card a:hover .video-play,
.gallery-video-card a:focus-visible .video-play {
  background: var(--red);
  border-color: var(--red);
}
.gallery-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 290px;
  overflow: hidden;
}

.gallery-image-pair a {
  display: block;
  height: 100%;
}

.gallery-image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#gallery {
  scroll-margin-top: 100px;
}
.gallery-title {
  grid-column: 1 / -1;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 52px);
  text-align: center;
  text-transform: uppercase;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.logo img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.logo span {
  font-weight: bold;
  white-space: nowrap;
}

.header .logo {
  flex-shrink: 0;
}

/* 2026 content and interaction updates */
.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: #111111;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.language-option {
  min-width: 44px;
  min-height: 36px;
  padding: 6px 10px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-option[aria-pressed="true"] {
  background: var(--red);
  color: var(--white);
}

.hero .language-switch {
  margin: 0;
}

.hero-language {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 28px;
}

.language-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.language-hint[hidden] {
  display: none;
}

.language-hint-arrow {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  animation: languageHintNudge 1.4s ease-in-out infinite;
}

@keyframes languageHintNudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }
}

.hero .hero-actions .btn:not(.btn-secondary) {
  background: #167fa8;
  border-color: #167fa8;
  box-shadow: 0 10px 28px rgba(22, 127, 168, 0.24);
}

.hero .hero-actions .btn:not(.btn-secondary):hover,
.hero .hero-actions .btn:not(.btn-secondary):focus-visible {
  background: #0f6689;
  border-color: #0f6689;
  color: var(--white);
}

.service-card-language {
  background:
    linear-gradient(145deg, rgba(54, 163, 213, 0.18), transparent 62%),
    var(--panel-light);
}

.gallery-section,
.why-us-section,
.reviews-section {
  padding: var(--section-space) var(--side-space);
}

.gallery-section,
.reviews-section {
  background: var(--black);
}

.gallery-section {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

.gallery-section .section-heading {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.why-us-section {
  background: var(--near-black);
}

.gallery-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.gallery-controls {
  display: flex;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.gallery-arrow {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--white);
  font-size: 23px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.gallery-viewport {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.gallery-track .gallery-card {
  flex: 0 0 calc((100% - 36px) / 3);
  align-self: flex-start;
  height: auto;
  scroll-snap-align: start;
}

.gallery-track .gallery-card img,
.gallery-track .gallery-image-pair {
  height: 200px;
}

.gallery-track .gallery-card > h3 {
  padding: 14px 16px;
  font-size: 16px;
}

.gallery-card.reveal-card {
  opacity: 0;
  transform: translateX(-46px);
  transition: opacity 650ms ease, transform 650ms ease, border-color 180ms ease;
}

.gallery-card.reveal-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.why-grid,
.reviews-summary {
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  gap: 20px;
}

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

.why-card {
  min-height: 240px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
}

.why-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.why-card p,
.rating-card > p:last-child {
  color: var(--muted);
}

.reviews-section .section-heading,
.reviews-btn {
  margin-right: auto;
  margin-left: auto;
}

.reviews-section .section-heading {
  text-align: center;
}

.reviews-section .section-heading .eyebrow {
  justify-content: center;
}

.reviews-summary {
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
  max-width: var(--max-width);
  align-items: stretch;
}

.rating-card,
.reviews-intro,
.review-card {
  padding: clamp(28px, 5vw, 48px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.rating-score {
  color: var(--white);
  font-size: clamp(52px, 7vw, 78px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stars {
  margin: 14px 0;
  color: #f6c64a;
  font-size: 20px;
  letter-spacing: 0.12em;
}

.reviews-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--red);
}

.reviews-kicker {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-intro h3 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}

.reviews-intro > p:last-child {
  max-width: 760px;
  color: var(--muted);
}

.review-slider-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, var(--max-width));
  margin: 22px auto 0;
}

.review-slider-heading > p {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  gap: 10px;
}

.review-arrow {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.review-viewport {
  width: min(100%, var(--max-width));
  margin: 14px auto 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.review-viewport::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  gap: 18px;
}

.review-card {
  display: flex;
  flex: 0 0 calc((100% - 36px) / 3);
  flex-direction: column;
  min-width: 0;
  height: 350px;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  color: inherit;
  scroll-snap-align: start;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.review-card:hover,
.review-card:focus-visible {
  background: var(--panel-light);
  border-color: rgba(54, 163, 213, 0.7);
  transform: translateY(-4px);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.review-card-top .stars {
  margin: 0;
  font-size: 15px;
}

.review-card-top span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.review-card blockquote p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-strong);
}

.review-card footer strong {
  color: var(--white);
  font-size: 15px;
}

.review-card footer span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.google-attribution {
  width: min(100%, var(--max-width));
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.google-attribution span {
  color: var(--muted-light);
}

.reviews-btn {
  display: flex;
  width: max-content;
  margin-top: 28px;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  width: min(100%, var(--max-width));
  margin: 28px auto 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.key-drop-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  width: min(100%, var(--max-width));
  margin: 28px auto 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  scroll-margin-top: 88px;
}

.key-drop-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
}

.key-drop-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.key-drop-copy p:not(.eyebrow) {
  margin-bottom: 14px;
  color: var(--muted);
}

.key-drop-copy p:last-child {
  margin-bottom: 0;
}

.key-drop-photos {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  min-height: 280px;
  padding: 12px;
}

.key-drop-photos a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
}

.key-drop-photos img {
  width: 100%;
  height: 100%;
  min-height: 256px;
  object-fit: cover;
}

.map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
}

.map-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.map-copy > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
}

.location-map {
  width: 100%;
  min-height: 390px;
  border: 0;
}

#vin {
  text-transform: uppercase;
}

.vin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(200px, 240px);
  gap: 16px;
  align-items: start;
}

.vin-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vin-guide {
  max-width: 240px;
}

.vin-guide-title {
  margin-bottom: 6px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vin-diagrams {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.vin-diagram {
  margin: 0;
  padding: 4px 4px 5px;
  background: #0e0e0e;
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  text-align: center;
}

.vin-diagram svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
}

.vin-diagram svg text {
  font-family: Arial, Helvetica, sans-serif;
}

.vin-diagram figcaption {
  margin-top: 2px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.vin-diagram-app {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  text-align: left;
}

.vin-diagram-app svg {
  width: 54px;
  max-height: 36px;
  flex-shrink: 0;
}

.vin-diagram-app figcaption {
  margin-top: 0;
  font-size: 11px;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-track .gallery-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 700px) {
  .logo img {
    width: 60px;
    height: 60px;
  }

  .logo span {
    font-size: 16px;
  }

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

  .vin-guide {
    max-width: 260px;
  }

  .gallery-heading-row {
    display: block;
  }

  .gallery-controls {
    margin-top: -24px;
  }

  .gallery-track .gallery-card {
    flex-basis: 86%;
  }

  .gallery-track .gallery-card img,
  .gallery-track .gallery-image-pair {
    height: 220px;
  }

  .why-grid,
  .reviews-summary,
  .map-card,
  .key-drop-card {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: min(86vw, 350px);
    height: 330px;
  }

  .review-card blockquote p {
    -webkit-line-clamp: 6;
  }

  .why-card {
    min-height: 0;
  }

  .location-map {
    min-height: 330px;
  }

  .key-drop-photos {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .key-drop-photos img {
    min-height: 180px;
  }

  #key-drop {
    scroll-margin-top: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  .hero-slide img,
  .hero-slide.is-active img,
  .hero-slide.is-leaving img {
    animation: none;
    transform: none;
  }

  .language-hint-arrow {
    animation: none;
  }

  .gallery-card.reveal-card {
    opacity: 1;
    transform: none;
  }

  .service-card:hover,
  .gallery-card:hover,
  .estimate-btn:hover,
  .btn:hover,
  .review-card:hover,
  .gallery-arrow:hover,
  .review-arrow:hover,
  .language-option {
    transform: none;
  }
}

.nav-overlay {
  position: fixed;
  inset: 78px 0 0;
  z-index: 15;
  background: rgba(0, 0, 0, 0.45);
}

body.nav-open {
  overflow: hidden;
}

.gallery-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-facade {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  overflow: hidden;
  background: #111111;
}

.map-facade-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
}

.map-facade::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.58) 100%);
  content: "";
  pointer-events: none;
}

.map-facade-prompt {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  max-width: 360px;
  padding: 20px 22px;
  background: rgba(8, 8, 8, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  text-align: center;
}

.map-facade p {
  max-width: 340px;
  margin-bottom: 16px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.map-facade .location-map {
  position: relative;
  z-index: 3;
}

.map-facade:has(.location-map)::after,
.map-facade:has(.location-map) .map-facade-photo {
  display: none;
}

.contact-social {
  width: min(100%, var(--max-width));
  margin: 24px auto 0;
}

.form-note a {
  color: var(--red);
}

.legal-main,
.thanks-main {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: var(--section-space) var(--side-space) 80px;
}

.legal-main h1,
.thanks-main h1 {
  margin-bottom: 16px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
}

.legal-main h2 {
  margin: 32px 0 12px;
  font-size: 22px;
}

.legal-main p,
.thanks-main p,
.legal-main li {
  margin-bottom: 14px;
  color: var(--muted-light);
}

.legal-main ul {
  margin: 0 0 18px 20px;
}

.confirm-banner {
  margin-bottom: 24px;
  padding: 12px 14px;
  background: rgba(54, 163, 213, 0.12);
  border: 1px solid rgba(54, 163, 213, 0.4);
  color: var(--white);
  font-size: 14px;
}

#services .section-heading,
#services .services-grid,
#about .about-content,
#estimate .section-heading,
#contact .section-heading,
#contact .contact-grid {
  width: min(100%, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-overlay {
    inset: 70px 0 0;
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-facade {
    min-height: 280px;
  }
}

@media (max-width: 360px) {
  .logo span {
    max-width: none;
    overflow: visible;
    font-size: 12px;
    letter-spacing: 0.03em;
    white-space: normal;
  }

  .hero-actions .btn {
    min-height: 48px;
  }
}

