:root {
  --green-950: #0f2f25;
  --green-900: #153f31;
  --green-800: #1d5744;
  --green-700: #267058;
  --green-100: #e8f2ed;
  --green-50: #f4f8f6;
  --ink: #17211d;
  --muted: #66726c;
  --line: #d8e2dc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 47, 37, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-800);
  color: white;
  font-size: 12px;
  letter-spacing: .04em;
}
nav { display: flex; gap: 24px; }
nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--green-950);
  border-bottom: 2px solid transparent;
  padding: 4px 0;
}
nav a:hover, nav a.active-link { border-bottom-color: var(--green-700); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: var(--green-800);
  color: white;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.button:hover { background: var(--green-900); }
.button-small { min-height: 40px; padding: 0 16px; font-size: 14px; }
.button-secondary { background: transparent; color: var(--green-900); border: 1px solid var(--green-700); }
.button-secondary:hover { background: var(--green-50); }
.button-full { width: 100%; }

.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(38,112,88,.15), transparent 32%),
    linear-gradient(180deg, var(--green-50), white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--green-700);
}
h1, h2, h3 { margin-top: 0; color: var(--green-950); line-height: 1.15; }
h1 { font-size: clamp(42px, 6vw, 70px); letter-spacing: -.045em; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.03em; margin-bottom: 18px; }
h3 { font-size: 20px; }
.hero-copy { max-width: 690px; font-size: 19px; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 26px; }
.trust-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 600;
  color: var(--green-900);
}
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--green-700); }

.hero-card, .quote-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.hero-card { padding: 28px; }
.card-label { margin: 0 0 12px; font-weight: 700; color: var(--muted); }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.discount-banner {
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-950);
  font-weight: 800;
  text-align: center;
}

.section { padding: 84px 0; }
.section-muted { background: var(--green-50); }
.service-grid, .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.service-card, .step {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.service-card {
  padding: 26px;
}
.service-card-image {
  padding: 0;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card-image > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--green-50);
  border-bottom: 1px solid var(--line);
}
.service-card-body { padding: 24px; }
.service-icon, .step > strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
  margin-bottom: 20px;
}
.service-card span { color: var(--green-800); font-weight: 800; }
.service-card p, .step p { color: var(--muted); }
.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.service-card-footer a {
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
}
.section-action { margin-top: 28px; text-align: center; }
.step { padding: 26px; }

.booking-section { background: linear-gradient(180deg, white, var(--green-50)); }
.booking-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 50px;
  align-items: start;
}
.booking-copy { position: sticky; top: 110px; }
.access-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--green-700);
  background: var(--green-100);
  border-radius: 0 12px 12px 0;
}
.access-note p { margin-bottom: 0; color: var(--green-950); }

.quote-card { padding: 28px; }
.form-section { margin-bottom: 24px; }
label, legend { display: block; font-weight: 700; margin-bottom: 8px; }
fieldset { border: 0; padding: 0; margin: 0; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  border: 1px solid #bdcbc3;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  background: white;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(38,112,88,.18);
  border-color: var(--green-700);
}
.field-help { margin: 7px 0 0; font-size: 13px; color: var(--muted); }
.check-row, .radio-row, .terms-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  cursor: pointer;
}
.check-row input, .radio-row input, .terms-row input { margin-top: 5px; }
.check-row span, .radio-row span, .terms-row span { font-weight: 500; }
.check-row small { display: block; color: var(--muted); font-weight: 400; margin-top: 3px; }

.quote-summary {
  margin: 28px 0;
  padding: 18px;
  background: var(--green-950);
  color: white;
  border-radius: 14px;
}
.quote-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
}
.total-row {
  margin-top: 8px;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: 22px;
}

.customer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.full-width { grid-column: 1 / -1; }
.form-message { margin: 14px 0 0; font-weight: 700; color: var(--green-800); }

.contact-section { padding-top: 50px; }
.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  border-radius: 18px;
  background: var(--green-950);
  color: white;
}
.contact-card h2, .contact-card .eyebrow { color: white; }
.contact-links { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.contact-links a { color: white; font-weight: 700; }

.gallery-hero {
  padding: 84px 0 68px;
  background:
    radial-gradient(circle at 80% 20%, rgba(38,112,88,.18), transparent 27%),
    linear-gradient(180deg, var(--green-50), white);
}
.gallery-hero-inner { max-width: 880px; }
.demo-notice {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 16px;
  border: 1px solid #c9d9d0;
  border-radius: 10px;
  background: white;
  color: var(--muted);
  font-size: 14px;
}
.comparison-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 52px;
  align-items: center;
}
.comparison-layout-reverse {
  grid-template-columns: 1.35fr .65fr;
}
.comparison-layout-reverse .comparison-copy { order: 2; }
.comparison-layout-reverse .comparison { order: 1; }
.comparison-copy p { color: var(--muted); font-size: 17px; }
.result-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}
.result-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.result-list li::before { content: "✓"; margin-right: 10px; color: var(--green-700); }

.comparison {
  --position: 50%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: var(--green-50);
  user-select: none;
}
.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comparison-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--position));
}
.comparison-label {
  position: absolute;
  top: 18px;
  z-index: 5;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,47,37,.88);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.comparison-label-before { left: 18px; }
