/* Mobile Tyre Runner — shared styles
   Palette taken from the van livery and logo: charcoal, white, logo red (#FF4D50),
   with a darker red for text-bearing buttons (white on #FF4D50 fails contrast). */

:root {
  --ink: #16181b;
  --ink-2: #22252a;
  --ink-3: #2e3238;
  --paper: #ffffff;
  --paper-2: #f4f4f2;
  --line: #e2e2de;
  --muted: #5d636b;
  --muted-on-dark: #b7bcc3;
  --red: #ff4d50;
  --red-strong: #d62a2f;
  --red-strong-hover: #b91f24;
  --hivis: #f5d90a;
  --whatsapp: #1fae54;
  --whatsapp-hover: #178f44;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --max: 1160px;
  --head-font: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body-font: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: 72px; /* room for the mobile call bar */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-strong); }
a:hover { color: var(--red-strong-hover); }
h1, h2, h3 {
  font-family: var(--head-font);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.5rem, 7vw, 4.4rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); text-transform: uppercase; }
h3 { font-size: 1.6rem; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 12px; top: 12px; z-index: 100; background: var(--paper); padding: 8px 12px; }
:focus-visible { outline: 3px solid var(--hivis); outline-offset: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px; padding: 12px 24px;
  border: 0; border-radius: var(--radius);
  font-family: var(--head-font); font-weight: 700; font-size: 1.35rem;
  letter-spacing: .03em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-call { background: var(--red-strong); color: #fff; }
.btn-call:hover { background: var(--red-strong-hover); color: #fff; }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: var(--whatsapp-hover); color: #fff; }
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.5); }
.btn-ghost:hover { color: #fff; box-shadow: inset 0 0 0 2px #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-big { font-size: 1.7rem; min-height: 64px; padding: 14px 28px; }

/* ---------- header ---------- */
.topbar {
  background: var(--red-strong); color: #fff;
  font-size: .95rem; font-weight: 600; text-align: center; padding: 6px 12px;
}
.topbar a { color: #fff; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: #fff;
  border-bottom: 4px solid var(--red);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.logo { display: flex; align-items: center; flex: none; }
.logo img { width: 110px; height: auto; }
.nav { display: none; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.nav a {
  display: block; padding: 10px 12px; border-radius: 6px;
  color: #fff; text-decoration: none; font-weight: 600;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--ink-3); color: #fff; }
.nav .has-sub { position: relative; }
.nav .sub {
  display: none; position: absolute; top: 100%; left: 0; min-width: 260px;
  flex-direction: column; background: var(--ink-2); padding: 8px; border-radius: 8px; box-shadow: var(--shadow);
}
.nav .has-sub:hover .sub, .nav .has-sub:focus-within .sub { display: flex; }
.header-call { display: none; }
.menu-toggle {
  background: none; border: 2px solid rgba(255,255,255,.3); color: #fff; border-radius: 8px;
  width: 48px; height: 48px; display: grid; place-items: center; cursor: pointer;
}
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-nav { display: none; background: var(--ink-2); border-top: 1px solid var(--ink-3); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 20px 16px; }
.mobile-nav a { display: block; padding: 12px 0; color: #fff; text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--ink-3); }
.mobile-nav .label { color: var(--muted-on-dark); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; padding-top: 14px; }
.mobile-nav .indent a { padding-left: 14px; font-weight: 500; }
@media (min-width: 1000px) {
  .nav { display: block; }
  .header-call { display: inline-flex; }
  .menu-toggle, .mobile-nav, .mobile-nav.open { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; color: #fff; background: var(--ink);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(22,24,27,.95) 0%, rgba(22,24,27,.75) 55%, rgba(22,24,27,.35) 100%);
}
.hero .container { position: relative; padding-top: 56px; padding-bottom: 56px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,77,80,.15); color: #fff; border: 1px solid rgba(255,77,80,.5);
  padding: 6px 12px; border-radius: 99px; font-weight: 600; font-size: .95rem; margin-bottom: 18px;
}
.pulse { width: 10px; height: 10px; border-radius: 50%; background: #3ddc6b; box-shadow: 0 0 0 0 rgba(61,220,107,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(61,220,107,0); } 100% { box-shadow: 0 0 0 0 rgba(61,220,107,0); } }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } html { scroll-behavior: auto; } }
.hero h1 { max-width: 14ch; }
.hero h1 .accent { color: var(--red); }
.hero-lead { font-size: 1.25rem; max-width: 36ch; color: #e9eaec; margin-bottom: 26px; }
.hero-phone { display: block; margin-top: 18px; color: var(--muted-on-dark); font-size: 1rem; }
.hero-phone a { color: #fff; font-weight: 700; }
.hero-points { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 10px; max-width: 520px; }
.hero-points li { display: flex; gap: 10px; align-items: flex-start; }
.tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--red-strong); display: grid; place-items: center; margin-top: 2px; }
.tick svg { width: 14px; height: 14px; color: #fff; }
.page-hero .container { padding-top: 44px; padding-bottom: 44px; }
.page-hero h1 { max-width: 18ch; font-size: clamp(2.2rem, 6vw, 3.6rem); }
.breadcrumb { font-size: .9rem; color: var(--muted-on-dark); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted-on-dark); }

/* hi-vis chevron strip, borrowed from the back of the van */
.chevrons {
  height: 14px;
  background: repeating-linear-gradient(-45deg, var(--hivis) 0 18px, var(--red-strong) 18px 36px);
}

/* ---------- trust bar ---------- */
.trust { background: var(--ink-2); color: #fff; }
.trust ul { list-style: none; margin: 0; padding: 18px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 20px; }
.trust li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1rem; line-height: 1.3; }
.trust strong { font-family: var(--head-font); font-size: 1.7rem; color: var(--red); display: block; line-height: 1; }
@media (min-width: 800px) { .trust ul { grid-template-columns: repeat(4, 1fr); } }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark p { color: #e3e5e8; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.kicker { font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; color: var(--red-strong); margin-bottom: 8px; }
.section-dark .kicker { color: var(--red); }
.lead { font-size: 1.2rem; color: var(--muted); }
.section-dark .lead { color: var(--muted-on-dark); }

.grid { display: grid; gap: 22px; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 700px) and (max-width: 999px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--ink);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); color: var(--ink); }
.service-card .media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-2); }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; }
.service-card .body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.5rem; margin-bottom: .3em; }
.service-card p { color: var(--muted); font-size: 1rem; flex: 1; }
.more { font-weight: 700; color: var(--red-strong); }

/* steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { position: relative; padding: 0 0 0 64px; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--red-strong); color: #fff; display: grid; place-items: center;
  font-family: var(--head-font); font-size: 1.6rem; font-weight: 700;
}
.steps h3 { font-size: 1.45rem; margin-bottom: .25em; }
.steps p { font-size: 1rem; color: var(--muted); }
.section-dark .steps p { color: var(--muted-on-dark); }

/* split layout */
.split { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split.reverse > :first-child { order: 2; } }
.photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--ink-2); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo.tall { aspect-ratio: 3 / 4; }

.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }

