/* ==========================================================================
   Affordable Skippy Bins — global stylesheet
   ========================================================================== */

:root {
  --green: #008d00;
  --green-600: #007400;
  --green-900: #063d0c;
  --ink: #0b1a0e;
  --ink-2: #13261a;
  --yellow: #ffc700;
  --yellow-600: #e8b400;
  --white: #ffffff;
  --bg-soft: #f4f6ef;
  --text: #1a231d;
  --muted: #56615a;
  --line: #e2e6dc;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px -18px rgba(11, 26, 14, .35);
  --shadow-sm: 0 6px 18px -8px rgba(11, 26, 14, .25);
  --container: 1240px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-600); }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--yellow); color: var(--ink); padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 12px; }

svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
svg .fill { fill: currentColor; stroke: none; }

/* Hazard stripe used as a brand accent */
.hazard {
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 16px, var(--ink) 16px 32px);
}

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  font: 700 15px/1.2 var(--font); letter-spacing: .01em; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn--yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 20px -10px rgba(255, 199, 0, .9); }
.btn--yellow:hover { background: var(--yellow-600); color: var(--ink); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-600); color: var(--white); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .45); color: var(--white); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .1); color: var(--white); }
.btn--outline { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn--outline:hover { border-color: var(--green); color: var(--green); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--green); }
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* Section scaffolding ---------------------------------------------------- */
.section { padding: 96px 0; }
.section-title { font-size: clamp(1.75rem, 3.2vw, 2.6rem); text-transform: uppercase; }
.section-title--light { color: var(--white); }
.section-head { max-width: 860px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-kicker { font-weight: 700; letter-spacing: .08em; color: var(--green) !important; font-size: 14px !important; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green);
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 2px; background: var(--yellow); }
.eyebrow--light { color: var(--yellow); }
.prose p { color: var(--muted); }

/* Top bar ---------------------------------------------------------------- */
.topbar { background: var(--ink); color: rgba(255, 255, 255, .8); font-size: 14px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 16px; }
.topbar__social, .topbar__contact { display: flex; align-items: center; gap: 12px; }
.topbar a { color: var(--white); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--yellow); }
.topbar svg { font-size: 16px; }
.topbar__phone { font-weight: 800; }
.topbar__phone svg { color: var(--yellow); }

/* Header ----------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .35); }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 84px; }
.site-logo img { width: 190px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav ul a {
  display: block; padding: 10px 14px; border-radius: 999px;
  font-weight: 700; font-size: 15px; color: var(--ink);
}
.main-nav ul a:hover { background: var(--bg-soft); color: var(--green); }
.main-nav ul a[aria-current="page"] { color: var(--green); background: rgba(0, 141, 0, .08); }
.header-call, .nav-toggle { display: none; }

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; color: var(--white); background: var(--ink); isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 20% center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 26, 14, .95) 0%, rgba(11, 26, 14, .85) 45%, rgba(11, 26, 14, .55) 100%),
    radial-gradient(circle at 15% 90%, rgba(0, 141, 0, .45), transparent 55%);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 56px; align-items: center; padding-top: 72px; padding-bottom: 72px; }
.hero__title {
  font-size: clamp(2.8rem, 6.4vw, 5.4rem); line-height: .98; text-transform: uppercase;
  color: var(--white); letter-spacing: -.02em; margin-bottom: 18px;
}
.hero__title span { display: block; color: var(--yellow); }
.hero__subtitle { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; color: rgba(255, 255, 255, .85); margin-bottom: 28px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.area-chips a, .area-chips span {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .22);
  color: var(--white); font-weight: 700; font-size: 14px; backdrop-filter: blur(4px);
}
.area-chips a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.area-chips svg { color: var(--yellow); }
.area-chips a:hover svg { color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.booking-card {
  background: var(--white); border-radius: 22px; padding: 8px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
  border-top: 6px solid var(--yellow);
}
.booking-card iframe { display: block; width: 100%; min-height: 560px; border: 0; border-radius: 16px; }

/* About ------------------------------------------------------------------ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about__media { position: relative; }
.about__blob {
  position: absolute; inset: 8% 6% 0 10%; border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  background: var(--yellow); z-index: -1; opacity: .9;
}
.about__media { isolation: isolate; }
.about__media img { width: 100%; filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .2)); }

/* Steps ------------------------------------------------------------------ */
.steps { background: var(--bg-soft); }
.steps__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num { position: absolute; top: 18px; right: 22px; font-size: 44px; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--line); }
.step__icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 20px; background: rgba(0, 141, 0, .08); margin-bottom: 22px; }
.step__icon img { width: 40px; height: 40px; }
.step__label { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--green); margin-bottom: 6px; }
.step__text { font-size: 19px; font-weight: 800; color: var(--ink); line-height: 1.3; margin: 0; }

