:root {
  --black: #090909;
  --black-soft: #151515;
  --red: #e30613;
  --red-dark: #b90009;
  --white: #ffffff;
  --surface: #f6f6f4;
  --text: #151515;
  --muted: #656565;
  --border: #d9d9d6;
  --container: min(1380px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.utility-bar {
  color: #fff;
  background: var(--black);
}

.utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-size: 12px;
}

.availability,
.utility-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ed271;
}

.coverage-copy {
  padding-left: 16px;
  color: #c9c9c9;
  border-left: 1px solid #555;
}

.utility-actions a {
  font-weight: 700;
}

.utility-actions a + a {
  padding-left: 20px;
  border-left: 1px solid #555;
}

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

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand img {
  width: 252px;
  height: auto;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.primary-navigation a {
  position: relative;
  padding: 35px 0;
  font-size: 13.5px;
  font-weight: 700;
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.primary-navigation a:hover::after {
  transform: scaleX(1);
}

.header-call {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline: 24px;
  color: #fff;
  background: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.header-call svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.header-call:hover {
  background: var(--red);
}

.menu-button {
  display: none;
}

.hero {
  padding: 58px 0;
  background: #fff;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(560px,1.08fr);
  gap: 58px;
  align-items: center;
}

.hero-content {
  min-width: 0;
  max-width: 680px;
}

.eyebrow,
.section-heading > p {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 22px;
  padding: 0 12px;
  border: 1px solid #bdbdb9;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 11px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(56px,5.3vw,84px);
  line-height: .94;
  letter-spacing: -.055em;
}

.hero h1 span {
  display: block;
}

.hero-description {
  max-width: 590px;
  margin: 27px 0 0;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding-inline: 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
}

.button-icon {
  width: 17px;
  height: 17px;
}

.button-primary {
  color: #fff;
  background: var(--black);
}

.button-primary .button-icon {
  fill: currentColor;
  stroke: none;
}

.button-primary:hover {
  background: var(--red);
}

.button-secondary {
  background: #fff;
  border-color: #bcbcb8;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 32px;
}

.hero-proof > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.proof-icon,
.reassurance-icon,
.service-list-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid #c9c9c5;
  border-radius: 50%;
  background: #fff;
}

.proof-icon svg,
.reassurance-icon svg,
.service-list-icon svg {
  width: 19px;
  height: 19px;
}

.hero-proof p {
  margin: 0;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  font-size: 12px;
}

.hero-proof small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
}

.hero-media img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: 61% center;
}

.hero-media-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 15px 18px;
  color: #fff;
  background: rgba(9,9,9,.9);
}

.hero-media-caption span,
.hero-media-caption strong {
  display: block;
}

.hero-media-caption span {
  color: #bdbdc3;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 9px;
  font-weight: 800;
}

.hero-media-caption strong {
  margin-top: 4px;
  font-size: 13px;
}

.reassurance {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.reassurance article {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}

.reassurance article:last-child {
  border-right: 0;
}

.reassurance h2,
.reassurance p {
  margin: 0;
}

.reassurance h2 {
  font-size: 14.5px;
}

.reassurance p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12.5px;
}

.services-section {
  padding: 94px 0 108px;
  background: var(--surface);
}

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

.section-heading > p {
  min-height: auto;
  margin-bottom: 10px;
  padding: 0;
  border: 0;
}

.section-heading h2 {
  margin: 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(34px,3.8vw,52px);
  line-height: 1;
  letter-spacing: -.04em;
}

.services-layout {
  display: grid;
  grid-template-columns: 1.18fr .78fr 1fr;
  gap: 20px;
}

.featured-service,
.emergency-service,
.service-list {
  min-height: 402px;
}

.featured-service {
  display: grid;
  grid-template-columns: 51% 49%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0,0,0,.045);
}

.featured-image {
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.featured-content > span,
.emergency-service > span {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  font-weight: 800;
}

.featured-content h3,
.emergency-service h3 {
  margin: 20px 0 14px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.04em;
}

.featured-content p,
.emergency-service p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.featured-content a,
.emergency-service a {
  align-self: flex-start;
  margin-top: 28px;
  padding: 12px 17px;
  color: #fff;
  background: var(--black);
  font-size: 11px;
  font-weight: 800;
}

.emergency-service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%,rgba(227,6,19,.22),transparent 34%),
    var(--black);
  border-left: 6px solid var(--red);
}

.emergency-service p {
  color: #c8c8c8;
}

.warning-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--red);
}

.warning-icon svg {
  width: 31px;
  height: 31px;
}

