:root {
  --ink: #111820;
  --ink-soft: #25313b;
  --orange: #f38b00;
  --orange-dark: #c56f00;
  --paper: #ffffff;
  --mist: #f4f6f7;
  --line: #d9dee2;
  --muted: #66717b;
  --green: #1f7a66;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--orange);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: var(--paper);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(17, 24, 32, 0.96);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.brand img {
  width: 152px;
  height: auto;
  background: #fff;
  padding: 7px 9px;
  border-radius: 4px;
}

.brand span {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--orange);
}

.nav-call {
  background: var(--orange);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
}

.nav-call:hover {
  color: var(--ink) !important;
  background: #ffab2b;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 4vw, 52px) 48px;
  overflow: hidden;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.91) 0%, rgba(17, 24, 32, 0.78) 36%, rgba(17, 24, 32, 0.25) 72%, rgba(17, 24, 32, 0.05) 100%),
    linear-gradient(0deg, rgba(17, 24, 32, 0.75) 0%, rgba(17, 24, 32, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--paper);
}

.eyebrow,
.section-label {
  margin: 0 0 13px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.98;
  max-width: 10.5em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

.button.primary:hover {
  background: #ffab2b;
}

.button.ghost {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(830px, 100%);
  margin-top: 70px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-panel div {
  padding: 21px;
  color: #fff;
  background: rgba(17, 24, 32, 0.48);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.05rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

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

.intro,
.local-proof,
.services,
.split-feature,
.process,
.areas,
.faq,
.booking-section {
  padding: clamp(70px, 9vw, 116px) clamp(18px, 4vw, 52px);
}

.intro-grid,
.local-proof-inner,
.section-heading,
.service-grid,
.split-feature,
.steps,
.areas,
.faq-grid,
.booking-section,
.site-footer {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

.intro p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.local-proof {
  background: var(--mist);
}

.local-proof-inner {
  max-width: 960px;
}

.local-proof p:last-child {
  max-width: 880px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.service-card {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.1);
  border-color: rgba(243, 139, 0, 0.55);
}

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

.service-icon {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
}

.service-icon.tire::before {
  inset: 9px;
  border: 4px solid var(--orange);
  border-radius: 50%;
}

.service-icon.gauge::before {
  width: 23px;
  height: 12px;
  left: 9px;
  top: 15px;
  border: 4px solid var(--orange);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.service-icon.gauge::after {
  width: 13px;
  height: 3px;
  left: 22px;
  top: 24px;
  background: var(--orange);
  transform: rotate(-33deg);
  transform-origin: left center;
}

.service-icon.battery::before {
  width: 24px;
  height: 15px;
  left: 8px;
  top: 14px;
  border: 3px solid var(--orange);
}

.service-icon.battery::after {
  width: 5px;
  height: 9px;
  right: 6px;
  top: 17px;
  background: var(--orange);
}

.service-icon.scan::before {
  left: 10px;
  right: 10px;
  top: 12px;
  height: 18px;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}

.service-icon.scan::after {
  left: 18px;
  top: 7px;
  width: 6px;
  height: 28px;
  background: var(--orange);
}

.service-icon.oil::before {
  left: 13px;
  top: 8px;
  width: 16px;
  height: 24px;
  background: var(--orange);
  border-radius: 8px 8px 12px 12px;
  transform: rotate(24deg);
}

.service-icon.wrench::before {
  width: 25px;
  height: 5px;
  left: 8px;
  top: 20px;
  background: var(--orange);
  transform: rotate(-35deg);
  border-radius: 10px;
}

.service-icon.wrench::after {
  width: 13px;
  height: 13px;
  left: 22px;
  top: 7px;
  border: 4px solid var(--orange);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-35deg);
}

.split-feature {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.photo-stack {
  position: relative;
}

.photo-stack img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 265px;
  padding: 18px;
  background: #fff;
  border-left: 6px solid var(--orange);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(17, 24, 32, 0.18);
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card span {
  color: var(--muted);
}

.process .section-heading,
.process .eyebrow {
  color: var(--paper);
}

.process .eyebrow {
  color: var(--orange);
}

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

.steps article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: var(--orange);
  color: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.areas {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.area-map {
  min-height: 430px;
  position: relative;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 24, 32, 0.08), rgba(31, 122, 102, 0.11)),
    repeating-linear-gradient(45deg, rgba(17, 24, 32, 0.07) 0 1px, transparent 1px 18px);
  border: 1px solid var(--line);
  overflow: hidden;
}

.area-map::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px solid rgba(243, 139, 0, 0.7);
  border-radius: 52% 48% 45% 55%;
}

.area-map::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), 0 12px 24px rgba(17, 24, 32, 0.2);
}

.area-map span {
  position: absolute;
  display: inline-flex;
  min-width: 86px;
  justify-content: center;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(17, 24, 32, 0.09);
  font-weight: 800;
  font-size: 0.9rem;
}

.area-map span:nth-child(1) { left: 44%; top: 47%; }
.area-map span:nth-child(2) { left: 20%; top: 27%; }
.area-map span:nth-child(3) { left: 58%; top: 30%; }
.area-map span:nth-child(4) { left: 60%; top: 66%; }
.area-map span:nth-child(5) { left: 24%; top: 68%; }
.area-map span:nth-child(6) { left: 38%; top: 12%; }

.area-copy p {
  color: var(--muted);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 4px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

.faq .section-heading {
  color: var(--paper);
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.faq-grid p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--orange-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  background: var(--mist);
}

.booking-copy p {
  color: var(--muted);
}

.contact-strip {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-weight: 900;
}

.contact-strip a {
  display: inline-block;
  color: var(--ink);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(17, 24, 32, 0.1);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd6dc;
  border-radius: 4px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 139, 0, 0.16);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.is-success {
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr;
  gap: 28px;
  padding: 44px clamp(18px, 4vw, 52px) 70px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer img {
  width: 162px;
  padding: 8px 10px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 4px;
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 10px;
  color: #fff;
}

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

.mobile-cta {
  display: none;
}

.subpage .site-header {
  position: sticky;
  background: rgba(17, 24, 32, 0.96);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.subpage-main {
  background: var(--mist);
}

.contact-hero {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 52px);
  background: var(--ink);
  color: var(--paper);
}

.contact-hero > div {
  width: min(850px, 100%);
  margin-inline: auto;
}

.contact-hero p:last-child {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.booking-section-standalone {
  padding-top: clamp(50px, 7vw, 90px);
}

.call-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 40px 18px;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}

.call-screen img {
  width: min(260px, 78vw);
  padding: 10px 12px;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 4px;
}

.call-screen h1 {
  max-width: 780px;
  margin-bottom: 4px;
  font-size: clamp(2.1rem, 7vw, 4.8rem);
}

.call-screen p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
}

.call-screen .text-link {
  color: var(--paper);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: none;
    padding: 18px;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: grid;
  }

  .nav-call {
    text-align: center;
  }

  .hero {
    min-height: 830px;
    align-items: end;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 24, 32, 0.9), rgba(17, 24, 32, 0.62)),
      linear-gradient(0deg, rgba(17, 24, 32, 0.84) 0%, rgba(17, 24, 32, 0) 50%);
  }

  .hero-panel,
  .intro-grid,
  .section-heading,
  .split-feature,
  .steps,
  .areas,
  .faq-grid,
  .booking-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 660px) {
  .brand img {
    width: 124px;
  }

  .brand span {
    font-size: 0.85rem;
  }

  .hero {
    min-height: 760px;
    padding-top: 118px;
    padding-bottom: 26px;
  }

  .hero-image {
    object-position: 62% center;
  }

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

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .service-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

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

  .photo-stack img {
    aspect-ratio: 4 / 3;
  }

  .mini-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .area-map {
    min-height: 360px;
  }

  .area-map span {
    min-width: 76px;
    font-size: 0.8rem;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(17, 24, 32, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .mobile-cta a {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--ink);
    border-radius: 4px;
    font-weight: 900;
  }
}
