:root {
  --blue: #1268b3;
  --blue-deep: #07345f;
  --blue-mid: #0d4f8c;
  --yellow: #ffd600;
  --ink: #102033;
  --muted: #5b6a7c;
  --line: #d9e4ef;
  --paper: #ffffff;
  --mist: #f4f8fc;
  --sky: #eaf4ff;
  --green: #197a58;
  --shadow: 0 22px 60px rgba(16, 32, 51, 0.16);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  background: var(--paper);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  min-height: 34px;
  padding: 7px 5vw;
  color: #fff;
  background: var(--blue-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.top-strip a,
.main-nav a,
.header-call,
.button,
.phone-hero,
.site-footer a {
  text-decoration: none;
}

.top-strip a {
  color: var(--yellow);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 12px 5vw;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #243247;
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a:hover,
.site-footer a:hover,
.service-card h3 a:hover,
.service-depth-grid h3 a:hover,
.areas li a:hover {
  color: var(--blue);
}

.header-call {
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #10213c;
  background: var(--yellow);
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(255, 214, 0, 0.28);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100svh - 108px));
  padding: clamp(74px, 10vh, 112px) 5vw clamp(98px, 14vh, 138px);
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 31, 58, 0.94) 0%, rgba(7, 52, 95, 0.84) 43%, rgba(7, 52, 95, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 31, 58, 0.34), rgba(5, 31, 58, 0.06));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.steps .eyebrow,
.trust .eyebrow {
  color: var(--yellow);
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 28px;
  color: #e9f4ff;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.button-primary {
  color: #10213c;
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(255, 214, 0, 0.28);
}

.button-primary:hover,
.header-call:hover {
  background: #ffe45c;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  padding: 12px 0 12px 14px;
  border-left: 4px solid var(--yellow);
  color: #f0f7ff;
  font-weight: 800;
}

.quick-answer {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, 90vw);
  margin: -46px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-answer div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.quick-answer div:last-child {
  border-right: 0;
}

.quick-answer span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.quick-answer strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 26px;
  align-items: stretch;
  padding: 58px 5vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-copy {
  max-width: 760px;
}

.proof-copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.06;
}

.proof-copy p:not(.eyebrow) {
  color: var(--muted);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-cards a,
.proof-cards div {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--yellow);
  border-radius: 8px;
  color: var(--blue-deep);
  background: var(--mist);
  text-decoration: none;
}

.proof-cards span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-cards strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.25;
}

.proof-cards a:hover {
  border-color: rgba(18, 104, 179, 0.42);
  color: var(--blue);
}

.section,
.steps,
.areas,
.trust,
.includes,
.call-band {
  padding: 86px 5vw;
}

.section-heading,
.section-copy {
  max-width: 780px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-copy p,
.section-heading p,
.areas p,
.trust p,
.service-card p,
.steps p,
.faq p,
.site-footer p,
.include-list span,
.call-panel p {
  color: var(--muted);
}

.call-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 48px;
  align-items: center;
  background: var(--mist);
}

.phone-hero {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 8px;
  color: #10213c;
  background: var(--yellow);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 950;
  line-height: 1;
}

.call-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.call-panel div {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--yellow);
  border-radius: 8px;
  background: #fff;
}

.call-panel span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #10213c;
  background: var(--yellow);
  font-weight: 950;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-inline: 22px;
}

.service-card h3 {
  margin-top: 22px;
}

.service-card h3 a,
.service-depth-grid h3 a,
.areas li a {
  color: inherit;
  text-decoration: none;
}

.service-card p {
  margin-bottom: 24px;
}

.service-depth {
  padding: 88px 5vw;
  background: var(--mist);
}

.service-depth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-depth-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-depth-grid h3 {
  color: var(--blue-deep);
}

.service-depth-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  color: #fff;
  background: var(--blue-deep);
}

.steps p {
  color: #dcecff;
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.includes {
  background: #fff;
}

.include-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.include-list div {
  min-height: 170px;
  padding: 24px;
  background: var(--mist);
}

.include-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 1.02rem;
}

.include-list span {
  display: block;
}

.areas {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 48px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(234, 244, 255, 0.98), rgba(255, 255, 255, 0.92)),
    url("assets/sydney-harbour.webp") center / cover;
}