.comparison-label-after { right: 18px; }
.comparison-line {
  position: absolute;
  z-index: 4;
  left: var(--position);
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: white;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(15,47,37,.15);
}
.comparison-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border: 3px solid white;
  border-radius: 50%;
  background: var(--green-800);
  color: white;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(15,47,37,.25);
}
.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 38px;
  border-radius: 18px;
  background: var(--green-950);
  color: white;
}
.gallery-cta h2, .gallery-cta .eyebrow { color: white; }
.gallery-cta p { margin-bottom: 0; color: #dbe8e2; }

footer { border-top: 1px solid var(--line); padding: 24px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }

@media (max-width: 980px) {
  nav { gap: 14px; }
  .hero-grid, .booking-grid, .comparison-layout, .comparison-layout-reverse { grid-template-columns: 1fr; }
  .comparison-layout-reverse .comparison-copy, .comparison-layout-reverse .comparison { order: initial; }
  .booking-copy { position: static; }
  .service-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
}
@media (max-width: 760px) {
  nav { display: none; }
  .gallery-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .header-inner .button-small { display: none; }
  h1 { font-size: 42px; }
  .section { padding: 64px 0; }
  .customer-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .contact-card, .footer-inner { flex-direction: column; }
  .quote-card { padding: 20px; }
  .comparison-label { top: 10px; padding: 6px 9px; font-size: 10px; }
  .comparison-label-before { left: 10px; }
  .comparison-label-after { right: 10px; }
  .comparison-line span { width: 44px; height: 44px; }
}


.additional-results {
  margin-top: 34px;
}
.additional-results h3 {
  margin-bottom: 20px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.comparison-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 12px;
}
.comparison-small {
  border-radius: 14px;
  box-shadow: none;
}
@media (max-width: 980px) {
  .comparison-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

/* Real photo gallery additions */
.comparison {
  aspect-ratio: 1 / 1;
}
.service-comparison {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 1 / 1;
}
.service-comparison .comparison-label {
  top: 12px;
  padding: 6px 9px;
  font-size: 10px;
}
.service-comparison .comparison-label-before { left: 12px; }
.service-comparison .comparison-label-after { right: 12px; }
.service-comparison .comparison-line span {
  width: 42px;
  height: 42px;
  font-size: 16px;
}
.service-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.service-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--green-900);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.service-jump-nav a:hover {
  border-color: var(--green-700);
  background: var(--green-100);
}
.job-gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin: 58px 0 22px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.job-gallery-heading h3 {
  margin-bottom: 0;
  font-size: 28px;
}
.job-gallery-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}
.job-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.job-pair-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(15,47,37,.07);
}
.job-pair-card h3 {
  margin: 0;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.job-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.job-pair-images figure {
  position: relative;
  margin: 0;
  min-width: 0;
  background: var(--green-50);
}
.job-pair-images figure + figure {
  border-left: 1px solid white;
}
.job-pair-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.job-pair-images figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,47,37,.88);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .job-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .job-gallery {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .job-pair-images {
    grid-template-columns: 1fr;
  }
  .job-pair-images figure + figure {
    border-left: 0;
    border-top: 1px solid white;
  }
}


/* Test payment flow */
.checkout-body {
  min-height: 100vh;
  background: var(--green-50);
}
.checkout-header-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.checkout-main {
  padding: 58px 0 84px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 34px;
  align-items: start;
}
.checkout-panel,
.checkout-summary,
.confirmation-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
}
.checkout-panel {
  padding: 34px;
}
.checkout-panel h1 {
  max-width: 650px;
  font-size: clamp(38px, 5vw, 58px);
}
.checkout-back {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.test-mode-alert {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid #e0cf91;
  border-radius: 12px;
  background: #fff9df;
  color: #584813;
}
.test-mode-alert p {
  margin: 4px 0 0;
}
.payment-form {
  padding-top: 6px;
}
.payment-method-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.test-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff0c2;
  color: #6a5310;
  font-size: 11px;
  letter-spacing: .08em;
}
.card-input-wrap {
  position: relative;
}
.card-input-wrap input {
  padding-right: 66px;
}
.card-input-wrap span {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.payment-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.test-card-details {
  display: grid;
  gap: 3px;
  margin: 22px 0;
  padding: 15px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--muted);
  font-size: 13px;
}
.test-card-details strong {
  color: var(--green-950);
}
.payment-message {
  min-height: 24px;
}
button:disabled {
  cursor: wait;
  opacity: .72;
}
.checkout-summary {
  position: sticky;
  top: 106px;
  padding: 28px;
}
.checkout-summary h2 {
  font-size: 30px;
}
.summary-customer {
  display: grid;
  gap: 2px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.summary-customer span {
  color: var(--muted);
  font-size: 14px;
}
.summary-services {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.summary-services div,
.checkout-price-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.summary-services div span:last-child {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
}
.checkout-price-lines {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}
.checkout-price-lines .discount-line strong {
  color: var(--green-700);
}
.checkout-total {
  margin-top: 5px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 22px;
}
.summary-small {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.confirmation-main {
  padding: 70px 0 90px;
}
.confirmation-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 44px;
}
.confirmation-card h1 {
  font-size: clamp(38px, 6vw, 58px);
}
.confirmation-tick {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green-800);
  color: white;
  font-size: 34px;
  font-weight: 800;
}
.confirmation-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}
.confirmation-reference {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 28px 0;
  padding: 17px 19px;
  border-radius: 12px;
  background: var(--green-950);
  color: white;
}
.confirmation-details {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.confirmation-details > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 16px 18px;
}
.confirmation-details > div + div {
  border-top: 1px solid var(--line);
}
.confirmation-details span {
  color: var(--muted);
  font-weight: 600;
}
.confirmation-alert {
  margin-top: 24px;
}
.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
@media (max-width: 860px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    position: static;
  }
}
@media (max-width: 620px) {
  .checkout-main,
  .confirmation-main {
    padding-top: 34px;
  }
  .checkout-panel,
  .checkout-summary,
  .confirmation-card {
    padding: 22px;
  }
  .payment-field-grid {
    grid-template-columns: 1fr;
  }
  .confirmation-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .confirmation-reference {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}


/* Test postcode and address lookup */
.postcode-lookup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.postcode-button {
  min-width: 138px;
  padding-inline: 17px;
}
.address-lookup-section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--green-50);
}
.address-lookup-section[hidden] {
  display: none;
}
.address-lookup-section select:disabled {
  cursor: not-allowed;
  opacity: .65;
}
.field-help.field-error {
  color: #a12c2c;
  font-weight: 700;
}
@media (max-width: 620px) {
  .postcode-lookup-row {
    grid-template-columns: 1fr;
  }
  .postcode-button {
    width: 100%;
  }
}


