:root {
  --ink: #090b0f;
  --ink-2: #11151c;
  --ink-3: #1b2029;
  --paper: #ffffff;
  --mist: #f3f5f7;
  --line: #dce0e5;
  --text: #15191f;
  --muted: #626a75;
  --red: #df0712;
  --red-dark: #ad050d;
  --red-soft: #fff0f1;
  --green: #22c55e;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 12px 30px rgba(9, 11, 15, 0.08);
  --shadow-lg: 0 30px 80px rgba(9, 11, 15, 0.18);
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Segoe UI Variable Display", "Arial Black", Inter, "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

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

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: 100px 0;
}

.section-muted {
  background: var(--mist);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

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

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

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

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

.eyebrow.light {
  color: #ff7b82;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  max-width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button .icon {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: linear-gradient(135deg, #f50c18, var(--red-dark));
  color: var(--paper);
  box-shadow: 0 12px 30px rgba(223, 7, 18, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(223, 7, 18, 0.34);
}

.button-outline {
  border-color: #c9cdd2;
  background: var(--paper);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

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

.button-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--ink);
  color: var(--paper);
}

.button-small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.text-link .icon {
  width: 17px;
  transition: transform 180ms ease;
}

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

.text-link:hover .icon {
  transform: translateX(4px);
}

.live-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.13);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.topbar {
  position: relative;
  z-index: 70;
  background: #050609;
  color: #c9ced5;
  font-size: 0.78rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-inner > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-links a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar-links .icon {
  width: 15px;
  height: 15px;
  color: #ff4c55;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 15, 0.94);
  color: var(--paper);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 190px;
  height: 64px;
  display: flex;
  align-items: center;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav > a,
.nav-dropdown > a {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #d7dbe0;
}

.desktop-nav > a:hover,
.nav-dropdown > a:hover {
  color: var(--paper);
}

.nav-dropdown {
  position: static;
}

.dropdown-menu {
  width: 275px;
  position: absolute;
  top: calc(100% - 8px);
  left: -25px;
  display: grid;
  padding: 12px;
  transform: translateY(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #12161d;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
}

.mega-menu {
  width: min(1180px, calc(100vw - 40px));
  max-height: calc(100vh - 105px);
  top: 100%;
  left: 50%;
  grid-template-columns: 0.72fr 1.8fr 0.72fr;
  gap: 18px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px;
  transform: translate(-50%, 10px);
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  transform: translate(-50%, 0);
}

.mega-menu-copy {
  padding: 16px;
}

.mega-menu-copy > span {
  display: block;
  margin-bottom: 10px;
  color: #ff5b63;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-menu-copy > strong {
  display: block;
  color: var(--paper);
  font-family: "Segoe UI Variable Display", "Arial Black", sans-serif;
  font-size: 1.18rem;
  line-height: 1.18;
}

.mega-menu-copy p {
  margin: 12px 0 18px;
  color: #8f98a5;
  font-size: 0.76rem;
  line-height: 1.55;
}

.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper) !important;
  font-size: 0.76rem !important;
  font-weight: 900;
}

.mega-all-link .icon {
  width: 15px;
}

.mega-service-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 8px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-link-group {
  align-content: start;
  display: grid;
  gap: 2px;
}

.mega-link-group > strong {
  padding: 7px 10px;
  color: #ff6970;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-service-links a {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  color: #c9ced5;
  font-size: 0.75rem;
  line-height: 1.3;
}

.mega-menu-image {
  min-height: 220px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 13px;
}

.mega-menu-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 5, 8, 0.9), transparent 65%);
  content: "";
}

.mega-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.mega-menu-image:hover img {
  transform: scale(1.04);
}

.mega-menu-image > span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
}

.mega-menu-image strong {
  color: var(--paper);
  font-size: 0.9rem;
}

.mega-menu-image small {
  color: #b6bec8;
  font-size: 0.7rem;
}

.nav-dropdown:hover .dropdown-menu:not(.mega-menu),
.nav-dropdown:focus-within .dropdown-menu:not(.mega-menu) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 9px;
  color: #c9ced5;
  font-size: 0.85rem;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.nav-phone .icon {
  width: 18px;
  color: #ff4c55;
}

.menu-toggle,
.mobile-nav-head button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.mobile-nav {
  display: none;
}

.home-hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("/images/motorway-tyre-assistance-v3.jpg") center right / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.99) 0%, rgba(6, 8, 11, 0.92) 37%, rgba(6, 8, 11, 0.22) 76%, rgba(6, 8, 11, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 8, 11, 0.8), transparent 45%);
}

.home-hero::after {
  width: 420px;
  height: 420px;
  position: absolute;
  top: -180px;
  left: 20%;
  border-radius: 50%;
  background: rgba(223, 7, 18, 0.16);
  filter: blur(120px);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.7fr);
  gap: 70px;
  padding-top: 65px;
  padding-bottom: 65px;
}

.hero-grid > *,
.form-grid > *,
.content-grid > *,
.contact-grid > *,
.booking-page-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 680px;
}

.hero-status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8dce2;
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(3.4rem, 6.2vw, 6.4rem);
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero-copy h1 .hero-kicker {
  display: block;
  margin-bottom: 15px;
  color: #ff4c55;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 em {
  color: #ff2631;
  font-style: normal;
}