.areas ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.areas li {
  padding: 15px 16px;
  border: 1px solid rgba(18, 104, 179, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-deep);
  font-weight: 900;
}

.areas li a {
  display: block;
}

.site-directory {
  padding: 88px 5vw;
  background: var(--blue-deep);
  color: #fff;
}

.site-directory .eyebrow {
  color: var(--yellow);
}

.site-directory .section-heading p {
  color: #dcecff;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.directory-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.directory-grid h3 a {
  color: #fff;
  text-decoration: none;
}

.directory-grid h3 a:hover {
  color: var(--yellow);
}

.directory-grid p {
  color: #dcecff;
  font-size: 0.95rem;
}

.seo-guide {
  padding: 92px 5vw;
  background: #fff;
}

.seo-guide .section-heading {
  max-width: 920px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.guide-grid article {
  min-height: 320px;
  padding: 28px;
  background: #fff;
}

.guide-grid h3 {
  color: var(--blue-deep);
}

.guide-grid p {
  color: var(--muted);
  font-size: 0.98rem;
}

.guide-grid p:last-child {
  margin-bottom: 0;
}

.intent-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.intent-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(18, 104, 179, 0.2);
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--sky);
  font-size: 0.9rem;
  font-weight: 900;
}

.content-library {
  padding: 92px 5vw;
  background: #f7fbff;
}

.content-library .section-heading {
  max-width: 980px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.content-library .section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.06;
}

.content-library .section-heading p {
  max-width: 820px;
  font-size: 1.02rem;
}

.long-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.long-copy article {
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 6px solid rgba(18, 104, 179, 0.28);
  border-radius: 8px;
  background: #fff;
}

.long-copy h3 {
  max-width: 620px;
  color: var(--blue-deep);
  font-size: 1.08rem;
}

.long-copy p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.long-copy p:last-child {
  margin-bottom: 0;
}

.trust {
  background:
    linear-gradient(90deg, rgba(7, 52, 95, 0.94), rgba(7, 52, 95, 0.78)),
    url("assets/rubbish-removal.webp") center / cover;
}

.trust-panel {
  max-width: 760px;
  color: #fff;
}

.trust-panel p {
  max-width: 650px;
  color: #e7f1ff;
  font-size: 1.08rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  padding: 18px 20px;
  font-weight: 950;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 5vw;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer img {
  width: 180px;
  margin-bottom: 10px;
}

.site-footer > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-footer a {
  color: var(--blue-deep);
  font-weight: 950;
}

summary:focus-visible,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(18, 104, 179, 0.35);
  outline-offset: 3px;
}

.mobile-cta {
  display: none;
}

.subpage-hero {
  position: relative;
  padding: 86px 5vw 96px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 31, 58, 0.95), rgba(7, 52, 95, 0.78)),
    url("/assets/same-day-rubbish.webp") center / cover;
}

.subpage-hero.area-hero {
  background:
    linear-gradient(90deg, rgba(5, 31, 58, 0.94), rgba(7, 52, 95, 0.74)),
    url("/assets/sydney-harbour.webp") center / cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: #d8e9fb;
  font-size: 0.9rem;
  font-weight: 850;
}

.breadcrumbs a {
  color: var(--yellow);
  text-decoration: none;
}

.subpage-hero h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 6.4vw, 5.8rem);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #e9f4ff;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.subpage-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 22px;
  padding: 48px 5vw;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.subpage-summary div,
.subpage-summary ul {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.subpage-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.subpage-summary strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1.18rem;
  line-height: 1.35;
}

.subpage-summary ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.subpage-summary li {
  padding-left: 16px;
  border-left: 4px solid var(--yellow);
  color: var(--blue-deep);
  font-weight: 900;
}

.page-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 82px 5vw;
}

.page-articles article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.page-articles h2 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  line-height: 1.12;
}

.page-articles p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-depth {
  padding: 82px 5vw;
  background: var(--mist);
}

.depth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.depth-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.depth-grid h3 {
  color: var(--blue-deep);
}

.depth-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.hub-hero h1 {
  max-width: 940px;
}

.hub-section {
  padding: 82px 5vw;
}

