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

:root {
  --red: #b92323;
  --red-dark: #861818;
  --yellow: #d99c22;
  --black: #101111;
  --panel: #181918;
  --panel-2: #232421;
  --panel-soft: #2d2e2a;
  --white: #f3f0e8;
  --muted: #c6c1b5;
  --soft-muted: #938f86;
  --line: rgba(255,255,255,0.11);
}

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 2%, rgba(185,35,35,0.08), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(217,156,34,0.05), transparent 24rem),
    var(--black);
  color: var(--white);
  font-family: Barlow, Arial, sans-serif;
}

img { max-width: 100%; }

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 16px rgba(208,30,30,0.35));
}

.nav-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.nav-brand span {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 2.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: var(--white) !important;
  background: #a91d1d;
  border-radius: 3px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.2s, opacity 0.2s;
}

.hero {
  min-height: calc(100vh - 52px);
  padding: 118px 72px 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.76fr);
  gap: 52px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background:
    linear-gradient(115deg, rgba(8,8,8,0.92), rgba(8,8,8,0.62)),
    repeating-linear-gradient(135deg, transparent 0 56px, rgba(255,255,255,0.012) 56px 57px);
  pointer-events: none;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(9,9,9,0.94) 0%, rgba(9,9,9,0.82) 42%, rgba(9,9,9,0.54) 100%),
    linear-gradient(to bottom, rgba(9,9,9,0.18), rgba(9,9,9,0.92)),
    url("images/night-callout.jpg") center / cover no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,156,34,0.55), transparent);
}

.hero-copy,
.poster-card,
.hero-response-panel {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-label,
.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d9b154;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-label::before,
.section-heading span::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--yellow);
}

h1,
h2,
h3,
.call-button,
.ghost-button,
.big-phone {
  font-family: "Barlow Condensed", sans-serif;
}

h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0,0,0,0.5);
}

h1::first-line { color: var(--white); }

.hero-copy p {
  max-width: 620px;
  color: #e5e0d3;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.call-button {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 15px 26px;
  color: #fff;
  background: linear-gradient(135deg, #b92323, #8f1717);
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(185,35,35,0.18);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.call-button span {
  font-size: 13px;
  letter-spacing: 2px;
}

.ghost-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-decoration: none;
}

.hero-stats {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 680px;
}

.hero-service-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}

.hero-service-strip span {
  min-height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-reassurance-grid {
  max-width: 680px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-response-note {
  min-height: 118px;
  padding: 18px 18px;
  display: grid;
  align-content: start;
  gap: 6px;
  background: rgba(217,156,34,0.08);
  border: 1px solid rgba(217,156,34,0.24);
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
}

.hero-response-note strong {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-response-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-response-note-secondary {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.12);
  border-left-color: rgba(185,35,35,0.85);
}

.hero-stats strong {
  display: block;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-response-panel {
  justify-self: end;
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: 1fr 148px;
  gap: 14px;
  align-items: end;
}

.hero-photo-card {
  grid-column: 1 / -1;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #151515;
  box-shadow: 0 24px 68px rgba(0,0,0,0.54);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.02) 45%, rgba(0,0,0,0.74)),
    linear-gradient(115deg, rgba(185,35,35,0.18), transparent 45%);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-photo-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-response-card {
  min-height: 148px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(28,29,27,0.94);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.34);
}

.hero-response-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-response-card strong {
  color: var(--white);
  font-size: 16px;
  line-height: 1.45;
}

.hero-response-card a {
  margin-top: 18px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.poster-card {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 58px rgba(0,0,0,0.48);
  transform: none;
}

.poster-card-small {
  align-self: stretch;
}

.poster-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alert-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1b1c1b;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

.alert-strip div {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #dedbd0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.09);
}

.services,
.response,
.coverage,
.gallery,
.final-cta,
.lookup-section,
.detail-grid,
.split-feature,
.emergency-panel,
.coverage-map-section,
.contact-methods,
.contact-detail {
  padding: 88px 72px;
}

.lookup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.8fr);
  gap: 48px;
  align-items: start;
  background:
    radial-gradient(circle at 15% 20%, rgba(242,183,42,0.08), transparent 22rem),
    #111;
}