.hero-copy > p {
  max-width: 600px;
  margin-bottom: 0;
  color: #c4cad2;
  font-size: 1.14rem;
}

.home-hero .button-outline {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.hero-proof {
  display: flex;
  gap: 32px;
  margin-top: 42px;
}

.hero-proof div {
  display: grid;
}

.hero-proof strong {
  color: var(--paper);
  font-size: 1.05rem;
}

.hero-proof span {
  color: #8e97a4;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-form-wrap {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.booking-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.booking-form-compact {
  padding: 26px;
  box-shadow: none;
}

.form-heading {
  margin-bottom: 22px;
}

.form-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin-bottom: 7px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.form-heading p,
.form-note {
  margin-bottom: 0;
  font-size: 0.82rem;
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  color: #313740;
  font-size: 0.74rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #d6dae0;
  border-radius: 10px;
  outline: none;
  background: #fafbfc;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border 150ms ease, box-shadow 150ms ease;
}

.booking-form textarea {
  min-height: 82px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(223, 7, 18, 0.08);
}

.full-field {
  margin: 14px 0;
}

.booking-form .button {
  margin-top: 3px;
}

.form-note {
  margin-top: 12px;
  text-align: center;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 25px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid .icon {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.trust-grid span {
  display: grid;
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.service-finder {
  border-bottom: 1px solid var(--line);
  background: #f8f9fa;
}

.service-finder-inner {
  min-height: 112px;
  display: grid;
  align-items: center;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 35px;
}

.service-finder-inner > div:first-child {
  display: grid;
}

.service-finder-inner > div:first-child span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-finder-inner > div:first-child strong {
  color: var(--ink);
  font-size: 1.05rem;
}

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

.service-finder-links a {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: #3a414a;
  font-size: 0.78rem;
  font-weight: 800;
  transition: border 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-finder-links a:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  color: var(--red);
}

.service-finder-links .icon {
  width: 18px;
  color: var(--red);
}

.section-heading {
  margin-bottom: 50px;
}

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

.section-heading p {
  max-width: 570px;
  margin-bottom: 0;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.split-heading > div {
  max-width: 680px;
}

.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow::before {
  display: none;
}

.centered p {
  margin-inline: auto;
}

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

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

.service-card {
  min-height: 430px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 7, 18, 0.38);
  box-shadow: var(--shadow-sm);
}

.service-card-image {
  height: 180px;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.service-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 10, 0.45), transparent 60%);
  content: "";
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.045);
}

.service-card-image > span {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 15px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(7, 9, 12, 0.68);
  color: var(--paper);
  font-size: 0.66rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.service-card-body {
  min-height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 27px;
}

.service-card-icon {
  width: 43px;
  height: 43px;
  position: absolute;
  top: -22px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
}

.service-card-icon .icon {
  width: 20px;
  height: 20px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 13px;
  font-size: 1.35rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.service-card .text-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.reviews-link {
  margin-top: 32px;
}

.catalogue-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 55px 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.catalogue-heading:first-of-type {
  margin-top: 0;
}

.catalogue-heading > .icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
}

.catalogue-heading > div {
  display: grid;
}

.catalogue-heading strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.catalogue-heading span {
  color: var(--muted);
  font-size: 0.76rem;
}

.specialist-catalogue .service-grid + .catalogue-heading {
  margin-top: 75px;
}

.premium-fitment-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(223, 7, 18, 0.22), transparent 30%),
    #090b0f;
}

.premium-fitment-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 75px;
}

.premium-fitment-visual {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
}

.premium-fitment-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.premium-fitment-grid h2 {
  color: var(--paper);
}

.premium-fitment-grid p {
  color: #aab2bd;
}

.premium-brand-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 28px;
}

.premium-brand-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #e1e5ea;
  font-size: 0.75rem;
  font-weight: 900;
}

.premium-brand-links a:hover {
  border-color: rgba(255, 94, 102, 0.65);
  background: rgba(255, 255, 255, 0.075);
}

.premium-brand-links .icon {
  width: 15px;
  color: #ff626a;
}

.extended-review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.policy-prose h2 {
  margin: 42px 0 14px;
  font-size: 1.7rem;
}

.policy-prose h2:first-child {
  margin-top: 0;
}

.sitemap-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sitemap-grid > div {
  display: grid;
  gap: 6px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.sitemap-grid h2 {
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.sitemap-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #414852;
  font-size: 0.84rem;
  font-weight: 800;
}

.sitemap-grid a:last-child {
  border-bottom: 0;
}

.sitemap-grid a:hover {
  color: var(--red);
}

.sitemap-grid .icon {
  width: 16px;
}

.vehicle-section {
  overflow: hidden;
  background: #f4f5f7;
}

.vehicle-showcase {
  display: grid;
  align-items: center;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 70px;
}

.vehicle-visual {
  min-height: 530px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.vehicle-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 8, 11, 0.55), transparent 55%);
  content: "";
}

.vehicle-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.vehicle-visual-badge {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.74);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.vehicle-visual-badge .icon {
  width: 18px;
  color: #ff4d56;
}

.vehicle-copy > p {
  margin-bottom: 28px;
  font-size: 1rem;
}