.hub-section:nth-of-type(odd) {
  background: var(--mist);
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hub-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hub-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.hub-card h3 a {
  color: var(--blue-deep);
  text-decoration: none;
}

.hub-card h3 a:hover {
  color: var(--blue);
}

.hub-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.suburb-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.suburb-groups article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.suburb-groups h3 a {
  color: var(--blue-deep);
  text-decoration: none;
}

.suburb-groups div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suburb-groups div a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(18, 104, 179, 0.18);
  border-radius: 8px;
  color: var(--blue-deep);
  background: var(--sky);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 850;
}

.subpage-call {
  padding-block: 76px;
}

.related-pages {
  padding: 78px 5vw;
  background: var(--mist);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.related-grid a {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-deep);
  background: #fff;
  text-decoration: none;
  font-weight: 950;
}

.related-grid a:hover {
  border-color: rgba(18, 104, 179, 0.42);
  color: var(--blue);
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .call-band,
  .areas,
  .proof-band,
  .subpage-summary {
    grid-template-columns: 1fr;
  }

  .call-panel,
  .include-list,
  .proof-cards,
  .related-grid,
  .directory-grid,
  .depth-grid,
  .hub-grid,
  .hub-grid-compact,
  .suburb-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-articles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
  }

  .top-strip {
    justify-content: center;
    font-size: 0.78rem;
    text-align: center;
  }

  .top-strip span {
    max-width: 300px;
  }

  .top-strip a {
    display: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand img {
    width: 172px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 24px 82px;
  }

  .subpage-hero {
    padding: 54px 24px 72px;
  }

  .subpage-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.1rem);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 31, 58, 0.96), rgba(7, 52, 95, 0.78)),
      linear-gradient(0deg, rgba(5, 31, 58, 0.44), rgba(5, 31, 58, 0.08));
  }

  .hero-media img {
    object-position: 43% center;
  }

  .hero-copy {
    width: min(100%, 340px);
    max-width: 340px;
  }

  h1,
  .hero-lede {
    max-width: 340px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-checks {
    display: none;
  }

  .hero-checks,
  .quick-answer,
  .service-grid,
  .steps ol,
  .call-panel,
  .include-list,
  .areas ul {
    grid-template-columns: 1fr;
  }

  .quick-answer {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .quick-answer div {
    padding: 24px;
    max-width: 100vw;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-answer strong {
    width: min(100%, 280px);
    max-width: 280px;
    font-size: 1rem;
  }

  .proof-band {
    padding-inline: 24px;
    overflow: hidden;
  }

  .proof-copy,
  .proof-copy h2,
  .proof-copy p {
    width: min(100%, 340px);
    max-width: 340px;
    overflow-wrap: break-word;
  }

  .proof-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .proof-cards a,
  .proof-cards div {
    min-height: 128px;
  }

  .section,
  .service-depth,
  .steps,
  .areas,
  .trust,
  .includes,
  .call-band,
  .proof-band,
  .seo-guide,
  .content-library,
  .site-directory,
  .page-depth,
  .hub-section {
    padding-block: 62px;
  }

  .call-band {
    display: block;
    padding-inline: 24px;
    overflow: hidden;
  }

  .call-band .section-copy,
  .call-band .section-heading,
  .call-band h2,
  .call-band p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .call-band .call-panel {
    margin-top: 32px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .directory-grid,
  .depth-grid,
  .hub-grid,
  .hub-grid-compact,
  .suburb-groups {
    grid-template-columns: 1fr;
  }

  .service-depth-grid {
    grid-template-columns: 1fr;
  }

  .long-copy {
    grid-template-columns: 1fr;
  }

  .guide-grid article {
    min-height: auto;
    padding: 24px;
  }

  .page-articles,
  .subpage-summary,
  .related-pages {
    padding: 52px 24px;
  }

  .call-panel div,
  .include-list div {
    min-height: auto;
  }

  .phone-hero {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    display: block;
  }

  .site-footer > div:last-child {
    margin-top: 20px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr;
    background: var(--yellow);
    border-top: 1px solid rgba(16, 32, 51, 0.16);
    box-shadow: 0 -12px 28px rgba(16, 32, 51, 0.2);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 64px;
    padding: 0 18px;
    color: #10213c;
    text-decoration: none;
    font-weight: 950;
  }
}