/* Why choose us --------------------------------------------------------- */
.why { background: var(--ink); color: rgba(255, 255, 255, .78); position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; width: 600px; height: 600px; right: -200px; top: -250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 141, 0, .35), transparent 65%);
}
.why .container { position: relative; }
.why__head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 52px; }
.why__head p { margin: 0; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--ink-2); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius); padding: 30px;
  transition: border-color .2s ease, transform .2s ease;
}
.why-card:hover { border-color: rgba(255, 199, 0, .6); transform: translateY(-4px); }
.why-card__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 16px; background: var(--yellow); margin-bottom: 22px; }
.why-card__icon img { width: 40px; height: 40px; mix-blend-mode: multiply; }
.why-card h3 { color: var(--white); font-size: 20px; }
.why-card p { font-size: 15px; margin: 0; }

/* Waste types ----------------------------------------------------------- */
.waste__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.waste-card {
  display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease;
}
.waste-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.waste-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.waste-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.waste-card:hover .waste-card__media img { transform: scale(1.05); }
.waste-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.waste-card__body h3 { font-size: 21px; }
.waste-card__body p { color: var(--muted); font-size: 15px; flex: 1; }

.callback {
  background: var(--green); color: var(--white); border-radius: var(--radius); padding: 34px 30px;
  position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center;
}
.callback::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, var(--ink) 12px 24px);
}
.callback__title { color: var(--white); font-size: 26px; text-transform: none; margin-bottom: 4px; }
.callback__sub { color: var(--yellow); font-weight: 700; margin-bottom: 20px; }

/* Forms ------------------------------------------------------------------ */
.lead-form .field { margin-bottom: 12px; }
.lead-form input {
  width: 100%; padding: 14px 18px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .96); font: 500 15px var(--font); color: var(--ink);
}
.lead-form input:focus { outline: 3px solid var(--yellow); outline-offset: 0; }
.lead-form .btn--green { background: var(--ink); margin-top: 4px; }
.lead-form .btn--green:hover { background: #000; }
.lead-form .hp { position: absolute; left: -9999px; }
.form-status { margin: 12px 0 0; font-weight: 700; font-size: 14px; min-height: 1em; }
.form-status.is-ok { color: var(--yellow); }
.form-status.is-error { color: #ffd2d2; }
.form-legal { font-size: 11px; line-height: 1.5; opacity: .75; margin: 10px 0 0; }
.form-legal a { color: inherit; text-decoration: underline; }
.grecaptcha-badge { visibility: hidden; }

/* Reviews ---------------------------------------------------------------- */
.reviews { background: var(--bg-soft); }
.reviews__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 40px; }
.reviews__head .section-title { margin: 0; }
.reviews__summary { display: flex; align-items: center; gap: 14px; background: var(--white); padding: 12px 14px 12px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.reviews__summary strong { display: block; font-size: 14px; line-height: 1.3; color: var(--ink); }
.reviews__summary span { font-size: 13px; color: var(--muted); }
.g-badge { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); font-weight: 800; font-size: 20px; color: #4285f4; flex: none; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { margin: 0; background: var(--white); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.stars svg { width: 20px; height: 20px; fill: var(--line); stroke: none; }
.stars svg.on { fill: var(--yellow); }
.review-card blockquote { margin: 0 0 22px; font-size: 17px; font-weight: 600; color: var(--ink); flex: 1; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; }
.review-card figcaption strong { display: block; line-height: 1.2; }
.review-card figcaption small { color: var(--muted); }
.review-card__avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 800; }

/* FAQ -------------------------------------------------------------------- */
.faq__grid { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__contact { margin-top: 28px; padding: 26px; border-radius: var(--radius); background: var(--bg-soft); }
.faq__contact p { font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.faq__contact a { display: block; font-weight: 600; word-break: break-word; }
.faq__phone { font-size: 26px; font-weight: 800 !important; color: var(--green); margin-bottom: 4px; }
.accordion { display: grid; gap: 12px; }
.accordion__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); transition: border-color .2s ease, box-shadow .2s ease; }
.accordion__item[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.accordion__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-weight: 800; font-size: 17px; color: var(--ink);
}
.accordion__item summary::first-letter { text-transform: uppercase; }
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__icon { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-soft); }
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--ink);
  transform: translate(-50%, -50%); transition: transform .2s ease;
}
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__item[open] .accordion__icon { background: var(--yellow); }
.accordion__item[open] .accordion__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.accordion__body { padding: 0 24px 20px; color: var(--muted); }
.accordion__body p:last-child { margin-bottom: 0; }