/* Itemised quote breakdown */
.quote-summary .standard-price-row {
  padding-bottom: 12px;
}
.service-breakdown-block {
  display: block !important;
  margin: 5px 0 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.service-breakdown-heading {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-price-breakdown {
  display: grid;
  gap: 9px;
}
.service-breakdown-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 0 !important;
}
.service-breakdown-row > span {
  min-width: 0;
}
.service-breakdown-row > span > strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.service-breakdown-row small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.64);
  font-size: 11px;
  font-weight: 500;
}
.empty-breakdown {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.checkout-service-line {
  align-items: start;
}
.checkout-service-line > span {
  display: grid;
  gap: 2px;
}
.checkout-service-line > span > strong {
  font-size: 14px;
}
.checkout-service-line small {
  color: var(--muted);
  font-size: 11px;
}
@media (max-width: 480px) {
  .service-breakdown-row {
    gap: 10px;
  }
  .service-breakdown-row > span > strong {
    font-size: 13px;
  }
}


/* Terms and Conditions */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-nav a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: none;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.legal-acceptance-row a {
  color: var(--green-800);
  font-weight: 800;
}
.terms-hero {
  padding: 76px 0 58px;
  background:
    radial-gradient(circle at 85% 18%, rgba(38,112,88,.16), transparent 28%),
    linear-gradient(180deg, var(--green-50), white);
}
.terms-hero-inner {
  max-width: 900px;
}
.terms-version {
  margin: -4px 0 18px;
  color: var(--green-800);
  font-weight: 800;
}
.terms-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.terms-section {
  padding-top: 50px;
}
.terms-container {
  max-width: 980px;
}
.terms-accordion {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 24px rgba(15,47,37,.06);
  overflow: hidden;
}
.terms-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 17px 58px 17px 20px;
  color: var(--green-950);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.terms-accordion summary::-webkit-details-marker {
  display: none;
}
.terms-accordion summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 21px;
  line-height: 1;
}
.terms-accordion[open] summary::after {
  content: "−";
}
.terms-accordion[open] summary {
  border-bottom: 1px solid var(--line);
  background: var(--green-50);
}
.terms-accordion summary span {
  color: var(--green-700);
}
.terms-content {
  padding: 22px 24px 26px;
}
.terms-content p {
  margin: 0 0 16px;
  color: #38443e;
}
.terms-content p:last-child {
  margin-bottom: 0;
}
.terms-content h3 {
  margin: 24px 0 10px;
  font-size: 18px;
}
.terms-content h3:first-child {
  margin-top: 0;
}
.terms-table-wrap {
  overflow-x: auto;
}
.terms-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 14px;
}
.terms-table th,
.terms-table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.terms-table th {
  width: 210px;
  background: var(--green-100);
  color: var(--green-950);
}
.terms-table a {
  color: var(--green-800);
  font-weight: 700;
}
.cancellation-form-table .blank-cell {
  min-height: 46px;
}
.terms-note {
  margin-top: 18px !important;
  padding: 14px 16px;
  border-left: 4px solid var(--green-700);
  background: var(--green-50);
}
@media (max-width: 760px) {
  .terms-accordion summary {
    align-items: flex-start;
    min-height: 0;
    padding: 16px 52px 16px 16px;
    font-size: 15px;
  }
  .terms-content {
    padding: 18px 16px 22px;
  }
  .terms-table th {
    width: 145px;
  }
}
@media (max-width: 620px) {
  .footer-nav {
    order: 3;
  }
  .terms-controls .button {
    width: 100%;
  }
  .terms-table th,
  .terms-table td {
    min-width: 135px;
    padding: 10px;
  }
}


/* Contact form */
.contact-form-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
  align-items: start;
}
.contact-form-copy {
  position: sticky;
  top: 110px;
}
.contact-form-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}
.contact-details-card {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  background: var(--green-950);
  color: white;
}
.contact-details-card span {
  margin-top: 10px;
  color: #bcd2c8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-details-card span:first-child {
  margin-top: 0;
}
.contact-details-card a,
.contact-details-card strong {
  color: white;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.contact-form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
}
.required-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
#contactFormMessage {
  min-height: 24px;
}
@media (max-width: 900px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }
  .contact-form-copy {
    position: static;
  }
}
@media (max-width: 620px) {
  .contact-form-card {
    padding: 20px;
  }
}