.service-list {
  display: grid;
  grid-template-rows: repeat(3,1fr);
  background: #fff;
  border: 1px solid var(--border);
}

.service-list a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 27px 26px;
  border-bottom: 1px solid var(--border);
}

.service-list a:last-child {
  border-bottom: 0;
}

.service-list a:hover {
  background: #f0f0ee;
}

.service-list strong,
.service-list small {
  display: block;
}

.service-list strong {
  font-size: 13.5px;
}

.service-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11.5px;
}

.service-list .service-arrow {
  font-size: 20px;
}

.placeholder-section {
  min-height: 120px;
  padding: 50px 0;
  color: #888;
  background: #fff;
  text-align: center;
}

@media (max-width: 1100px) {
  .primary-navigation {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 25px;
    height: 2px;
    display: block;
    margin: 5px;
    background: var(--black);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-media img {
    height: 500px;
  }

  .services-layout {
    grid-template-columns: 1fr 1fr;
  }

  .service-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px,1380px);
  }

  .coverage-copy,
  .utility-actions a:first-child {
    display: none;
  }

  .brand img {
    width: 180px;
  }

  .header-call {
    display: none;
  }

  .hero {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: clamp(48px,13vw,68px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero-media img {
    height: 370px;
  }

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

  .reassurance article:nth-child(2) {
    border-right: 0;
  }

  .reassurance article:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .featured-service {
    min-height: auto;
  }

  .service-list {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .utility-inner {
    justify-content: center;
  }

  .utility-actions {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 165px;
  }

  .hero-media img {
    height: 300px;
  }

  .hero-media-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

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

  .reassurance article {
    min-height: 95px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .featured-image {
    height: 250px;
  }

  .featured-content,
  .emergency-service {
    padding: 28px;
  }
}


/* FINAL HERO TYPOGRAPHY AND BALANCE FIX */

.hero {
  padding: 62px 0 66px;
}

.hero-layout {
  grid-template-columns: minmax(0,1fr) minmax(570px,1.06fr);
  gap: 48px;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(56px,4.9vw,76px);
  line-height: .95;
  letter-spacing: -.052em;
}

.hero-heading-line {
  display: block;
  white-space: nowrap;
}

.hero-description {
  max-width: 610px;
}

.hero-proof {
  max-width: 690px;
  gap: 20px;
}

.hero-proof strong {
  font-size: 12.5px;
}

.hero-proof small {
  font-size: 11.5px;
}

.hero-media img {
  height: 525px;
  object-position: 60% center;
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0,.95fr) minmax(520px,1.05fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(52px,4.8vw,68px);
  }
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-heading-line {
    white-space: normal;
  }

  .hero-content {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: clamp(48px,13vw,68px);
  }

  .hero-heading-line {
    white-space: normal;
  }

  .hero-media img {
    height: 370px;
  }
}


/* HERO IMAGE SHAPE REFINEMENT */

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #dcdcd8;
  box-shadow: 0 26px 60px rgba(0,0,0,.10);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  z-index: 2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media-caption {
  left: 18px;
  bottom: 18px;
  border-radius: 14px;
  background: rgba(9,9,9,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  z-index: 3;
}

@media (max-width: 1180px) {
  .hero-media img {
    height: 480px;
  }
}

@media (max-width: 820px) {
  .hero-media {
    border-radius: 18px;
  }

  .hero-media::before {
    border-radius: 18px;
  }

  .hero-media img {
    height: 360px;
  }

  .hero-media-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 560px) {
  .hero-media img {
    height: 300px;
  }
}


/* =========================================================
   LOCKED DESIGN — PROCESS, COVERAGE AND PROOF SECTIONS
   ========================================================= */

.split-heading {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(320px,.8fr);
  align-items: end;
  gap: 64px;
}

.split-heading .section-description {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.process-section {
  padding: 102px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(227,6,19,.14), transparent 30%),
    var(--black);
}

.process-section .section-heading > p,
.process-section .section-heading > div > p {
  color: #b6b6bd;
}

.process-section .section-heading h2 {
  max-width: 820px;
  color: #fff;
}

.process-section .section-description {
  color: #aaaab1;
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 22px;
  margin-top: 46px;
}

.process-flow article {
  position: relative;
  min-height: 240px;
  padding: 30px;
  background: #141416;
  border: 1px solid #2c2c30;
}

.process-number {
  display: block;
  color: var(--red);
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 13px;
}

.process-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 30px 0 24px;
  color: #fff;
  border: 1px solid #424248;
  border-radius: 50%;
}

.process-icon svg {
  width: 24px;
  height: 24px;
}

.process-flow h3 {
  margin: 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.process-flow p {
  margin: 11px 0 0;
  color: #a8a8af;
  font-size: 13px;
  line-height: 1.65;
}

.process-arrow {
  align-self: center;
  color: var(--red);
  font-size: 26px;
}

.coverage-section {
  padding: 104px 0;
  background: #fff;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr);
  gap: 24px;
  margin-top: 42px;
}

.coverage-search-panel {
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.coverage-search-panel > label {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  font-weight: 800;
}

.coverage-search-box {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid #cfcfcb;
}

.coverage-search-box svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.coverage-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
}

.search-status {
  min-height: 22px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.priority-areas {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-top: 26px;
}

.priority-areas a {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease;
}

.priority-areas a:hover {
  transform: translateY(-3px);
  border-color: var(--black);
}

.priority-areas a[hidden] {
  display: none;
}

.priority-areas small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 9px;
  font-weight: 800;
}

.priority-areas strong {
  margin-top: auto;
  font-size: 16px;
}

.priority-areas span {
  margin-top: 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.coverage-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.coverage-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.coverage-footer a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
}

.coverage-footer a span {
  font-size: 19px;
}

.tooting-location {
  position: relative;
  min-height: 100%;
  padding: 38px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 110% 0%, rgba(227,6,19,.24), transparent 40%),
    var(--black);
  border-left: 5px solid var(--red);
}

.location-label {
  margin: 0;
  color: #bcbcc2;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 800;
}

.tooting-location h3 {
  margin: 46px 0 18px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 37px;
  line-height: 1;
}

.tooting-location address {
  color: #ededf0;
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
}

.location-note {
  max-width: 320px;
  margin: 22px 0 0;
  color: #aaaab1;
  font-size: 12px;
  line-height: 1.65;
}

.location-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
}

.location-actions a {
  font-size: 12px;
  font-weight: 800;
}

.location-actions a:first-child {
  padding: 12px 17px;
  color: var(--black);
  background: #fff;
}

.location-marker {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.17);
}

