/* Waste Busters. The brand is the mascot, the red of its circle and the
   black brick of the Facebook cover, so the site is built from exactly those:
   near-black, the logo's own red (sampled from the artwork, #cc242c) and
   white, with the brick wall as a faint texture behind the hero only.
   Mobile first: most visitors are on a phone, often standing next to the
   pile they want gone. */

@font-face {
  font-family: "Archivo";
  src: url("/fonts/archivo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/fonts/atkinson-next-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #141213;
  --ink-2: #1f1b1c;
  --ink-3: #2c2627;
  --paper: #ffffff;
  --paper-2: #f5f2f1;
  --line: #e6dfde;
  --text: #1d1a1b;
  --muted: #5d5657;
  --on-dark: #f4efee;
  --on-dark-muted: #bdb3b3;
  --red: #cc242c;
  --red-deep: #a51c23;
  --wa: #17803f;
  --wa-deep: #106a33;
  --gold: #f2b01e;
  --radius: 10px;
  --wrap: 1120px;
  --display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --body: "Atkinson Hyperlegible Next", "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 1.0625rem/1.6 var(--body);
  /* Room for the action bar, which is fixed to the bottom of a phone. */
  padding-bottom: calc(68px + env(safe-area-inset-bottom));
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--red-deep); text-underline-offset: 3px; }
a:hover { color: var(--red); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.08;
  margin: 0 0 .5em;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.05rem, 7.2vw, 3.7rem); font-weight: 820; font-stretch: 112%; }
h2 { font-size: clamp(1.65rem, 4.6vw, 2.45rem); font-weight: 800; font-stretch: 108%; }
h3 { font-size: 1.14rem; font-weight: 750; font-stretch: 100%; letter-spacing: 0; }
p { margin: 0 0 1em; max-width: 65ch; }

.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
.narrow { max-width: 760px; }

.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 50;
  background: var(--paper); color: var(--ink); padding: 8px 12px; border-radius: 6px;
}
.skip:focus { left: 8px; }

/* Header: the logo and name on the left, the number always one tap away. */
.site-head { background: var(--ink); color: var(--on-dark); }
.site-head__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--on-dark); text-decoration: none; }
.brand:hover { color: var(--on-dark); }
.brand__name {
  font: 900 1.22rem/1 var(--display); font-stretch: 118%;
  text-transform: uppercase; letter-spacing: .02em;
}
.head-call {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--on-dark); text-decoration: none; font: 700 1rem/1 var(--display); font-stretch: 100%;
  padding: 10px 12px; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, .18);
}
.head-call:hover { color: var(--paper); border-color: rgba(255, 255, 255, .5); }
.head-call span { display: none; }
@media (min-width: 420px) { .head-call span { display: inline; } }