/* Company disclosure footer */
.footer-legal {
  width: min(1160px, calc(100% - 36px));
  margin: 20px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.footer-legal p {
  margin: 0;
}
.footer-legal p + p {
  margin-top: 3px;
}
@media (max-width: 620px) {
  .footer-legal {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 11px;
  }
}


/* V12: visual gated booking wizard and payment comparison */
.booking-wizard-card { overflow: visible; }
.booking-wizard-top { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; margin-bottom:18px; }
.booking-wizard-top h3 { margin:0; font-size:25px; }
.wizard-counter { padding:7px 11px; border-radius:999px; background:var(--green-100); color:var(--green-900); font-size:12px; font-weight:800; white-space:nowrap; }
.wizard-progress { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin:0 0 24px; padding:0; list-style:none; }
.wizard-progress li { position:relative; display:grid; justify-items:center; gap:7px; color:var(--muted); cursor:pointer; font-size:12px; text-align:center; }
.wizard-progress li::before { content:""; position:absolute; z-index:0; top:17px; right:50%; width:100%; height:3px; background:var(--line); }
.wizard-progress li:first-child::before { display:none; }
.wizard-progress li > span { position:relative; z-index:1; display:grid; place-items:center; width:36px; height:36px; border:2px solid var(--line); border-radius:50%; background:white; font-weight:800; }
.wizard-progress li.active,.wizard-progress li.complete { color:var(--green-900); }
.wizard-progress li.active > span,.wizard-progress li.complete > span { border-color:var(--green-700); background:var(--green-800); color:white; }
.wizard-progress li.active::before,.wizard-progress li.complete::before { background:var(--green-700); }
.wizard-message { display:none; margin:0 0 18px; padding:12px 14px; border-left:4px solid #b23a3a; border-radius:0 10px 10px 0; background:#fff3f3; color:#8e2525; font-size:13px; font-weight:700; }
.wizard-message.visible { display:block; }
.wizard-step { scroll-margin-top:105px; }
.wizard-step[hidden] { display:none; }
.wizard-step-intro { margin-bottom:22px; padding:17px 19px; border-left:4px solid var(--green-700); border-radius:0 12px 12px 0; background:var(--green-50); }
.wizard-step-intro h3 { margin:0 0 5px; }
.wizard-step-intro p:last-child { margin:0; color:var(--muted); }
.wizard-actions { display:flex; justify-content:space-between; gap:12px; margin-top:24px; }
.wizard-step[data-wizard-step="1"] .wizard-actions { justify-content:flex-end; }

.visual-property-selector { padding:20px; border:1px solid var(--line); border-radius:16px; background:var(--green-50); }
.visual-property-heading { display:flex; justify-content:space-between; align-items:flex-start; gap:18px; margin-bottom:16px; }
.visual-property-heading label { margin-bottom:2px; }
.visual-property-heading > span { padding:7px 11px; border-radius:999px; background:white; color:var(--green-800); font-size:11px; font-weight:800; white-space:nowrap; }
.property-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.property-choice-card { display:grid; justify-items:center; align-content:start; gap:6px; min-height:184px; padding:18px 13px; border:2px solid var(--line); border-radius:14px; background:white; color:var(--green-950); cursor:pointer; font:inherit; text-align:center; transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease; }
.property-choice-card:hover,.property-choice-card:focus { outline:none; transform:translateY(-3px); border-color:#8bb2a1; box-shadow:0 12px 28px rgba(15,47,37,.1); }
.property-choice-card.selected { border-color:var(--green-700); background:#f8fcfa; box-shadow:0 0 0 3px rgba(38,112,88,.12); }
.property-choice-card svg { width:125px; height:78px; overflow:visible; }
.property-choice-card .house-main { fill:var(--green-100); stroke:var(--green-800); stroke-width:2.5; stroke-linejoin:round; }
.property-choice-card .house-detail { fill:white; stroke:var(--green-700); stroke-width:2; }
.property-choice-card .roof-line { fill:none; stroke:var(--green-900); stroke-width:4; stroke-linecap:round; stroke-linejoin:round; }
.property-choice-card > strong { font-size:15px; }
.property-choice-card > span { color:var(--muted); font-size:11px; line-height:1.4; }
.bedroom-selector-block { margin-top:20px; }
.bedroom-chip-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:9px; }
.bedroom-chip { min-height:46px; border:2px solid var(--line); border-radius:10px; background:white; color:var(--green-950); cursor:pointer; font:inherit; font-weight:800; }
.bedroom-chip:hover,.bedroom-chip:focus,.bedroom-chip.selected { outline:none; border-color:var(--green-700); background:var(--green-800); color:white; }
.visually-hidden-selects { position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; overflow:hidden!important; }

.booking-review-card { margin-bottom:18px; padding:20px; border:1px solid var(--line); border-radius:16px; background:var(--green-50); }
.booking-review-heading { display:flex; justify-content:space-between; align-items:flex-start; gap:18px; margin-bottom:14px; }
.booking-review-heading h4 { margin:0; font-size:20px; }
.review-edit-button { border:0; background:transparent; color:var(--green-800); cursor:pointer; font:inherit; font-size:12px; font-weight:800; text-decoration:underline; }
.booking-review-list { display:grid; margin:0; border:1px solid var(--line); border-radius:12px; overflow:hidden; background:white; }
.booking-review-list > div { display:grid; grid-template-columns:120px 1fr; gap:16px; padding:12px 14px; }
.booking-review-list > div + div { border-top:1px solid var(--line); }
.booking-review-list dt { color:var(--muted); font-size:12px; font-weight:800; }
.booking-review-list dd { margin:0; color:var(--green-950); font-size:13px; font-weight:700; }

.payment-choice-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.payment-choice-card { position:relative; display:grid; align-content:start; gap:8px; min-height:252px; padding:22px; border:2px solid var(--line); border-radius:16px; background:white; color:var(--green-950); cursor:pointer; text-align:left; transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease; }
.payment-choice-card:hover,.payment-choice-card:focus { outline:none; transform:translateY(-3px); border-color:#90b5a5; box-shadow:0 14px 30px rgba(15,47,37,.1); }
.payment-choice-card.selected { border-color:var(--green-700); background:#f8fcfa; box-shadow:0 0 0 3px rgba(38,112,88,.12); }
.payment-choice-card input { position:absolute; opacity:0; pointer-events:none; }
.payment-choice-badge { position:absolute; top:14px; right:14px; padding:5px 8px; border-radius:999px; background:var(--green-800); color:white; font-size:10px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.payment-choice-icon { display:grid; place-items:center; width:44px; height:44px; border-radius:12px; background:var(--green-100); color:var(--green-800); font-size:21px; font-weight:800; }
.payment-choice-card > strong { margin-top:4px; font-size:17px; }
.payment-choice-description { min-height:55px; color:var(--muted); font-size:13px; font-weight:500; line-height:1.5; }
.payment-choice-amount { display:grid; margin-top:6px; padding-top:14px; border-top:1px solid var(--line); }
.payment-choice-amount small { color:var(--muted); font-size:11px; }
.payment-choice-amount strong { font-size:26px; }
.payment-saving-text { display:inline-flex; justify-self:start; padding:6px 9px; border-radius:999px; background:var(--green-100); color:var(--green-800); font-size:11px; font-weight:800; }
.payment-saving-text.neutral { background:#f1f3f2; color:var(--muted); }
.payment-choice-summary { margin:13px 0 0; padding:12px 14px; border-left:4px solid var(--green-700); border-radius:0 10px 10px 0; background:var(--green-50); color:var(--green-950); font-size:13px; font-weight:700; }

@media (max-width:740px) {
  .property-card-grid { grid-template-columns:1fr; }
  .property-choice-card { grid-template-columns:92px 1fr; justify-items:start; align-items:center; min-height:108px; text-align:left; }
  .property-choice-card svg { grid-row:1 / 3; width:86px; height:65px; }
  .payment-choice-grid { grid-template-columns:1fr; }
  .payment-choice-card { min-height:0; }
  .payment-choice-description { min-height:0; }
}
@media (max-width:620px) {
  .booking-wizard-top { flex-direction:column; gap:8px; }
  .wizard-progress strong { display:none; }
  .wizard-actions { flex-direction:column-reverse; }
  .wizard-actions .button { width:100%; }
  .visual-property-heading { flex-direction:column; gap:7px; }
  .bedroom-chip-grid { grid-template-columns:repeat(3,1fr); }
  .booking-review-list > div { grid-template-columns:1fr; gap:3px; }
}


/* V13: appointment date arrangement messaging */
#how-it-works .steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.booking-date-notice,
.checkout-date-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  margin-top: 15px;
  padding: 16px;
  border: 1px solid #bfd4ca;
  border-radius: 13px;
  background: var(--green-50);
  color: var(--green-950);
}

.booking-date-notice-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-800);
  color: white;
  font-size: 17px;
}

.booking-date-notice strong,
.checkout-date-notice strong {
  display: block;
  margin-bottom: 3px;
}

.booking-date-notice p,
.checkout-date-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.checkout-date-notice {
  grid-template-columns: 1fr;
  margin: 0 0 22px;
}

.confirmation-next-steps {
  margin-top: 30px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--green-50);
}

.confirmation-next-heading h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.confirmation-timeline {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.confirmation-timeline article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 17px 18px;
}

.confirmation-timeline article + article {
  border-top: 1px solid var(--line);
}

.confirmation-timeline article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-800);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.confirmation-timeline strong {
  display: block;
  margin-bottom: 3px;
}

.confirmation-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.confirmation-contact-box {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 12px;
  background: var(--green-950);
  color: white;
}

.confirmation-contact-box p {
  margin: 3px 0 0;
  color: #c4d8cf;
  font-size: 13px;
}

.confirmation-contact-links {
  display: grid;
  gap: 7px;
  flex: 0 0 auto;
}

.confirmation-contact-links a {
  color: white;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 920px) {
  #how-it-works .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  #how-it-works .steps-grid {
    grid-template-columns: 1fr;
  }

  .booking-date-notice {
    grid-template-columns: 1fr;
  }

  .confirmation-next-steps {
    padding: 19px;
  }

  .confirmation-contact-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .confirmation-contact-links {
    width: 100%;
  }
}


/* V14: responsive desktop, tablet and mobile refinement */
body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

button,
input,
select,
textarea {
  font-size: 16px;
}

.mobile-menu-toggle,
.mobile-nav-book {
  display: none;
}

.header-inner {
  position: relative;
}

.primary-nav {
  align-items: center;
}

/* Prevent long content from forcing horizontal scrolling. */
.booking-grid > *,
.checkout-layout > *,
.contact-form-layout > *,
.hero-grid > *,
.comparison-layout > *,
.comparison-layout-reverse > *,
.service-card,
.payment-choice-card,
.property-choice-card {
  min-width: 0;
}

.checkout-summary,
.confirmation-card,
.quote-card,
.contact-form-card,
.terms-accordion {
  overflow-wrap: anywhere;
}

/* Medium desktop and landscape tablet. */
@media (max-width: 1100px) {
  .container {
    width: min(100% - 32px, 1040px);
  }

  .header-inner {
    gap: 16px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .hero-grid {
    gap: 38px;
  }

  .booking-grid {
    gap: 34px;
  }

  .quote-card {
    padding: 24px;
  }
}

/* Tablet and compact desktop navigation. */
@media (max-width: 900px) {
  .site-header {
    overflow: visible;
  }

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

  .brand {
    position: relative;
    z-index: 24;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 24;
    display: grid;
    place-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
    color: var(--green-950);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .site-header.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: 23;
    display: none;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 18px 35px rgba(15, 47, 37, .14);
  }

  .site-header.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    border: 0;
    border-radius: 9px;
    font-size: 14px;
  }

  .primary-nav a:hover,
  .primary-nav a.active-link {
    border: 0;
    background: var(--green-50);
    color: var(--green-900);
  }

  .primary-nav .mobile-nav-book {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    background: var(--green-800);
    color: white;
  }

  .primary-nav .mobile-nav-book:hover {
    background: var(--green-900);
    color: white;
  }

  body.mobile-navigation-open {
    overflow: hidden;
  }

  .hero {
    padding: 58px 0 54px;
  }

  .hero-grid,
  .booking-grid,
  .comparison-layout,
  .comparison-layout-reverse,
  .contact-form-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-card {
    width: 100%;
    max-width: 640px;
  }

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

  .service-grid .service-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 10px));
    justify-self: center;
  }

  .booking-copy,
  .contact-form-copy,
  .checkout-summary {
    position: static;
  }

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

  #how-it-works .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-summary {
    order: 2;
  }
}

