:root {
  color-scheme: dark;
  --bg: #08090b;
  --bg-2: #101216;
  --panel: #15181d;
  --panel-2: #1d2128;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8f8f5;
  --muted: #b7bcc3;
  --soft: #7f8791;
  --orange: #ff681f;
  --orange-2: #ff3f18;
  --orange-soft: rgba(255, 104, 31, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 104, 31, 0.12), transparent 30rem),
    linear-gradient(180deg, #090a0c 0%, #101216 46%, #08090b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--orange);
  color: white;
  padding: 10px 14px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.86);
  padding: 14px clamp(18px, 4vw, 46px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid #111318;
  border-radius: 50%;
  background:
    linear-gradient(145deg, #ff7d24, #f24716),
    var(--orange);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.09);
  color: #111318;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  padding: 9px 13px;
  font-size: 0.93rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.header-call {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  padding: 11px 17px;
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(255, 104, 31, 0.28);
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(660px, 86vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.9) 30%, rgba(8, 9, 11, 0.62) 62%, rgba(8, 9, 11, 0.82) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.28) 56%, rgba(8, 9, 11, 0.72) 100%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.05rem, 7.4vw, 6.4rem);
  font-weight: 950;
  line-height: 0.95;
  text-wrap: balance;
}

.hero-copy {
  max-width: 690px;
  color: #d5d8dd;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.direct-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 950;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  box-shadow: 0 18px 36px rgba(255, 104, 31, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.hero-proof {
  display: grid;
  max-width: 780px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 54px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-proof div {
  background: rgba(16, 18, 22, 0.82);
  padding: 19px;
}

.hero-proof dt {
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 7px 0 0;
  color: var(--text);
  font-weight: 900;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #0d0f12;
}

.contact-strip a {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 20px clamp(16px, 3vw, 34px);
}

.contact-strip span {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-strip strong {
  display: block;
  margin-top: 5px;
  overflow-wrap: anywhere;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 112px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.why-content h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 950;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading p,
.why-content p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.service-image {
  height: 142px;
  border-bottom: 3px solid var(--orange);
  background-image:
    linear-gradient(180deg, rgba(8, 9, 11, 0.05), rgba(8, 9, 11, 0.58)),
    var(--service-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-wof { --service-image: url("01-wof-safety-checks.png"); }
.image-diagnostics { --service-image: url("02-diagnostics-electrical.png"); }
.image-repairs { --service-image: url("03-repairs-servicing.png"); }
.image-welding { --service-image: url("04-welding-exhaust.png"); }
.image-dpf { --service-image: url("05-dpf-treatment.png"); }
.image-transmission { --service-image: url("06-transmission.png"); }
.image-performance { --service-image: url("07-performance.png"); }
.image-insurance { --service-image: url("08-insurance-work.png"); }

.service-content {
  padding: 18px;
}

.service-content h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.1;
}

.service-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.why-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.why-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.why-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px 16px 14px 46px;
  color: #eef0f3;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 16px;
  top: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px var(--orange-soft);
  content: "";
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 104, 31, 0.1), transparent 42%),
    var(--panel);
  padding: clamp(18px, 4vw, 30px);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-form label:nth-last-of-type(1),
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-soft);
}

.booking-form select option {
  background: #111318;
  color: var(--text);
}

.form-button {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
}

.seo-section {
  padding-top: 34px;
  padding-bottom: 44px;
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.keyword-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: #e6e9ed;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 850;
}

.faq-section {
  padding-top: 34px;
}

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

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 104, 31, 0.08), transparent 44%),
    var(--panel);
  padding: clamp(18px, 3vw, 24px);
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.location-section {
  padding-top: 30px;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: min(58vw, 470px);
  min-height: 330px;
  border: 0;
  filter: saturate(0.72) contrast(1.05);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  background: #07080a;
  padding: 48px clamp(18px, 4vw, 46px);
}

.footer-brand {
  align-items: flex-start;
}

.footer-note {
  max-width: 360px;
  margin: 24px 0 0;
  color: var(--soft);
}

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

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--text);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 14, 17, 0.98);
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: var(--radius);
    padding: 13px;
  }

  .menu-button {
    justify-self: end;
    display: grid;
  }

  .header-call {
    justify-self: end;
  }

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

  .why-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text span {
    max-width: 180px;
    font-size: 0.62rem;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg img {
    object-position: 52% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 9, 11, 0.72) 0%, rgba(8, 9, 11, 0.9) 32%, rgba(8, 9, 11, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 9, 11, 0.96), rgba(8, 9, 11, 0.7));
  }

  .hero-inner {
    width: min(100% - 32px, var(--max));
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero-proof,
  .contact-strip,
  .service-grid,
  .booking-form,
  .keyword-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .contact-strip a {
    border-right: 0;
  }

  .section {
    width: min(100% - 32px, var(--max));
  }

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

  .why-media img {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
