:root {
  --ink: #102326;
  --muted: #607173;
  --paper: #fbfeff;
  --white: #ffffff;
  --soft: #eefbfb;
  --line: #d8ecef;
  --teal: #07877d;
  --teal-dark: #055a56;
  --lime: #d7ee64;
  --sky: #dff5ff;
  --aqua: #bcefe9;
  --shadow: 0 20px 55px rgba(10, 74, 78, 0.12);
  --deep-shadow: 0 30px 74px rgba(10, 74, 78, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, #f4fcff 520px, var(--paper) 100%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(251, 254, 255, 0.94);
  border-bottom: 1px solid rgba(216, 236, 239, 0.86);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 98px;
  height: 62px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 32px);
  font-size: 0.93rem;
  font-weight: 850;
}

.site-nav a,
.header-cta,
.button,
.contact-channels a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.contact-channels a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(11, 111, 101, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions .button {
  position: relative;
  gap: 9px;
  overflow: hidden;
}

.hero-actions .primary {
  animation: softPulse 2.8s ease-in-out infinite;
}

.hero-actions .primary::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: shineSweep 3.8s ease-in-out infinite;
}

.hero-actions .button span {
  position: relative;
  z-index: 1;
  font-size: 1.12rem;
}

.call-button {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.call-button:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.22);
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(11, 111, 101, 0.24);
  }

  50% {
    box-shadow: 0 18px 42px rgba(11, 111, 101, 0.42);
  }
}

@keyframes shineSweep {
  0%,
  52% {
    left: -45%;
  }

  78%,
  100% {
    left: 120%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .primary,
  .hero-actions .primary::after {
    animation: none;
  }

}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 58px);
  overflow: hidden;
  background: #071f1e;
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: center 58%;
  opacity: 0.58;
  filter: saturate(0.95) contrast(1.05);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 20, 19, 0.96) 0%, rgba(3, 20, 19, 0.78) 42%, rgba(3, 20, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 20, 19, 0.72) 0%, rgba(3, 20, 19, 0) 42%);
  content: "";
}

.hero::after {
  position: absolute;
  right: clamp(18px, 8vw, 120px);
  bottom: clamp(28px, 7vw, 100px);
  width: min(330px, 28vw);
  height: min(330px, 28vw);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  content: "";
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  color: var(--white);
}

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

.hero .eyebrow,
.gallery-section .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 5.7vw, 5.05rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.35vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
  line-height: 1.26;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

.hero-metrics div {
  min-height: 96px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 16px 12px;
  text-align: center;
}

.hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-metrics dd {
  max-width: 210px;
  margin: 6px 0 0;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.2;
}

.seo-intro,
.quick-quote,
.service-showcase,
.difference,
.trust-section,
.process,
.locations,
.local-seo,
.gallery-section,
.faq,
.contact {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 4vw, 58px);
}

