:root {
  color-scheme: light;
  --ink: #102235;
  --muted: #566b80;
  --line: #d7e4ef;
  --surface: #ffffff;
  --soft: #f3f8fc;
  --accent: #0b67b2;
  --accent-dark: #084a80;
  --accent-light: #35a9e1;
  --signal: #1677c7;
  --shadow: 0 18px 45px rgba(16, 34, 53, 0.13);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(240px, 58vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: clamp(48px, 8vw, 110px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(115deg, rgba(8, 74, 128, 0.92), rgba(16, 34, 53, 0.72)),
    url("assets/cleaning-desk-pexels-ron-lach.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--signal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9cddff;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

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

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

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

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

.button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.button.secondary {
  color: var(--accent-dark);
  background: #fff;
  border-color: var(--line);
}

.hero-panel,
.contact-card,
.contact-form,
.service-card,
blockquote {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-panel {
  color: var(--ink);
  padding: 28px;
}

.hero-panel dl,
.hero-panel dd {
  margin: 0;
}

.hero-panel div + div {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-panel dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel dd {
  font-size: 1.05rem;
  font-weight: 800;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 84px);
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 22px clamp(18px, 6vw, 84px);
  color: #fff;
  background: var(--accent-dark);
}

.review-strip > div {
  display: grid;
  gap: 2px;
}

.review-score {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.review-links {
  align-content: center;
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
}

.review-links a,
.review-callout a {
  color: inherit;
  font-weight: 800;
}

.compact-strip {
  margin-top: 30px;
  border-radius: 8px;
}

.review-callout {
  padding: clamp(44px, 7vw, 72px) clamp(18px, 6vw, 84px);
  color: #fff;
  background: var(--accent-dark);
}

.review-callout h2,
.review-callout p {
  max-width: 760px;
}

.mini-review {
  display: grid;
  gap: 5px;
  margin-top: 24px;
  padding: 16px;
  border-left: 4px solid var(--accent-light);
  border-radius: 8px;
  background: #fff;
}

.mini-review span {
  color: var(--muted);
}

.mini-review a {
  color: var(--accent-dark);
  font-weight: 800;
}

.review-badge-section {
  background: #fff;
}

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

.review-badge {
  display: grid;
  gap: 8px;
  padding: 24px;
  min-height: 180px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

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

.badge-platform {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge-score {
  color: var(--accent-dark);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.95;
}

.badge-stars {
  color: #f5b301;
  letter-spacing: 0;
  font-size: 1.2rem;
}

.badge-copy {
  color: var(--muted);
  font-weight: 800;
}

.badge-action {
  display: inline-flex;
  width: max-content;
  margin-top: 6px;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: underline;
}

.google-badge {
  border-top: 5px solid #4285f4;
}

.productreview-badge {
  border-top: 5px solid #00a1d6;
}

.about-review-badges {
  margin-top: 22px;
}

.mini-badges {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.mini-badges .review-badge {
  min-height: 120px;
  padding: 16px;
}

.mini-badges .badge-score {
  font-size: 2.1rem;
}

.page-hero {
  padding: clamp(60px, 9vw, 118px) clamp(18px, 6vw, 84px);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8, 74, 128, 0.95), rgba(16, 34, 53, 0.82)),
    url("assets/cleaning-desk-pexels-ron-lach.jpg");
  background-position: center;
  background-size: cover;
}

.home-cleaning-page .page-hero {
  background-image:
    linear-gradient(115deg, rgba(8, 74, 128, 0.95), rgba(16, 34, 53, 0.8)),
    url("assets/home-cleaning-pexels-liliana-drew.jpg");
}

.commercial-cleaning-page .page-hero {
  background-image:
    linear-gradient(115deg, rgba(8, 74, 128, 0.95), rgba(16, 34, 53, 0.78)),
    url("assets/commercial-cleaning-pexels-fauxels.jpg");
}

.moving-cleaning-page .page-hero {
  background-image:
    linear-gradient(115deg, rgba(8, 74, 128, 0.95), rgba(16, 34, 53, 0.78)),
    url("assets/moving-cleaning-pexels-ketut-subiyanto.jpg");
}

.about-page .page-hero {
  background-image:
    linear-gradient(115deg, rgba(8, 74, 128, 0.95), rgba(16, 34, 53, 0.8)),
    url("assets/about-pexels-thirdman.jpg");
}

.contact-page .page-hero {
  background-image:
    linear-gradient(115deg, rgba(8, 74, 128, 0.95), rgba(16, 34, 53, 0.78)),
    url("assets/contact-pexels-alleksana.jpg");
}

.page-hero h1,
.page-hero p {
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.area-band {
  background: var(--soft);
}

.process-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(243, 248, 252, 0.96), rgba(255, 255, 255, 0.96));
}

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

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

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #fff;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 900;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--ink);
}

.photo-band img {
  display: block;
  width: 100%;
  height: clamp(230px, 28vw, 390px);
  object-fit: cover;
}

.image-feature-section {
  align-items: center;
  background: #fff;
}

.area-card-grid {
  margin-top: 26px;
}

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

.suburb-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.service-card,
blockquote {
  padding: 24px;
  background: var(--surface);
  border-color: var(--line);
  box-shadow: none;
}

.service-card {
  border-top: 5px solid var(--accent);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.service-card p,
.section p,
blockquote p {
  color: var(--muted);
}

.split,
.contact-section,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.detail-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.detail-content {
  max-width: 820px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: inset 0 0 0 5px #fff;
}

.check-list.compact {
  margin-bottom: 0;
}

.small-note {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 700;
}

.small-note a {
  color: var(--accent-dark);
}

.info-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.image-panel,
.inline-photo,
.image-stack img {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.image-panel img,
.inline-photo img,
.image-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.image-panel div {
  padding: 22px;
}

.image-stack {
  display: grid;
  gap: 18px;
}

.inline-photo {
  margin: 0;
  align-self: start;
}

.inline-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-photo {
  margin-top: 24px;
  max-width: 520px;
}

.wide-photo {
  margin-top: 28px;
  max-width: 960px;
}

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

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

.feature-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--accent-light);
  background: var(--soft);
  font-weight: 700;
}

.about-band,
.contact-section {
  background: var(--soft);
}

.testimonials {
  background: #fff;
}

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

blockquote {
  margin: 0;
}

blockquote cite {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.contact-form,
.contact-card {
  display: grid;
  gap: 22px;
  padding: 26px;
  border-color: var(--line);
  background: #fff;
}

.contact-form {
  gap: 18px;
  box-shadow: var(--shadow);
}

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

.span-2 {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a8793;
  font-weight: 600;
  opacity: 1;
}

.contact-form select.is-placeholder,
.contact-form input[type="date"]:not(:focus):invalid {
  color: #7a8793;
  font-weight: 600;
}

.contact-form select option {
  color: var(--ink);
  font-weight: 700;
}

.contact-form select option[value=""] {
  color: #7a8793;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(53, 169, 225, 0.28);
  border-color: var(--accent);
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-card {
  font-style: normal;
}

.contact-details {
  padding-top: 0;
  background: var(--soft);
}

.contact-card strong {
  font-size: 1.25rem;
}

.contact-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-card-heading strong,
.contact-card-heading span {
  display: block;
}

.contact-card-heading div > span {
  color: var(--muted);
}

.contact-icon {
  display: block;
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  object-fit: contain;
  padding: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 74, 128, 0.18);
}

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

.contact-info-item {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-info-item a {
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-map-section {
  background: #fff;
}

.service-map {
  margin: 0;
  max-width: 960px;
}

.service-map img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-map figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .split,
  .contact-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .area-card-grid,
  .quote-grid,
  .reason-grid,
  .process-grid,
  .faq-grid,
  .photo-band,
  .review-strip,
  .review-badges,
  .mini-badges,
  .feature-list,
  .suburb-list,
  .contact-info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .brand-logo {
    width: min(210px, 64vw);
  }

  h1 {
    font-size: 2.45rem;
  }

  .button {
    width: 100%;
  }
}