.lookup-copy h2 {
  margin: 18px 0 22px;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.lookup-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.lookup-promise {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lookup-promise span {
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid rgba(217,156,34,0.72);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.tyre-lookup-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: #20211f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--white);
  background: #101010;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(245,168,0,0.55);
  outline-offset: 1px;
}

.file-note {
  color: var(--muted);
  font-size: 13px;
}

.form-submit {
  min-height: 54px;
  color: #fff;
  background: linear-gradient(135deg, #b92323, #8f1717);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.form-status a {
  color: var(--yellow);
  font-weight: 700;
}

.contact-lookup {
  background: #111;
}

.section-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.44fr);
  gap: 36px;
  align-items: end;
}

.section-heading span { grid-column: 1 / -1; }

.section-heading h2,
.response h2,
.coverage h2,
.final-cta h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading p,
.response p,
.coverage p,
.final-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

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

.service-card {
  min-height: 270px;
  padding: 32px 28px;
  background: #20211f;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, background 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  background: #2b2b2b;
}

.service-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  fill: none;
  stroke: #c33a3a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

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

.response {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  background: #e9e5d9;
  color: #151515;
}

.response-photo {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0,0,0,0.2);
}

.response-photo img,
.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.response-photo figcaption,
.gallery figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.response-photo::after,
.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.68));
}

.response .section-label { color: var(--red); }
.response .section-label::before { background: var(--red); }
.response p { color: #555851; margin: 22px 0 28px; }

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 16px 16px 44px;
  background: #f5f2e8;
  border: 1px solid rgba(0,0,0,0.08);
  color: #191919;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  letter-spacing: 0.7px;
  font-weight: 800;
  text-transform: uppercase;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 15px;
  height: 8px;
  border-left: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  transform: translateY(-65%) rotate(-45deg);
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 52px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.94), rgba(10,10,10,0.78)),
    url("images/night-callout.jpg") center / cover no-repeat;
}

.coverage h2 { margin: 18px 0 20px; }

.coverage-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.coverage-tags span {
  padding: 18px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid rgba(217,156,34,0.72);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--panel);
}

.gallery figure {
  min-height: 315px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(139,24,24,0.96), rgba(92,18,18,0.96));
}

.final-cta h2 { margin: 18px 0; }
.final-cta p { color: rgba(255,255,255,0.82); max-width: 620px; }
.final-cta .section-label { color: var(--yellow); }

.big-phone {
  color: var(--yellow);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 0 24px rgba(0,0,0,0.26);
  white-space: nowrap;
}

.seo-copy {
  padding: 76px 72px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 45%),
    #151615;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.seo-copy .section-label,
.seo-copy h2,
.seo-copy p {
  margin-left: auto;
  margin-right: auto;
}

