/* Driveway Auto Services — styles
   Faithful to the original Claude Design canvas: paper #FAF8F3, ink #1E2022, accent #C1602E, Manrope.
   Additions over the canvas: small line icons, a hero photo and job photos, soft hover lift on cards. */

:root {
  --paper: #FAF8F3;
  --sand: #F3EFE6;
  --white: #FFFFFF;
  --ink: #1E2022;
  --body: #5B564E;
  --muted: #8A8378;
  --line: #E6E1D6;
  --line-2: #D3CCBE;
  --accent: #C1602E;
  --accent-deep: #A9521F;
  --plate: #F7D117;
  --plate-blue: #1F3A93;
  --shadow-soft: 0 8px 30px rgba(30,32,34,.06);
  --shadow-lift: 0 14px 40px rgba(30,32,34,.10);
  --ease: cubic-bezier(.4,0,.2,1);
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: 'Manrope', system-ui, sans-serif; font-size: 16px; line-height: 1.55; color: var(--ink); background: var(--paper); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
h1, h2, h3 { margin: 0; letter-spacing: -.01em; font-weight: 800; line-height: 1.15; }
h2 { font-size: 36px; }
.h2-sm { font-size: 28px; }
p { margin: 0; }
.wrap { width: min(1800px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: 72px 64px; }
.band-sand { background: var(--sand); padding-block: 72px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.ico { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* placeholder facts, same dotted convention as the canvas */
.ph { border-bottom: 1.5px dotted var(--accent); }
.ph-strong { border-bottom-width: 2px; }
.ph-light { border-bottom-color: rgba(250,248,243,.6); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--paper); padding: 8px 14px; z-index: 100; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; font-size: 16px; padding: 14px 22px; border-radius: 12px; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: inherit; line-height: 1.2; white-space: nowrap; transition: background-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { font-size: 17px; padding: 16px 26px; }
.btn-accent { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); box-shadow: 0 8px 20px rgba(193,96,46,.25); }
.btn-ink { background: var(--ink); color: var(--paper); border-color: var(--ink); border-radius: 10px; padding: 12px 20px; }
.btn-ink:hover { background: #000; }
.btn-outline { background: var(--paper); color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--white); box-shadow: var(--shadow-soft); }
.btn-outline-sand { background: var(--sand); }
.btn-block { width: 100%; padding: 16px; font-size: 17px; }
.text-link { font-weight: 700; color: var(--accent); }

/* ---------- Header ---------- */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(250,248,243,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 44px; height: 44px; }
.brand-text { line-height: 1.05; }
.brand-sub { display: block; font-weight: 700; font-size: 8.5px; letter-spacing: .3em; color: var(--accent); margin-top: 3px; }
.brand-name { display: block; font-weight: 800; font-size: 16px; letter-spacing: .05em; }
.site-ver { font-size: 11px; font-weight: 700; color: var(--muted); border: 1px solid var(--line-2); border-radius: 999px; padding: 1px 7px; margin-left: 4px; align-self: flex-start; }
.site-nav { display: flex; gap: 36px; font-size: 16px; font-weight: 600; }
.site-nav a { color: var(--ink); text-decoration: none; padding: 4px 0; border-bottom: 2px solid transparent; transition: border-color .2s; }
.site-nav a:hover { border-bottom-color: var(--accent); }
.head-call-icon, .nav-toggle { display: none; }
.head-call-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: var(--paper); align-items: center; justify-content: center; }
.nav-toggle { width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 10px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: flex; flex-direction: column; border-top: 1px solid var(--line); background: var(--paper); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 14px var(--gutter); color: var(--ink); text-decoration: none; font-weight: 700; font-size: 18px; border-bottom: 1px solid var(--line); }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; padding-block: 72px 56px; align-items: center; }
h1 { font-size: 52px; line-height: 1.08; letter-spacing: -.015em; margin-bottom: 20px; text-wrap: pretty; }
.hero-sub { font-size: 20px; line-height: 1.5; color: var(--body); margin-bottom: 32px; max-width: 560px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 24px; margin-top: 22px; font-size: 15px; color: var(--body); flex-wrap: wrap; }
.hero-card { padding: 14px; box-shadow: var(--shadow-soft); }
.hero-photo { height: 400px; border-radius: 12px; overflow: hidden; background: var(--sand); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 45%; transition: transform 6s var(--ease); }
.hero-card:hover .hero-photo img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) { .hero-photo img { transition: none; } .hero-card:hover .hero-photo img { transform: none; } }
.hero-card-foot { display: flex; justify-content: space-between; align-items: flex-end; padding: 16px 8px 6px; gap: 12px; }
.hero-name { font-weight: 800; font-size: 22px; }
.hero-creds { font-size: 15px; color: var(--body); margin-top: 2px; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; white-space: nowrap; }

