:root {
  --cream: #fbf4dd;
  --cream-deep: #f3e8c8;
  --white: #ffffff;
  --ink: #14262f;
  --ink-soft: #53636b;
  --red: #de0003;
  --red-dark: #ac0002;
  --gold: #e6a036;
  --line: #dfd4b7;
  --line-soft: #ede5cf;
  --font: "Asap", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --step-small: 0.875rem;
  --step-body: 1rem;
  --step-lede: clamp(1.08rem, 0.7vw + 0.92rem, 1.24rem);
  --step-h4: clamp(1.1rem, 0.6vw + 1rem, 1.3rem);
  --step-h3: clamp(1.35rem, 1vw + 1.08rem, 1.7rem);
  --step-h2: clamp(1.9rem, 2.3vw + 1.25rem, 2.85rem);
  --step-h1: clamp(2.2rem, 3.6vw + 1.1rem, 4rem);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;
  --gutter: 1.25rem;
  --section-y: 4.5rem;
  --shell: 72rem;
  --radius-sm: 0.65rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --pill: 999px;
  --shadow-soft: 0 1px 2px rgba(20, 38, 47, 0.04), 0 12px 30px rgba(20, 38, 47, 0.08);
  --shadow-lift: 0 3px 8px rgba(20, 38, 47, 0.06), 0 22px 52px rgba(20, 38, 47, 0.13);
}

@media (min-width: 48rem) {
  :root {
    --gutter: 2rem;
    --section-y: 6rem;
  }
}

@media (min-width: 70rem) {
  :root {
    --section-y: 7.5rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-bottom: 3.75rem;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--step-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: saturate(0.98) contrast(1.02);
}

picture {
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.55em;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  font-size: var(--step-h1);
}

h2 {
  font-size: var(--step-h2);
}

h3 {
  font-size: var(--step-h3);
}

h4 {
  font-size: var(--step-h4);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--red-dark);
}

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: absolute;
  top: -5rem;
  left: 0.75rem;
  z-index: 300;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.section {
  padding-block: var(--section-y);
  scroll-margin-top: 1rem;
}

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

.section-head {
  max-width: 42rem;
  margin-bottom: var(--space-5);
}

.section-head .lede {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f2dfaa;
}

.lede {
  color: var(--ink-soft);
  font-size: var(--step-lede);
  line-height: 1.55;
}