.vehicle-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.vehicle-type-grid > div {
  display: grid;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.vehicle-type-grid strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.vehicle-type-grid span {
  color: var(--muted);
  font-size: 0.72rem;
}

.brand-marquee {
  margin-top: 62px;
  padding-top: 28px;
  border-top: 1px solid #d7dbe0;
}

.brand-marquee-label {
  display: block;
  margin-bottom: 17px;
  color: #767e89;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-marquee > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.brand-marquee > div span,
.tyre-brand-list span {
  padding: 8px 12px;
  border: 1px solid #d4d8de;
  border-radius: 8px;
  background: var(--paper);
  color: #353b44;
  font-size: 0.75rem;
  font-weight: 800;
}

.brand-marquee small {
  display: block;
  margin-top: 15px;
  color: #8a929d;
  font-size: 0.67rem;
}

.tyre-brand-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 30%, rgba(223, 7, 18, 0.16), transparent 30%),
    #090b0f;
}

.tyre-brand-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 75px;
}

.tyre-brand-copy h2 {
  color: var(--paper);
}

.tyre-brand-copy > p {
  color: #a9b1bc;
}

.tyre-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 18px;
}

.tyre-brand-list span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  color: #e0e4e9;
}

.tyre-brand-copy .brand-disclaimer {
  color: #77808c;
  font-size: 0.68rem;
}

.tyre-brand-copy .button-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.tyre-brand-visual {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.tyre-brand-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.stock-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(7, 9, 12, 0.78);
  backdrop-filter: blur(14px);
}

.stock-card > div {
  display: grid;
}

.stock-card strong {
  color: var(--paper);
  font-size: 0.85rem;
}

.stock-card small {
  color: #969fab;
  font-size: 0.68rem;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(223, 7, 18, 0.2), transparent 30%),
    linear-gradient(135deg, #080a0e, #151a22);
}

.process-section::after {
  width: 500px;
  height: 500px;
  position: absolute;
  right: -250px;
  bottom: -330px;
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.process-copy h2,
.process-section .section-heading h2,
.booking-split h2 {
  color: var(--paper);
}

.process-copy p,
.process-section .section-heading p,
.booking-split > div > p {
  color: #aab2bd;
}

.process-copy .button-outline,
.booking-split > div .button-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 115px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 0 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.steps li:last-child {
  border-color: transparent;
}

.steps li > span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-24px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: var(--ink-2);
  color: #ff646b;
  font-size: 0.75rem;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 1.15rem;
}

.steps p {
  max-width: 500px;
  margin: 0;
  color: #9ea7b3;
  font-size: 0.9rem;
}

.location-showcase {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.location-copy p {
  max-width: 520px;
  margin-bottom: 30px;
}

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

.location-card,
.coming-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.location-card {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.location-card > .icon:first-child {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
}

.location-card > .icon:last-child {
  width: 18px;
  margin-left: auto;
}

.location-card span {
  display: grid;
}

.location-card strong {
  color: var(--ink);
  font-size: 1.3rem;
}

.location-card small {
  color: var(--muted);
}

.coming-card {
  grid-column: 1 / -1;
  background: var(--mist);
}

.coming-card span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-card strong {
  display: block;
  margin: 10px 0 5px;
  color: var(--ink);
  font-size: 1.25rem;
}

.coming-card p {
  margin: 0;
}

.coverage-check-band {
  padding: 26px 0;
  background: #080a0e;
}

.postcode-checker {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(240px, 1fr) minmax(190px, 0.55fr) auto;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.postcode-checker > div {
  display: grid;
}

.postcode-checker > div span {
  color: #ff656d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.postcode-checker > div strong {
  color: var(--paper);
  font-size: 1.06rem;
}

.postcode-checker label {
  display: block;
}

.postcode-checker input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
}

.postcode-checker input:focus {
  border-color: #ff515a;
  box-shadow: 0 0 0 4px rgba(223, 7, 18, 0.18);
}

.postcode-checker .button {
  min-height: 50px;
  white-space: nowrap;
}

.postcode-checker > small {
  grid-column: 1 / -1;
  color: #9ca5b1;
  font-size: 0.7rem;
}

.coverage-directory-section {
  overflow: hidden;
}

.coverage-region-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.coverage-region-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(9, 11, 15, 0.04);
}

.coverage-region-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.coverage-region-card summary::-webkit-details-marker {
  display: none;
}

.coverage-region-card summary > span {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 2px 10px;
}

.coverage-region-card summary .icon {
  grid-row: 1 / 3;
  width: 24px;
  color: var(--red);
}

.coverage-region-card summary strong {
  color: var(--ink);
  font-size: 1rem;
}

.coverage-region-card summary small {
  color: var(--muted);
  font-size: 0.72rem;
}

.coverage-region-card summary b {
  color: var(--red);
  font-size: 1.3rem;
}

.coverage-region-card[open] summary b {
  transform: rotate(45deg);
}

.coverage-region-card > p {
  margin: 0;
  padding: 0 24px 16px;
  font-size: 0.82rem;
}

.coverage-place-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 24px 24px;
}

.coverage-place-list span {
  padding: 6px 9px;
  border: 1px solid #e7e9ec;
  border-radius: 999px;
  background: #f7f8f9;
  color: #434a54;
  font-size: 0.68rem;
  font-weight: 750;
}