/* ---------- Trust strip ---------- */
.trust { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; align-items: center; padding: 24px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 0 24px; border-right: 1px solid var(--line); min-height: 52px; }
.trust-item:last-child { border-right: 0; }
.trust-google { gap: 16px; }
.g-badge { width: 52px; height: 52px; border-radius: 14px; background: var(--ink); display: grid; place-items: center; flex: none; }
.trust-ico { width: 24px; height: 24px; stroke: var(--accent); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.trust-big { font-size: 22px; font-weight: 800; letter-spacing: -.01em; line-height: 1.1; display: flex; align-items: baseline; gap: 10px; }
.rating { font-size: 28px; letter-spacing: -.02em; line-height: 1; }
.stars { display: inline-flex; gap: 1px; color: var(--accent); }
.stars svg { width: 15px; height: 15px; fill: currentColor; }
.trust-small { font-size: 14px; color: var(--body); margin-top: 3px; }

/* ---------- Section heads ---------- */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; }
.sec-note { font-size: 16px; color: var(--body); max-width: 420px; text-align: right; }
.only-mobile { display: none; }
.sec-sub { font-size: 18px; color: var(--body); margin: 10px 0 32px; max-width: 640px; }
.sec-sub-sm { font-size: 16px; color: var(--body); margin: 6px 0 20px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; align-items: start; }
.service-list { display: flex; flex-direction: column; gap: 4px; }
.service-item { border-radius: 12px; padding: 12px 18px; cursor: pointer; display: flex; align-items: center; gap: 14px; background: transparent; border: 0; font: inherit; text-align: left; width: 100%; color: #3B3834; transition: background .3s var(--ease), color .3s; }
.service-item:hover, .service-item.is-active { background: var(--sand); color: var(--ink); }
.service-item:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--accent) inset; }
.service-item .s-ico { width: 22px; height: 22px; stroke: var(--line-2); stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; transition: stroke .3s; }
.service-item:hover .s-ico, .service-item.is-active .s-ico { stroke: var(--accent); }
.service-item .s-name { font-size: 18px; font-weight: 700; flex: 1; }
.service-item .s-num { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--line-2); transition: color .3s; }
.service-item:hover .s-num, .service-item.is-active .s-num { color: var(--accent); }
.service-chips { display: none; }
.service-stage { position: sticky; top: 96px; }
.cant-do { margin-top: 36px; font-size: 16px; color: var(--body); }