/* CTA -------------------------------------------------------------------- */
.cta { padding-top: 0; }
.cta__panel {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  background: linear-gradient(120deg, var(--green-900) 0%, var(--green) 100%);
  color: rgba(255, 255, 255, .85); border-radius: 28px; padding: 64px; position: relative; overflow: hidden;
}
.cta__panel::before {
  content: ""; position: absolute; width: 420px; height: 420px; right: -120px; bottom: -180px; border-radius: 50%;
  background: var(--yellow); opacity: .95;
}
.cta__copy, .cta__media { position: relative; }
.cta__sub { color: var(--yellow); font-size: 20px; }
.cta__media img { width: 100%; filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .3)); }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .72); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 56px; padding-top: 72px; padding-bottom: 56px; }
.site-footer__logo { display: inline-block; background: var(--white); padding: 12px 18px; border-radius: 14px; margin-bottom: 22px; }
.site-footer__logo img { width: 170px; }
.site-footer a { color: rgba(255, 255, 255, .85); }
.site-footer a:hover { color: var(--yellow); }
.site-footer p a { color: var(--yellow); }
.site-footer__heading { display: block; color: var(--white); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.site-footer__social .site-footer__heading { margin: 24px 0 12px; }
.social-row { display: flex; gap: 10px; }
.social-row a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .08); font-size: 18px; }
.social-row a:hover { background: var(--yellow); color: var(--ink); }
.site-footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.site-footer__contact { display: grid; gap: 14px; margin-bottom: 26px; }
.site-footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.site-footer__contact svg { flex: none; font-size: 20px; color: var(--yellow); margin-top: 3px; }
.site-footer__contact a { word-break: break-word; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); font-size: 14px; }
.site-footer__bottom .container { display: flex; justify-content: space-between; gap: 16px; padding-top: 20px; padding-bottom: 20px; }
.site-footer__bottom p { margin: 0; }

/* ==========================================================================
   Inner pages — components produced from the migrated page content
   ========================================================================== */

/* Inner hero */
.hero--inner .hero__grid { padding-top: 64px; padding-bottom: 64px; align-items: start; }
.hero--inner .hero__copy { padding-top: 12px; }
.hero--inner .hero__title { font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.05; }
.hero__grid--single { grid-template-columns: minmax(0, 860px); }
.hero__intro { color: rgba(255, 255, 255, .82); font-size: 17px; margin-bottom: 22px; }
.hero__intro p { margin-bottom: .8em; }
.hero__intro a, .hero__intro strong { color: var(--white); }
.hero__intro a { text-decoration: underline; text-decoration-color: var(--yellow); text-underline-offset: 3px; }
.hero__kicker, .hero--inner .hero__subtitle {
  display: inline-block; margin: 6px 0 18px; font-size: 15px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--yellow);
}
.hero__media img { width: 100%; border-radius: var(--radius); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6); }
.hero__media .media { margin: 0; }
.hero .chip-list, .hero .area-chips { margin-bottom: 26px; }