.seo-intro,
.quick-quote,
.process,
.faq,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.seo-intro {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.quick-quote {
  width: min(1260px, 100%);
  margin: 0 auto;
  align-items: center;
  padding-top: clamp(46px, 7vw, 86px);
  padding-bottom: clamp(46px, 7vw, 86px);
}

.quick-quote-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.seo-intro p,
.locations .section-head p,
.service-feature p,
.service-list p,
.difference p,
.process-copy span,
.faq p,
.contact-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.section-head {
  max-width: 840px;
  margin-bottom: 42px;
}

.section-head.centred {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-showcase {
  background:
    linear-gradient(180deg, #f7fdff 0%, var(--soft) 100%);
}

.service-layout {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.service-feature,
.service-list article,
.difference article,
.trust-grid article,
.quote-form,
details {
  border: 1px solid rgba(11, 111, 101, 0.13);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 32, 30, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-list article:hover,
.difference article:hover,
.trust-grid article:hover,
details:hover {
  border-color: rgba(7, 135, 125, 0.28);
  box-shadow: 0 22px 54px rgba(16, 32, 30, 0.12);
  transform: translateY(-3px);
}

.service-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.service-feature img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-feature div {
  padding: 24px;
}

.service-feature span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.service-list article,
.difference article {
  min-height: 210px;
  padding: 24px;
}

.difference {
  width: min(1280px, 100%);
  margin: 0 auto;
}

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

.difference article span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 950;
}

.process {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f2fbff);
}

.process-media img {
  width: 100%;
  aspect-ratio: 680 / 436;
  object-fit: contain;
  padding: clamp(10px, 2vw, 18px);
  background:
    linear-gradient(135deg, #ffffff 0%, #e8fbff 100%);
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
}

.process-media.brand-card {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: clamp(18px, 4vw, 46px);
  border: 1px solid rgba(11, 111, 101, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(188, 239, 233, 0.65), transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #eefbfb 100%);
  box-shadow: var(--deep-shadow);
}

.process-media.brand-card img {
  width: min(430px, 100%);
  aspect-ratio: 1;
  padding: 0;
  object-fit: contain;
  border: 10px solid #ffffff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(10, 74, 78, 0.18);
}

.process-copy {
  max-width: 650px;
}

.process-copy ol {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process-copy li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.locations {
  background: var(--white);
}

.location-grid {
  width: min(1020px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.location-grid span {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, var(--sky) 100%);
  font-weight: 900;
}

.gallery-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fdff 0%, #eaf8fa 100%);
}

.gallery-section .eyebrow {
  color: var(--teal);
}

.gallery-section .section-head {
  width: min(1220px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.gallery {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(10, 74, 78, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery img:hover {
  box-shadow: 0 28px 78px rgba(10, 74, 78, 0.22);
  transform: translateY(-3px);
}

.gallery img:first-child {
  height: 100%;
  grid-row: span 2;
}

.gallery img:nth-child(4) {
  grid-column: span 2;
}

.faq {
  width: min(1240px, 100%);
  margin: 0 auto;
}

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

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 950;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact {
  background:
    linear-gradient(180deg, #eefbfb 0%, #fbfeff 100%);
}

.legal-hero {
  padding: clamp(78px, 10vw, 132px) clamp(18px, 4vw, 58px) clamp(44px, 7vw, 78px);
  background:
    linear-gradient(135deg, rgba(238, 251, 251, 0.96), rgba(251, 254, 255, 1)),
    var(--paper);
}

.legal-hero h1,
.legal-hero p {
  width: min(900px, 100%);
}

.legal-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  line-height: 1.06;
}

.legal-hero p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-updated {
  margin-top: 18px;
  font-weight: 850;
}

.legal-page {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.legal-page article,
.legal-note {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin-bottom: 30px;
  font-size: clamp(1.32rem, 1.7vw, 1.72rem);
  line-height: 1.25;
}

.legal-note h2 {
  margin-bottom: 30px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-page a {
  color: var(--teal-dark);
  font-weight: 850;
}

.legal-page ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-note {
  margin-top: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-copy,
.quote-form {
  width: min(560px, 100%);
}

.contact-copy {
  justify-self: end;
}

.contact-channels {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-channels a {
  width: min(100%, 430px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(11, 111, 101, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-channels span {
  flex: 0 0 auto;
  font-size: 1.22rem;
}

.data-note {
  max-width: 520px;
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

.quote-form.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.quote-form.compact .wide-field {
  grid-column: 1 / -1;
}

.quote-form.compact .button {
  grid-column: 1 / -1;
}

.trust-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #eefbfb 100%);
}

.trust-section .section-head p {
  color: var(--muted);
  line-height: 1.7;
}

.google-rating {
  width: min(760px, 100%);
  min-height: 76px;
  display: grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 6px;
  margin: 0 auto 28px;
  padding: 16px 22px;
  border: 1px solid rgba(7, 135, 125, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(223, 245, 255, 0.78));
  box-shadow: 0 16px 42px rgba(16, 32, 30, 0.08);
  text-align: center;
}

.google-rating span {
  display: block;
  font-size: 1.35rem;
}

.google-rating strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.08rem;
  line-height: 1.25;
}

.google-rating small {
  display: block;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.trust-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  min-height: 210px;
  padding: 26px;
}

.testimonial-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 240px;
}

.testimonial-grid article::before {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--aqua);
  font-size: 1.45rem;
  font-weight: 950;
  content: "“";
}

.trust-grid strong {
  display: block;
  margin-bottom: 0;
  font-size: 1.18rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.local-seo {
  background: var(--white);
}

.local-seo .section-head {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.local-links {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.local-links a {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, var(--sky) 100%);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.local-links a:hover {
  border-color: rgba(7, 135, 125, 0.45);
  color: var(--teal-dark);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c8d8d2;
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(11, 111, 101, 0.18);
  border-color: var(--teal);
}

.quote-form .button {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.form-note strong {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 58px) 96px;
  color: rgba(255, 255, 255, 0.82);
  background: #10201e;
}

.site-footer img {
  width: 78px;
  height: 54px;
  object-fit: contain;
  padding: 4px;
  border-radius: 8px;
  background: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 850;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 950;
  text-decoration: none;
  box-shadow: var(--shadow);
  animation: whatsPulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

@keyframes whatsPulse {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(7, 135, 125, 0.28);
  }

  50% {
    box-shadow: 0 20px 48px rgba(7, 135, 125, 0.45);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .seo-intro,
  .quick-quote,
  .service-layout,
  .process,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .difference-grid,
  .trust-grid,
  .location-grid,
  .local-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy {
    justify-self: start;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 260px;
  }

  .gallery img,
  .gallery img:first-child {
    height: 100%;
    grid-row: auto;
  }

  .gallery img:nth-child(4) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 82px;
    height: 52px;
  }

  .site-nav.is-open {
    top: 72px;
  }

  .hero {
    min-height: calc(100vh - 72px);
    align-items: end;
    padding: 48px 14px 98px;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.06;
  }

  h2 {
    font-size: 1.72rem;
    line-height: 1.16;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    margin-bottom: 24px;
  }

  .hero-metrics,
  .quote-form.compact,
  .service-list,
  .difference-grid,
  .trust-grid,
  .location-grid,
  .local-links,
  .gallery {
    grid-template-columns: 1fr;
  }

  .quote-form.compact .wide-field,
  .quote-form.compact .button {
    grid-column: auto;
  }

  .hero-metrics {
    display: none;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .service-feature img,
  .gallery img,
  .gallery img:first-child {
    height: 240px;
  }

  .process-media.brand-card {
    min-height: 280px;
  }

  .gallery img:nth-child(4) {
    grid-column: auto;
  }

  .service-list article,
  .difference article {
    min-height: auto;
  }

  .process-copy li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 52px;
  }
}