.location-marker svg {
  width: 72px;
  height: 72px;
  stroke-width: 1;
}

.proof-section {
  padding: 110px 0;
  background: var(--surface);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 78px;
  align-items: center;
}

.proof-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 26px 65px rgba(0,0,0,.1);
}

.proof-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
}

.proof-image-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(9,9,9,.92);
  border-radius: 13px;
}

.proof-image-note span,
.proof-image-note strong {
  display: block;
}

.proof-image-note span {
  color: #bdbdc3;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 9px;
  font-weight: 800;
}

.proof-image-note strong {
  margin-top: 4px;
  font-size: 13px;
}

.proof-content h2 {
  max-width: 650px;
  margin: 12px 0 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(40px,4.2vw,61px);
  line-height: .98;
  letter-spacing: -.045em;
}

.proof-intro {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.proof-points article {
  min-height: 170px;
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-points article > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid #cececa;
  border-radius: 50%;
}

.proof-points svg {
  width: 19px;
  height: 19px;
}

.proof-points h3 {
  margin: 2px 0 0;
  font-size: 13px;
}

.proof-points p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 1050px) {
  .split-heading,
  .coverage-layout,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    display: none;
  }

  .process-flow article {
    min-height: auto;
  }

  .tooting-location {
    min-height: 430px;
  }

  .proof-image img {
    height: 560px;
  }
}

@media (max-width: 720px) {
  .process-section,
  .coverage-section,
  .proof-section {
    padding: 78px 0;
  }

  .split-heading {
    gap: 20px;
  }

  .coverage-search-panel,
  .tooting-location {
    padding: 26px;
  }

  .priority-areas,
  .proof-points {
    grid-template-columns: 1fr;
  }

  .coverage-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .tooting-location h3 {
    margin-top: 34px;
  }

  .proof-layout {
    gap: 44px;
  }

  .proof-image img {
    height: 420px;
  }

  .proof-content h2 {
    font-size: 42px;
  }

  .proof-actions {
    display: grid;
  }
}


/* FINAL HOMEPAGE SECTIONS AND LOCKED REFINEMENTS */

/* Locked section refinements */

.process-flow h3 {
  font-size: 21px;
}

.process-flow p {
  font-size: 13.5px;
}

.process-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 17px;
}

.coverage-layout {
  grid-template-columns: minmax(0,1.55fr) minmax(330px,.45fr);
}