.tag {
  display: inline-flex;
  margin: 0 0 var(--space-2);
  padding: 0.35rem 0.7rem;
  border-radius: var(--pill);
  background: rgba(222, 0, 3, 0.08);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.78rem 1.55rem;
  border: 2px solid transparent;
  border-radius: var(--pill);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  box-shadow: 0 8px 18px rgba(172, 0, 2, 0.18);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-quiet {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.btn-quiet:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-cream {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.btn-cream:hover {
  border-color: var(--white);
  background: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  font-size: var(--step-small);
}

.btn-block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.btn-row .btn {
  flex: 1 1 12rem;
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.text-link span {
  color: var(--red);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.stars,
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.07em;
  line-height: 1;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 6.75rem;
}

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

.brand img {
  width: 9.375rem;
  height: auto;
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a {
  display: block;
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  border-bottom-color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header-call {
  display: none;
}

.nav-toggle {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-bars {
  display: grid;
  gap: 0.3rem;
}

.nav-bars span {
  display: block;
  width: 1.3rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-bars span:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-bars span:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

.site-nav.is-open {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 80;
  display: block;
  padding: 0.5rem var(--gutter) 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-lift);
}

.site-nav.is-open ul {
  flex-direction: column;
  gap: 0;
}

.site-nav.is-open a {
  min-height: 3rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-soft);
}

@media (min-width: 38.75rem) {
  .header-call {
    display: inline-flex;
  }
}

@media (min-width: 60rem) {
  .header-inner {
    min-height: 8rem;
  }

  .brand img {
    width: 10.75rem;
  }

  .site-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }
}

/* Hero */

.hero {
  padding-block: 3.5rem 4.5rem;
  background:
    radial-gradient(circle at 92% 14%, rgba(222, 0, 3, 0.055), transparent 23rem),
    var(--cream);
}

.hero-grid {
  display: grid;
  gap: var(--space-5);
}

.hero-copy .lede {
  max-width: 48ch;
  margin-bottom: var(--space-4);
}

.hero-actions {
  margin-bottom: var(--space-3);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  max-width: 42rem;
  min-height: 3.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid #cfc09c;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: var(--step-small);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(20, 38, 47, 0.07);
}

.trust .stars {
  font-size: 0.9rem;
}

.trust a {
  color: var(--ink);
  text-underline-offset: 0.18rem;
}

.trust-dot {
  color: var(--ink-soft);
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-deep);
  box-shadow: var(--shadow-lift);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 30% center;
}

.hero-photo figcaption,
.feature-photo figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.42rem 0.75rem;
  border-radius: var(--pill);
  background: rgba(251, 244, 221, 0.94);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 40rem) {
  .btn-row .btn {
    flex: 0 0 auto;
  }

  .trust {
    border-radius: var(--pill);
  }

}

@media (min-width: 58.75rem) {
  .hero {
    padding-block: 5.5rem 6.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: clamp(3.5rem, 7vw, 6.5rem);
  }

  .hero-photo img {
    object-position: center;
  }
}

/* Services */

.services {
  background: var(--cream);
}

.feature {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-body {
  padding: 2rem 1.25rem 2.5rem;
}

.feature-body > p:not(.tag) {
  max-width: 36rem;
  color: var(--ink-soft);
}

.included-label {
  margin: 1.35rem 0 0.7rem;
  font-size: var(--step-small);
  font-weight: 800;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
}

.service-points li {
  padding: 0.5rem 0.85rem;
  border: 1px solid transparent;
  border-radius: var(--pill);
  background: var(--cream);
  font-size: var(--step-small);
  font-weight: 700;
}

.feature-subservice {
  margin-top: 2.35rem;
  padding: 1.35rem 1.45rem;
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--cream);
}

.feature-subservice h4 {
  margin-bottom: 0.5rem;
  font-size: var(--step-h4);
}

.feature-subservice p:not(.subservice-label) {
  max-width: 36rem;
  color: var(--ink-soft);
}

.subservice-label {
  margin: 0 0 0.45rem;
  color: var(--red-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-photo {
  position: relative;
  order: -1;
  margin: 0;
}

.feature-photo img {
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.subhead {
  margin: var(--space-6) 0 var(--space-3);
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #c8ba97;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.service-card p {
  flex: 1 1 auto;
  color: var(--ink-soft);
}

.service-number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--red-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.maintenance-card {
  background: var(--cream-deep);
}

@media (min-width: 40rem) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 55rem) {
  .feature {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .feature-body {
    align-self: center;
    padding: 4rem;
  }

  .feature-photo {
    order: 0;
  }

  .feature-photo img {
    min-height: 34rem;
    aspect-ratio: auto;
  }
}

@media (min-width: 64rem) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Hard water */

.hardwater-grid {
  display: grid;
  gap: var(--space-5);
}

.hardwater-copy > p:not(.eyebrow) {
  max-width: 33rem;
  color: var(--ink-soft);
}

.hardwater-copy .lede {
  color: var(--ink);
}

/* Maintenance plans — promoted from a sidebar callout to a full band. Kept on
   a warm field rather than ink, because the project showcase directly below is
   already dark and two dark bands in a row cancel each other out. */

.maintenance {
  background: var(--cream-deep, #f2e7c8);
  border-top: 5px solid var(--red);
  padding-block: 3.25rem;
}

.maintenance-band {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.save-big {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--pill);
  background: var(--red);
  color: #fff;
  font-size: var(--step-small);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.maintenance-copy h2 {
  max-width: 20ch;
  margin-bottom: 0.75rem;
}

.maintenance-copy .lede {
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.maintenance-copy p {
  max-width: 44rem;
  color: var(--ink-soft);
}

/* Must win over .maintenance-copy p above, which would otherwise recolour it. */
.maintenance-copy p.save-big {
  color: #fff;
}

.maintenance-action {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
}

.maintenance-action .btn {
  white-space: nowrap;
}

.maintenance-aside {
  margin: 0;
  max-width: 24rem;
  color: var(--ink-soft);
  font-size: var(--step-small);
}

@media (min-width: 52rem) {
  .maintenance {
    padding-block: 4rem;
  }
  .maintenance-band {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
  }
  .maintenance-action {
    justify-items: end;
    text-align: right;
  }
}

.comparison {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.pair-label {
  margin: 0 0 0.8rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.comparison-card {
  margin: 0;
}

.comparison-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line-soft);
}

.comparison-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.42rem 0.7rem;
  border-radius: var(--pill);
  background: var(--ink);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-card:nth-child(2) .comparison-label {
  background: var(--red);
  color: var(--white);
}

.comparison-card figcaption {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.comparison-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: var(--step-small);
}

@media (min-width: 55rem) {
  .hardwater-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
  }

  .comparison {
    padding: 1.5rem;
  }

  .comparison-grid {
    gap: 1rem;
  }
}

/* Window Cleaning project showcase */

.project-showcase {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.showcase-head .section-head {
  margin-bottom: 1.5rem;
}

.showcase-head .section-head p:last-child {
  max-width: 42rem;
  color: rgba(251, 244, 221, 0.76);
}

.rail-controls {
  display: none;
  gap: 0.65rem;
  padding-bottom: 1.5rem;
}

.js .rail-controls {
  display: none;
}

.rail-button {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(251, 244, 221, 0.32);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 1.35rem;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.rail-button:hover {
  background: var(--cream);
  color: var(--ink);
}

.rail-button:disabled {
  opacity: 0.32;
  cursor: default;
}

.swipe-hint {
  margin: 0 0 1rem;
  color: rgba(251, 244, 221, 0.72);
  font-size: var(--step-small);
  font-weight: 700;
}

.project-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.2rem 0 1.25rem;
  scroll-padding-inline: 0.15rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(251, 244, 221, 0.48) rgba(251, 244, 221, 0.12);
  scrollbar-width: thin;
}

.project-track::-webkit-scrollbar {
  height: 0.55rem;
}

.project-track::-webkit-scrollbar-track {
  border-radius: var(--pill);
  background: rgba(251, 244, 221, 0.12);
}

.project-track::-webkit-scrollbar-thumb {
  border-radius: var(--pill);
  background: rgba(251, 244, 221, 0.48);
}

.project-card {
  flex: 0 0 min(82vw, 21.25rem);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(251, 244, 221, 0.17);
  border-radius: var(--radius);
  background: #1a303a;
  transition: border-color 180ms ease, transform 180ms ease;
}

.project-card:hover {
  border-color: rgba(251, 244, 221, 0.42);
  transform: translateY(-3px);
}

.project-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.project-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: baseline;
  min-height: 5.5rem;
  padding: 1rem;
}

.project-copy span {
  color: #f2dfaa;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.project-copy p {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 48rem) {
  .project-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .swipe-hint {
    display: none;
  }

  .js .rail-controls {
    display: flex;
  }
}

@media (min-width: 64rem) {
  .project-card {
    flex-basis: calc((100% - 2rem) / 3);
  }
}

/* Other service proof */

.other-work {
  background: var(--cream);
}

.proof-grid {
  display: grid;
  gap: 1.25rem;
}

.proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.proof-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--ink);
}

.proof-comparison figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--line-soft);
}

.proof-comparison img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.proof-comparison figure:first-child img {
  object-position: 30% center;
}

.proof-comparison figure:last-child img {
  object-position: 18% center;
}

.proof-comparison figcaption {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.38rem 0.65rem;
  border-radius: var(--pill);
  background: var(--ink);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.proof-comparison figure:last-child figcaption {
  background: var(--red);
  color: var(--white);
}

.proof-card:nth-child(2) img {
  object-position: center 36%;
}

.proof-card:nth-child(3) img {
  object-position: center 22%;
}

.proof-card:nth-child(4) img {
  object-position: center;
}

.proof-card:nth-child(5) img {
  object-position: center 42%;
}

.proof-body {
  padding: 1.5rem;
}

.proof-body p:not(.tag) {
  color: var(--ink-soft);
}

@media (min-width: 46rem) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 60rem) {
  .proof-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .proof-card {
    grid-column: span 2;
  }

  .proof-card:nth-child(n + 4) {
    grid-column: span 3;
  }
}

/* Reviews */

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

.review-summary {
  display: grid;
  gap: 1.5rem;
  margin-bottom: var(--space-5);
}

.review-summary h2 {
  margin: 0;
}

.rating-lockup {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.2rem 0.75rem;
  width: fit-content;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.rating-lockup strong {
  grid-row: span 2;
  font-size: 2.8rem;
  line-height: 1;
}

.rating-lockup span:last-child {
  color: var(--ink-soft);
  font-size: var(--step-small);
  font-weight: 700;
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.review-stars {
  margin-bottom: 1.25rem;
}

.review-card blockquote {
  flex: 1 1 auto;
  margin: 0 0 2rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.18rem);
  line-height: 1.55;
}

.reviewer {
  margin: 0;
  font-weight: 800;
}

.review-source {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
  font-size: var(--step-small);
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 48rem) {
  .review-summary {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 60rem) {
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* About */

.about {
  background: var(--cream);
}

/* FAQ — native details/summary accordion. All questions visible, answers
   collapsed until opened. Keyboard, focus and expanded state are handled by
   the browser, so this needs no JavaScript. */

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  list-style: none;
}

/* Hide the default disclosure triangle in every engine. */
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  content: "";
}

.faq-item summary h3 {
  margin: 0;
  font-size: var(--step-1);
}

.faq-item summary:hover h3 {
  color: var(--red-dark, #b00003);
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
  border-radius: calc(var(--radius) - 2px);
}

/* Chevron, rotated when the panel is open. */
.faq-marker {
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.15rem;
  border-right: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(45deg) translate(-0.12rem, -0.12rem);
  transition: transform 180ms ease;
}

.faq-item[open] .faq-marker {
  transform: rotate(225deg) translate(-0.12rem, -0.12rem);
}

.faq-answer {
  padding: 0 1.35rem 1.35rem;
}

.faq-answer p {
  max-width: 58ch;
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-footnote {
  margin: 2rem 0 0;
  font-weight: 700;
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .faq-marker {
    transition: none;
  }
}

.footer-social-note {
  margin: 0 0 0.85rem;
  color: rgba(251, 244, 221, 0.7);
  font-size: var(--step-small);
  max-width: 22rem;
}

/* Service area */

.area-groups {
  display: grid;
  gap: 1.25rem;
}

.area-group {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 8px 22px rgba(20, 38, 47, 0.05);
}

.area-group h3 {
  margin-bottom: 0.55rem;
  color: var(--red-dark);
  font-size: var(--step-1);
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.city-chips li {
  padding: 0.42rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--white);
  color: var(--ink-soft);
  font-size: var(--step-small);
  font-weight: 700;
  line-height: 1.35;
}

.area-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--cream-deep);
}

.area-cta p {
  margin: 0;
  font-weight: 700;
}

@media (min-width: 46rem) {
  .area-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Quote and contact */

.quote {
  background: var(--cream);
}

.quote-panel {
  display: grid;
  gap: 2rem;
}

.quote-copy .lede,
.quote-copy > p {
  max-width: 34rem;
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  border-top: 1px solid var(--line);
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.8rem;
  row-gap: 0.15rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

/* Decorative outline icons, sized to the label rather than the value so they
   stay quiet next to the text. */
.contact-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list span,
.contact-list a,
.contact-list strong {
  grid-column: 2;
}

.contact-list span {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.maintenance-note {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: var(--step-small);
  font-weight: 700;
}

.quote-form {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-draft-note {
  margin: 0 0 1.5rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--ink-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: var(--step-small);
}

.field,
.field-row .field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--step-small);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.5;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #b6a986;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(222, 0, 3, 0.14);
}

.field-error {
  min-height: 0;
  margin: 0.3rem 0 0;
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.field-error:empty {
  display: none;
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: var(--red-dark);
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.4em;
  margin: 0.75rem 0 0;
  color: var(--red-dark);
  font-size: var(--step-small);
  font-weight: 700;
}

@media (min-width: 42rem) {
  .field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 55rem) {
  .quote-panel {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .quote-form {
    padding: 2rem;
  }
}

/* Footer */

.site-footer {
  padding-top: 4.5rem;
  background: var(--ink);
  color: rgba(251, 244, 221, 0.78);
  font-size: var(--step-small);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--cream);
}

.footer-logo img {
  width: 10.5rem;
  height: auto;
}

.footer-line {
  margin: 0 0 0.25rem;
}

.footer-heading {
  margin: 0 0 0.8rem;
  color: #f2dfaa;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-link {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(251, 244, 221, 0.3);
  border-radius: 50%;
  background: rgba(251, 244, 221, 0.07);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.social-link rect,
.social-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-link .social-icon-dot,
.social-link .social-icon-star {
  fill: currentColor;
  stroke: none;
}

.social-link .social-icon-pin {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linejoin: round;
}

.site-footer a {
  color: rgba(251, 244, 221, 0.9);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.site-footer .social-link:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
}

.site-footer .social-link:focus-visible {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
  outline-color: var(--red);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  padding-block: 1.25rem 1.75rem;
  border-top: 1px solid rgba(251, 244, 221, 0.16);
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

/* Mobile action bar */

.action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 -8px 22px rgba(20, 38, 47, 0.13);
}

.action-btn {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.action-call {
  background: var(--red);
  color: var(--white);
}

.action-text {
  background: var(--ink);
  color: var(--cream);
}

.action-quote {
  background: var(--white);
  color: var(--ink);
}

.action-btn:active {
  filter: brightness(0.94);
}

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }

  .action-bar {
    display: none;
  }
}

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

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