/* Large phones and portrait tablets. */
@media (max-width: 700px) {
  .container,
  .footer-legal {
    width: calc(100% - 24px);
  }

  .desktop-book-button {
    display: none;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }

  .hero {
    padding: 46px 0 44px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
    letter-spacing: -.04em;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .hero-actions .button,
  .section-action .button,
  .gallery-cta .button,
  .confirmation-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-card {
    padding: 22px;
    border-radius: 16px;
  }

  .price-row {
    gap: 12px;
    font-size: 14px;
  }

  .section {
    padding: 58px 0;
  }

  .service-grid,
  #how-it-works .steps-grid,
  .job-gallery,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .service-grid .service-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .service-card-body,
  .step {
    padding: 21px;
  }

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

  .booking-grid {
    gap: 28px;
  }

  .quote-card,
  .contact-form-card,
  .checkout-panel,
  .checkout-summary,
  .confirmation-card {
    padding: 20px;
    border-radius: 16px;
  }

  .booking-wizard-top,
  .visual-property-heading,
  .booking-review-heading {
    flex-direction: column;
    gap: 8px;
  }

  .wizard-counter,
  .visual-property-heading > span {
    align-self: flex-start;
  }

  .wizard-progress {
    margin-right: -4px;
    margin-left: -4px;
  }

  .wizard-progress li {
    font-size: 10px;
  }

  .wizard-progress li > span {
    width: 32px;
    height: 32px;
  }

  .wizard-progress li::before {
    top: 15px;
  }

  .wizard-step-intro {
    padding: 15px 16px;
  }

  .property-card-grid,
  .payment-choice-grid {
    grid-template-columns: 1fr;
  }

  .property-choice-card {
    grid-template-columns: 84px minmax(0, 1fr);
    min-height: 102px;
    padding: 14px;
    text-align: left;
    justify-items: start;
    align-items: center;
  }

  .property-choice-card svg {
    grid-row: 1 / 3;
    width: 78px;
    height: 60px;
  }

  .payment-choice-card {
    min-height: 0;
    padding: 19px;
  }

  .payment-choice-description {
    min-height: 0;
  }

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

  .wizard-actions {
    flex-direction: column-reverse;
  }

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

  .postcode-lookup-row,
  .payment-field-grid,
  .customer-grid {
    grid-template-columns: 1fr;
  }

  .postcode-button {
    width: 100%;
  }

  .check-row,
  .radio-row,
  .terms-row {
    padding: 13px;
  }

  .booking-review-list > div,
  .confirmation-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .booking-date-notice,
  .confirmation-contact-box {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .confirmation-contact-box {
    flex-direction: column;
  }

  .confirmation-reference {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .gallery-hero,
  .terms-hero {
    padding: 48px 0 42px;
  }

  .service-jump-nav {
    flex-wrap: nowrap;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .service-jump-nav a {
    flex: 0 0 auto;
  }

  .job-gallery-heading,
  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-pair-card h3 {
    font-size: 15px;
  }

  .terms-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .terms-controls .button {
    width: 100%;
  }

  .terms-accordion summary {
    padding: 15px 50px 15px 15px;
    font-size: 15px;
  }

  .terms-content {
    padding: 17px 15px 20px;
  }

  .terms-table {
    min-width: 560px;
  }

  .contact-form-layout {
    gap: 26px;
  }

  .contact-details-card {
    padding: 19px;
  }

  .checkout-main,
  .confirmation-main {
    padding: 34px 0 58px;
  }

  .checkout-panel h1,
  .confirmation-card h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .confirmation-next-steps {
    padding: 18px;
  }

  .confirmation-timeline article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
    padding: 15px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .footer-nav {
    order: initial;
  }
}

/* Small phones. */
@media (max-width: 430px) {
  .container,
  .footer-legal {
    width: calc(100% - 20px);
  }

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

  .brand > span:last-child {
    max-width: 125px;
    line-height: 1.1;
  }

  .primary-nav {
    right: -10px;
    left: -10px;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 14px 14px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: 36px;
  }

  .section {
    padding: 50px 0;
  }

  .quote-card,
  .contact-form-card,
  .checkout-panel,
  .checkout-summary,
  .confirmation-card {
    padding: 16px;
  }

  .visual-property-selector,
  .booking-review-card,
  .confirmation-next-steps {
    padding: 15px;
  }

  .property-choice-card {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .property-choice-card svg {
    width: 66px;
    height: 52px;
  }

  .bedroom-chip-grid {
    gap: 7px;
  }

  .payment-choice-badge {
    position: static;
    justify-self: start;
    order: -1;
  }

  .payment-choice-amount strong {
    font-size: 23px;
  }

  .service-breakdown-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

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

  .job-pair-images figure + figure {
    border-top: 1px solid white;
    border-left: 0;
  }

  .comparison-line span {
    width: 40px;
    height: 40px;
  }

  .checkout-header-label {
    font-size: 12px;
  }

  .confirmation-contact-links a {
    overflow-wrap: anywhere;
  }
}

@media (hover: none) {
  .service-card-image:hover,
  .property-choice-card:hover,
  .payment-choice-card:hover,
  .photo-dropzone:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* V15: homepage service cards without before-and-after photographs */
.no-photo-service-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.no-photo-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--green-700);
}

.no-photo-service-card:hover {
  transform: translateY(-4px);
  border-color: #a9c4b7;
  box-shadow: var(--shadow);
}

.no-photo-service-card .service-icon {
  margin-top: 4px;
}

.no-photo-service-card .service-card-footer {
  margin-top: auto;
  padding-top: 22px;
}

.no-photo-service-card {
  display: flex;
  flex-direction: column;
}

@media (max-width: 620px) {
  .no-photo-service-card {
    padding: 24px;
  }
}


/* V16: dedicated services page and five-item navigation */
.header-inner {
  gap: 24px;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav a {
  white-space: nowrap;
}

.services-page-hero {
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at 88% 12%, rgba(38,112,88,.16), transparent 29%),
    linear-gradient(180deg, var(--green-50), white);
}

.services-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
  gap: 46px;
  align-items: center;
}

.services-page-summary {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
}

.services-page-summary > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.service-detail-section {
  scroll-margin-top: 96px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.service-detail-number {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: var(--green-950);
  color: white;
  font-size: 23px;
  font-weight: 800;
}

.service-detail-copy > p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
}

.service-information-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.service-information-grid > div {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.section-muted .service-information-grid > div {
  background: #fbfdfc;
}

.service-information-grid h3 {
  margin-bottom: 11px;
  font-size: 17px;
}

.service-information-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.service-detail-footer strong {
  color: var(--green-900);
  font-size: 24px;
}

.service-detail-footer a {
  color: var(--green-800);
  font-weight: 800;
}

.services-cta-card {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 20px;
  background: var(--green-950);
  color: white;
}

.services-cta-card h2 {
  color: white;
}

.services-cta-card p:last-child {
  margin-bottom: 0;
  color: #c3d7ce;
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .services-page-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .service-detail-number {
    width: 62px;
    height: 62px;
    border-radius: 15px;
    font-size: 19px;
  }
}

@media (max-width: 700px) {
  .service-information-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-footer,
  .services-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-cta-card .button {
    width: 100%;
  }
}


/* V17: dedicated Contact Us page */
.contact-page-hero {
  padding: 76px 0 58px;
  background:
    radial-gradient(circle at 84% 16%, rgba(38,112,88,.16), transparent 28%),
    linear-gradient(180deg, var(--green-50), white);
}

.contact-page-hero-inner {
  max-width: 850px;
}

.contact-page-hero h1 {
  max-width: 760px;
}

.contact-page-section {
  padding-top: 54px;
}

.contact-response-note {
  margin-top: 20px;
  padding: 17px 18px;
  border-left: 4px solid var(--green-700);
  border-radius: 0 12px 12px 0;
  background: var(--green-50);
}

.contact-response-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-nav {
  flex-wrap: wrap;
}

@media (max-width: 620px) {
  .contact-page-hero {
    padding: 50px 0 38px;
  }

  .contact-page-section {
    padding-top: 36px;
  }
}


/* V18: advance notice and urgent-booking guidance */
.advance-booking-notice,
.urgent-booking-warning,
.checkout-urgent-warning,
.confirmation-notice-period,
.contact-urgent-note {
  border: 1px solid #dbc985;
  border-radius: 14px;
  background: #fff9df;
  color: #554713;
}

.advance-booking-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin: 24px 0 30px;
  padding: 18px;
}

.advance-booking-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #6a5710;
  color: white;
  font-size: 18px;
}

.advance-booking-notice strong,
.urgent-booking-warning strong,
.checkout-urgent-warning strong,
.confirmation-notice-period strong,
.contact-urgent-note strong {
  display: block;
  margin-bottom: 4px;
}

.advance-booking-notice p,
.urgent-booking-warning p,
.checkout-urgent-warning p,
.confirmation-notice-period p,
.contact-urgent-note p {
  margin: 0;
  color: #6b5a1f;
  font-size: 13px;
  line-height: 1.6;
}

.advance-booking-links,
.checkout-urgent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.advance-booking-links a,
.checkout-urgent-links a {
  color: #5d4b0d;
  font-size: 13px;
  font-weight: 800;
}

.urgent-booking-warning {
  margin-top: 14px;
  padding: 15px 16px;
}

.checkout-urgent-warning {
  margin: 0 0 22px;
  padding: 16px 18px;
}

.confirmation-notice-period {
  margin-top: 18px;
  padding: 16px 18px;
}

.contact-urgent-note {
  margin-top: 14px;
  padding: 17px 18px;
}

@media (max-width: 620px) {
  .advance-booking-notice {
    grid-template-columns: 1fr;
  }
}


/* V19: address validation, communications and recovery foundations */
.resume-booking-banner {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid #8db5a2;
  border-radius: 16px;
  background: #f2faf6;
  box-shadow: 0 12px 30px rgba(15,47,37,.08);
}

.resume-booking-banner[hidden] {
  display: none;
}

.resume-booking-banner p {
  margin: 4px 0 0;
  color: var(--muted);
}

.resume-booking-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.coverage-status-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  margin-top: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f7faf8;
}

.coverage-status-panel[hidden] {
  display: none;
}

.coverage-status-panel[data-status="covered"] {
  border-color: #9ac4ad;
  background: #eef9f2;
}

.coverage-status-panel[data-status="review"] {
  border-color: #dbc985;
  background: #fff9df;
}

.coverage-status-panel[data-status="outside"] {
  border-color: #ddaaaa;
  background: #fff3f3;
}

.coverage-status-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-800);
  color: white;
  font-weight: 800;
}