/* ---------- Service map: cutaway car with isolate-and-halo focus ---------- */
.car-card {
  padding: 18px 18px 14px; box-shadow: var(--shadow-soft); overflow: hidden;
  background-color: var(--white);
  background-image: linear-gradient(rgba(30,32,34,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(30,32,34,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.car-scene { position: relative; aspect-ratio: 2 / 1; isolation: isolate; }
.car-scene::before, .car-scene::after { content: ''; position: absolute; z-index: 0; background: rgba(30,32,34,.09); pointer-events: none; }
.car-scene::before { width: 1px; height: 96%; top: 2%; left: 50%; }
.car-scene::after { height: 1px; width: 100%; left: 0; top: 56%; }
.car-axis { position: absolute; z-index: 3; color: rgba(30,32,34,.42); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; pointer-events: none; }
.car-axis.x { top: 2px; left: 2px; }
.car-axis.y { bottom: 2px; right: 0; writing-mode: vertical-rl; }
.car-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; user-select: none; pointer-events: none; }
.car-art-base { filter: contrast(1.04) saturate(.84); transition: opacity .5s var(--ease), filter .5s var(--ease); }
.car-art-focus { z-index: 1; opacity: 0; filter: contrast(1.08) saturate(1.08); mask-repeat: no-repeat; mask-size: 100% 100%; -webkit-mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; transition: opacity .42s var(--ease); }
.car-scene.is-isolated .car-art-base { opacity: .17; filter: grayscale(1) contrast(.72); }
.car-scene.is-isolated .car-art-focus { opacity: 1; }
.marker {
  position: absolute; z-index: 4; width: 28px; height: 28px; margin: -14px 0 0 -14px; display: grid; place-items: center;
  border: 1px solid rgba(30,32,34,.48); border-radius: 50%; background: rgba(250,248,243,.86); box-shadow: 0 0 0 5px rgba(250,248,243,.5);
  color: var(--ink); font: 700 11px/1 'Manrope', sans-serif; opacity: .5; transform: scale(.82); cursor: pointer; padding: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .25s, color .25s;
}
.marker:hover, .marker:focus-visible { opacity: 1; transform: scale(1); }
.car-scene.is-isolated .marker:not(.active):not(:hover) { opacity: .14; }
.marker.active { color: var(--paper); border-color: var(--accent); background: var(--accent); opacity: 1; transform: scale(1.05); box-shadow: 0 0 0 7px rgba(193,96,46,.14); animation: signal 2s ease-out infinite; }
@keyframes signal { 0%,100% { box-shadow: 0 0 0 7px rgba(193,96,46,.14); } 50% { box-shadow: 0 0 0 16px rgba(193,96,46,0); } }
.focus-halo { position: absolute; z-index: 3; width: clamp(80px, 10vw, 150px); aspect-ratio: 1; border: 1px solid var(--accent); border-radius: 50%; transform: translate(-50%, -50%); opacity: .7; pointer-events: none; animation: halo-in .48s cubic-bezier(.2,.8,.2,1) both; }
.focus-halo::before, .focus-halo::after { content: ''; position: absolute; background: var(--accent); opacity: .65; }
.focus-halo::before { width: 24px; height: 1px; left: -12px; top: 50%; }
.focus-halo::after { height: 24px; width: 1px; left: 50%; top: -12px; }
@keyframes halo-in { from { opacity: 0; transform: translate(-50%, -50%) scale(.72); } to { opacity: .7; transform: translate(-50%, -50%) scale(1); } }
.service-detail { margin-top: 16px; padding: 18px 20px; display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; gap: 16px; align-items: center; box-shadow: var(--shadow-soft); }
.sd-index { align-self: stretch; display: grid; place-items: center; color: var(--accent); border-right: 1px solid var(--line); font-weight: 800; font-size: 14px; letter-spacing: .04em; }
.service-detail-name { font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 4px; }
.service-detail-desc { font-size: 16px; line-height: 1.5; color: var(--body); }
.sd-tag { padding: 7px 10px; color: var(--accent); border: 1px solid rgba(193,96,46,.35); border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .marker.active, .focus-halo { animation: none !important; } .car-art-base, .car-art-focus { transition: none; } }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card { border-radius: 16px; padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.why-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.bar { width: 28px; height: 3px; background: var(--accent); border-radius: 2px; display: block; }
.why-ico { width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: .9; }
.why-card h3 { font-size: 20px; }
.why-card p { font-size: 16px; line-height: 1.55; color: var(--body); }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.photo-strip figure { margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--white); position: relative; }
.photo-strip img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s var(--ease); }
.photo-strip figure:hover img { transform: scale(1.03); }
.photo-strip figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(250,248,243,.92); color: var(--ink); font-size: 13px; font-weight: 700; padding: 5px 10px; border-radius: 8px; }
.why-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.why-cta p { font-size: 18px; font-weight: 700; }
.why-cta .cta-row { gap: 12px; }
.why-cta .btn { font-size: 16px; padding: 14px 22px; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--white); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 12px; border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--line); }
.review .stars svg { width: 14px; height: 14px; }
.review-text { font-size: 16px; line-height: 1.55; border-bottom: 1.5px dotted var(--accent); align-self: flex-start; }
.review-meta { font-size: 14px; color: var(--body); margin-top: auto; }
.review-meta strong { color: var(--ink); }