.coverage-map-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(223, 7, 18, 0.18), transparent 30%),
    #0c0f14;
}

.coverage-map-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
}

.coverage-map-copy h2 {
  color: var(--paper);
}

.coverage-map-copy > p {
  color: #aab2bd;
}

.coverage-map-copy .postcode-checker {
  margin-top: 28px;
  grid-template-columns: 1fr;
}

.coverage-map-copy .postcode-checker > small {
  grid-column: auto;
}

.map-frame {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: #d9dde2;
  box-shadow: var(--shadow-lg);
}

.map-frame iframe {
  width: 100%;
  height: 510px;
  display: block;
  border: 0;
  filter: saturate(0.82) contrast(1.05);
}

.map-frame > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(8, 10, 14, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.map-frame strong {
  color: var(--paper);
}

.map-frame span {
  color: #aeb6c1;
  font-size: 0.75rem;
}

.map-copy-light h2 {
  color: var(--ink);
}

.map-copy-light > p {
  color: var(--muted);
}

.contact-map-section .map-frame {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.why-section {
  background: var(--ink);
}

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

.why-section .section-heading p {
  color: #9fa8b5;
}

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

.feature-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.feature-grid .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: #ff4f58;
}

.feature-grid h3 {
  color: var(--paper);
}

.feature-grid p {
  margin-bottom: 0;
  color: #949eaa;
  font-size: 0.88rem;
}

.reviews-section {
  background: #fff7f7;
}

.review-summary {
  margin-bottom: 40px;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-line strong {
  color: var(--ink);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 4rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.stars {
  color: var(--red);
  letter-spacing: 0.1em;
}

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

.review-grid blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid #f1dfe0;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.review-grid blockquote p {
  margin: 20px 0;
  color: #373d45;
  font-size: 1rem;
}

.review-grid footer {
  color: #7b828c;
  font-size: 0.8rem;
  font-weight: 800;
}

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

.faq-item {
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.faq-item summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  transition: transform 180ms ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 720px;
  margin: -2px 0 24px;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  padding-top: 30px;
  color: #aeb5bf;
  font-size: 0.77rem;
}

.breadcrumbs a:hover {
  color: var(--paper);
}

.inner-hero {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(223, 7, 18, 0.25), transparent 28%),
    linear-gradient(135deg, #07090d, #161b23);
}

.inner-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.98) 0%, rgba(7, 9, 13, 0.87) 48%, rgba(7, 9, 13, 0.3) 100%),
    var(--inner-hero-image) center / cover no-repeat;
}

.inner-hero::after {
  width: 420px;
  height: 420px;
  position: absolute;
  top: 80px;
  right: -170px;
  border: 80px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.inner-hero-urgent {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 23, 35, 0.38), transparent 32%),
    linear-gradient(135deg, #08090c, #1c0e11);
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 80px;
  padding-top: 65px;
  padding-bottom: 75px;
}

.inner-hero-grid > div:first-child {
  max-width: 820px;
}

.inner-hero h1 {
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.inner-hero-grid > div:first-child > p {
  max-width: 760px;
  color: #b7bec8;
  font-size: 1.06rem;
}

.inner-hero .button-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.availability-card {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.availability-card .live-dot {
  margin-bottom: 20px;
}

.availability-card strong {
  display: block;
  color: var(--paper);
  font-size: 1.2rem;
}

.availability-card p {
  margin: 8px 0 22px;
  color: #9da6b2;
  font-size: 0.85rem;
}

.availability-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff6970;
  font-size: 0.82rem;
  font-weight: 900;
}

.availability-card a .icon {
  width: 16px;
}

.content-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 80px;
}

.content-grid > div > h2,
.prose > h2 {
  margin-bottom: 30px;
}

.content-grid > div > p {
  font-size: 1.02rem;
}

.prose {
  max-width: 730px;
}

.prose h3 {
  margin: 40px 0 12px;
  font-size: 1.35rem;
}

.prose p {
  font-size: 1.02rem;
}

.prose a {
  color: var(--red);
  font-weight: 800;
}

.prose-steps {
  display: grid;
  gap: 12px;
  padding-left: 25px;
  color: var(--muted);
}

.check-panel,
.sticky-panel,
.values-panel,
.coming-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.check-panel h3,
.sticky-panel h2 {
  margin-bottom: 24px;
  font-size: 1.35rem;
}

.check-panel ul,
.sticky-panel ul,
.booking-help ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-panel li,
.sticky-panel li,
.booking-help li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #4c535d;
  font-size: 0.9rem;
}

.check-panel li .icon,
.sticky-panel li .icon,
.booking-help li .icon {
  width: 19px;
  height: 19px;
  color: var(--red);
}

.sticky-panel {
  position: sticky;
  top: 115px;
}

.panel-service-image {
  width: calc(100% + 68px);
  height: 190px;
  margin: -34px -34px 28px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  object-fit: cover;
}

.sticky-panel .button {
  margin-top: 28px;
}

.panel-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.panel-phone .icon {
  width: 18px;
  color: var(--red);
}