.coverage-status-panel[data-status="review"] .coverage-status-icon {
  background: #725d11;
}

.coverage-status-panel[data-status="outside"] .coverage-status-icon {
  background: #9a3232;
}

.coverage-status-panel p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.coverage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 11px 0 0;
}

.coverage-meta > div {
  display: flex;
  gap: 5px;
  font-size: 11px;
}

.coverage-meta dt {
  color: var(--muted);
}

.coverage-meta dd {
  margin: 0;
  font-weight: 800;
}

.manual-address-section {
  margin-top: -6px;
}

.communication-preferences {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--green-50);
}

.transactional-email-note {
  margin-bottom: 12px;
}

.transactional-email-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.recovery-consent-row {
  margin-top: 9px;
}

.coverage-payment-notice {
  margin-bottom: 15px;
  padding: 14px 15px;
  border: 1px solid #dbc985;
  border-radius: 12px;
  background: #fff9df;
}

.coverage-payment-notice[hidden] {
  display: none;
}

.coverage-payment-notice p {
  margin: 4px 0 0;
  color: #6b5a1f;
  font-size: 13px;
}

.payment-choice-card.payment-disabled {
  opacity: .52;
  cursor: not-allowed;
  transform: none;
}

.confirmation-communications {
  margin-top: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.confirmation-communications .confirmation-next-heading > p:last-child {
  color: var(--muted);
}

.communication-timeline {
  display: grid;
  gap: 10px;
  margin-top: 17px;
}

.communication-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfc;
}