/* ---------- Enquiry + areas ---------- */
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-block: 72px; align-items: start; }
.enquiry-card { padding: 32px; }
.reg-box { background: var(--sand); border-radius: 14px; padding: 16px 18px; margin-bottom: 18px; }
.reg-box-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.reg-box-head label { font-size: 15px; font-weight: 800; }
.reg-box-head span { font-size: 13px; color: var(--body); }
.reg-row { display: flex; gap: 10px; }
.plate { display: flex; align-items: stretch; flex: 1; min-width: 0; border-radius: 10px; overflow: hidden; border: 2px solid var(--ink); background: var(--plate); transition: box-shadow .2s; }
.plate:focus-within { box-shadow: 0 0 0 3px rgba(193,96,46,.35); }
.plate-band { width: 28px; background: var(--plate-blue); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 6px; color: var(--paper); font-size: 9px; font-weight: 800; flex: none; }
.plate-input { flex: 1; min-width: 0; width: 100%; border: 0; background: var(--plate); font-size: 24px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; text-align: center; padding: 8px 10px; color: var(--ink); outline: none; font-family: inherit; }
.plate-input::placeholder { color: rgba(30,32,34,.4); }
.reg-row .btn-ink { min-width: 110px; padding: 0 20px; }
.reg-box.is-looking .btn-ink { opacity: .6; pointer-events: none; }
.vehicle-card { margin-top: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px 16px; font-size: 14px; }
.vehicle-card .vc-title { grid-column: 1 / -1; font-size: 16px; font-weight: 800; }
.vehicle-card .vc-k { color: var(--muted); }
.vehicle-card .vc-warn { font-weight: 700; color: var(--accent); }
.vehicle-card .vc-ok { font-weight: 700; }
.lookup-error { margin-top: 10px; font-size: 14px; color: var(--accent); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 700; }
.span-2 { grid-column: 1 / -1; }
.quote-form input, .quote-form select, .quote-form textarea { font: inherit; font-size: 16px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--paper); color: var(--ink); width: 100%; transition: border-color .2s, box-shadow .2s; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(30,32,34,.08); background: var(--white); }
.quote-form input.is-invalid { border-color: var(--accent); }
.upper { text-transform: uppercase; }
.file-label { position: relative; font-weight: 400 !important; }
.file-label input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-ui { border: 2px dashed var(--line-2); border-radius: 12px; padding: 18px; text-align: center; font-size: 15px; color: var(--body); display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: border-color .2s, background-color .2s; }
.file-ui:hover, .file-label:focus-within .file-ui { border-color: var(--accent); background: var(--white); }
.file-ui .ico { stroke-width: 2; width: 20px; height: 20px; }
.file-ui.is-dragging { border-color: var(--accent); background: var(--white); color: var(--ink); }
.file-thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.thumb { position: relative; width: 84px; height: 84px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--sand); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-x { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border-radius: 50%; border: 0; background: rgba(30,32,34,.75); color: #fff; font: 700 14px/22px Manrope, sans-serif; cursor: pointer; padding: 0; }
.thumb-x:hover { background: var(--accent); }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: -4px; }
.form-error { font-size: 14px; color: var(--accent); font-weight: 600; }

