/* =========================================================================
   Skip Hire Doncaster — design system
   Authored from design/spec.md. Mobile-first: base rules target mobile,
   min-width media queries scale up to tablet (768px) and desktop (1024px).
   Animations use transform and opacity only, and respect reduced motion.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens (exactly as specified in design/spec.md)
   ------------------------------------------------------------------------- */
:root {
  /* Brand palette. Deep green carries the identity with a skip-yellow accent
     used sparingly. Squared corners and flat, tight shadows give a more
     utilitarian, yard-and-lorry feel than soft rounded cards. */
  --brand: #12694A;
  --brand-dark: #0D5138;
  --brand-soft: #E4F1EA;
  --brand-pale: #F3FAF6;

  --accent: #F5C038;
  --accent-dark: #D9A522;
  --accent-soft: #FDF6E4;

  --deep: #0F2A22;
  --deep-dark: #071811;
  --deep-soft: #1B4034;

  /* Legacy token names. Inline styles in the markup reference var(--orange)
     and var(--navy) in a number of places, so the names are kept and
     repointed at the palette above rather than renamed across every page. */
  --orange: var(--brand);
  --orange-dark: var(--brand-dark);
  --orange-soft: var(--brand-soft);
  --orange-pale: var(--brand-pale);

  --ink: #101512;
  --text: #343B37;
  --muted: #69736E;

  --white: #FFFFFF;
  --page-bg: #FFFFFF;
  --section-bg: #F5F8F6;

  --border: #E1E6E3;
  --border-strong: #CBD3CE;

  --success: #12694A;
  --danger: #C4362B;

  --shadow-sm: 0 1px 2px rgba(15, 42, 34, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 42, 34, 0.07);
  --shadow-lg: 0 12px 30px rgba(15, 42, 34, 0.09);

  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 8px;
  --radius-xl: 10px;

  --container: 1180px;
}

/* -------------------------------------------------------------------------
   2. Reset / base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Archivo", "Inter", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.018em;
}

/* A short accent rule under section headings, in place of the underline
   highlight the previous layout used. */
.section__head > h2 {
  padding-bottom: 14px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

@media (max-width: 767px) {
  .container { width: min(100% - 40px, 680px); }
}

/* Major section spacing: airy, clearly separated blocks. */
.section { padding-block: 60px; }
.section--alt { background: var(--section-bg); }

@media (min-width: 768px) { .section { padding-block: 84px; } }
@media (min-width: 1024px) { .section { padding-block: 120px; } }

.section__head { max-width: 720px; margin-bottom: 32px; }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

h1 { font-size: clamp(42px, 11vw, 50px); }
h2 { font-size: clamp(32px, 7vw, 38px); }
h3 { font-size: 20px; }

.lead { font-size: 16px; color: var(--text); }

@media (min-width: 1024px) {
  h1 { font-size: clamp(48px, 5.2vw, 72px); }
  h2 { font-size: clamp(42px, 3.4vw, 52px); }
  h3 { font-size: 22px; }
  .lead { font-size: 18px; }
}

/* -------------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn .btn__arrow { width: 16px; height: 16px; flex: none; }

.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); }

.btn--secondary {
  background: var(--white);
  border-color: var(--ink);
  color: var(--ink);
}
.btn--secondary:hover { background: var(--ink); color: var(--white); }

.btn--outline {
  background: var(--white);
  border-color: var(--orange);
  color: var(--orange);
}
.btn--outline:hover { background: var(--orange); color: var(--white); }

.btn--ghost-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn--ghost-white:hover { background: var(--white); color: var(--orange-dark); }

.btn--white { background: var(--white); color: var(--orange-dark); }
.btn--white:hover { background: var(--orange-pale); }

.btn--block { width: 100%; }

/* -------------------------------------------------------------------------
   5. Header
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}
@media (min-width: 1024px) { .site-header__inner { min-height: 84px; } }

.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo span { color: var(--orange); }

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--orange); }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile menu drawer */
.mobile-menu {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__inner { padding: 12px 0 20px; }
.mobile-menu__link {
  display: block;
  padding: 14px 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 4px;
  font-weight: 700;
  color: var(--ink);
}
.mobile-menu__phone svg { width: 18px; height: 18px; color: var(--orange); }
.mobile-menu .btn { margin-top: 8px; }

@media (min-width: 1160px) {
  .nav-toggle, .mobile-menu { display: none; }
  .nav {
    display: flex;
    gap: 22px;
    margin-inline: auto;
  }
  .nav__link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    white-space: nowrap;
    padding: 6px 0;
  }
  .nav__link:hover, .nav__link[aria-current="page"] { color: var(--orange); }
  .header-actions { display: flex; }
}

/* -------------------------------------------------------------------------
   6. Cards + benefit items
   ------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}
@media (min-width: 768px) { .card { padding: 28px; } }

.benefit-list { display: grid; gap: 12px; }
.benefit {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.benefit__tick {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--orange);
}
.benefit p, .benefit span { margin: 0; }

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero { padding-block: 40px 56px; }
.hero__inner { display: grid; gap: 28px; }
.hero__supporting {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.hero__bullets { margin: 22px 0 26px; }
.hero__actions { display: grid; gap: 12px; }
.hero__media {
  display: grid;
  place-items: center;
  height: 300px;
  padding: 24px;
  border-radius: 20px;
  background: var(--orange-pale);
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero__media svg { width: 100%; height: 100%; }
.hero__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .hero__actions { grid-auto-flow: column; justify-content: start; }
}
@media (min-width: 1024px) {
  .hero { padding-block: 72px 96px; }
  .hero__inner {
    grid-template-columns: 47% 53%;
    align-items: center;
    gap: 48px;
  }
  .hero__media { height: auto; aspect-ratio: 4 / 3; padding: 32px; }
  .hero__media img { height: auto; aspect-ratio: 4 / 3; }
  .hero__supporting { font-size: 24px; }
}

/* -------------------------------------------------------------------------
   8. Trust strip
   ------------------------------------------------------------------------- */
.trust { margin-top: -28px; }
.trust__card { padding: 24px; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}
.trust-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.trust-item svg { width: 32px; height: 32px; color: var(--orange); }
.trust-item h3,
.trust-item__title { font-size: 16px; margin-bottom: 4px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.trust-item p { font-size: 14px; color: var(--muted); margin: 0; }
.trust__licence {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 1024px) {
  .trust__card { padding: 32px; }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { position: relative; }
  .trust-item + .trust-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 4px;
    bottom: 4px;
    border-left: 1px solid var(--border);
  }
}

/* -------------------------------------------------------------------------
   9. Skip size cards
   ------------------------------------------------------------------------- */
.skip-grid { display: grid; gap: 16px; }
.skip-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  transition: transform 0.18s ease;
}
.skip-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.skip-card__media {
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--orange-pale);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.skip-card__media svg { width: 78%; height: auto; }
.skip-card__body h3 { margin-bottom: 6px; }
.skip-card__body p { font-size: 15px; color: var(--muted); margin: 0 0 14px; }
.skip-card__dims { font-size: 14px; font-weight: 700; color: var(--text); }