.service-metrics {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-metrics-grid > div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.service-metrics-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.service-metrics-grid strong {
  color: var(--ink);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.service-metrics-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.service-intro-section {
  overflow: visible;
}

.service-intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 70px;
}

.service-intro-copy {
  min-width: 0;
}

.service-intro-copy > h2 {
  max-width: 780px;
  margin-bottom: 24px;
}

.service-lead {
  max-width: 790px;
  margin-bottom: 45px;
  color: #404751;
  font-size: 1.08rem;
}

.detail-grid {
  display: grid;
  gap: 16px;
}

.detail-grid article {
  position: relative;
  padding: 28px 30px 28px 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.detail-grid article > span {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 28px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.detail-grid h3 {
  margin-bottom: 10px;
}

.detail-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.service-quote-panel {
  overflow: hidden;
}

.panel-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-quote-panel .button-whatsapp {
  margin-top: 10px;
}

.button-whatsapp {
  border-color: #16a34a;
  background: #16a34a;
  color: var(--paper);
}

.button-whatsapp:hover {
  border-color: #15803d;
  background: #15803d;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  border-color: var(--red);
  background: var(--red);
}

.tyre-size-section {
  overflow: hidden;
}

.tyre-size-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 75px;
}

.tyre-size-copy > p {
  max-width: 590px;
}

.tyre-size-example {
  max-width: 590px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, auto);
  justify-content: start;
  gap: 14px;
  margin: 30px 0 20px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.tyre-size-example div {
  display: grid;
  text-align: center;
}

.tyre-size-example strong {
  color: var(--ink);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.tyre-size-example span {
  margin-top: 7px;
  color: #858d98;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tyre-size-example b {
  color: var(--red);
  font-size: 1.5rem;
}

.tyre-size-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
}

.tyre-size-note .icon {
  width: 18px;
  color: var(--red);
}

.tyre-size-visual {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.tyre-size-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 8, 12, 0.68), transparent 58%);
  content: "";
}

.tyre-size-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.tyre-size-badge {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(7, 9, 12, 0.8);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.tyre-size-badge .icon {
  color: #ff636b;
}

.service-options-section {
  background: var(--paper);
}

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

.service-option-card {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.service-option-card > span {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-option-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.service-option-card ul {
  display: grid;
  gap: 12px;
  margin: 15px 0 30px;
  padding: 0;
  list-style: none;
}

.service-option-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4e5661;
  font-size: 0.87rem;
}

.service-option-card li .icon {
  width: 18px;
  color: var(--red);
}

.service-option-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.service-option-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  border-radius: 16px;
  background: var(--red-soft);
  color: var(--red);
}

.service-option-icon .icon {
  width: 28px;
  height: 28px;
}

.emergency-option {
  border-color: #32171a;
  background:
    radial-gradient(circle at 92% 10%, rgba(223, 7, 18, 0.22), transparent 32%),
    #0b0d12;
}

.emergency-option h3 {
  color: var(--paper);
}

.emergency-option p,
.emergency-option li {
  color: #aab2bd;
}

.emergency-option .service-option-icon {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #ff5d65;
}

.service-included-section {
  background: var(--mist);
}

.service-included-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 75px;
}

.service-included-visual {
  min-height: 570px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.service-included-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 9, 13, 0.82), transparent 55%);
  content: "";
}

.service-included-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.included-visual-label {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  padding: 20px;
  border-left: 3px solid var(--red);
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(12px);
}

.included-visual-label strong {
  color: var(--paper);
}

.included-visual-label span {
  color: #a5aeba;
  font-size: 0.75rem;
}

.service-included-copy > p {
  max-width: 560px;
}

.included-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0 22px;
}

.included-checks > div {
  min-height: 88px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  color: #3d444e;
  font-size: 0.82rem;
  font-weight: 800;
}

.included-checks .icon {
  width: 18px;
  color: var(--red);
}

.included-note {
  font-size: 0.73rem;
}

.vehicle-service-section {
  background: var(--paper);
}

.vehicle-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.vehicle-service-grid > div {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #f7f8fa);
}

.vehicle-service-grid h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.vehicle-service-grid small {
  display: block;
  color: #9299a3;
  font-size: 0.66rem;
}

.service-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0 18px;
}

.service-brand-list span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #444b55;
  font-size: 0.7rem;
  font-weight: 900;
}

.service-brand-list.tyre-list span {
  border-color: #f0d7d9;
  background: var(--red-soft);
  color: #8f1117;
}

.service-coverage-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(223, 7, 18, 0.2), transparent 30%),
    var(--ink);
}

.service-coverage-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.service-coverage-grid h2 {
  color: var(--paper);
}

.service-coverage-grid p {
  max-width: 560px;
  color: #a6afbb;
}

.service-coverage-grid .button-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.service-area-links {
  display: grid;
  gap: 14px;
}

.service-area-links a {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-area-links a:hover {
  transform: translateX(5px);
  border-color: rgba(255, 76, 85, 0.65);
  background: rgba(255, 255, 255, 0.075);
}

.service-area-links a > .icon:first-child {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 11px;
  background: rgba(223, 7, 18, 0.18);
  color: #ff5f67;
}

.service-area-links a > .icon:last-child {
  width: 18px;
  margin-left: auto;
  color: #737d89;
}

.service-area-links span {
  display: grid;
}

.service-area-links strong {
  color: var(--paper);
  font-size: 1.15rem;
}

.service-area-links small {
  color: #8f99a6;
}

.service-reviews-section {
  border-top: 1px solid #f0dfe0;
}

.service-final-cta {
  padding: 75px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.15), transparent 24%),
    linear-gradient(115deg, #a8040c, var(--red));
}

