:root {
  --navy: #10172c;
  --navy-soft: #1e2847;
  --orange: #ff7a45;
  --orange-deep: #ec5d27;
  --paper: #ffffff;
  --mist: #f2f4f7;
  --ink: #172033;
  --muted: #596377;
  --line: #dce2eb;
  --shadow: 0 24px 70px rgba(16, 23, 44, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 23, 44, .09);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  min-width: max-content;
  color: var(--navy);
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand strong {
  margin-left: 3px;
  color: var(--orange-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  margin-left: auto;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover,
.footer a:hover,
.text-link:hover {
  color: var(--orange-deep);
}

.nav-phone,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-phone {
  gap: 9px;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--paper);
  font-weight: 800;
}

.nav-phone svg,
.nav-toggle svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(860px, calc(100svh - 24px));
  padding: clamp(58px, 8vw, 112px) 0 42px;
  overflow: hidden;
}

.hero-media,
.detail-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: center / cover no-repeat url("hero-cleaning.png");
}

.hero-shade,
.detail::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 23, 44, .74), rgba(16, 23, 44, .37) 55%, rgba(16, 23, 44, .28)),
    linear-gradient(180deg, rgba(16, 23, 44, .14), rgba(16, 23, 44, .55));
  content: "";
}

.hero-inner {
  display: grid;
  min-height: clamp(560px, 72svh, 714px);
  align-content: space-between;
  gap: 38px;
}

.hero-copy {
  width: min(720px, 100%);
  color: var(--paper);
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 6.3rem);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.quote-card {
  width: min(720px, 100%);
  justify-self: center;
  padding: clamp(23px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(16, 23, 44, .96);
  color: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.quote-card p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
}

.quote-card strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(1.18rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 146px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-accent {
  background: var(--orange);
  color: #23120b;
}

.button-accent:hover {
  background: #ff936a;
}

.button-light {
  background: var(--paper);
  color: var(--navy);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, .42);
  color: var(--paper);
}

.button-navy {
  background: var(--navy);
  color: var(--paper);
}

.service-strip {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

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

.service-item {
  min-height: 176px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 13px;
  padding: 22px 10px;
  color: var(--muted);
  text-align: center;
}

.service-item svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: #8a93a6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-item h2 {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.intro,
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.intro p,
.feature p,
.review-grid p,
.footer p {
  color: var(--muted);
}

.tick-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 31px;
  font-weight: 750;
}

.tick-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  content: "\2713";
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 950;
}

.intro-panel {
  padding: clamp(26px, 4vw, 46px);
  border-left: 4px solid var(--orange);
  background:
    linear-gradient(135deg, rgba(255, 122, 69, .14), transparent 48%),
    var(--mist);
}

.text-link {
  color: var(--navy);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
}

.pricing-band {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 2px, transparent 2px 13px),
    var(--orange);
  color: #28140d;
}

.pricing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .9fr) auto;
  align-items: center;
  gap: 28px;
  padding-top: clamp(48px, 6vw, 74px);
  padding-bottom: clamp(48px, 6vw, 74px);
}

.pricing-inner .eyebrow {
  color: #552614;
}

.pricing-inner h2 {
  margin: 0;
}

.price-points {
  display: grid;
  gap: 10px;
}

.price-points span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(16, 23, 44, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .78);
  font-weight: 850;
}

.trust-strip {
  background: var(--navy);
  color: var(--paper);
}

.trust-strip .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 108px;
}

.trust-strip strong {
  max-width: 460px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.trust-strip span {
  color: rgba(255, 255, 255, .7);
  font-weight: 850;
}

.feature-image {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.mini-stats {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.mini-stats b {
  color: var(--orange-deep);
  font-size: 1.2rem;
}

.detail {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
}

.detail-backdrop {
  filter: saturate(.68);
  transform: scale(1.04);
}

.detail::before {
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 23, 44, .98), rgba(16, 23, 44, .82));
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  padding-top: clamp(66px, 8vw, 104px);
  padding-bottom: clamp(66px, 8vw, 104px);
}

.detail h2,
.dark-list {
  color: var(--paper);
}

.detail > .shell > div > p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, .76);
}

.dark-list li::before {
  color: var(--navy);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.enquiry-form h2,
.message-field,
.enquiry-form button,
.form-note {
  grid-column: 1 / -1;
}

.enquiry-form h2 {
  margin-bottom: 4px;
  font-size: 1.7rem;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfe;
  color: var(--ink);
}

input,
select {
  min-height: 50px;
  padding: 0 13px;
}

textarea {
  min-height: 116px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 122, 69, .24);
  border-color: var(--orange);
}

.form-note {
  min-height: 24px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.reviews {
  padding-top: clamp(64px, 8vw, 106px);
  padding-bottom: clamp(64px, 8vw, 106px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  min-height: 226px;
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  border-top: 4px solid var(--orange);
  background: var(--mist);
}

blockquote span {
  display: grid;
  gap: 3px;
  color: var(--navy);
  font-weight: 950;
}

blockquote span small {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
}

blockquote p::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
  margin: 16px 0 14px;
  color: var(--orange-deep);
  letter-spacing: 0;
}

.areas {
  background: #f7f8fb;
  border-top: 1px solid var(--line);
}

.areas-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.area-tags span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 900;
}

.footer {
  background: var(--navy);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(2, 1fr);
  gap: 28px;
  padding-top: 58px;
  padding-bottom: 42px;
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--paper);
}

.footer h2 {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 1rem;
}

.footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, .68);
}

.copyright {
  margin: 0;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 68px;
  padding: 9px 10px 9px 18px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 15px 38px rgba(16, 23, 44, .26);
  color: var(--navy);
  transition: transform .18s ease, box-shadow .18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(16, 23, 44, .3);
}

.whatsapp-float-copy {
  display: grid;
  gap: 1px;
}

.whatsapp-float-copy small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.whatsapp-float-copy strong {
  font-size: 1rem;
  line-height: 1.2;
}

.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: #25d366;
  color: #ffffff;
}

.whatsapp-float-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

@media (max-width: 920px) {
  .nav {
    flex-wrap: wrap;
    padding: 13px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    order: 4;
    width: 100%;
    display: none;
    margin: 0;
    padding: 10px 0 4px;
  }

  .nav-links.is-open {
    display: grid;
    gap: 5px;
  }

  .nav-links a {
    min-height: 43px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--line);
  }

  .nav-phone {
    min-width: 46px;
    padding: 0 13px;
  }

  .nav-phone svg {
    flex: 0 0 auto;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-item {
    min-height: 145px;
  }

  .intro,
  .feature,
  .detail-grid,
  .areas-inner {
    grid-template-columns: 1fr;
  }

  .pricing-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip .shell {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .nav-phone {
    font-size: 0;
  }

  .hero {
    min-height: 0;
    padding-top: 46px;
  }

  .hero-inner {
    min-height: min(790px, calc(100svh - 40px));
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4.4rem);
  }

  .quote-card,
  .enquiry-form {
    text-align: left;
  }

  .button-row,
  .button {
    width: 100%;
  }

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

  .service-item {
    min-height: 136px;
  }

  .feature-image {
    min-height: 290px;
  }

  .detail-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .enquiry-form,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    min-height: 58px;
    padding: 5px;
    border-radius: 7px;
  }

  .whatsapp-float-copy {
    display: none;
  }

  .whatsapp-float-icon {
    width: 52px;
    height: 52px;
  }

  .mini-stats {
    grid-template-columns: auto 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    display: inline-block;
    margin-top: 7px;
  }
}