@media (min-width: 768px) {
  .skip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .skip-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .skip-card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 24px;
  }
  .skip-card__media { width: 100%; aspect-ratio: 4 / 3; }
}

/* -------------------------------------------------------------------------
   10. Waste guide
   ------------------------------------------------------------------------- */
.waste-grid { display: grid; gap: 16px; }
.waste-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  background: var(--white);
}
.waste-panel__title { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.waste-panel ul { display: grid; gap: 10px; }
.waste-panel li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 15px;
}
.waste-panel li svg { width: 20px; height: 20px; margin-top: 1px; }

.waste-panel li strong { font-weight: 700; color: var(--ink); }
.waste-panel li .sub { display: block; margin-top: 2px; font-size: 13px; color: var(--muted); }

.waste-panel--accept { border-top: 4px solid var(--success); }
.waste-panel--accept li svg { color: var(--success); }
.waste-panel--check { border-top: 4px solid var(--danger); }
.waste-panel--check li svg { color: var(--danger); }

.waste-panel--help {
  background: var(--orange);
  border-color: var(--orange-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.waste-panel--help h3 { color: var(--white); }
.waste-panel--help p { color: rgba(255, 255, 255, 0.92); }

@media (min-width: 1024px) {
  .waste-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
}

/* -------------------------------------------------------------------------
   11. Process steps
   ------------------------------------------------------------------------- */
.process { display: grid; gap: 24px; }
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
}
.process-step__num {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
}
.process-step h3 { margin-bottom: 6px; }
.process-step p { margin: 0; color: var(--muted); font-size: 15px; }

/* vertical connecting line on mobile */
.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -24px;
  border-left: 2px solid var(--border);
}