/* Content flow */
.flow > * { margin-top: 0; margin-bottom: 0; }
.flow > * + * { margin-top: 24px; }
.flow > h2 + *, .flow > h3 + *, .cell > h2 + *, .cell > h3 + *, .panel > h3 + *, .panel > h2 + * { margin-top: 14px; }
.flow > h2, .cell > h2, .col > h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.flow > h2::after, .cell > h2::after, .col > h2::after {
  content: ""; display: block; width: 56px; height: 4px; border-radius: 2px; background: var(--yellow); margin-top: 16px;
}
.flow h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.flow h4 { font-size: 1.15rem; }
.flow > .grid, .flow > .row, .flow > .features, .flow > .panel { margin-top: 36px; }
.cell, .col { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.cell > *, .col > *, .panel > * { margin-top: 0; margin-bottom: 0; }
.kicker { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin: 0; }

.rte { color: var(--muted); font-size: 16.5px; }
.rte > :last-child { margin-bottom: 0; }
.rte a { text-decoration: underline; text-decoration-color: rgba(0, 141, 0, .35); text-underline-offset: 3px; font-weight: 600; }
.rte strong { color: var(--text); }
.rte h2, .rte h3, .rte h4 { margin: 1.4em 0 .5em; }
.rte ul, .rte ol { margin: 0 0 1em; padding-left: 0; display: grid; gap: 8px; }
.rte ul li { position: relative; padding-left: 26px; }
.rte ul li::before { content: ""; position: absolute; left: 4px; top: .65em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.rte ol { counter-reset: n; }
.rte ol li { counter-increment: n; position: relative; padding-left: 34px; }
.rte ol li::before { content: counter(n); position: absolute; left: 0; top: .15em; width: 24px; height: 24px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 13px; font-weight: 800; display: grid; place-items: center; }
.rte img { border-radius: var(--radius-sm); margin: 1em 0; }

/* Grids and columns */
.grid { display: grid; gap: 32px; align-items: start; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 56px; align-items: center; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid + .grid { margin-top: 40px; }
.row { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.row > .col { flex: 1 1 0; }
.row > .col-20 { flex: 20 1 0; }
.row > .col-25 { flex: 25 1 0; }
.row > .col-33 { flex: 33 1 0; }
.row > .col-40 { flex: 40 1 0; }
.row > .col-50 { flex: 50 1 0; }
.row > .col-60 { flex: 60 1 0; }
.row > .col-66 { flex: 66 1 0; }
.row > .col-75 { flex: 75 1 0; }
.row > .col-80 { flex: 80 1 0; }

.panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.section--soft .panel { border-color: transparent; }
.grid--2 > .panel { align-self: stretch; }
.panel .media img { border-radius: var(--radius-sm); }
.panel:has(> .media:only-child) { padding: 12px; background: var(--white); }
.panel:has(> .callback:only-child) { padding: 0; border: 0; background: none; box-shadow: none; }
.col:has(> .callback), .col:has(> .panel > .callback) { position: sticky; top: 110px; align-self: flex-start; }
.flow > h3:first-child { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }

/* Images */
.media { margin: 0; }
.media img { width: 100%; border-radius: var(--radius); }
.media figcaption { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* Lists */
.check-list, .x-list { display: grid; gap: 10px; }
.check-list li, .x-list li { position: relative; padding-left: 36px; font-weight: 600; color: var(--text); line-height: 1.5; }
.check-list li::before, .x-list li::before {
  content: ""; position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%;
  background-repeat: no-repeat; background-position: center; background-size: 14px;
}
.check-list li::before { background-color: rgba(0, 141, 0, .12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23008d00' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E"); }
.x-list li::before { background-color: rgba(198, 40, 40, .1); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c62828' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E"); }
.check-list a, .x-list a { font-weight: 700; }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-list a, .chip-list span {
  display: inline-flex; align-items: center; padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 700;
  background: var(--bg-soft); color: var(--ink); border: 1px solid var(--line);
}
.section--soft .chip-list a, .section--soft .chip-list span { background: var(--white); }
.chip-list a { color: var(--green); }
.chip-list a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.hero .chip-list a, .hero .chip-list span { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .22); color: var(--white); }

.suburb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.suburb-grid a {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; background: var(--white);
  border: 1px solid var(--line); color: var(--ink); font-weight: 700; font-size: 14.5px; line-height: 1.3;
}
.suburb-grid a::before {
  content: ""; flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 3px rgba(255, 199, 0, .25);
}
.suburb-grid a:hover { border-color: var(--green); color: var(--green); }

/* Features (icon boxes) and specs */
.features { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.features--1 { grid-template-columns: 1fr; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature__icon {
  flex: none; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--yellow); color: var(--ink);
}
.feature__icon svg, .feature__icon img { width: 26px; height: 26px; object-fit: contain; }
.feature__body { min-width: 0; }
.feature__title { font-size: 18px; font-weight: 800; color: var(--ink); margin: 6px 0 6px; line-height: 1.3; }
.feature__title a { color: inherit; }
.feature__body p { color: var(--muted); margin: 0; font-size: 15.5px; }
.features:not(.features--1) > .feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; flex-direction: column; }
.section--soft .features:not(.features--1) > .feature { border-color: transparent; box-shadow: var(--shadow-sm); }
.svg-fill, .svg-fill * { fill: currentColor; stroke: none; }

.specs { display: flex; flex-wrap: wrap; gap: 10px; }
.spec {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border-radius: 12px;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.spec__icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: var(--yellow); color: var(--ink); }
.spec__icon svg, .spec__icon img { width: 16px; height: 16px; }
.spec__label { margin: 0; font-size: 14px; font-weight: 800; color: var(--ink); }
.specs:not(:has(.spec__icon)) .spec { padding-left: 14px; }
.spec__value { font-size: 14px; color: var(--muted); font-weight: 600; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* FAQ image + accordion sections */
.grid--2 > .cell > .accordion { width: 100%; }
.flow > .media { max-width: 900px; }
.flow > .media + .accordion { margin-top: 32px; }

/* Maps */
.map-section { line-height: 0; }
.map iframe { width: 100%; height: 440px; border: 0; display: block; }
.flow .map iframe { border-radius: var(--radius); height: 380px; }

/* Tables */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 15px; }
.table-wrap th, .table-wrap td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.table-wrap thead th { background: var(--ink); color: var(--white); font-weight: 800; }
.table-wrap tbody tr:nth-child(even) { background: var(--bg-soft); }
.table-wrap .yes { color: var(--green); }
.table-wrap .no { color: #c62828; }

/* Closing call-to-action band */
.section--cta { padding-top: 24px; }
.cta-band {
  background: linear-gradient(120deg, var(--green-900) 0%, var(--green) 100%); color: rgba(255, 255, 255, .85);
  border-radius: 28px; padding: 56px 64px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 16px;
}
.cta-band::after {
  content: ""; position: absolute; right: -90px; top: -90px; width: 280px; height: 280px; border-radius: 50%;
  border: 40px solid rgba(255, 199, 0, .9);
}
.cta-band > * { position: relative; z-index: 1; max-width: 760px; margin: 0; }
.cta-band h2, .cta-band h3, .cta-band h4 { color: var(--white); }
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); text-transform: uppercase; }
.cta-band h3 { color: var(--yellow); font-size: 20px; }
.cta-band .rte, .cta-band .rte strong { color: rgba(255, 255, 255, .85); }
.cta-band .rte a { color: var(--yellow); }
.cta-band .btn-row { margin-top: 8px; }

/* Forms in content */
.callback--inline { background: var(--green); border-radius: var(--radius); padding: 28px; }
.waste__grid--full { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form textarea, .lead-form select {
  width: 100%; padding: 14px 18px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .96); font: 500 15px var(--font); color: var(--ink); resize: vertical;
}
.lead-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1a0e' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.lead-form textarea:focus, .lead-form select:focus { outline: 3px solid var(--yellow); outline-offset: 0; }
.lead-form--light input, .lead-form--light textarea, .lead-form--light select { border-color: var(--line); background-color: var(--bg-soft); }
.lead-form--light .btn--green { background: var(--green); padding-left: 36px; padding-right: 36px; }
.lead-form--light .btn--green:hover { background: var(--green-600); }
.lead-form--light .form-status.is-ok { color: var(--green); }
.lead-form--light .form-status.is-error { color: #c62828; }
.lead-form--light .form-legal { color: var(--muted); }
.panel .lead-form--light, .cell > .lead-form--light { width: 100%; }

@media (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--2 { gap: 32px; }
  .row > [class*="col-"] { flex: 1 1 calc(50% - 20px); }
  .cta-band { padding: 44px 36px; }
}
@media (max-width: 760px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .row > .col, .row > [class*="col-"] { flex: 1 1 100%; }
  .field-row { grid-template-columns: 1fr; }
  .panel { padding: 22px; }
  .cta-band { padding: 34px 22px; border-radius: 22px; }
  .map iframe { height: 320px; }
  .hero--inner .hero__grid { padding-top: 40px; padding-bottom: 40px; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1180px) {
  .main-nav ul a { padding: 10px 10px; font-size: 14px; }
  .main-nav { gap: 14px; }
  .site-logo img { width: 160px; }
}

@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .header-call, .nav-toggle { display: grid; place-items: center; }
  .header-call { margin-left: auto; width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 20px; }
  .nav-toggle { width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
  .nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
    display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .2s ease;
  }
  .nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; }
  .nav-toggle__bar::before { top: -6px; }
  .nav-toggle__bar::after { top: 6px; }
  .nav-open .nav-toggle__bar { background: transparent; }
  .nav-open .nav-toggle__bar::before { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle__bar::after { transform: translateY(-6px) rotate(-45deg); }

  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - 84px); height: calc(100dvh - 84px); border-top: 1px solid var(--line); background: var(--white); flex-direction: column; align-items: stretch;
    padding: 20px 24px 40px; gap: 16px; overflow-y: auto; margin: 0;
    opacity: 0; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; visibility: hidden; pointer-events: none;
  }
  .nav-open .main-nav { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
  .nav-open { overflow: hidden; }
  .main-nav ul { flex-direction: column; }
  .main-nav ul a { font-size: 18px; padding: 14px 16px; border-radius: 12px; }

  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
  .hero__booking { max-width: 520px; width: 100%; }
  .about__grid, .why__head, .faq__grid, .cta__panel { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }
  .steps__list { grid-template-columns: repeat(2, 1fr); }
  .why__grid, .waste__grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .cta__panel { padding: 48px 36px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .topbar__social span, .topbar__label { display: none; }
  .site-header__inner { min-height: 72px; gap: 12px; }
  .site-logo img { width: 140px; }
  .main-nav { height: calc(100vh - 72px); height: calc(100dvh - 72px); }
  .hero__grid { padding-top: 44px; padding-bottom: 44px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .booking-card { border-radius: 18px; padding: 6px; }
  .steps__list, .why__grid, .waste__grid, .reviews__grid { grid-template-columns: 1fr; }
  .why-card, .review-card { padding: 24px; }
  .reviews__summary { border-radius: var(--radius); flex-wrap: wrap; }
  .accordion__item summary { padding: 16px 18px; font-size: 16px; }
  .accordion__body { padding: 0 18px 16px; }
  .cta__panel { padding: 36px 22px; border-radius: 22px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
  .site-footer__bottom .container { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
.spec .spec__label { font-size: 14px; letter-spacing: 0; text-transform: none; margin: 0; }
.hero .btn--outline { background: transparent; border-color: rgba(255, 255, 255, .45); color: var(--white); }
.hero .btn--outline:hover { background: rgba(255, 255, 255, .1); color: var(--white); }
.spec__value a { font-weight: 700; }
.step__icon .svg-fill { width: 30px; height: 30px; color: var(--green); }
.flow--narrow { max-width: 900px; }
.waste__grid--full { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.waste__grid--full .waste-card__body { padding: 20px; }
@media (max-width: 1180px) { .waste__grid--full { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .waste__grid--full { grid-template-columns: 1fr; } }
.spec { flex-wrap: wrap; max-width: 100%; }
.spec__value { overflow-wrap: anywhere; min-width: 0; }

/* ==========================================================================
   Blog — hub, posts, tag archives
   ========================================================================== */
.hero--post .container { padding-top: 56px; padding-bottom: 60px; max-width: 1000px; }
.hero--post .hero__title { font-size: clamp(2rem, 4.2vw, 3.2rem); text-transform: none; letter-spacing: -.01em; margin: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 14px; font-weight: 700; margin-bottom: 16px; color: rgba(255, 255, 255, .5); }
.breadcrumb a { color: var(--yellow); }
.breadcrumb a:hover { color: var(--white); }

.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.post { min-width: 0; }
.post__image { margin: 0 0 36px; }
.post__image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.post__content { font-size: 17.5px; line-height: 1.8; color: #3d4741; }
.post__content > * + * { margin-top: 0; }
.post__content h2 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin: 1.8em 0 .6em; scroll-margin-top: 110px; }
.post__content h3 { font-size: 1.3rem; margin: 1.6em 0 .5em; scroll-margin-top: 110px; }
.post__content h4 { font-size: 1.1rem; margin: 1.4em 0 .5em; }
.post__content > :first-child { margin-top: 0; }
.post__content p { margin: 0 0 1.15em; }
.post__content figure { margin: 1.6em 0; }
.post__content table { width: 100%; border-collapse: collapse; font-size: 15.5px; margin: 1.6em 0; display: block; overflow-x: auto; }
.post__content th, .post__content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; vertical-align: top; }
.post__content th, .post__content thead td { background: var(--ink); color: var(--white); }
.post__content tbody tr:nth-child(even) { background: var(--bg-soft); }
.post__content blockquote { margin: 1.6em 0; padding: 18px 24px; border-left: 4px solid var(--yellow); background: var(--bg-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.post__tags { margin-top: 36px; }

.post-sidebar { position: sticky; top: 110px; display: grid; gap: 24px; }
.sidebar-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.sidebar-card__title { font-size: 18px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.sidebar-card__title::after { content: ""; display: block; width: 40px; height: 3px; border-radius: 2px; background: var(--yellow); margin-top: 10px; }
.recent-posts { display: grid; gap: 4px; }
.recent-posts__item { display: flex; gap: 14px; align-items: center; padding: 8px; margin: 0 -8px; border-radius: 12px; }
.recent-posts__item:hover { background: var(--bg-soft); }
.recent-posts__item img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; flex: none; }
.recent-posts__item strong { display: block; font-size: 14.5px; line-height: 1.35; color: var(--ink); font-weight: 700; }
.recent-posts__item time { font-size: 13px; color: var(--muted); }
.sidebar-card--cta { background: var(--ink); border: 0; color: rgba(255, 255, 255, .8); text-align: center; position: relative; overflow: hidden; }
.sidebar-card--cta::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, var(--ink) 12px 24px); }
.sidebar-card__kicker { color: var(--yellow); font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 8px 0 6px; }
.sidebar-card__big { color: var(--white); font-size: 22px; font-weight: 800; line-height: 1.25; margin-bottom: 18px; }
.sidebar-card__phone { display: block; margin-top: 14px; color: var(--white); font-weight: 800; font-size: 18px; }
.sidebar-card__phone:hover { color: var(--yellow); }

.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg-soft); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.post-card__title { font-size: 20px; line-height: 1.3; margin-bottom: 10px; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--green); }
.post-card__excerpt { color: var(--muted); font-size: 15px; flex: 1; }

.pagination { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 44px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 16px; border-radius: 999px; font-weight: 800; border: 1px solid var(--line); color: var(--ink); background: var(--white); }
.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination span[aria-current] { background: var(--green); border-color: var(--green); color: var(--white); }

@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}
@media (max-width: 760px) {
  .post-grid { grid-template-columns: 1fr; }
  .post__content { font-size: 16.5px; }
  .hero--post .container { padding-top: 36px; padding-bottom: 40px; }
}

/* Admin-only notice shown on draft / scheduled post previews */
.admin-preview-bar { background: var(--yellow); color: var(--ink); text-align: center; padding: 10px 16px; font-weight: 700; font-size: 14px; }
.admin-preview-bar a { color: var(--ink); text-decoration: underline; margin-left: 8px; }