.tooting-location {
  min-height: 0;
  align-self: start;
  padding-bottom: 42px;
}

.tooting-location h3 {
  margin-top: 36px;
}

.location-marker {
  width: 64px;
  height: 64px;
}

.location-marker svg {
  width: 54px;
  height: 54px;
}

.proof-layout {
  grid-template-columns: minmax(420px,.82fr) minmax(0,1.18fr);
  gap: 68px;
}

.proof-image img {
  height: 570px;
}

.proof-points article {
  min-height: 155px;
}

/* Completed jobs */

.jobs-section {
  padding: 108px 0;
  background: #fff;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(360px,.75fr);
  gap: 22px;
  margin-top: 40px;
}

.job-feature,
.job-supporting article {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

.job-feature {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 510px;
}

.job-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
}

.job-content > p,
.job-supporting article p {
  margin: 0;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 9px;
  font-weight: 800;
}

.job-content h3,
.job-supporting article h3 {
  margin: 14px 0;
  font-family: "Archivo Black", Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.job-content h3 {
  font-size: 37px;
}

.job-content span,
.job-supporting article span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.job-supporting {
  display: grid;
  gap: 22px;
}

.job-supporting article {
  display: grid;
  grid-template-columns: 46% 54%;
}

.job-supporting article img {
  width: 100%;
  height: 100%;
  min-height: 242px;
  object-fit: cover;
}

.job-supporting article > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.job-supporting article h3 {
  font-size: 23px;
}

/* Reviews */

.reviews-section {
  padding: 108px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(227,6,19,.15), transparent 28%),
    var(--black);
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.55fr);
  gap: 60px;
  align-items: end;
}

.reviews-header .section-label {
  color: #b6b6bd;
}

.reviews-header h2 {
  margin: 12px 0 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(42px,4.5vw,64px);
  line-height: 1;
  letter-spacing: -.045em;
}

.reviews-header > p {
  max-width: 470px;
  margin: 0;
  color: #a8a8af;
  font-size: 13px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr);
  gap: 22px;
  margin-top: 42px;
}

.reviews-layout blockquote {
  margin: 0;
  border: 1px solid #303034;
  background: #151517;
}

.review-feature {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
}

.review-feature > p {
  max-width: 770px;
  margin: 30px 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(28px,3vw,42px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.review-stars {
  color: #fff;
  letter-spacing: .16em;
  font-size: 13px;
}

.reviews-layout footer cite,
.reviews-layout footer span {
  display: block;
}

.reviews-layout footer cite {
  font-size: 14px;
}

.reviews-layout footer span {
  margin-top: 4px;
  color: #85858d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.review-supporting {
  display: grid;
  gap: 22px;
}

.review-supporting blockquote {
  min-height: 204px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.review-supporting blockquote > p {
  margin: 22px 0;
  color: #dedee2;
  font-size: 14px;
  line-height: 1.75;
}

.review-supporting footer {
  margin-top: auto;
}

/* FAQ */

.faq-section {
  padding: 108px 0;
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr);
  gap: 80px;
}

.faq-intro h2 {
  margin: 12px 0 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(40px,4vw,58px);
  line-height: 1;
  letter-spacing: -.045em;
}

.faq-intro > p:not(.section-label) {
  max-width: 520px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  color: var(--text);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.faq-item button .faq-toggle-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid #c9c9c5;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 60px 24px 4px;
}

.faq-item.is-open button .faq-toggle-icon {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

/* Final CTA */

.final-cta {
  padding: 86px 0;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(227,6,19,.96), rgba(183,0,9,.96)),
    var(--red);
}

.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(390px,.8fr);
  gap: 70px;
  align-items: center;
}

.final-cta p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 800;
}

.final-cta h2 {
  max-width: 760px;
  margin: 12px 0 15px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(45px,5vw,70px);
  line-height: .98;
  letter-spacing: -.05em;
}