/* areas */
.area-card {
  display: block; padding: 24px; border-radius: var(--radius); background: var(--ink-2); color: #fff;
  text-decoration: none; border: 1px solid var(--ink-3); transition: border-color .2s, transform .2s;
}
.area-card:hover { border-color: var(--red); color: #fff; transform: translateY(-3px); }
.area-card h3 { font-size: 1.7rem; margin-bottom: .2em; }
.area-card p { color: var(--muted-on-dark); font-size: 1rem; margin: 0 0 10px; }
.area-card .more { color: var(--red); }
.towns { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.towns li { background: var(--paper-2); border: 1px solid var(--line); border-radius: 99px; padding: 6px 14px; font-size: .95rem; font-weight: 600; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gallery figure { margin: 0; border-radius: 8px; overflow: hidden; aspect-ratio: 1; background: var(--ink-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 800px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 20px; }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 32px 18px 0; position: relative;
  font-weight: 700; font-size: 1.1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.8rem; color: var(--red-strong); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); }

/* CTA band */
.cta-band { background: var(--red-strong); color: #fff; padding: 56px 0; }
.cta-band h2 { margin-bottom: .2em; }
.cta-band p { font-size: 1.2rem; color: #fff; margin-bottom: 24px; }
.cta-band .btn-call { background: #fff; color: var(--red-strong); }
.cta-band .btn-call:hover { background: #ffecec; color: var(--red-strong-hover); }
.cta-inner { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.4fr 1fr; } .cta-inner .btn-row { justify-content: flex-end; } }

/* ---------- callback form ---------- */
.callback {
  background: var(--paper); color: var(--ink); border-radius: 14px; padding: 28px 22px;
  box-shadow: var(--shadow); border-top: 6px solid var(--red);
}
@media (min-width: 600px) { .callback { padding: 34px; } }
.callback h2, .callback h3 { font-size: 2rem; margin-bottom: .2em; }
.callback .sub { color: var(--muted); font-size: 1rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 1rem; }
.field .opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; font: inherit; font-size: 1.05rem;
  border: 2px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink);
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); outline: none; }
.field-row { display: grid; gap: 0 14px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { font-size: .9rem; color: var(--muted); margin: 4px 0 18px; }
.callback .btn { width: 100%; }
.form-status { margin-top: 14px; font-weight: 600; }
.form-status.error { color: var(--red-strong); }
.form-success { text-align: center; padding: 20px 0; }
.form-success h3 { color: var(--ink); }

/* ---------- prose (legal etc.) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.9rem; margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-on-dark); padding: 56px 0 28px; font-size: 1rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--red); }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer h3 { color: #fff; font-size: 1.3rem; text-transform: uppercase; margin-bottom: .7em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-phone { font-family: var(--head-font); font-size: 2rem; font-weight: 700; color: #fff; display: inline-block; margin: 6px 0; }
.payments { margin-top: 14px; background: #fff; border-radius: 6px; padding: 6px; display: inline-block; }
.payments img { width: 260px; }
.footer-bottom { border-top: 1px solid var(--ink-3); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: .9rem; }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; padding: 8px;
  background: var(--ink); border-top: 3px solid var(--red);
}
.callbar .btn { min-height: 54px; font-size: 1.2rem; padding: 8px 10px; }
@media (min-width: 900px) { .callbar { display: none; } }

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed; left: 12px; right: 12px; bottom: 84px; z-index: 70;
  max-width: 520px; background: var(--ink-2); color: #fff; border-radius: 12px;
  padding: 18px; box-shadow: var(--shadow); font-size: .95rem; border: 1px solid var(--ink-3);
}
.cookie[hidden] { display: none; }
.cookie p { margin-bottom: 12px; color: #e3e5e8; }
.cookie a { color: #fff; }
.cookie .btn-row { gap: 8px; }
.cookie .btn { min-height: 42px; font-size: 1.05rem; padding: 8px 18px; }
@media (min-width: 900px) { .cookie { bottom: 16px; left: 16px; right: auto; } }