.communication-timeline-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.communication-channel {
  display: inline-flex;
  justify-content: center;
  min-width: 54px;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 10px;
  font-weight: 800;
}

.communication-status,
.operations-status {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.empty-automation-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
}

.operations-hero {
  padding: 70px 0 52px;
  background: linear-gradient(180deg, var(--green-50), white);
}

.operations-warning {
  display: inline-flex;
  margin-top: 15px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #fff2c7;
  color: #604e11;
  font-size: 12px;
  font-weight: 800;
}

.operations-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.operations-summary-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 25px rgba(15,47,37,.06);
}

.operations-summary-grid article > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.operations-summary-grid article > strong {
  display: block;
  margin: 7px 0;
  font-size: 25px;
}

.operations-summary-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.operations-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.danger-button {
  border-color: #c98787;
  color: #8d2929;
}

.operations-panel {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--green-50);
}

.operations-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

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

.operations-list-item {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.operations-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.operations-list-item > p {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.operations-list-item dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}

.operations-list-item dl > div {
  padding: 9px;
  border-radius: 9px;
  background: var(--green-50);
}

.operations-list-item dt {
  color: var(--muted);
  font-size: 10px;
}

.operations-list-item dd {
  overflow-wrap: anywhere;
  margin: 3px 0 0;
  font-size: 11px;
  font-weight: 800;
}

.operations-subsection + .operations-subsection {
  margin-top: 22px;
}

.operations-subsection h3 {
  margin-bottom: 10px;
}

.recovery-preview {
  margin-top: 12px;
  padding: 12px;
  border-left: 4px solid var(--green-700);
  background: var(--green-50);
}

.recovery-preview p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.compact-operation-item {
  padding: 13px 15px;
}

@media (max-width: 820px) {
  .resume-booking-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .operations-summary-grid {
    grid-template-columns: 1fr;
  }

  .operations-list-item dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .resume-booking-actions {
    width: 100%;
    flex-direction: column;
  }

  .resume-booking-actions .button {
    width: 100%;
  }

  .coverage-status-panel {
    grid-template-columns: 1fr;
  }

  .communication-timeline-item {
    grid-template-columns: 1fr;
  }

  .communication-status {
    text-align: left;
  }

  .confirmation-communications,
  .operations-panel {
    padding: 18px;
  }
}


/* V20: expanded postcode coverage message */
.coverage-area-copy {
  margin: 10px 0 0;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}


/* V22: privacy, cookies/local storage and cancellation */
.policy-hero {
  padding: 76px 0 58px;
  background: radial-gradient(circle at 85% 14%, rgba(38,112,88,.15), transparent 28%),
    linear-gradient(180deg, var(--green-50), white);
}
.policy-hero-inner { max-width: 880px; }
.policy-version { margin: 8px 0 0; color: var(--green-800); font-size: 12px; font-weight: 800; }
.policy-section { padding-top: 48px; }
.policy-container { display: grid; gap: 18px; max-width: 980px; }
.policy-block { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.policy-block h2 { margin-bottom: 12px; font-size: 22px; }
.policy-block p:last-child, .policy-block ul:last-child { margin-bottom: 0; }
.policy-block ul { display: grid; gap: 8px; padding-left: 21px; color: var(--muted); }
.policy-contact-card { display: grid; gap: 7px; margin-top: 16px; padding: 16px; border-radius: 12px; background: var(--green-50); }
.storage-table-wrap { overflow-x: auto; margin-top: 16px; }
.storage-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.storage-table th, .storage-table td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.storage-table th { background: var(--green-50); color: var(--green-950); font-size: 12px; }
.storage-table td { color: var(--muted); font-size: 12px; }
.storage-table code { color: var(--green-900); font-size: 11px; font-weight: 800; }
.form-privacy-note { margin: 12px 0; padding: 12px 14px; border-radius: 10px; background: var(--green-50); color: var(--muted); font-size: 11px; line-height: 1.55; }
.form-privacy-note a { font-weight: 800; }
.cancellation-contact-strip { display: grid; gap: 7px; margin: 16px 0 20px; padding: 15px; border-radius: 12px; background: var(--green-50); }
.cancellation-form { margin-top: 20px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fbfdfc; }
.cancellation-form-heading { margin-bottom: 19px; }
.cancellation-form-heading p:last-child { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.cancellation-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.cancellation-form-full { grid-column: 1 / -1; }
.cancellation-form .button { margin-top: 4px; }
.cancellation-print-note { margin-top: 12px; color: var(--muted); font-size: 12px; }
.footer-nav { justify-content: center; }
@media (max-width: 680px) {
  .policy-hero { padding: 50px 0 38px; }
  .policy-block, .cancellation-form { padding: 18px; }
  .cancellation-form-grid { grid-template-columns: 1fr; }
  .cancellation-form-full { grid-column: auto; }
}


/* V26: Pure Clean communications disclosure */
.contact-team-note, .form-team-note {
  margin: 10px 0 14px;
  padding: 11px 13px;
  border-radius: 10px;
  background: var(--green-50);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