@media (min-width: 1024px) {
  .process { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .process-step { grid-template-columns: 1fr; text-align: center; }
  .process-step__num { margin-inline: auto; }
  .process-step:not(:last-child)::before {
    left: auto;
    right: -14px;
    top: 28px;
    bottom: auto;
    width: 28px;
    border-left: 0;
    border-top: 2px solid var(--border);
  }
}

/* -------------------------------------------------------------------------
   12. Areas we cover
   ------------------------------------------------------------------------- */
.areas__grid { display: grid; gap: 32px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.area-chip {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
a.area-chip:hover { border-color: var(--orange); color: var(--orange); }

/* Areas index page: grid of linked town cards */
.area-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .area-link-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .area-link-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.area-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 56px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--ink);
  transition: transform 0.18s ease;
}
.area-link-card:hover { transform: translateY(-3px); border-color: var(--orange); }
.area-link-card svg { width: 18px; height: 18px; flex: none; color: var(--orange); }

.area-map {
  background: var(--orange-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.area-map svg { width: 100%; height: auto; }

@media (min-width: 1024px) {
  .areas__grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
}

/* -------------------------------------------------------------------------
   13. FAQ accordion (native <details> for keyboard accessibility)
   ------------------------------------------------------------------------- */
.faq { display: grid; gap: 14px; max-width: 820px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  min-height: 60px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--orange);
  transition: opacity 0.18s ease;
}
.faq-item__icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-item__icon::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq-item[open] .faq-item__icon::after { opacity: 0; }
.faq-item__body { padding: 0 20px 22px; }
.faq-item__body p { margin: 0; color: var(--text); }

/* -------------------------------------------------------------------------
   14. Final CTA
   ------------------------------------------------------------------------- */
.cta__card {
  background: var(--orange);
  background-image: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta__card h2 { color: var(--white); }
.cta__card p { color: rgba(255, 255, 255, 0.92); max-width: 560px; margin-inline: auto; }
.cta__actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  justify-content: center;
}
.cta__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  color: var(--white);
}

@media (min-width: 768px) {
  .cta__card { padding: 64px 48px; }
  .cta__actions { grid-auto-flow: column; }
}

/* -------------------------------------------------------------------------
   15. Review card (component styled now; not populated until reviews exist)
   ------------------------------------------------------------------------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.review-card__stars { color: var(--orange); margin-bottom: 12px; }
.review-card__quote { font-size: 17px; color: var(--text); }
.review-card__author { font-weight: 700; color: var(--ink); }

/* -------------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-block: 48px 24px;
}
.site-footer__grid { display: grid; gap: 32px; }
.site-footer h2 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.site-footer__logo { font-size: 22px; font-weight: 800; color: var(--white); }
.site-footer__logo span { color: var(--orange); }
.site-footer p, .site-footer li { color: #B9B9B9; font-size: 15px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:hover { color: var(--white); }
.site-footer__desc { margin-top: 14px; max-width: 320px; }

.site-footer__areas {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__areas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 4px;
}
.site-footer__areas a { color: #B9B9B9; font-size: 14px; }
.site-footer__areas a:hover { color: var(--orange); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  color: #B9B9B9;
}
.site-footer__bottom .spacer { margin-left: auto; }

@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
}

/* -------------------------------------------------------------------------
   17. Page hero (interior pages)
   ------------------------------------------------------------------------- */
.page-hero { padding-block: 44px 8px; }
.page-hero .lead { max-width: 720px; }
@media (min-width: 1024px) { .page-hero { padding-block: 72px 8px; } }

/* -------------------------------------------------------------------------
   18. Detailed size cards (skip sizes page)
   ------------------------------------------------------------------------- */
.size-list { display: grid; gap: 20px; }
.size-card {
  display: grid;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}
.size-card__media {
  display: grid;
  place-items: center;
  background: var(--orange-pale);
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  padding: 20px;
}
.size-card__media svg { width: 80%; height: auto; }
.size-card__title { margin-bottom: 8px; }
.size-card__label {
  display: block;
  margin: 16px 0 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.size-card__bestfor { display: grid; gap: 8px; margin-bottom: 20px; }
.size-card__bestfor li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 15px;
}
.size-card__bestfor svg { width: 18px; height: 18px; margin-top: 2px; color: var(--orange); }
.size-card__capacity { font-weight: 700; color: var(--text); margin: 0 0 20px; }

@media (min-width: 768px) {
  .size-card {
    grid-template-columns: 280px 1fr;
    align-items: center;
    padding: 24px;
    gap: 28px;
  }
}

.note-card {
  background: var(--orange-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.note-card p { margin: 0; }

/* Simple content helpers shared by the permits / waste pages */
.grid-2 { display: grid; gap: 20px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.card--good { border-top: 4px solid var(--success); }
.card--warn { border-top: 4px solid var(--orange); }
.card h3 + p { margin-top: 8px; }

.prose-section { margin-top: 40px; }
.prose-section > h2 { margin-bottom: 12px; }
.prose-section p { color: var(--text); max-width: 760px; }

.tip-list { display: grid; gap: 12px; }
.tip-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.tip-list svg { width: 20px; height: 20px; margin-top: 2px; color: var(--orange); }

/* -------------------------------------------------------------------------
   19. Contact page + quote form
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; gap: 48px; }
}

.contact-detail {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}
.contact-detail svg { width: 22px; height: 22px; color: var(--orange); margin-top: 2px; }
.contact-detail h3 { font-size: 15px; margin-bottom: 2px; }
.contact-detail a, .contact-detail p { margin: 0; color: var(--text); }

.form { display: grid; gap: 16px; }
.form__group { display: grid; gap: 6px; }
.form__group label { font-weight: 700; font-size: 14px; color: var(--ink); }
.form__group .req { color: var(--danger); }
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 3px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.form textarea { min-height: 110px; resize: vertical; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

.form-success {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  border: 1px solid var(--success);
  color: var(--ink);
  font-weight: 700;
}
.form-success[hidden] { display: none; }

/* Touch targets: grow the hit area to at least 48px with vertical padding,
   leaving the visible text size unchanged. Inline body-copy links (inside <p>)
   are deliberately left alone. */
.logo {
  display: inline-flex;
  align-items: center;
  padding-block: 10px;
}
.site-footer li a,
.site-footer__areas li a,
.site-footer__bottom a,
.contact-detail a {
  display: inline-flex;
  align-items: center;
  min-width: 48px;
  padding-block: 14px;
}

/* -------------------------------------------------------------------------
   20. Blog
   ------------------------------------------------------------------------- */
/* Breadcrumb */
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 6px; }

/* Blog index cards */
.blog-index-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .blog-index-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-index-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.18s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.blog-card__media { display: block; background: var(--orange-pale); }
.blog-card__media svg { display: block; width: 100%; height: auto; }
.blog-card__body { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 24px; flex: 1; }
.blog-card__cat {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--orange);
}
.blog-card__title { font-size: 20px; line-height: 1.2; }
.blog-card__excerpt { color: var(--muted); font-size: 15px; margin: 0; }
.blog-card__more { margin-top: auto; padding-top: 8px; font-weight: 700; color: var(--orange); }

/* Blog post */
.post { padding-block: 32px 64px; }
.post__wrap { max-width: 780px; margin-inline: auto; }
.post__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin: 10px 0 24px; font-size: 14px; color: var(--muted); }
.post__cat {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--orange-dark); background: var(--orange-soft);
  padding: 4px 10px; border-radius: 999px;
}
.post__hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--orange-pale);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.post__hero svg { display: block; width: 100%; height: auto; }

/* Table of contents */
.post-toc {
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.post-toc h2 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 12px; }
.post-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 8px; }
.post-toc li { counter-increment: toc; }
.post-toc a { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-weight: 600; color: var(--text); }
.post-toc a::before { content: counter(toc) "."; color: var(--orange); font-weight: 800; }
.post-toc a:hover { color: var(--orange); }