.service-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.service-final-cta h2 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.service-final-cta p {
  max-width: 700px;
  margin: 0;
  color: #ffdadd;
}

.service-final-cta .button-primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--red);
}

.service-final-cta .button-outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.mini-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-steps article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.mini-steps article > span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 900;
}

.mini-steps h3 {
  color: var(--paper);
}

.mini-steps p {
  margin-bottom: 0;
  color: #9ea7b3;
  font-size: 0.87rem;
}

.area-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.area-detail-card {
  overflow: hidden;
  padding: 0 38px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.area-card-image {
  width: calc(100% + 76px);
  height: 230px;
  margin: 0 -38px 30px;
  object-fit: cover;
}

.area-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-card-header .icon {
  width: 35px;
  height: 35px;
}

.area-detail-card h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 30px;
}

.area-tags span {
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--mist);
  color: #515862;
  font-size: 0.74rem;
  font-weight: 700;
}

.coming-panel {
  border-color: #f0d7d9;
  background: #fff8f8;
}

.coming-panel > span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-panel h3 {
  margin: 15px 0;
  font-size: 1.65rem;
}

.coming-panel p {
  margin: 0;
}

.area-panel .area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #525963;
  font-size: 0.8rem;
  font-weight: 700;
}

.area-list .icon {
  width: 15px;
  height: 15px;
  color: var(--red);
}

.area-panel > p {
  margin: 24px 0 0;
  font-size: 0.82rem;
}

