:root {
  --red: #ff3126;
  --red-dark: #b90d06;
  --ink: #11100d;
  --charcoal: #1c1b18;
  --steel: #5f646d;
  --line: #ddd8d0;
  --paper: #f7f5f0;
  --white: #fff;
  --shadow: 0 18px 50px rgba(17, 16, 13, 0.18);
  --radius: 8px;
  --wrap: min(1180px, calc(100vw - 40px));
  --car-cursor: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='42'%20height='42'%20viewBox='0%200%2042%2042'%3E%3Cpath%20d='M6%2024h3l4-8h15l5%208h3v7h-4a5%205%200%200%201-10%200H16a5%205%200%200%201-10%200H3v-4c0-2%201-3%203-3Z'%20fill='%23ff3126'/%3E%3Cpath%20d='M15%2018h6v6H12l3-6Zm8%200h4l4%206h-8v-6Z'%20fill='%2311100d'/%3E%3Ccircle%20cx='11'%20cy='31'%20r='4'%20fill='%2311100d'/%3E%3Ccircle%20cx='27'%20cy='31'%20r='4'%20fill='%2311100d'/%3E%3Ccircle%20cx='11'%20cy='31'%20r='1.5'%20fill='%23fff'/%3E%3Ccircle%20cx='27'%20cy='31'%20r='1.5'%20fill='%23fff'/%3E%3C/svg%3E") 14 24, auto;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

@media (pointer: fine) {
  body {
    cursor: var(--car-cursor);
  }

  a,
  button,
  summary,
  input,
  textarea,
  select,
  [role="button"] {
    cursor: var(--car-cursor);
  }
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: Rajdhani, Inter, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.94);
  border-bottom: 1px solid rgba(17, 16, 13, 0.1);
  backdrop-filter: blur(16px);
}

.top-strip {
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
}

.top-strip__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  white-space: nowrap;
}

.top-strip a {
  color: var(--white);
}

.nav-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 210px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.primary-nav {
  justify-self: end;
}

.menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu > li {
  position: relative;
}

.menu a {
  position: relative;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
}

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

.menu a:hover::after,
.menu .current-menu-item > a::after {
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  width: min(940px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 22px;
  padding: 22px;
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 49, 38, 0.14), transparent 32%),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-item--mega:hover .mega-menu,
.menu-item--mega:focus-within .mega-menu,
.menu-item--mega.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28px;
  height: 28px;
}

.mega-menu__intro {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.mega-menu__close {
  display: none;
}

.mega-menu__intro h2 {
  font-size: clamp(1.7rem, 2.6vw, 3rem);
}

.mega-menu__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

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

.mega-link {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 84px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mega-link:hover,
.mega-link:focus {
  border-color: rgba(255, 49, 38, 0.86);
  background: rgba(255, 49, 38, 0.14);
  transform: translateY(-2px);
}

.mega-link__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 49, 38, 0.42);
  background: rgba(255, 49, 38, 0.1);
  color: var(--red);
}

.mega-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-link strong,
.mega-link small {
  display: block;
}

.mega-link strong {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.18rem;
  line-height: 1.05;
}

.mega-link small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 11px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(255, 49, 38, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 49, 38, 0.35);
}

.btn--small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.btn--outline,
.btn--outline-light {
  background: transparent;
  color: var(--red);
  box-shadow: none;
}

.btn--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
}

.btn--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  min-height: min(540px, calc(82svh - 118px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero.compact {
  min-height: min(320px, calc(58svh - 118px));
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 49, 38, 0.12), transparent 38%),
    var(--paper);
}

.hero__media,
.page-hero__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero__overlay,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.95) 0%, rgba(17, 16, 13, 0.7) 45%, rgba(17, 16, 13, 0.25) 100%),
    radial-gradient(circle at 75% 20%, rgba(255, 49, 38, 0.45), transparent 28%);
}

.page-hero.compact::after {
  display: none;
}

.hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 2;
}

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

.hero__copy p {
  max-width: 680px;
  font-size: 1.15rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.eyebrow {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card,
.booking-card,
.feature-card,
.service-card,
.value-panel,
.check-panel {
  border-radius: var(--radius);
}

.btn--split {
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.btn--split span,
.btn--split b {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--split span {
  padding: 0 28px;
}

.btn--split b {
  width: 58px;
  background: rgba(17, 16, 13, 0.34);
  font-size: 1.9rem;
  font-weight: 400;
}


.hero-proof {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero--garage {
  min-height: calc(100svh - 162px);
  isolation: isolate;
}

.hero--garage .hero__media {
  background-position: 62% center;
  filter: saturate(0.82) contrast(1.1);
}

.hero--garage .hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.48) 100%),
    radial-gradient(circle at 74% 24%, rgba(255, 49, 38, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(255, 49, 38, 0.18), transparent 38%);
}

.hero--garage .hero__inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 420px);
  min-height: calc(100svh - 162px);
  padding-top: clamp(24px, 4.6svh, 56px);
  padding-bottom: clamp(24px, 4.6svh, 56px);
}

.hero--garage h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, min(5.9vw, 8.7svh), 6.4rem);
}

.hero-track {
  position: absolute;
  z-index: 1;
  inset: auto -8vw 8% 36%;
  height: clamp(130px, 18vw, 230px);
  transform: skewY(-7deg);
  pointer-events: none;
}

.hero-track::before,
.hero-track::after,
.hero-track span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 999px;
}

.hero-track::before {
  top: 12%;
  height: 22px;
  background: linear-gradient(90deg, transparent, rgba(255, 49, 38, 0.92), transparent);
  filter: blur(0.3px);
}

.hero-track::after {
  top: 48%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.72) 0 46px, transparent 46px 74px);
  opacity: 0.52;
  animation: road-move 1.2s linear infinite;
}

.hero-track span {
  bottom: 10%;
  height: 78px;
  background: linear-gradient(90deg, transparent, rgba(255, 49, 38, 0.12), rgba(255, 49, 38, 0.32), transparent);
  border-top: 1px solid rgba(255, 49, 38, 0.28);
  border-bottom: 1px solid rgba(255, 49, 38, 0.18);
}

.hero-panel {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 49, 38, 0.18), transparent 44%),
    rgba(17,16,13,0.78);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.hero-panel .tick-list {
  margin-top: 18px;
}

.inspection-readout {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 20px 0 18px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.inspection-readout::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 49, 38, 0.2), transparent);
  animation: diagnostic-scan 2.8s ease-in-out infinite;
}

.inspection-readout div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inspection-readout div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.inspection-readout span {
  color: var(--red);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 900;
}

.inspection-readout strong {
  color: var(--white);
  font-size: 0.9rem;
  text-align: right;
}

.hero-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-service-tags a {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  font-weight: 900;
  font-size: 0.82rem;
}

.service-card__icon--text {
  width: fit-content;
  min-width: 54px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 49, 38, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 49, 38, 0.12);
  color: var(--red);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.rwc-sales {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.rwc-sales::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.rwc-sales__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 42px;
  align-items: center;
}

.rwc-sales__copy h2 {
  max-width: 760px;
}

.rwc-sales__copy p {
  max-width: 660px;
  font-size: 1.08rem;
}

.rwc-sales__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.rwc-sales__cards article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.rwc-sales__cards svg {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rwc-sales__cards strong,
.rwc-sales__cards span {
  display: block;
}

.rwc-sales__cards strong {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.rwc-sales__cards span {
  margin-top: 10px;
  color: var(--steel);
  font-weight: 700;
}

.section {
  padding: 90px 0;
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(255, 49, 38, 0.16), transparent 35%),
    var(--charcoal);
  color: var(--white);
}

#rwc,
#what-we-do,
#services,
#booking,
#contact {
  scroll-margin-top: 128px;
}