/* Post body typography */
.post-body { font-size: 17px; line-height: 1.7; color: var(--text); }
.post-body h2 {
  font-size: clamp(24px, 4vw, 30px);
  margin: 40px 0 14px;
  scroll-margin-top: 120px;   /* offset for the sticky header on jump links */
}
.post-body h3 { font-size: 20px; margin: 28px 0 10px; }
.post-body p { margin: 0 0 18px; }
.post-body ul, .post-body ol { margin: 0 0 18px; padding-left: 0; display: grid; gap: 10px; }
.post-body ul li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.post-body ul li::before { content: ""; width: 8px; height: 8px; margin-top: 9px; border-radius: 50%; background: var(--orange); }
.post-body ol { counter-reset: step; }
.post-body ol li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; counter-increment: step; }
.post-body ol li::before { content: counter(step); font-weight: 800; color: var(--orange); }
.post-body a { color: var(--orange-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.post-body a:hover { color: var(--orange); }
.post-body figure { margin: 28px 0; }
.post-body img, .post-body svg { max-width: 100%; height: auto; border-radius: var(--radius-md); }

/* -------------------------------------------------------------------------
   21. Utilities
   ------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }

/* =========================================================================
   21. Homepage (mockup) additions
   Navy is introduced here as a secondary brand colour. All new components use
   new class names so interior pages are unaffected. Mobile-first as elsewhere.
   ========================================================================= */
:root {
  --navy: var(--deep);
  --navy-dark: var(--deep-dark);
  --navy-soft: var(--deep-soft);
  --charcoal: #0F172A;
  --slate-50: #F6F8FB;
  --green-tint: #F0FDF4;
  --green-border: #C6F0D3;
  --green-line: #DCFCE7;
}

/* --- Utility bar --- */
.utility-bar {
  background: var(--navy);
  color: #DCE6F1;
  font-size: 13px;
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
}
.utility-bar__list { display: none; gap: 24px; flex-wrap: wrap; }
.utility-bar__item,
.utility-bar__hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.utility-bar__item svg,
.utility-bar__hours svg { width: 15px; height: 15px; color: var(--orange); }
.utility-bar__meta { display: flex; align-items: center; gap: 18px; margin-inline: auto; }
.utility-bar__social { display: inline-flex; gap: 8px; }
.social-link {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.social-link svg { width: 14px; height: 14px; }
.social-link:hover { background: var(--orange); }

@media (min-width: 768px) {
  .utility-bar__list { display: flex; }
  .utility-bar__meta { margin-inline: 0; }
}

/* --- Logo lockup --- */
.logo { gap: 12px; }
.logo__mark { display: inline-flex; }
.logo__mark svg { width: 42px; height: 28px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
.logo__name span { color: var(--orange); }
.logo__sub {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-top: 3px;
}
.header-phone strong { color: var(--orange); }

/* --- Hero (home) --- */
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); }

.hero--home {
  position: relative;
  padding-block: 36px 40px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--home-bg) 100%);
  overflow: hidden;
}
.hero--home .hero__inner { position: relative; z-index: 1; display: grid; gap: 30px; }
.hero--home h1 { color: var(--navy); font-size: clamp(40px, 8vw, 46px); line-height: 1.04; letter-spacing: -0.02em; margin-bottom: 18px; }
.hero--home .lead { margin-bottom: 28px; max-width: 520px; }
.hero__figure img { width: 100%; height: auto; border-radius: 20px; border: 1px solid var(--home-card-bd); box-shadow: var(--home-card-shadow); }
.hero__accent { color: var(--orange); display: block; }
.hero__ticks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 26px;
}
.hero__ticks li { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); font-size: 15px; }
.hero__ticks svg { width: 20px; height: 20px; flex: none; color: var(--orange); }
.hero__aside { display: grid; gap: 20px; }

.quote-form {
  background: var(--navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 24px;
  display: grid;
  gap: 14px;
}
.quote-form__head { color: #fff; text-align: center; font-size: 20px; }
.quote-form .form__group label { color: #CBD8E6; }
.quote-form input,
.quote-form select {
  border-color: transparent;
  background: #fff;
}
.quote-form .btn { margin-top: 4px; }
.quote-form__foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 2px 0 0; font-size: 13px; color: #AEC0D4;
}
.quote-form__foot svg { width: 15px; height: 15px; }

@media (min-width: 1024px) {
  .hero--home { padding-block: 60px 64px; }
  .hero--home h1 { font-size: clamp(46px, 4.4vw, 58px); }
  .hero--home .hero__inner {
    grid-template-columns: minmax(0, 47%) minmax(0, 53%);
    align-items: center;
    gap: 52px;
  }
}

/* --- Trust strip (5 cols) --- */
.trust-section { padding-block: 32px; }
.trust__grid--5 { grid-template-columns: repeat(2, 1fr); }
.trust-stars { color: var(--orange); letter-spacing: 2px; font-size: 15px; }
.trust-item--reviews .trust-stars { display: block; margin: 2px 0; }

@media (min-width: 1024px) {
  .trust__grid--5 { grid-template-columns: repeat(5, 1fr); }
}

/* --- Skip size tiles --- */
.size-tiles { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.size-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.size-tile:hover { transform: translateY(-4px); border-color: var(--orange); }
.size-tile__media {
  display: grid; place-items: center;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
  overflow: hidden;
}
.size-tile__media svg { width: 76%; height: auto; }
.size-tile__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.size-tile h3 { margin-bottom: 6px; }
.size-tile p { font-size: 14px; color: var(--muted); margin: 0 0 16px; }
.size-tile .btn { margin-top: auto; min-height: 48px; }

@media (min-width: 768px) { .size-tiles { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 1024px) { .size-tiles { grid-template-columns: repeat(5, 1fr); } }

/* --- Prices --- */
.price-grid { display: grid; gap: 32px; }
.price-list { margin: 8px 0 24px; }
.price-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; }
.price-cta__or { color: var(--muted); font-weight: 700; }
.price-cta__or a { color: var(--orange); display: inline-flex; align-items: center; min-height: 48px; }

.affects-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  align-self: start;
}
.affects-box h3 { text-align: center; margin-bottom: 22px; }
.affects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.affects-item { display: grid; justify-items: center; gap: 10px; text-align: center; font-weight: 700; color: var(--ink); font-size: 14px; }
.affects-item__icon {
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.affects-item__icon svg { width: 26px; height: 26px; }
.affects-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 24px 0 0; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-weight: 700; color: var(--text); font-size: 15px;
}
.affects-note svg { width: 18px; height: 18px; color: var(--orange); flex: none; }

@media (min-width: 1024px) {
  .price-grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
}

/* --- Generic two-column blocks --- */
.two-col { display: grid; gap: 40px; }
.two-col > div > h2,
.two-col .waste-block > h2,
.two-col .howworks > h2 { margin-bottom: 22px; }

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
}

/* Waste duo + help note */
.waste-duo { display: grid; gap: 16px; }
.waste-help { margin-top: 16px; color: var(--muted); font-size: 14px; }
@media (min-width: 560px) { .waste-duo { grid-template-columns: 1fr 1fr; } }

/* How it works: force vertical layout even on desktop (it sits in a column) */
.process--navy .process-step__num { background: var(--navy); }
@media (min-width: 1024px) {
  .process--stack { grid-template-columns: 1fr; gap: 24px; }
  .process--stack .process-step { grid-template-columns: 56px 1fr; text-align: left; }
  .process--stack .process-step__num { margin-inline: 0; }
  .process--stack .process-step:not(:last-child)::before {
    left: 27px; top: 56px; bottom: -24px;
    right: auto; width: 0;
    border-left: 2px solid var(--border); border-top: 0;
  }
}

/* --- Areas list + domestic/commercial --- */
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  margin: 22px 0 24px;
}
.area-list a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 0; font-weight: 700; color: var(--text); font-size: 15px;
}
.area-list svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.area-list a:hover { color: var(--orange); }