.areas { padding: 8px 0; }
.areas-intro { font-size: 17px; line-height: 1.55; margin: 12px 0 16px; }
.map-wrap { position: relative; height: 340px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #E9E4D8; }
#map { position: absolute; inset: 0; }
.leaflet-container { font-family: 'Manrope', sans-serif; background: #E9E4D8; }
.leaflet-tile-pane { filter: saturate(.35) contrast(.92) brightness(1.04); }
.town-label { background: transparent; border: 0; box-shadow: none; color: var(--ink); font-weight: 700; font-size: 12px; text-shadow: 0 0 4px var(--paper), 0 0 4px var(--paper); }
.town-label::before { display: none; }
.leaflet-popup-content-wrapper { border-radius: 10px; font-size: 14px; }
.map-legend { position: absolute; left: 14px; bottom: 14px; z-index: 500; background: rgba(250,248,243,.95); border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; font-size: 13px; display: grid; gap: 4px; pointer-events: none; }
.map-legend span { display: flex; align-items: center; gap: 8px; }
.map-legend i { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.lg-core { background: rgba(193,96,46,.2); border: 2px solid var(--accent); }
.lg-ring { border: 2px dashed var(--muted); }
.areas-note { font-size: 16px; line-height: 1.55; margin: 16px 0 24px; padding: 14px 18px; background: var(--sand); border-radius: 12px; }
.eyebrow-h { font-size: 16px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--body); margin-bottom: 10px; }
.cant-list { margin: 0; padding-left: 18px; font-size: 16px; line-height: 1.7; }

/* ---------- Fleet ---------- */
.fleet { margin-bottom: 72px; background: var(--ink); color: var(--paper); border-radius: 20px; padding: 32px 40px; display: flex; align-items: center; gap: 24px; }
.fleet-ico { width: 40px; height: 40px; stroke: var(--accent); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.fleet-copy { flex: 1; }
.fleet-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.fleet-sub { font-size: 16px; color: rgba(250,248,243,.75); }
.fleet .btn { border-radius: 10px; }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--line); padding: 32px 0 40px; font-size: 14px; color: var(--body); }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.foot-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; color: var(--ink); }
.foot-mark { width: 56px; height: 56px; }
.foot-logo .brand-name { font-size: 20px; }
.foot-logo .brand-sub { font-size: 10.5px; margin-top: 4px; }
.foot-text { line-height: 1.7; }
.foot-contact a { color: var(--ink); text-decoration: none; font-weight: 700; }
.foot-contact a.muted { color: var(--body); font-weight: 500; text-decoration: underline; }