.booking-split {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.values-panel {
  display: grid;
  gap: 25px;
}

.values-panel article {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.values-panel article:last-child {
  padding-bottom: 0;
  border: 0;
}

.values-panel .icon {
  width: 31px;
  height: 31px;
  margin-bottom: 18px;
  color: var(--red);
}

.values-panel h3 {
  margin-bottom: 8px;
}

.values-panel p {
  margin: 0;
  font-size: 0.88rem;
}

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

.stat-grid > div {
  display: grid;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-grid strong {
  color: var(--paper);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

.stat-grid span {
  color: #949eaa;
  font-size: 0.8rem;
}

.contact-grid,
.booking-page-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 70px;
}

.contact-details > p {
  max-width: 520px;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method > .icon,
.method-letter {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
}

.method-letter {
  padding: 0;
  font-weight: 900;
}

.contact-method span:last-child {
  display: grid;
}

.contact-method small {
  color: var(--muted);
}

.contact-method strong {
  color: var(--ink);
}

.contact-note {
  margin-top: 30px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--mist);
}

.contact-note p {
  margin: 4px 0 0;
  font-size: 0.85rem;
}

.booking-help {
  position: sticky;
  top: 115px;
  padding: 35px;
}

.booking-help h2 {
  margin-bottom: 25px;
}

.emergency-box {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid #f1d0d3;
  border-radius: var(--radius-sm);
  background: #fff7f7;
}

.emergency-box .live-dot {
  margin-top: 8px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(223, 7, 18, 0.1);
}

.emergency-box p {
  margin: 4px 0;
  font-size: 0.83rem;
}

.emergency-box a {
  color: var(--red);
  font-weight: 900;
}

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

.article-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.article-card-image {
  height: 190px;
  display: block;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.04);
}

.article-card-body {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.article-card-body > span {
  margin-bottom: 45px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card-body h2 {
  margin-bottom: 15px;
  font-size: 1.65rem;
}

.article-card-body p {
  font-size: 0.9rem;
}

.article-card-body .text-link {
  margin-top: auto;
}

.article-hero {
  min-height: 560px;
  background:
    radial-gradient(circle at 78% 22%, rgba(223, 7, 18, 0.24), transparent 27%),
    linear-gradient(135deg, #07090d, #161b23);
}

.article-title {
  max-width: 900px;
  padding-top: 80px;
  padding-bottom: 85px;
  text-align: center;
}

.article-title .eyebrow::before {
  display: none;
}

.article-title h1 {
  margin-bottom: 25px;
  color: var(--paper);
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.article-title > p {
  max-width: 680px;
  margin: 0 auto;
  color: #b3bbc6;
  font-size: 1.08rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  color: #8f99a6;
  font-size: 0.78rem;
}

.article-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 80px;
  padding-top: 90px;
  padding-bottom: 100px;
}

.article-body {
  max-width: 760px;
}

.article-body > section {
  position: relative;
  padding: 0 0 45px 60px;
}

.article-body > section > span {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
}

.article-body h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.article-body p {
  font-size: 1.02rem;
}

.article-callout {
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--ink);
}

.article-callout h2 {
  color: var(--paper);
}

.article-callout p {
  color: #9da6b2;
}

.article-callout .button-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.article-sidebar {
  position: sticky;
  top: 115px;
}

.article-sidebar h2 {
  margin: 0 0 15px;
  font-size: 1.15rem;
}

.article-sidebar h2:not(:first-child) {
  margin-top: 35px;
}

.article-sidebar > a {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 17px 35px 17px 0;
  border-bottom: 1px solid var(--line);
}

.article-sidebar > a span {
  color: var(--muted);
  font-size: 0.76rem;
}

.article-sidebar > a .icon {
  width: 17px;
  position: absolute;
  top: 26px;
  right: 0;
}

.not-found {
  min-height: 650px;
  display: flex;
  align-items: center;
  background: var(--mist);
  text-align: center;
}

.not-found .container {
  max-width: 750px;
}

.not-found .container > span {
  color: var(--red);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 5rem;
}

.not-found .button-row {
  justify-content: center;
}

.footer-cta {
  background: var(--red);
  color: var(--paper);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.footer-cta-inner > div:first-child {
  max-width: 720px;
}

.footer-cta h2 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.footer-cta p {
  margin: 0;
  color: #ffd8da;
}

.footer-cta .eyebrow {
  margin-bottom: 12px;
  color: var(--paper);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  background: #07090c;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 55px;
  padding-top: 75px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 210px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand > p {
  max-width: 350px;
  color: #8f98a5;
  font-size: 0.88rem;
}

.footer-contact {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c8ced6;
  font-size: 0.83rem;
}

.footer-contact .icon {
  width: 16px;
  height: 16px;
  color: #ff4b55;
}

.footer-grid h3 {
  margin-bottom: 22px;
  color: var(--paper);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: #9099a5;
  font-size: 0.84rem;
  list-style: none;
}

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

.footer-map {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 50px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map-copy {
  max-width: 500px;
}

.footer-map-copy .eyebrow {
  margin-bottom: 14px;
  color: #ff646d;
}

.footer-map-copy h2 {
  max-width: 480px;
  margin-bottom: 16px;
  color: var(--paper);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.footer-map-copy p {
  margin: 0 0 26px;
  color: #9ba4b0;
  font-size: 0.92rem;
}

.footer-map-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #10141a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.footer-map-frame iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
  filter: saturate(0.78) contrast(1.05);
}

.footer-map-frame > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 15px 22px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-map-frame > a:hover {
  color: #ff646d;
}

.footer-map-frame .icon {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #707a87;
  font-size: 0.73rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-legal a {
  color: #87919d;
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-legal a:hover {
  color: var(--paper);
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .nav-phone span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 35px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 6vw, 5rem);
  }

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

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

  .vehicle-showcase,
  .tyre-brand-grid {
    gap: 45px;
  }

  .vehicle-visual,
  .tyre-brand-visual {
    min-height: 460px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 75px 0;
  }

  .topbar-links a:first-child,
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    width: 170px;
    height: 58px;
  }

  .menu-toggle,
  .mobile-nav-head button {
    display: flex;
    margin-left: auto;
  }

  .mobile-nav {
    width: min(88vw, 410px);
    height: 100dvh;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 18px 22px 35px;
    transform: translateX(105%);
    overflow-y: auto;
    background: #0b0e13;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
    transition: transform 220ms ease;
  }

  .mobile-nav.open {
    transform: translateX(0);
  }

  .mobile-nav-head {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #8e97a3;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-nav-head button {
    margin-left: 0;
  }

  .mobile-nav > a:not(.button) {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #ced3da;
    font-size: 0.9rem;
  }

  .mobile-nav .mega-link-group {
    display: grid;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-nav .mega-link-group > strong {
    padding: 7px 8px;
    color: #ff6f76;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-nav .mega-link-group a {
    padding: 7px 8px 7px 20px;
    color: #a4adb8;
    font-size: 0.8rem;
  }

  .mobile-nav > a:nth-of-type(n + 3):nth-of-type(-n + 9) {
    padding-left: 20px;
    color: #89939f;
    font-size: 0.82rem;
  }

  .mobile-nav .button {
    margin-top: 18px;
  }

  .home-hero {
    min-height: 0;
  }

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

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 8, 11, 0.98) 0%, rgba(6, 8, 11, 0.88) 60%, rgba(6, 8, 11, 0.5) 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 85px;
    padding-bottom: 75px;
  }

  .hero-copy {
    max-width: 670px;
  }

  .hero-form-wrap {
    max-width: 650px;
  }

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

  .trust-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-heading {
    display: grid;
    gap: 20px;
  }

  .process-grid,
  .location-showcase,
  .content-grid,
  .service-intro-grid,
  .tyre-size-grid,
  .service-included-grid,
  .service-coverage-grid,
  .premium-fitment-grid,
  .booking-split,
  .contact-grid,
  .booking-page-grid,
  .article-layout,
  .vehicle-showcase,
  .tyre-brand-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .premium-fitment-visual {
    min-height: 480px;
  }

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

  .service-metrics-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .service-metrics-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-option-grid,
  .vehicle-service-grid {
    grid-template-columns: 1fr;
  }

  .service-included-visual,
  .tyre-size-visual {
    min-height: 470px;
  }

  .service-final-cta-inner {
    display: grid;
  }

  .service-finder-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 26px;
    padding-bottom: 26px;
  }

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

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

  .location-copy {
    max-width: 700px;
  }

  .vehicle-copy {
    max-width: 720px;
  }

  .review-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .availability-card {
    max-width: 430px;
  }

  .sticky-panel,
  .booking-help,
  .article-sidebar {
    position: static;
  }

  .footer-cta-inner {
    display: grid;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .footer-map {
    grid-template-columns: 1fr;
  }

  .footer-map-copy {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
  }

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

  .section {
    padding: 60px 0;
  }

  h2 {
    font-size: 2.15rem;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-links {
    display: none;
  }

  .home-hero {
    min-height: 0;
  }

  .hero-media {
    background-position: 72% top;
    opacity: 0.62;
  }

  .hero-overlay {
    background: linear-gradient(0deg, #07090d 22%, rgba(7, 9, 13, 0.64) 100%);
  }

  .hero-grid {
    gap: 45px;
    padding-top: 62px;
    padding-bottom: 55px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 11.8vw, 3.15rem);
    overflow-wrap: normal;
  }

  .hero-copy h1 em {
    display: block;
    font-size: 0.86em;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .button-row,
  .footer-cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-proof strong {
    font-size: 0.9rem;
  }

  .hero-proof span {
    font-size: 0.63rem;
  }

  .form-grid,
  .service-grid,
  .service-metrics-grid,
  .included-checks,
  .premium-brand-links,
  .sitemap-grid,
  .location-cards,
  .feature-grid,
  .mini-steps,
  .area-detail-grid,
  .stat-grid,
  .service-finder-links,
  .vehicle-type-grid {
    grid-template-columns: 1fr;
  }

  .service-metrics-grid > div {
    min-height: 92px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .service-metrics-grid > div:last-child {
    border-bottom: 0;
  }

  .detail-grid article {
    padding: 75px 22px 24px;
  }

  .detail-grid article > span {
    top: 21px;
    left: 22px;
  }

  .tyre-size-example {
    width: 100%;
    grid-template-columns: repeat(5, auto);
    gap: 7px;
    padding: 20px 14px;
  }

  .tyre-size-example strong {
    font-size: 1.55rem;
  }

  .service-option-card,
  .vehicle-service-grid > div {
    min-height: 0;
    padding: 28px 24px;
  }

  .service-option-icon {
    margin-bottom: 30px;
  }

  .service-included-visual,
  .tyre-size-visual {
    min-height: 340px;
  }

  .included-visual-label {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .service-final-cta {
    padding: 60px 0;
  }

  .premium-fitment-visual {
    min-height: 350px;
  }

  .sitemap-grid > div {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }

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

  .booking-form,
  .booking-form-compact {
    padding: 22px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: 80px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 410px;
  }

  .service-card-image {
    height: 190px;
  }

  .service-card-body {
    min-height: 220px;
  }

  .process-grid {
    gap: 65px;
  }

  .steps {
    margin-left: 24px;
  }

  .location-cards {
    gap: 12px;
  }

  .vehicle-visual,
  .tyre-brand-visual {
    min-height: 340px;
    border-radius: var(--radius-md);
  }

  .vehicle-visual-badge {
    right: 15px;
    bottom: 15px;
    left: 15px;
    justify-content: center;
  }

  .brand-marquee {
    margin-top: 42px;
  }

  .tyre-brand-list {
    gap: 7px;
  }

  .tyre-brand-list span,
  .brand-marquee > div span {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .location-card,
  .coming-card {
    min-height: 140px;
  }

  .coming-card {
    grid-column: auto;
  }

  .rating-line strong {
    font-size: 3.2rem;
  }

  .faq-item {
    padding: 0 17px;
  }

  .faq-item summary {
    min-height: 68px;
    font-size: 0.9rem;
  }

  .inner-hero {
    min-height: 0;
  }

  .breadcrumbs {
    padding-top: 20px;
  }

  .inner-hero-grid {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .inner-hero h1 {
    font-size: 3.1rem;
  }

  .availability-card {
    padding: 22px;
  }

  .area-detail-card {
    padding: 0 27px 27px;
  }

  .area-card-image {
    width: calc(100% + 54px);
    height: 190px;
    margin: 0 -27px 27px;
  }

  .area-card-header {
    margin-bottom: 32px;
  }

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

  .contact-grid,
  .booking-page-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-title {
    padding-top: 55px;
    padding-bottom: 60px;
  }

  .article-title h1 {
    font-size: 3.1rem;
  }

  .article-layout {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .article-body > section {
    padding-left: 38px;
  }

  .article-body h2 {
    font-size: 1.65rem;
  }

  .article-callout {
    padding: 26px;
  }

  .footer-cta-inner {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
    padding-top: 60px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-map {
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 45px;
  }

  .footer-map-frame {
    border-radius: 18px;
  }

  .footer-map-frame iframe {
    height: 290px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-action-bar {
    height: 64px;
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #080a0e;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--paper);
    font-size: 0.82rem;
    font-weight: 900;
  }

  .mobile-action-bar a:last-child {
    background: #149b49;
  }

  .mobile-action-bar .icon {
    width: 19px;
  }
}

@media (max-width: 1000px) {
  .coverage-map-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .coverage-region-grid {
    grid-template-columns: 1fr;
  }

  .coverage-map-copy {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .postcode-checker {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .postcode-checker > small {
    grid-column: auto;
  }

  .postcode-checker .button {
    width: 100%;
  }

  .coverage-region-card summary {
    padding: 19px;
  }

  .coverage-region-card > p {
    padding: 0 19px 14px;
  }

  .coverage-place-list {
    padding: 0 19px 19px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
    height: 390px;
  }
}

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