.section--light {
  background: var(--white);
}

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

.service-strip {
  padding: 18px 0;
  background: var(--white);
}

.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.service-pill {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-pill:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.service-pill .service-card__icon--text {
  font-size: 0.9rem;
  min-width: 0;
  padding: 5px 8px;
}

.service-pill svg,
.contact-list svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-pill span,
.service-card__icon {
  color: var(--red);
}

.split__grid,
.contact-grid,
.booking-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-tool {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.floating-tool svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.metric-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-row strong {
  display: block;
  color: var(--red);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.metric-row span {
  display: block;
  font-weight: 800;
}

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

.service-card,
.feature-card,
.value-panel,
.check-panel,
.contact-card,
.booking-card {
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17, 16, 13, 0.08);
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.service-card--light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.service-card__icon {
  margin-bottom: 18px;
}

.service-card__icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tick-list,
.contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  font-weight: 700;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline__item {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.cta-band {
  padding: 70px 0;
  background: var(--red);
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band .eyebrow {
  color: var(--white);
}

.cta-band h2 {
  max-width: 720px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-cta {
  padding: 78px 0;
  background:
    linear-gradient(135deg, rgba(255, 49, 38, 0.96), rgba(185, 13, 6, 0.95)),
    var(--red);
  color: var(--white);
}

.booking-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.booking-cta .eyebrow,
.booking-cta .tick-list li::before {
  color: var(--white);
  border-color: var(--white);
}

.booking-cta__copy h2 {
  max-width: 760px;
}

.booking-cta__copy p {
  max-width: 640px;
  font-size: 1.08rem;
}

.booking-cta__copy .tick-list {
  margin: 22px 0 28px;
}

.booking-widget {
  min-width: 320px;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 700px;
}

.page-hero__inner {
  max-width: 920px;
  padding: clamp(42px, 7svh, 72px) 0;
}

.page-hero__inner p {
  font-size: 1.12rem;
  max-width: 780px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, min(5.2vw, 8svh), 5.8rem);
  line-height: 0.98;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.content-stack p {
  margin: 0;
}

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

.seo-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.seo-card h2,
.seo-card h3 {
  margin: 0 0 12px;
}

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

.inclusion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.inclusion-list li {
  list-style: none;
  padding: 16px 18px;
  border: 1px solid rgba(255, 49, 38, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 49, 38, 0.06);
  font-weight: 800;
}

.keyword-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 49, 38, 0.12), transparent 42%),
    var(--paper);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.keyword-list span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 49, 38, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.05rem;
}

.contact-section,
.booking-section {
  background: var(--white);
}

.contact-grid {
  align-items: stretch;
}

.contact-card--dark,
.booking-card--feature {
  background: var(--charcoal);
  color: var(--white);
}

.contact-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  margin: 18px 0;
}

.contact-list svg {
  color: var(--red);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.map-band iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.booking-grid {
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  align-items: stretch;
}

.policy-content {
  max-width: 820px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--white);
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  align-items: start;
  padding: 70px 0;
  grid-template-columns: 1.4fr 1fr 0.8fr;
}

.footer-logo {
  width: 220px;
  max-height: 95px;
  object-fit: contain;
  object-position: left center;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer h2 {
  font-size: 1.5rem;
}

.footer-menu {
  display: grid;
  gap: 10px;
  align-items: start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-weight: 800;
}

.social-links--large a {
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
}

.footer-bottom__inner p {
  margin: 0;
}

.footer-bottom__inner a {
  color: var(--white);
  font-weight: 900;
}

.footer-bottom__inner a:hover {
  color: var(--red);
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

.hero .reveal,
.page-hero .reveal {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@keyframes idle-drive {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes road-move {
  to { background-position: -42px 0; }
}

@keyframes diagnostic-scan {
  0%, 18% { transform: translateX(0); opacity: 0; }
  28%, 72% { opacity: 1; }
  100% { transform: translateX(410%); opacity: 0; }
}

@media (min-aspect-ratio: 17 / 8) and (min-width: 1041px) {
  .hero--garage {
    min-height: calc(100svh - 162px);
  }

  .hero--garage .hero__inner {
    min-height: calc(100svh - 162px);
  }

  .hero--garage .hero__media {
    background-position: 72% center;
  }

  .hero--garage h1 {
    font-size: clamp(3.25rem, 5.45vw, 5.95rem);
  }
}

@media (max-height: 720px) and (min-width: 861px) {
  .hero--garage {
    min-height: calc(100svh - 150px);
  }

  .hero--garage .hero__inner {
    min-height: calc(100svh - 150px);
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .hero--garage h1 {
    font-size: clamp(3rem, 5.2vw, 5rem);
  }

  .hero--garage .hero__copy p {
    max-width: 600px;
  }

  .hero-panel {
    padding: 22px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .service-strip__grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline,
  .booking-grid,
  .rwc-sales__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 90px 0;
  }

  .hero--garage .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-track {
    inset: auto -16vw 4% 18%;
  }

  .hero-panel {
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  .top-strip__inner {
    justify-content: center;
    overflow-x: auto;
  }

  .nav-shell {
    grid-template-columns: auto auto;
  }

  .brand {
    width: 178px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-shell > .btn {
    display: none;
  }

  .primary-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    z-index: 120;
    display: none;
    justify-self: auto;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - 150px);
    box-sizing: border-box;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-open .primary-nav {
    display: block;
  }

  .menu {
    display: grid;
    gap: 10px;
  }

  .menu > li {
    width: 100%;
  }

  .menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    padding: 13px 14px;
    border-radius: 10px;
    background: rgba(17, 16, 13, 0.05);
  }

  .menu > li > a::after {
    display: none;
  }

  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    margin-top: 14px;
    padding: 14px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .menu-item--mega.is-open .mega-menu {
    display: grid;
  }

  .menu-item--mega:hover .mega-menu,
  .menu-item--mega:focus-within .mega-menu {
    transform: none;
  }

  .mega-menu::before {
    display: none;
  }

  .mega-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font: inherit;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .split__grid,
  .contact-grid,
  .footer-grid,
  .cta-band__inner,
  .rwc-sales__grid,
  .booking-cta__grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

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

  .split__grid,
  .contact-grid,
  .footer-grid,
  .rwc-sales__grid,
  .booking-cta__grid {
    display: grid;
  }

  .cta-band__inner {
    display: grid;
  }

  .hero,
  .page-hero {
    min-height: 620px;
  }

  .hero--garage {
    min-height: auto;
  }

  .hero--garage .hero__media {
    background-position: 68% center;
  }

  .hero--garage .hero__inner {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .section {
    padding: 64px 0;
  }

  .service-strip {
    padding: 14px 0;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap: min(100vw - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .hero__copy p,
  .page-hero__inner p {
    font-size: 1rem;
  }

  .service-strip__grid,
  .card-grid,
  .timeline,
  .metric-row,
  .booking-grid,
  .rwc-sales__cards {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero__inner,
  .page-hero__inner {
    padding: 76px 0;
  }

  .hero__actions,
  .cta-band__actions,
  .contact-actions,
  .rwc-sales__actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero--garage h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .hero-panel {
    padding: 22px;
    margin-top: 28px;
  }

  .hero-track {
    inset: auto -35vw 1% 0;
    height: 120px;
  }

  .service-pill {
    min-height: 82px;
  }

  .rwc-sales__cards article {
    min-height: auto;
  }

  .booking-cta {
    padding: 58px 0;
  }

  .top-strip__inner {
    justify-content: center;
  }

  .top-strip__inner span,
  .top-strip__inner a[href^="mailto:"] {
    display: none;
  }

  .policy-content {
    padding: 24px;
  }
}