.dc-grid { display: grid; gap: 20px; }
.dc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}
.dc-card__icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  color: var(--navy);
  margin-bottom: 16px;
}
.dc-card__icon svg { width: 28px; height: 28px; }
.dc-card h3 { color: var(--navy); margin-bottom: 8px; }
.dc-card p { color: var(--muted); font-size: 15px; }
.dc-card__list { display: grid; gap: 10px; margin: 16px 0 22px; }
.dc-card__list li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 15px; }
.dc-card__list svg { width: 18px; height: 18px; margin-top: 2px; color: var(--orange); }

/* --- Reviews --- */
.reviews-summary {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin: 4px 0 24px;
}
.reviews-summary__label { display: block; font-size: 22px; font-weight: 800; color: var(--ink); }
.trust-stars--lg { font-size: 22px; letter-spacing: 3px; }
.reviews-summary__meta { margin: 4px 0 0; font-size: 14px; color: var(--muted); font-weight: 700; }
.reviews-summary__google { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); }
.reviews-summary__google svg { width: 26px; height: 26px; }
.review-cards { display: grid; gap: 16px; }
.review-card__stars { letter-spacing: 2px; }
.review-card__quote { margin: 0 0 14px; font-style: italic; }
.review-card__author span { display: block; font-weight: 500; color: var(--muted); font-size: 14px; }