/* Hero: the only place the brick shows, faded almost to nothing. */
.hero {
  background-color: var(--ink);
  background-image:
    radial-gradient(120% 90% at 85% 10%, rgba(204, 36, 44, .16), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='48'%3E%3Cpath d='M0 23.5h72M0 47.5h72M36 0v24M.5 24v24' stroke='%23ffffff' stroke-opacity='.055' fill='none'/%3E%3C/svg%3E");
  color: var(--on-dark);
  padding: 28px 0 44px;
  border-bottom: 6px solid var(--red);
}
.hero__grid { display: grid; gap: 18px; }
.hero__mascot { order: -1; justify-self: center; width: min(170px, 44vw); }
.kicker {
  font: 800 .9rem/1.2 var(--display); font-stretch: 110%;
  text-transform: uppercase; letter-spacing: .08em; color: var(--red);
  margin-bottom: .7em;
}
.hero h1 { color: var(--paper); }
.hero__lead { font-size: 1.14rem; color: var(--on-dark); margin-bottom: 1.4em; }
.hero__actions { display: grid; gap: 10px; margin-bottom: 22px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 22px; border-radius: var(--radius);
  font: 750 1.06rem/1.1 var(--display); font-stretch: 104%;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background-color .15s ease-out, border-color .15s ease-out, transform .06s;
}
.btn:active { transform: scale(.98); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-deep); color: #fff; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(255, 255, 255, .32); }
.btn--ghost:hover { color: #fff; border-color: #fff; }
.btn--block { width: 100%; }

.proof { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.proof li {
  font-size: .92rem; color: var(--on-dark); background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; padding: 6px 12px;
}
.proof a { color: var(--on-dark); text-decoration: none; }
.proof a:hover { color: #fff; text-decoration: underline; }
.stars { color: var(--gold); letter-spacing: 1px; }

@media (min-width: 900px) {
  .hero { padding: 64px 0 72px; }
  .hero__grid { grid-template-columns: 1.35fr .65fr; align-items: center; gap: 48px; }
  .hero__mascot { order: 0; width: 100%; max-width: 380px; }
  .hero__actions { display: flex; flex-wrap: wrap; }
}

/* Sections. */
.band { padding: 52px 0; }
.band--tint { background: var(--paper-2); }
.band--dark { background: var(--ink); color: var(--on-dark); }
.band--dark h2 { color: var(--paper); }
.band__intro { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.6em; }
@media (min-width: 900px) { .band { padding: 80px 0; } }

.cards { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 18px 6px;
}
.card h3::before {
  /* A small red bin-bag tie: the brand's red, and a nod to the mascot. */
  content: ""; display: inline-block; width: 10px; height: 10px; margin-right: 9px;
  background: var(--red); border-radius: 2px; transform: rotate(45deg) translateY(-2px);
}
.card p { color: var(--muted); font-size: 1rem; }

.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps li {
  counter-increment: step; position: relative;
  background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line);
  padding: 18px 18px 6px 74px; min-height: 96px;
}
.steps li::before {
  content: counter(step); position: absolute; left: 18px; top: 16px;
  font: 900 2.6rem/1 var(--display); font-stretch: 112%; color: var(--red);
}
.steps p { color: var(--muted); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.pairs { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pairs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pairs { grid-template-columns: repeat(3, 1fr); } }
.pair { margin: 0; }
.pair__shots { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: var(--radius); overflow: hidden; }
.pair__shots picture { position: relative; display: block; background: var(--ink-3); }
.pair__shots img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.pair__shots picture::after {
  position: absolute; left: 8px; top: 8px;
  font: 800 .72rem/1 var(--display); font-stretch: 110%; text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 8px; border-radius: 6px; color: #fff; background: rgba(20, 18, 19, .78);
}
.pair__shots picture:first-child::after { content: "Before"; }
.pair__shots picture:last-child::after { content: "After"; background: var(--red); }
.pair figcaption { font: 750 1rem/1.3 var(--display); margin-top: 8px; }

.rating { font-size: 1.1rem; color: var(--on-dark); }
.quotes { display: grid; gap: 14px; margin: 8px 0 22px; }
@media (min-width: 800px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote {
  margin: 0; background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius);
  padding: 20px 20px 16px;
}
.quote p { font-size: 1.06rem; color: var(--on-dark); }
.quote p::before { content: "\201C"; color: var(--red); font: 900 2rem/0 var(--display); vertical-align: -0.35em; margin-right: 4px; }
.quote footer { color: var(--on-dark-muted); font-size: .95rem; }
.link-light { color: var(--on-dark); }
.link-light:hover { color: #fff; }

.towns { list-style: none; padding: 0; margin: 0 0 1.2em; display: flex; flex-wrap: wrap; gap: 8px; }
.towns li {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: .98rem;
}

/* The quote form. Big fields: this is filled in on a phone, often with one thumb. */
.band--quote { background: var(--paper-2); border-top: 6px solid var(--red); }
/* minmax(0, 1fr), not the default auto: a grid column otherwise grows to the
   file picker's natural width, which on a 375px phone pushed every field
   16px off the right-hand edge. */
.quote-form { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; margin-bottom: 18px; }
.field { min-width: 0; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; }
.optional { font-weight: 400; color: var(--muted); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px;
  font: inherit; color: var(--text); background: var(--paper);
  border: 1px solid #cfc6c5; border-radius: var(--radius);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .06);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input.short { max-width: 220px; }
.field input:focus, .field textarea:focus { outline: 3px solid var(--red); outline-offset: 1px; border-color: var(--red); }
.field input[type="file"] { font: inherit; width: 100%; }
.hint { color: var(--muted); font-size: .95rem; margin: 6px 0 0; }
.field--trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.or-wa { font-size: 1.05rem; }

/* The Environment Agency's own badge for our licence, served live from the
   public register (no cookies, no scripts: checked 26 Sept 2026). Its fixed
   330px fits the narrowest phone this site expects. */
.ea-badge {
  display: block; max-width: 100%;
  border: 1px solid var(--line); border-radius: 6px; background: #fff; overflow: hidden;
}
/* The words and the badge side by side on a wide screen, so the badge reads as
   the proof of the paragraph beside it rather than an interruption in it.
   Lance, seeing it mid-text with empty space beside it: "a strange place".
   On a phone it follows the words. */
.legal { display: grid; gap: 8px 56px; align-items: center; }
.legal__badge { margin: 0; }
.legal__badge figcaption { font-size: .9rem; color: var(--muted); margin-top: 8px; }
@media (min-width: 860px) {
  .legal { grid-template-columns: minmax(0, 1fr) auto; }
}

/* Long reading pages: the privacy notice. */
.prose h2 { font-size: 1.35rem; margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; max-width: 65ch; }
.prose li { margin-bottom: .5em; }

/* Footer. */
.site-foot { background: var(--ink); color: var(--on-dark-muted); padding: 40px 0 28px; font-size: .98rem; }
.site-foot a { color: var(--on-dark); }
.site-foot a:hover { color: #fff; }
.site-foot p { margin: 0 0 .5em; }
.site-foot__grid { display: grid; gap: 22px; }
@media (min-width: 800px) { .site-foot__grid { grid-template-columns: repeat(3, 1fr); } }
.site-foot__name { font: 900 1.1rem/1.2 var(--display); font-stretch: 116%; text-transform: uppercase; color: var(--on-dark); }
.site-foot__small { font-size: .88rem; margin-top: 1em !important; }

/* The action bar: call, WhatsApp or quote, always under a thumb on a phone.
   Gone on a desktop, where the header number and the hero buttons do it. */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: rgba(20, 18, 19, .96); border-top: 1px solid var(--ink-3);
}
.action-bar__btn {
  display: flex; align-items: center; justify-content: center; min-height: 50px;
  border-radius: 8px; text-decoration: none; color: #fff;
  font: 750 1rem/1 var(--display); font-stretch: 104%;
  background: var(--ink-3);
}
.action-bar__btn:hover { color: #fff; }
.action-bar__btn--wa { background: var(--wa); }
.action-bar__btn--quote { background: var(--red); }
@media (min-width: 900px) {
  .action-bar { display: none; }
  body { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