.seo-copy h2 {
  max-width: 980px;
  margin-top: 18px;
  margin-bottom: 22px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.seo-copy p {
  max-width: 980px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.page-hero {
  min-height: 62vh;
  padding: 150px 72px 82px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #111;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.96), rgba(8,8,8,0.68)),
    linear-gradient(to bottom, rgba(8,8,8,0.08), rgba(8,8,8,0.86)),
    var(--hero-image, url("images/mobile-van.jpg")) center / cover no-repeat;
  filter: saturate(1.05) contrast(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 34px, rgba(255,255,255,0.03) 34px 35px);
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero p {
  max-width: 660px;
  margin-bottom: 32px;
  color: #dedbd0;
  font-size: 18px;
  line-height: 1.65;
}

.service-page-hero { --hero-image: url("images/mobile-van.jpg"); }
.emergency-page-hero { --hero-image: url("images/night-callout.jpg"); }
.coverage-page-hero { --hero-image: url("images/response-van.jpg"); }
.contact-page-hero { --hero-image: url("images/roadside-fitting.jpg"); }

.compact {
  width: max-content;
  max-width: 100%;
  font-size: clamp(28px, 4vw, 46px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--panel);
}

.detail-card {
  min-height: 260px;
  padding: 36px 32px;
  background: #20211f;
  border: 1px solid rgba(255,255,255,0.06);
}

.detail-card span {
  display: block;
  margin-bottom: 28px;
  color: rgba(217,156,34,0.5);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 0.8;
}

.detail-card h2 {
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.detail-card p,
.feature-copy {
  color: var(--muted);
  line-height: 1.75;
}

.split-feature,
.coverage-map-section,
.contact-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  background: #0f0f0f;
}

.split-feature figure,
.contact-detail figure {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

.split-feature img,
.contact-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-feature h2,
.coverage-map-section h2,
.contact-detail h2,
.emergency-panel h2 {
  margin: 18px 0 24px;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  gap: 12px;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--panel-2);
  border: 1px solid rgba(255,255,255,0.08);
}

.process-list li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #111;
  background: var(--yellow);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.process-list strong,
.process-list span {
  grid-column: 2;
}

.process-list strong {
  align-self: end;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-list span {
  color: var(--muted);
  line-height: 1.6;
}

.emergency-panel {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  background: var(--panel);
}

.poster-mini {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 66px rgba(0,0,0,0.46);
}

.poster-mini img {
  display: block;
  width: 100%;
}

.reason-grid,
.mini-service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.reason-grid div,
.mini-service-list span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--white);
  background: var(--panel-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid rgba(185,35,35,0.78);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
}

.dark-response {
  background: #141414;
  color: var(--white);
}

.dark-response .response .section-label,
.dark-response .section-label {
  color: var(--yellow);
}

.dark-response .section-label::before {
  background: var(--yellow);
}

.dark-response p {
  color: var(--muted);
}

.dark-response .check-list li {
  color: #191919;
  background: #f4f1e8;
  border-color: rgba(255,255,255,0.06);
}

.map-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(208,30,30,0.14), transparent 32%),
    linear-gradient(135deg, #242424, #111);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(245,168,0,0.24);
}

.ring-one { width: 38%; height: 38%; background: rgba(208,30,30,0.08); }
.ring-two { width: 62%; height: 62%; border-style: dashed; }
.ring-three { width: 86%; height: 86%; border-color: rgba(245,168,0,0.14); }

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: #171717;
  background: #d9b154;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(245,168,0,0.16), 0 0 40px rgba(245,168,0,0.28);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.map-label {
  position: absolute;
  color: #d8d6cc;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lincs { top: 20%; left: 52%; }
.leics { bottom: 23%; left: 44%; }
.notts { top: 42%; left: 16%; }
.derbs { top: 25%; left: 16%; }
.northants { bottom: 16%; right: 13%; }

.extra-space {
  margin-top: 28px;
}

.coverage-note {
  margin-top: 18px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(217,156,34,0.08);
  border: 1px solid rgba(217,156,34,0.22);
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--panel);
}

.contact-card {
  min-height: 270px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-decoration: none;
  background: var(--panel-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: transform 0.2s, background 0.2s;
}

.contact-card:hover {
  transform: translateY(-3px);
  background: #2b2b2b;
}

.contact-card.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.contact-card span {
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-card strong {
  margin: 22px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-card p {
  margin-top: auto;
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
}

.contact-detail {
  background: #e9e5d9;
  color: #151515;
}

.contact-detail p {
  margin-bottom: 28px;
  color: #555851;
  line-height: 1.75;
}

.contact-checks li {
  background: #f5f2e8;
}

.location-detail,
.local-area-links {
  padding: 84px 72px;
  background: #151615;
}

.location-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: start;
}

.location-detail h2,
.local-area-links h2 {
  max-width: 900px;
  margin: 18px 0 22px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.location-detail p,
.local-area-links p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.nearby-list,
.local-link-grid {
  display: grid;
  gap: 10px;
}

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

.nearby-list span,
.local-link-grid a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid rgba(217,156,34,0.72);
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.area-service-grid {
  padding: 0 72px 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #151615;
}

.area-service-grid article {
  min-height: 210px;
  padding: 30px 28px;
  background: #20211f;
  border: 1px solid rgba(255,255,255,0.07);
}

.area-service-grid h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.area-service-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.terms-content {
  padding: 84px 72px;
  display: grid;
  gap: 18px;
  background: #151615;
}

.terms-content article {
  max-width: 980px;
  padding: 30px 32px;
  background: #20211f;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid rgba(217,156,34,0.72);
  border-radius: 8px;
}

.terms-content h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.terms-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.terms-content p:last-child {
  margin-bottom: 0;
}

.local-link-grid {
  margin-top: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

footer {
  padding: 38px 72px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #050505;
  border-top: 1px solid var(--line);
}

footer strong,
footer a {
  display: block;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 3;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 1.4px;
  pointer-events: auto;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--yellow);
  white-space: nowrap;
  pointer-events: auto;
}

.whatsapp-chat {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  justify-items: end;
  gap: 14px;
  pointer-events: none;
}

.chat-panel {
  width: min(380px, calc(100vw - 32px));
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  background: #f8f8f3;
  border-radius: 7px;
  box-shadow: 0 18px 54px rgba(0,0,0,0.38);
  transition: opacity 0.2s, transform 0.2s;
}

.chat-open .chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-panel::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -9px;
  width: 24px;
  height: 24px;
  background: #f8f8f3;
  transform: rotate(45deg);
}

.chat-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #32bd42);
}

.chat-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chat-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.chat-body {
  min-height: 196px;
  padding: 30px 20px;
  background:
    radial-gradient(circle at 16px 16px, rgba(0,0,0,0.035) 1.5px, transparent 2px) 0 0 / 32px 32px,
    #f7f6ef;
}

.chat-bubble {
  max-width: 295px;
  padding: 14px 16px;
  color: #111;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  line-height: 1.28;
}

.chat-time {
  display: block;
  margin-top: 6px;
  color: #7d7d7d;
  font-size: 12px;
}

.chat-start {
  margin: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #32bd42;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.chat-start svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.chat-toggle {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #32bd42;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
  pointer-events: auto;
}

.chat-toggle svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.chat-toggle .chat-icon-close {
  display: none;
  font-size: 42px;
  line-height: 1;
}

.chat-open .chat-toggle svg {
  display: none;
}

.chat-open .chat-toggle .chat-icon-close {
  display: block;
}

footer span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1100px) {
  nav {
    height: 66px;
    padding: 0 18px;
  }

  .nav-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 1001;
    max-height: calc(100vh - 66px);
    padding: 10px 18px 18px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8,8,8,0.98);
    border-bottom: 1px solid var(--line);
    pointer-events: auto;
  }

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

  .nav-links a {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 10px;
  }

  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero,
  .section-heading,
  .response,
  .coverage,
  .final-cta,
  .lookup-section,
  .detail-grid,
  .split-feature,
  .emergency-panel,
  .coverage-map-section,
  .location-detail,
  .contact-methods,
  .contact-detail,
  footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 102px 24px 60px;
  }

  .poster-card {
    width: min(100%, 390px);
    transform: none;
  }

  .hero-response-panel {
    justify-self: start;
    width: min(100%, 560px);
  }

  .service-grid,
  .gallery,
  .reason-grid,
  .area-service-grid,
  .local-link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero {
    min-height: 58vh;
    padding: 118px 24px 62px;
  }

  .map-card {
    min-height: 430px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1;
  }

  .hero,
  .services,
  .response,
  .coverage,
  .gallery,
  .final-cta,
  .seo-copy,
  .lookup-section,
  .detail-grid,
  .split-feature,
  .emergency-panel,
  .coverage-map-section,
  .location-detail,
  .local-area-links,
  .area-service-grid,
  .terms-content,
  .contact-methods,
  .contact-detail,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-stats,
  .alert-strip,
  .service-grid,
  .check-list,
  .coverage-tags,
  .form-grid,
  .hero-service-strip,
  .hero-reassurance-grid,
  .gallery,
  .reason-grid,
  .mini-service-list,
  .nearby-list,
  .area-service-grid,
  .terms-content,
  .local-link-grid {
    grid-template-columns: 1fr;
  }

  .call-button {
    width: 100%;
    font-size: 28px;
  }

  .ghost-button {
    width: 100%;
    justify-content: center;
  }

  .response-photo,
  .gallery figure {
    min-height: 300px;
  }

  .hero-response-panel {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    min-height: 320px;
  }

  .poster-card-small {
    display: none;
  }

  .section-heading h2,
  .lookup-copy h2,
  .response h2,
  .coverage h2,
  .final-cta h2,
  .split-feature h2,
  .coverage-map-section h2,
  .contact-detail h2,
  .emergency-panel h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.06;
  }

  .services,
  .response,
  .coverage,
  .gallery,
  .final-cta,
  .lookup-section,
  .detail-grid,
  .split-feature,
  .emergency-panel,
  .coverage-map-section,
  .contact-methods,
  .contact-detail {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .big-phone {
    white-space: normal;
    font-size: clamp(36px, 13vw, 52px);
  }

  footer {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

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

  .process-list strong,
  .process-list span {
    grid-column: auto;
  }

  .map-label {
    font-size: 11px;
  }

  .whatsapp-chat {
    right: 16px;
    bottom: 16px;
  }

  .chat-toggle {
    width: 58px;
    height: 58px;
  }
}