/* ---------- Section intro (kicker + heading + lede) ---------- */
.sec-intro { max-width: 760px; margin-bottom: 36px; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.sec-intro h2 { font-size: 38px; line-height: 1.12; letter-spacing: -.015em; margin: 12px 0 14px; text-wrap: pretty; }
.sec-intro p { font-size: 18px; line-height: 1.55; color: var(--body); max-width: 620px; }
.only-mobile-block, .tl-list.only-mobile-block { display: none; }

/* ---------- Garage vs driveway ---------- */
.compare { padding-block: 64px 72px; }
.cmp-table { overflow: hidden; box-shadow: var(--shadow-soft); }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 200px 1fr 1fr; }
.cmp-head > div { padding: 22px 26px; border-bottom: 1px solid var(--line); }
.cmp-head-us { border-left: 1px solid var(--line); background: #FBF4EE; border-bottom: 2px solid var(--accent) !important; }
.cmp-head-them { border-left: 1px solid var(--line); }
.cmp-head .cmp-us, .cmp-head .cmp-them { display: block; }
.cmp-head .cmp-us, .cmp-head .cmp-them { display: block; }
.cmp-head-title { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; }
.cmp-head-title .ico { stroke: var(--accent); stroke-width: 1.8; width: 20px; height: 20px; }
.cmp-head-them .cmp-head-title { color: var(--muted); }
.cmp-head-sub { font-size: 13.5px; color: var(--body); margin-top: 4px; }
.cmp-head-them .cmp-head-sub { color: var(--muted); }
.cmp-row { border-bottom: 1px solid var(--sand); }
.cmp-row > div { padding: 18px 26px; }
.cmp-label { font-weight: 800; font-size: 15px; }
.cmp-us, .cmp-them { border-left: 1px solid var(--line); display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.cmp-us { background: #FDFAF6; }
.cmp-them { color: var(--muted); }
.cmp-ico { width: 16px; height: 16px; flex: none; margin-top: 3px; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cmp-us .cmp-ico { stroke: var(--accent); stroke-width: 2.6; }
.cmp-them .cmp-ico { stroke: #B9AFA0; stroke-width: 2.4; }
.cmp-who { display: none; }
.cmp-bill { background: var(--sand); border-bottom: 0; }
.cmp-bill > div { padding: 20px 26px; }
.cmp-bill .cmp-us { background: transparent; display: block; }
.cmp-bill .cmp-them { display: block; }
.cmp-price { font-weight: 800; font-size: 22px; letter-spacing: -.01em; color: var(--ink); }
.cmp-price-them { color: var(--muted); }
.cmp-price-note { font-size: 14px; color: var(--body); margin-left: 6px; }
.cmp-them .cmp-price-note { color: var(--muted); }
.cmp-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.cmp-foot p { font-size: 15px; color: var(--body); max-width: 520px; }
.cmp-foot .cta-row { gap: 12px; }

/* ---------- Where does your Tuesday go ---------- */
.tuesday.band-sand { padding-block: 64px 60px; }
.tl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.tl-card { padding: 28px 30px; box-shadow: var(--shadow-soft); position: relative; }
.tl-mine { border: 2px solid var(--accent); box-shadow: var(--shadow-lift); }
.tl-badge { position: absolute; top: -13px; left: 28px; background: var(--accent); color: var(--paper); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.tl-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.tl-mine .tl-head { margin-top: 6px; }
.tl-title { font-weight: 800; font-size: 19px; }
.tl-garage .tl-title { color: var(--muted); }
.tl-tag { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: right; }
.tl-tag-accent { color: var(--accent); }
.tl-list { display: flex; flex-direction: column; }
.tl-row { display: grid; grid-template-columns: 56px 16px 1fr; gap: 0 14px; }
.tl-time { font-weight: 800; font-size: 14px; color: var(--muted); padding-top: 1px; text-align: right; }
.tl-mine .tl-time { color: var(--accent); }
.tl-track { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--line-2); background: var(--white); flex: none; margin-top: 3px; }
.tl-mine .tl-dot { border-color: var(--accent); }
.tl-dot-solid { background: var(--muted); border-color: var(--muted); }
.tl-mine .tl-dot-solid { background: var(--accent); border-color: var(--accent); }
.tl-line { width: 2px; flex: 1; background: #EBE6DB; min-height: 26px; }
.tl-mine .tl-line { background: #F0D9C9; }
.tl-text { font-size: 15px; line-height: 1.45; color: var(--body); padding-bottom: 22px; }
.tl-final .tl-text { color: var(--ink); font-weight: 700; padding-bottom: 0; }
.tl-photo { margin-top: 22px; padding: 16px 18px; background: #FBF4EE; border-radius: 12px; display: flex; align-items: center; gap: 14px; }
.tl-photo img { width: 74px; height: 56px; object-fit: cover; border-radius: 8px; flex: none; }
.tl-photo p { font-size: 14px; line-height: 1.45; color: var(--body); }
.tl-cta { margin-top: 32px; }

@media (max-width: 860px) {
  .sec-intro { margin-bottom: 20px; }
  .sec-intro h2 { font-size: 27px; margin: 10px 0 10px; }
  .sec-intro p { font-size: 15.5px; }
  .only-desktop-block, .tl-list.only-desktop-block { display: none; }
  .only-mobile-block, .tl-list.only-mobile-block { display: flex; }
  .compare { padding-block: 40px 36px; }
  /* table becomes stacked per-topic cards */
  .cmp-table { background: transparent; border: 0; box-shadow: none; border-radius: 0; overflow: visible; }
  .cmp-head { display: none; }
  .cmp-row { display: block; background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-bottom: 12px; }
  .cmp-row-extra { display: none; }
  .cmp-row > div { padding: 10px 18px; }
  .cmp-label { padding: 14px 18px 10px; }
  .cmp-us, .cmp-them { border-left: 0; border-top: 1px solid var(--sand); font-size: 14.5px; }
  .cmp-us { background: #FBF4EE; }
  .cmp-them { padding-bottom: 14px; }
  .cmp-who { display: inline; font-weight: 800; }
  .cmp-them .cmp-who { color: var(--body); }
  .cmp-bill { background: var(--sand); border: 0; padding: 8px 0 6px; }
  .cmp-bill .cmp-label { padding: 10px 18px 4px; }
  .cmp-bill .cmp-us, .cmp-bill .cmp-them { border-top: 0; padding: 2px 18px 8px; background: transparent; }
  .cmp-price { font-size: 24px; }
  .cmp-price-them { font-size: 17px; }
  .cmp-price-note { font-size: 13.5px; }
  .cmp-foot { flex-direction: column; align-items: stretch; margin-top: 16px; }
  .cmp-foot .cta-row, .tl-cta { flex-direction: column; }
  .cmp-foot .btn, .tl-cta .btn { width: 100%; padding: 16px; font-size: 17px; }
  .tuesday.band-sand { padding-block: 36px 32px; }
  .tl-grid { grid-template-columns: 1fr; gap: 14px; }
  .tl-card { padding: 20px 20px 16px; border-radius: 16px; }
  .tl-badge { top: -11px; left: 18px; font-size: 11px; padding: 4px 10px; }
  .tl-head { margin-bottom: 14px; }
  .tl-title { font-size: 16px; }
  .tl-tag { font-size: 12px; letter-spacing: .06em; }
  .tl-row { grid-template-columns: 44px 1fr; gap: 0 12px; }
  .tl-track { display: none; }
  .tl-time { font-size: 13px; }
  .tl-text { font-size: 14px; border-left: 2px solid #EBE6DB; padding-left: 12px; margin-left: 2px; padding-bottom: 12px; }
  .tl-mine .tl-text { border-left-color: #F0D9C9; }
  .tl-final .tl-text { padding-bottom: 0; }
  .tl-mine .tl-final .tl-text { border-left-color: var(--accent); }
  .tl-photo { padding: 12px 14px; }
  .tl-cta { margin-top: 20px; }
}

.sticky-bar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .site-nav { gap: 24px; }
  .hero { gap: 36px; }
  h1 { font-size: 44px; }
  .trust { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .services-grid { gap: 32px; }
  .service-item .s-name { font-size: 17px; }
}

@media (max-width: 860px) {
  body { font-size: 15px; }
  .section { padding-block: 40px 32px; }
  .band-sand { padding-block: 36px; }
  h2 { font-size: 26px; }
  .h2-sm { font-size: 22px; }
  .site-nav, .head-call { display: none; }
  .head-call-icon, .nav-toggle { display: flex; }
  .head-row { gap: 12px; padding-block: 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { grid-template-columns: 1fr; gap: 28px; padding-block: 32px 24px; }
  h1 { font-size: 34px; margin-bottom: 14px; }
  .hero-sub { font-size: 17px; margin-bottom: 22px; }
  .hero-photo { height: 240px; }
  .hero-card { padding: 10px; }
  .hero-meta { gap: 8px 16px; font-size: 14px; }
  .trust { grid-template-columns: 1fr 1fr; padding: 16px 0; row-gap: 14px; }
  .trust-item { padding: 0 16px; gap: 10px; min-height: 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(even) { border-right: 0; }
  .g-badge { width: 40px; height: 40px; border-radius: 10px; }
  .g-badge svg { width: 20px; height: 20px; }
  .rating { font-size: 22px; }
  .trust-big { font-size: 17px; }
  .trust-small { font-size: 12px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 18px; }
  .sec-note { text-align: left; }
  .only-mobile { display: inline; }
  .only-desktop { display: none; }
  .hero .cta-row { flex-wrap: nowrap; gap: 10px; }
  .hero .cta-row .btn { flex: 1; font-size: 16px; padding: 14px 12px; }
  .reg-box-head label { white-space: nowrap; }
  .reg-box-head span { display: none; }
  .plate-input { font-size: 20px; letter-spacing: .08em; padding: 8px 6px; }
  .reg-row .btn-ink { min-width: 0; padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-list { display: none; }
  .service-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 2px 8px; margin: 0 calc(-1 * var(--gutter)); padding-inline: var(--gutter); order: 2; }
  .service-chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; border: 1px solid var(--line-2); background: var(--white); color: var(--ink); font: inherit; font-weight: 700; font-size: 14px; padding: 10px 16px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, border-color .2s, color .2s; }
  .chip .s-ico { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .service-stage { position: static; display: contents; }
  .car-card { padding: 10px; order: 1; border-radius: 16px; }
  .car-axis { display: none; }
  .marker { width: 22px; height: 22px; margin: -11px 0 0 -11px; font-size: 9px; }
  .service-detail { order: 3; margin-top: 0; padding: 14px 14px; grid-template-columns: 38px 1fr; gap: 12px; border-radius: 12px; }
  .sd-tag { display: none; }
  .service-detail-name { font-size: 17px; }
  .service-detail-desc { font-size: 15px; }
  .cant-do { margin-top: 20px; font-size: 14px; }
  .why-grid, .photo-strip, .reviews-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .photo-strip figcaption { left: 8px; bottom: 8px; font-size: 11px; padding: 4px 8px; }
  .why-cta { flex-direction: column; align-items: stretch; margin-top: 24px; }
  .why-cta .cta-row .btn { flex: 1; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 36px; padding-block: 40px; }
  .enquiry-card { padding: 20px; }
  .quote-form { grid-template-columns: 1fr 1fr; }
  .quote-form label:nth-child(1), .quote-form label:nth-child(2) { grid-column: 1 / -1; }
  .map-wrap { height: 280px; }
  .fleet { flex-wrap: wrap; padding: 22px 20px; margin-bottom: 36px; }
  .fleet-ico { display: none; }
  .fleet-copy { flex: 1 1 100%; }
  .foot-grid { flex-direction: column; gap: 20px; padding-bottom: 80px; }
  .sticky-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(250,248,243,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); }
  .sticky-bar .btn { padding: 14px 10px; border-radius: 12px; }
}

@media (max-width: 400px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip figure:last-child { display: none; }
  .vehicle-card { grid-template-columns: 1fr 1fr; }
}

/* Enquiry form: honeypot, WAF CAPTCHA slot, success state */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.captcha-box { min-height: 72px; display: flex; justify-content: center; }
.captcha-box[hidden] { display: none; }
.form-success { display: flex; gap: 14px; align-items: flex-start; background: var(--sand); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.form-success .ico { width: 24px; height: 24px; color: var(--accent); margin-top: 2px; }
.form-success strong { display: block; font-size: 17px; margin-bottom: 4px; }
.form-success p { color: var(--body); font-size: 15px; }