/* --- Book CTA (navy) --- */
.book-cta {
  background: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.book-cta .cta__pattern { color: #fff; }
.book-cta__body { position: relative; z-index: 1; }
.book-cta h2 { color: #fff; }
.book-cta p { color: rgba(255, 255, 255, 0.86); max-width: 560px; margin-inline: auto; }
.book-cta .cta__actions { justify-content: center; }
.book-cta__badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 28px; margin-top: 30px;
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.book-cta__badges li { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: #E6F0EA; }
.book-cta__badges svg { width: 18px; height: 18px; color: var(--accent); }

@media (min-width: 768px) { .book-cta { padding: 56px 48px; } }

/* --- Footer (home: 5 columns + contact/socials) --- */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social .social-link { width: 48px; height: 48px; }
.footer-social .social-link svg { width: 18px; height: 18px; }
.footer-contact li { display: block; }
.footer-contact a,
.footer-contact__static {
  display: inline-flex; align-items: flex-start; gap: 10px;
  color: #B9B9B9; font-size: 15px;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 12px; }
.footer-contact__static { padding-block: 8px; }

@media (min-width: 1024px) {
  .site-footer__grid--home { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; }
}

/* --- Skip tiles: two rows of four (with bin-bag counts) --- */
.size-tiles--8 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
.size-tiles--8 .size-tile { text-align: center; padding: 16px; }
.size-tile__head { margin-bottom: 12px; }
.size-tile__head h3 { font-size: 19px; }
.size-tile__bags { display: block; margin-top: 4px; font-size: 13px; font-weight: 700; color: var(--muted); }
.size-tiles--8 .size-tile__media { aspect-ratio: 4 / 3; background: #fff; margin-bottom: 12px; }
.size-tiles--8 .size-tile p { font-size: 14px; }
@media (min-width: 640px) { .size-tiles--8 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .size-tiles--8 { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* --- Skip dimensions & capacity guide --- */
.dim-guide {
  display: grid;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dim-guide__intro { background: var(--slate-50); padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.dim-guide__intro h2 { font-size: clamp(26px, 2.4vw, 30px); line-height: 1.12; margin: 0; }
.dim-guide__intro p { color: var(--text); font-size: 14px; line-height: 1.6; margin: 0; }
.dim-guide__diagram { width: 190px; height: auto; margin-top: 4px; }
.dim-guide__tablewrap { overflow-x: auto; }
.dim-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 560px; }
.dim-table thead th {
  background: var(--charcoal); color: #fff;
  text-align: left; vertical-align: top;
  padding: 14px 16px; font-size: 13px; font-weight: 700; line-height: 1.25;
}
.dim-table thead th span { display: block; font-weight: 500; font-size: 11px; color: #B8C2D0; margin-top: 1px; }
.dim-table tbody th,
.dim-table tbody td { padding: 10px 16px; border-top: 1px solid var(--border); }
.dim-table tbody th { text-align: left; font-weight: 700; color: var(--ink); white-space: nowrap; }
.dim-table tbody td { color: var(--text); white-space: nowrap; }
.dim-table tbody td:last-child { white-space: normal; }

@media (min-width: 900px) {
  .dim-guide { grid-template-columns: 320px 1fr; }
}

/* --- Areas: map + list side by side --- */
.areas__inner { display: grid; gap: 22px; margin-bottom: 24px; }
.areas__inner .area-map,
.areas__inner .area-list { margin: 0; }
@media (min-width: 768px) {
  .areas__inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 26px; }
}

/* --- Domestic & commercial: heading + cards side by side --- */
.dc-block__title { margin-bottom: 22px; }
@media (min-width: 768px) { .dc-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================================
   22. HTML-matched section redesigns (prices / waste / how-it-works)
   ========================================================================= */

/* Prices: soft-grey panel wrapper */
.price-panel {
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.price-panel h2 { font-size: clamp(26px, 2.6vw, 32px); line-height: 1.15; }
@media (min-width: 768px) { .price-panel { padding: 36px; } }

/* Green check list (prices) */
.check-list { display: grid; gap: 12px; margin: 6px 0 24px; }
.check-list li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: center; font-size: 15px; color: var(--text); }
.check-list li svg { width: 18px; height: 18px; color: var(--success); }

/* What affects prices: slate circles instead of orange outline */
.affects-item__icon {
  background: var(--slate-50);
  border: 1px solid var(--border);
  color: var(--orange);
}

/* Waste: single green-tinted panel with two columns */
.waste-green {
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.waste-green > h2 { text-align: center; margin-bottom: 22px; font-size: clamp(22px, 3vw, 26px); }
.waste-cols { display: grid; gap: 22px; flex: 1; }
.waste-col__head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 15px; font-weight: 700; }
.waste-col__head svg { width: 18px; height: 18px; flex: none; }
.waste-col__head--yes { color: var(--success); }
.waste-col__head--no { color: var(--danger); }
.waste-items { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 14px; }
.waste-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--text); }
.waste-item svg { width: 13px; height: 13px; flex: none; }
.waste-item--yes svg { color: var(--success); }
.waste-item--no svg { color: var(--danger); }
.waste-green__note { margin: 22px 0 0; padding-top: 16px; border-top: 1px solid var(--green-line); font-size: 13px; color: var(--muted); text-align: center; }

@media (min-width: 620px) {
  .waste-cols { grid-template-columns: 1fr 1fr; }
  .waste-col--divider { border-left: 1px solid var(--green-line); padding-left: 22px; }
}

/* How it works: white card with horizontal numbered steps */
.howworks-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.howworks-card > h2 { text-align: center; margin-bottom: 26px; font-size: clamp(22px, 3vw, 26px); }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 14px; flex: 1; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.step__num {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: 17px;
}
.step__icon {
  width: 62px; height: 62px; display: grid; place-items: center;
  border-radius: 50%; background: var(--slate-50); border: 1px solid var(--border); color: var(--orange);
}
.step__icon svg { width: 26px; height: 26px; }
.step__title { font-size: 15px; font-weight: 700; color: var(--ink); }
.step__desc { font-size: 12.5px; line-height: 1.5; color: var(--muted); }

@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================================
   23. Page-hero banner (photographic-style top band for all subpages)
   Placeholder = brand gradient. To add a photo to a page, set on that page's
   section: style="background-image: linear-gradient(rgba(15,23,42,.72),
   rgba(15,23,42,.72)), url('/assets/heroes/NAME.webp'); background-size:cover;
   background-position:center;"
   ========================================================================= */
.page-hero--banner {
  position: relative;
  background-color: var(--navy);
  background-image: linear-gradient(rgba(12,29,54,.85), rgba(9,20,40,.9)), url("/assets/skip-hire-doncaster-hero.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-block: 44px 42px;
  border-bottom: 0;
}
@media (min-width: 1024px) { .page-hero--banner { padding-block: 60px 54px; } }
.page-hero--banner h1 { color: #fff; margin-bottom: 16px; }
.page-hero--banner .lead { color: rgba(255,255,255,.88); max-width: 640px; }
.page-hero--banner .eyebrow { color: var(--orange); }
.page-hero--banner .btn--secondary { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.page-hero--banner .btn--secondary:hover { background: #fff; color: var(--ink); }

.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.crumb a { color: var(--orange); }
.crumb a:hover { text-decoration: underline; }
.crumb span { color: rgba(255,255,255,.55); }

.page-hero__feats { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 22px; }
.page-hero__feats li { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: #fff; }
.page-hero__feats svg { width: 20px; height: 20px; color: var(--orange); flex: none; }

/* Blog article banner: show post meta (category / date / read time) on the dark band */
.page-hero--banner .post__meta { margin-top: 4px; color: rgba(255,255,255,.75); }
.page-hero--banner .post__meta time,
.page-hero--banner .post__meta > span:not(.post__cat) { color: rgba(255,255,255,.75); }

/* =========================================================================
   24. Homepage — "blocks on soft grey" redesign (body.home only)
   The page sits on a soft grey; every major section is a white rounded card
   that floats on it, instead of flat white sections with large empty padding.
   ========================================================================= */
:root {
  --home-bg: #EDF1F7;
  --home-card-bd: #E4E9F1;
  --home-card-shadow: 0 1px 2px rgba(16,24,40,.04), 0 10px 30px rgba(16,24,40,.05);
}

body.home main { background: var(--home-bg); }

/* Tighten vertical rhythm: small padding => soft grey gutters between cards */
body.home main .section { padding-block: 16px; }
body.home .trust-section { padding-top: 30px; }
body.home .book-section { padding-bottom: 34px; }
body.home .section--alt { background: transparent; }
@media (min-width: 1024px) {
  body.home main .section { padding-block: 20px; }
  body.home .two-col { gap: 26px; }
  body.home .price-grid { gap: 40px; }
}

/* Canonical white card, applied to every framed section */
body.home .trust__card,
body.home .dim-guide,
body.home .price-panel,
body.home .howworks-card,
body.home .reviews-panel,
body.home .faq-panel,
body.home .home-card {
  background: #fff;
  border: 1px solid var(--home-card-bd);
  border-radius: 22px;
  box-shadow: var(--home-card-shadow);
}

/* Reviews + FAQ had no frame before — give them card padding */
body.home .reviews-panel,
body.home .faq-panel { padding: 24px; }
@media (min-width: 768px) {
  body.home .reviews-panel,
  body.home .faq-panel { padding: 32px; }
}

/* Prices: white card; the "What Affects" box becomes a soft-grey sub-panel */
body.home .affects-box { background: var(--slate-50); box-shadow: none; }

/* Sub-cards inside a white parent sit on slate so they still read as blocks */
body.home .review-card {
  margin: 0;
  background: var(--slate-50);
  border: 1px solid var(--home-card-bd);
  border-radius: 14px;
  padding: 18px;
}

/* Areas: map + list + button wrapped in a white card under the heading */
body.home .areas-card { padding: 24px; }
@media (min-width: 768px) { body.home .areas-card { padding: 30px; } }
body.home .areas-card .area-map svg { border-radius: 14px; }

/* Section headings that now sit on grey read better with a touch more weight */
body.home .section__head--center { margin-bottom: 26px; }

/* -------------------------------------------------------------------------
   24b. Homepage refinement pass — modern heading scale + cleaner CTA
   ------------------------------------------------------------------------- */
/* The 52px section headings read as dated/rough. Bring them to a modern,
   tighter scale across the homepage (hero h1 is untouched). */
body.home main h2 {
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.015em;
}
body.home .section__head { margin-bottom: 22px; }
body.home .section__head .lead,
body.home .dc-block__title + .dc-grid { margin-top: 0; }

/* Book CTA: drop the "roof" chevron, use a clean navy gradient with a soft
   orange glow so it reads as a premium band, not a flat blue box. */
body.home .book-cta {
  background:
    radial-gradient(115% 130% at 88% 8%, rgba(249,103,22,.24) 0%, rgba(249,103,22,0) 46%),
    radial-gradient(90% 120% at 6% 100%, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #12694A 0%, #0F4A36 55%, #0F2A22 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
}
body.home .book-cta h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.1; }
body.home .book-cta p { font-size: 16px; margin-top: 12px; }
@media (min-width: 768px) { body.home .book-cta { padding: 60px 56px; } }

/* -------------------------------------------------------------------------
   24c. Areas + Domestic/Commercial row — titles inside, equal-height cards
   ------------------------------------------------------------------------- */
body.home .two-col--areas { align-items: stretch; }

/* Left: areas is one white card with the heading inside; button pinned bottom */
body.home .areas-card { display: flex; flex-direction: column; }
body.home .areas-card > h2 { margin-bottom: 20px; }
body.home .areas-card .areas__inner { margin-bottom: 20px; }
body.home .areas-card > .btn { margin-top: auto; align-self: flex-start; }

/* Right: domestic/commercial is now one white card with the heading inside */
body.home .dc-block { display: flex; flex-direction: column; padding: 24px; }
@media (min-width: 768px) { body.home .dc-block { padding: 30px; } }
body.home .dc-block__title { margin-bottom: 20px; }
body.home .dc-block .dc-grid { flex: 1; align-items: stretch; }

/* The two service cards sit on slate inside the white parent, and their
   "Get a Quote" buttons align because each card is a flex column */
body.home .dc-card {
  background: var(--slate-50);
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
body.home .dc-card__list { margin-bottom: 22px; }
body.home .dc-card > .btn { margin-top: auto; }

/* -------------------------------------------------------------------------
   24d. Two-tone accent headings (orange key phrase + underline accent)
   Modern heading style: a key phrase in brand orange, optionally underlined.
   ------------------------------------------------------------------------- */
.hl { color: var(--orange); }
.hl--u {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

/* -------------------------------------------------------------------------
   24e. Areas list — tighten row spacing so the card isn't over-tall
   The town links were over-padded (13px each), stretching the areas card and,
   via equal-height, the domestic/commercial card too. Compact + top-align.
   ------------------------------------------------------------------------- */
body.home .areas__inner { align-items: start; }
body.home .area-list { gap: 2px 20px; margin: 16px 0 18px; }
body.home .area-list a { padding: 7px 0; }

/* 24f: balance the areas/DC row — fill the areas card, trim the service cards */
body.home .areas-card .areas__inner { flex: 1; align-items: stretch; gap: 24px; }
body.home .area-map { background: var(--orange-soft); border-radius: 16px; display: grid; place-items: center; padding: 12px; min-height: 200px; }
body.home .area-map svg { width: 100%; height: 100%; }
body.home .area-list { align-self: center; }
body.home .dc-card { padding: 22px; }
body.home .dc-card__icon { margin-bottom: 12px; }
body.home .dc-card__list { gap: 9px; margin: 14px 0 18px; }

/* -------------------------------------------------------------------------
   Skip-sizes page: real photos in the size-card media, linked to detail pages
   ------------------------------------------------------------------------- */
.size-card__media { overflow: hidden; }
a.size-card__media { padding: 0; display: block; }
.size-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
a.size-card__media:hover img { transform: scale(1.04); }
.size-card__title a { color: inherit; }
.size-card__title a:hover { color: var(--orange); }

/* -------------------------------------------------------------------------
   25. Refinements: heading/lead spacing, map embed, footer, mobile CTA
   ------------------------------------------------------------------------- */
/* Supporting text: a normal gap under headings, and matched to body size */
body.home .section__head h2,
body.home .dim-guide__intro h2 { margin-bottom: 12px; }
body.home .lead { font-size: 16px; line-height: 1.6; }

/* Google Map embed replaces the SVG map panel */
body.home .area-map {
  padding: 0;
  background: none;
  overflow: hidden;
  border-radius: 16px;
  display: block;
  border: 1px solid var(--home-card-bd);
}
body.home .area-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* Footer link columns: tighter, modern spacing (were ~38px apart) */
.site-footer nav ul { gap: 2px; }
.site-footer nav li a { padding-block: 6px; }

/* Sticky mobile contact bar (home) */
.mobile-cta { display: none; }
@media (max-width: 767px) {
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(16, 24, 40, 0.10);
  }
  .mobile-cta__btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 52px; border-radius: 12px;
    font-weight: 700; font-size: 16px;
  }
  .mobile-cta__btn svg { width: 19px; height: 19px; flex: none; }
  .mobile-cta__btn--call { background: var(--navy); color: #fff; }
  .mobile-cta__btn--quote { background: var(--orange); color: #fff; }
  body.home { padding-bottom: 78px; }
}

/* Homepage skip tiles: short "ideal for" list between image and button */
.size-tile__uses { display: grid; gap: 5px; margin: 2px 0 14px; text-align: left; }
.size-tile__uses li { display: grid; grid-template-columns: 15px 1fr; gap: 7px; align-items: start; font-size: 12.5px; line-height: 1.35; color: var(--text); }
.size-tile__uses svg { width: 13px; height: 13px; color: var(--orange); margin-top: 3px; flex: none; }

/* Skip-sizes page: two-column card grid + "need help" card */
@media (min-width: 1024px) {
  .size-list { grid-template-columns: 1fr 1fr; gap: 24px; }
  .size-list .size-card { grid-template-columns: 200px 1fr; gap: 20px; padding: 20px; align-items: start; }
  .size-list .size-card--help { grid-template-columns: 1fr; }
}
.size-card--help { background: var(--navy); color: #fff; }
.size-card--help .size-card__title,
.size-card--help .size-card__title a { color: #fff; }
.size-card--help p { color: rgba(255,255,255,.85); }
.size-card--help .size-card__label { color: rgba(255,255,255,.7); }
.size-card--help .size-card__bestfor li { color: #fff; }

/* -------------------------------------------------------------------------
   26. Contact page
   ------------------------------------------------------------------------- */
.contact-cards { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 24px; }
.contact-card__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--orange); color: #fff; margin-bottom: 14px; }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__title { font-size: 17px; margin-bottom: 8px; }
.contact-card__link { color: var(--orange); font-weight: 700; display: inline-block; word-break: break-word; }
.contact-card p { font-size: 14px; color: var(--muted); margin: 4px 0 0; }

.contact-layout { display: grid; gap: 26px; align-items: start; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1.35fr 1fr; } }
.contact-form-card { padding: 28px; }
.contact-form-card__intro { color: var(--muted); font-size: 15px; margin: 6px 0 20px; }
.contact-aside { display: grid; gap: 20px; }
.contact-aside .card { padding: 26px; }
.form__consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; font-size: 13px; color: var(--muted); margin: 4px 0; line-height: 1.5; }
.form__consent input { margin-top: 3px; }
.form__consent a { color: var(--orange); font-weight: 700; }
.form__reassure { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin: 12px 0 0; }
.form__reassure svg { width: 15px; height: 15px; color: var(--success); flex: none; }

.help-list { display: grid; gap: 16px; margin-top: 8px; }
.help-item { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: start; }
.help-item__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--orange-soft); color: var(--orange); }
.help-item__icon svg { width: 22px; height: 22px; }
.help-item h3 { font-size: 15px; margin-bottom: 3px; }
.help-item p { font-size: 14px; color: var(--muted); margin: 0; }

.contact-map-row { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .contact-map-row { grid-template-columns: 1fr 1fr; } }
.contact-map { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); min-height: 300px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.contact-cta { text-align: left; }
@media (min-width: 768px) { .contact-cta .book-cta__body { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; } .contact-cta h2 { margin: 0; } .contact-cta p { margin: 6px 0 0; } .contact-cta .cta__actions { margin: 0; } }

/* -------------------------------------------------------------------------
   27. About page
   ------------------------------------------------------------------------- */
.about-intro { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .about-intro { grid-template-columns: 1fr 1fr; gap: 44px; } }
.about-intro__media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.about-intro__text h2 { margin-bottom: 14px; }
.about-intro__text p { margin-bottom: 16px; }
.about-stats { display: grid; gap: 16px; margin-top: 6px; }
.about-stat { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; }
.about-stat__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--orange-soft); color: var(--orange); }
.about-stat__icon svg { width: 24px; height: 24px; }
.about-stat h3 { font-size: 15px; margin-bottom: 2px; }
.about-stat p { font-size: 14px; color: var(--muted); margin: 0; }

.why-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { padding: 28px; }
.why-card__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--orange-soft); color: var(--orange); margin-bottom: 16px; }
.why-card__icon svg { width: 26px; height: 26px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 15px; }

.about-trust { background: var(--navy); border-radius: var(--radius-lg); padding: 24px; display: grid; gap: 20px; }
@media (min-width: 768px) { .about-trust { grid-template-columns: repeat(4, 1fr); padding: 28px 32px; } }
.about-trust__item { display: flex; align-items: center; gap: 12px; color: #fff; }
.about-trust__item svg { width: 30px; height: 30px; color: var(--orange); flex: none; }
.about-trust__item strong { display: block; font-size: 15px; }
.about-trust__item span { font-size: 13px; color: rgba(255,255,255,.7); }
.commitment-card { padding: 28px; }
.commitment-card h2 { margin-bottom: 12px; }

/* =========================================================================
   Homepage reflow (Doncaster Skip Hire)
   The home page no longer pairs How It Works with Waste, or Areas with the
   Domestic/Commercial cards, in side-by-side .two-col rows. Each block now
   runs full width in its own section, in a different order. These rules let
   the existing card components breathe at that wider measure.
   ========================================================================= */

/* Squared corners throughout, matching the tightened radius tokens. */
body.home .reviews-panel,
body.home .faq-panel,
body.home .home-card,
body.home .areas-card { border-radius: var(--radius-lg); }
body.home .areas-card .area-map svg,
body.home .areas-card .area-map iframe { border-radius: var(--radius-md); }

/* Section headings: the accent rule sits under the text and centres with it. */
.section__head--center > h2 { display: inline-block; }
.section__head--center { text-align: center; }

/* How it works, full width: four steps across on desktop rather than a 2x2. */
.howworks-card--wide { padding: 28px 24px; }
@media (min-width: 900px) {
  .howworks-card--wide .steps { grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
}
.howworks-card--wide .step__desc { max-width: 30ch; }

/* Waste and areas blocks now sit directly in the container. */
.section .waste-green,
.section > .container > .areas-card { width: 100%; }
.waste-green > p { max-width: 70ch; }

/* FAQ, full width: two columns of questions on wider screens so the list
   does not become one very long single-column scroll. */
.faq-panel--wide { padding: 28px 24px; }
@media (min-width: 900px) {
  .faq-panel--wide .faq { display: block; max-width: none; columns: 2; column-gap: 32px; }
  .faq-panel--wide .faq-item { break-inside: avoid; display: inline-block; width: 100%; }
}

/* The area list gains a final "see all" row; keep it visually distinct. */
.area-list li:last-child a { font-weight: 600; color: var(--brand); }

/* Inline telephone link inside body copy. */
.tel-inline { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.tel-inline:hover { color: var(--brand-dark); }

/* Spec table on the individual skip size pages. */
.spec-table { width: 100%; border-collapse: collapse; margin: 18px 0 22px; font-size: 15px; }
.spec-table th, .spec-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.spec-table th { font-weight: 600; color: var(--muted); width: 46%; }
.spec-table td { font-weight: 600; color: var(--ink); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