.final-cta span {
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

.final-cta-actions {
  display: grid;
  gap: 12px;
}

.final-cta-actions .button {
  width: 100%;
}

.final-call {
  color: var(--black);
  background: #fff;
}

.final-call svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.final-whatsapp {
  color: #fff;
  background: var(--green, #159a55);
}

/* Footer */

.footer {
  padding: 76px 0 26px;
  color: #fff;
  background: #060607;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr);
  gap: 70px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid #252529;
}

.footer-brand img {
  width: 220px;
  height: auto;
}

.footer-brand p {
  max-width: 560px;
  margin: 24px 0;
  color: #a0a0a8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-brand a {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
}

.footer-location {
  padding: 28px;
  background: #131315;
  border: 1px solid #2e2e32;
}

.footer-location > p {
  margin: 0;
  color: #ff5962;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 9px;
  font-weight: 800;
}

.footer-location .footer-location-title {
  margin: 14px 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 25px;
}

.footer-location address {
  color: #d8d8dc;
  font-style: normal;
  font-size: 13px;
  line-height: 1.75;
}

.footer-location span {
  display: block;
  margin-top: 12px;
  color: #7e7e86;
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr .8fr 1.2fr;
  gap: 52px;
  padding: 48px 0;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h3 {
  margin: 0 0 16px;
  font-size: 13px;
}

.footer-links a,
.footer-links p {
  margin: 5px 0;
  color: #92929a;
  font-size: 12px;
  line-height: 1.6;
}

.footer-links a:hover {
  color: #fff;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.footer-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43d270;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  color: #686870;
  border-top: 1px solid #202024;
  font-size: 10px;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1050px) {
  .jobs-layout,
  .reviews-header,
  .reviews-layout,
  .faq-layout,
  .final-cta-layout,
  .footer-brand-row {
    grid-template-columns: 1fr;
  }

  .job-feature {
    grid-template-columns: 1fr;
  }

  .job-feature > img {
    height: 440px;
  }

  .footer-links {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 64px;
  }

  .jobs-section,
  .reviews-section,
  .faq-section {
    padding: 78px 0;
  }

  .jobs-layout {
    grid-template-columns: 1fr;
  }

  .job-feature {
    min-height: auto;
  }

  .job-feature > img {
    height: 340px;
  }

  .job-content {
    padding: 28px;
  }

  .job-supporting article {
    grid-template-columns: 1fr;
  }

  .job-supporting article img {
    height: 260px;
  }

  .review-feature {
    min-height: 360px;
    padding: 30px;
  }

  .reviews-header {
    gap: 20px;
  }

  .faq-layout {
    gap: 45px;
  }

  .final-cta {
    padding: 68px 0;
  }

  .final-cta-layout {
    gap: 34px;
  }

  .footer {
    padding-top: 58px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #fff;
    background: var(--black);
    box-shadow: 0 -4px 20px rgba(0,0,0,.18);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-contact-bar a:last-child {
    background: #159a55;
  }

  .mobile-contact-bar svg {
    width: 17px;
    height: 17px;
  }
}


/* FINAL MOBILE NAVIGATION */

@media (max-width: 1100px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    position: relative;
  }

  .menu-button {
    position: relative;
    z-index: 62;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 9px;
    cursor: pointer;
  }

  .menu-button span {
    transition:
      transform .22s ease,
      opacity .22s ease;
  }

  .menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 60;
    display: none;
    margin: 0;
    padding: 14px 32px 24px;
    color: var(--text);
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 36px rgba(0,0,0,.12);
  }

  .primary-navigation.is-open {
    display: grid;
  }

  .primary-navigation a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }

  .primary-navigation a:last-child {
    border-bottom: 0;
  }

  .primary-navigation a::after {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .primary-navigation {
    padding-inline: 20px;
  }
}


/* PROOF IMAGE REMAP TO REMOVE DUPLICATE PHOTO */

.proof-image img {
  object-position: 68% center;
}

@media (max-width: 720px) {
  .proof-image img {
    object-position: 64% center;
  }
}


/* FINAL AUTHORITATIVE MOBILE RESPONSIVE OVERRIDE */

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 64px;
  }

  .container {
    width: calc(100% - 30px);
    max-width: none;
  }

  /* Utility and header */

  .utility-inner {
    min-height: 36px;
    justify-content: center;
    padding: 0;
  }

  .availability,
  .utility-status {
    justify-content: center;
  }

  .availability strong,
  .utility-status strong {
    font-size: 10px;
  }

  .coverage-copy,
  .utility-actions,
  .utility-contact,
  .utility-status > span:last-child {
    display: none !important;
  }

  .header-inner {
    min-height: 70px;
    display: flex !important;
    align-items: center;
    gap: 12px;
  }

  .brand {
    display: block;
    flex: 0 0 auto;
  }

  .brand img {
    width: 178px !important;
    max-width: 178px;
    height: auto;
  }

  .header-call,
  .header-whatsapp {
    display: none !important;
  }

  .menu-button {
    display: block !important;
    margin-left: auto;
  }

  .primary-navigation {
    width: 100%;
    max-height: calc(100vh - 106px);
    overflow-y: auto;
  }

  /* Hero */

  .hero {
    padding: 44px 0 48px !important;
  }

  .hero-layout,
  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 32px !important;
  }

  .hero-content {
    width: 100%;
    max-width: none !important;
    min-width: 0;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    width: 100%;
    max-width: none !important;
    margin: 0;
    font-size: clamp(42px, 13vw, 58px) !important;
    line-height: .96 !important;
    letter-spacing: -.055em;
  }

  .hero-heading-line,
  .hero h1 span {
    display: block;
    white-space: normal !important;
  }

  .hero-description {
    max-width: none;
    margin-top: 22px;
    font-size: 14px !important;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
  }

  .hero-proof {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px;
    max-width: none;
    margin-top: 26px;
  }

  .hero-proof > div {
    min-width: 0;
  }

  .hero-media {
    display: block !important;
    width: 100% !important;
    min-width: 0;
    margin: 0;
    border-radius: 18px;
  }

  .hero-media img {
    display: block !important;
    width: 100%;
    height: 285px !important;
    object-fit: cover;
    object-position: 60% center;
  }

  .hero-media-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px 14px;
    border-radius: 11px;
  }

  /* Reassurance */

  .reassurance-grid,
  .confidence-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .reassurance article,
  .confidence-grid article {
    min-height: 92px;
    padding: 20px 4px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--border);
  }

  .reassurance article:last-child,
  .confidence-grid article:last-child {
    border-bottom: 0;
  }

  /* General section headings */

  .services-section,
  .process-section,
  .coverage-section,
  .proof-section,
  .jobs-section,
  .reviews-section,
  .faq-section {
    padding: 70px 0 !important;
  }

  .section-heading,
  .split-heading,
  .section-header,
  .reviews-header {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .section-header h2,
  .reviews-header h2 {
    max-width: none;
    font-size: 38px !important;
    line-height: 1 !important;
  }

  .section-description,
  .split-heading .section-description,
  .section-header > p,
  .reviews-header > p {
    max-width: none !important;
    font-size: 13px;
    line-height: 1.7;
  }

  /* Services */

  .services-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .featured-service {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .featured-image {
    height: 280px !important;
  }

  .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .featured-content,
  .emergency-service {
    padding: 28px !important;
  }

  .featured-content h3,
  .emergency-service h3 {
    font-size: 32px !important;
  }

  .emergency-service {
    min-height: 340px !important;
  }

  .service-list {
    display: grid !important;
    grid-column: auto !important;
    min-height: 0 !important;
  }

  .service-list a {
    min-height: 108px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    padding: 20px;
  }

  /* Process */

  .process-flow {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .process-flow article {
    display: block !important;
    width: 100%;
    min-height: 220px;
    padding: 26px;
  }

  .process-arrow {
    display: none !important;
  }

  .process-flow h3 {
    font-size: 19px;
  }

  .process-flow p {
    font-size: 13px;
  }

  /* Coverage */

  .coverage-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .coverage-search-panel {
    width: 100%;
    padding: 20px !important;
  }

  .coverage-search-box {
    min-height: 56px;
    padding: 0 15px;
  }

  .priority-areas {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .priority-areas a {
    min-height: 108px;
  }

  .coverage-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .tooting-location {
    display: block !important;
    width: 100%;
    min-height: 390px !important;
    padding: 28px !important;
  }

  /* Proof */

  .proof-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .proof-image {
    display: block !important;
    width: 100%;
    min-height: 0;
    border-radius: 18px;
  }

  .proof-image img {
    display: block !important;
    width: 100%;
    height: 390px !important;
    object-fit: cover;
    object-position: 68% center;
  }

  .proof-content {
    display: block !important;
    width: 100%;
  }

  .proof-content h2 {
    max-width: none;
    font-size: 39px !important;
  }

  .proof-points {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .proof-points article {
    min-height: 130px;
  }

  .proof-actions {
    display: grid !important;
  }

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

  /* Jobs */

  .jobs-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .job-feature {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .job-feature > img {
    width: 100%;
    height: 310px !important;
    object-fit: cover;
  }

  .job-content {
    padding: 26px !important;
  }

  .job-content h3 {
    font-size: 31px;
  }

  .job-supporting {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .job-supporting article {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .job-supporting article img {
    width: 100%;
    height: 260px !important;
    min-height: 0;
    object-fit: cover;
  }

  /* Reviews */

  .reviews-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .review-feature {
    min-height: 360px;
    padding: 28px;
  }

  .review-feature > p {
    font-size: 27px !important;
  }

  .review-supporting {
    display: grid !important;
    gap: 16px;
  }

  /* FAQ */

  .faq-section {
    display: block !important;
  }

  .faq-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .faq-intro {
    display: block !important;
  }

  .faq-intro h2 {
    font-size: 38px !important;
  }

  .faq-list {
    display: block !important;
    width: 100%;
  }

  .faq-item button {
    min-height: 70px;
    font-size: 13px;
  }

  /* Final CTA */

  .final-cta {
    display: block !important;
    padding: 64px 0 !important;
  }

  .final-cta-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .final-cta h2 {
    max-width: none;
    font-size: 43px !important;
    line-height: .98;
  }

  .final-cta-actions {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .final-cta-actions .button {
    display: flex !important;
    width: 100%;
  }

  /* Footer */

  .footer {
    padding: 54px 0 24px !important;
  }

  .footer-brand-row,
  .footer-links {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .footer-brand-row {
    padding-bottom: 36px;
  }

  .footer-location {
    width: 100%;
  }

  .footer-links {
    padding: 38px 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  /* Sticky mobile actions */

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    min-height: 64px;
  }
}


/* MOBILE OVERFLOW AND HEADER CONTAINMENT FIX */

@media (max-width: 720px) {
  html {
    width: 100%;
    overflow-x: clip;
  }

  body {
    width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  *,
  *::before,
  *::after {
    min-width: 0;
  }

  main,
  header,
  footer,
  section,
  nav,
  article,
  aside,
  .container,
  .hero,
  .hero-layout,
  .hero-content,
  .hero-media,
  .reassurance,
  .services-section,
  .process-section,
  .coverage-section,
  .proof-section,
  .jobs-section,
  .reviews-section,
  .faq-section,
  .final-cta,
  .footer {
    width: 100%;
    max-width: 100%;
  }

  .container {
    width: auto !important;
    max-width: none !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .utility-bar .container,
  .site-header .container,
  .reassurance .container,
  .confidence-strip .container {
    width: auto !important;
  }

  img,
  svg,
  video {
    max-width: 100%;
  }

  p,
  h1,
  h2,
  h3,
  strong,
  small,
  span,
  a {
    overflow-wrap: break-word;
  }

  /* Mobile header */

  .site-header {
    width: 100%;
  }

  .header-inner {
    width: auto !important;
    min-height: 72px;
    margin-inline: 15px !important;
    padding: 0;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand img {
    width: 176px !important;
    max-width: 100% !important;
  }

  .menu-button {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    z-index: 70;
    display: block !important;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto !important;
    padding: 8px;
    border: 1px solid var(--border);
    background: #fff;
  }

  .menu-button span {
    width: 22px;
    margin: 5px auto;
  }

  .primary-navigation {
    position: fixed !important;
    top: 108px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: calc(100dvh - 108px);
    margin: 0 !important;
    padding: 12px 20px 24px !important;
    overflow-y: auto;
  }

  /* Hero */

  .hero-layout {
    width: auto !important;
    margin-inline: 15px !important;
  }

  .hero h1,
  .hero h1 span,
  .hero-heading-line {
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
  }

  .hero-media img {
    height: 100% !important;
  }

  /* Every grid must shrink inside viewport */

  .services-layout,
  .process-flow,
  .coverage-layout,
  .priority-areas,
  .proof-layout,
  .proof-points,
  .jobs-layout,
  .job-supporting,
  .reviews-layout,
  .review-supporting,
  .faq-layout,
  .final-cta-layout,
  .footer-brand-row,
  .footer-links {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .featured-service,
  .service-list,
  .process-flow article,
  .coverage-search-panel,
  .tooting-location,
  .proof-image,
  .proof-content,
  .job-feature,
  .job-supporting article,
  .review-feature,
  .review-supporting blockquote,
  .faq-list,
  .footer-location {
    width: 100%;
    max-width: 100%;
  }

  .service-list a,
  .service-navigation > a {
    grid-template-columns: 38px minmax(0, 1fr) 20px !important;
  }

  .coverage-search-box input {
    width: 100%;
    min-width: 0;
  }

  .final-cta-actions,
  .final-cta-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom {
    width: 100%;
  }
}


/* Semantic SEO cleanup while preserving the approved design */
.reviews-layout footer cite {
  font-style: normal;
}

/* HOMEPAGE HERO KEYWORD ACCENT */
.hero h1 .hero-heading-accent {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  white-space: inherit !important;
  color: var(--red) !important;
}

/* Keep the longer SEO heading inside the desktop text column. */
@media (min-width: 1101px) {
  .hero h1 {
    font-size: clamp(52px, 4.25vw, 68px);
  }
}


/* FINAL DESKTOP HERO TWO-LINE LOCK */
@media (min-width: 1101px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.14fr) minmax(500px, 0.92fr) !important;
    gap: 34px !important;
    align-items: center;
  }

  .hero-content {
    max-width: none !important;
    min-width: 0;
  }

  .hero h1 {
    width: 100%;
    max-width: none !important;
    margin: 0;
    font-size: clamp(48px, 3.85vw, 62px) !important;
    line-height: .96 !important;
    letter-spacing: -.05em !important;
  }

  .hero-heading-line,
  .hero h1 span:not(.hero-heading-accent) {
    display: block;
    white-space: nowrap !important;
  }

  .hero-description {
    max-width: 700px;
  }

  .hero-media img {
    height: 500px;
  }
}
/* HOMEPAGE CONVERSION ENHANCEMENTS */
.hero-urgent {
  max-width: 700px;
  margin: 22px 0 0;
  padding-left: 13px;
  border-left: 4px solid var(--red);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
  color: var(--black);
}

.hero-urgent + .hero-description {
  margin-top: 14px;
}

.hero-actions .button-primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.hero-actions .button-primary:hover {
  filter: brightness(.9);
}

.hero-action-note {
  max-width: 650px;
  margin: 13px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 650;
  color: #5b5b60;
}

@media (max-width: 820px) {
  .hero-urgent {
    margin-top: 18px;
    font-size: 14px;
  }

  .hero-action-note {
    font-size: 12px;
  }
}
/* CLEAR WHATSAPP BUTTON ICON */
.hero-actions .whatsapp-icon {
  display: inline-block !important;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor !important;
  stroke: none !important;
}

.hero-actions .whatsapp-icon path {
  fill: currentColor !important;
  stroke: none !important;
}
/* FINAL TOPBAR CONTACT ICONS */
.utility-actions .utility-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.utility-contact-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.utility-contact-whatsapp {
  color: #fff;
}

.utility-contact-whatsapp .utility-whatsapp-icon,
.utility-contact-whatsapp .utility-whatsapp-icon path {
  fill: #25D366 !important;
  stroke: none !important;
}

.utility-contact-call .utility-call-icon,
.utility-contact-call .utility-call-icon path {
  fill: currentColor !important;
  stroke: none !important;
}

/* Make the primary WhatsApp action instantly recognisable. */
.hero-actions .button-secondary {
  border-color: #25D366 !important;
  background: #25D366 !important;
  color: #fff !important;
}

.hero-actions .button-secondary:hover {
  border-color: #20bd5a !important;
  background: #20bd5a !important;
  color: #fff !important;
}

.hero-actions .button-secondary .whatsapp-icon,
.hero-actions .button-secondary .whatsapp-icon path {
  fill: currentColor !important;
  stroke: none !important;
}

@media (max-width: 820px) {
  .utility-contact-icon {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }
}
/* PREMIUM MOBILE CONTACT BAR */
.mobile-contact-bar {
  display: none;
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom)) !important;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-height: 78px;
    padding-bottom: env(safe-area-inset-bottom);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .2);
  }

  .mobile-contact-bar > a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 78px;
    padding: 10px 12px;
    gap: 10px;
    border: 0;
    color: #fff !important;
    text-decoration: none;
  }

  .mobile-contact-call {
    background: var(--red) !important;
  }

  .mobile-contact-call:hover,
  .mobile-contact-call:focus-visible {
    background: #c90813 !important;
  }

  .mobile-contact-whatsapp {
    background: #25D366 !important;
  }

  .mobile-contact-whatsapp:hover,
  .mobile-contact-whatsapp:focus-visible {
    background: #20bd5a !important;
  }

  .mobile-contact-icon {
    display: block;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: currentColor !important;
    stroke: none !important;
  }

  .mobile-contact-icon path {
    fill: currentColor !important;
    stroke: none !important;
  }

  .mobile-contact-copy {
    display: flex !important;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
  }

  .mobile-contact-copy strong {
    display: block;
    overflow: hidden;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mobile-contact-copy small {
    display: block;
    overflow: hidden;
    font-size: 10px;
    font-weight: 650;
    line-height: 1.2;
    opacity: .92;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media (max-width: 390px) {
  .mobile-contact-bar > a {
    gap: 7px;
    padding-inline: 8px;
  }

  .mobile-contact-icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .mobile-contact-copy strong {
    font-size: 14px;
  }

  .mobile-contact-copy small {
    font-size: 9px;
  }
}
