:root {
  --color-warm-white: #F7EFE6;
  --color-graphite: #3A3435;
  --color-deep-teal: #264E3B;
  --color-workwear-coral: #E34234;
  --color-tan: #C9B7A4;
  --color-stone: #EFE3D6;
  --color-focus: #0b6fca;
  --color-paper: #FFFAF4;
  --color-border: #D8C9BA;
  --font-heading: Sora, Manrope, "Segoe UI", Arial, sans-serif;
  --font-body: "Atkinson Hyperlegible", "Segoe UI", Arial, sans-serif;
  --space-page: clamp(1rem, 4vw, 2.5rem);
  --max-width: 1120px;
  --radius: 8px;
  --shadow-soft: 0 8px 18px rgba(58, 52, 53, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color: var(--color-graphite);
  background: var(--color-warm-white);
  font: 18px/1.55 var(--font-body);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--color-warm-white);
}

body,
button,
input,
textarea {
  font-family: var(--font-body);
}

a {
  color: var(--color-deep-teal);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-workwear-coral);
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

img,
svg {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3,
.brand,
.footer-brand {
  font-family: var(--font-heading);
  line-height: 1.15;
}

h1 {
  max-width: 13ch;
  margin-block-end: 1rem;
  font-size: 2.35rem;
  letter-spacing: 0;
}

h2 {
  margin-block-end: 0.75rem;
  font-size: 1.65rem;
  letter-spacing: 0;
}

h3 {
  margin-block-end: 0.5rem;
  font-size: 1.18rem;
  letter-spacing: 0;
}

p {
  max-width: 68ch;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  color: var(--color-paper);
  background: var(--color-deep-teal);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.contact-strip {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.35rem var(--space-page);
  color: var(--color-paper);
  background: var(--color-deep-teal);
  font-weight: 700;
  text-align: center;
}

.contact-strip a {
  color: var(--color-paper);
}

.site-header {
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding: 1rem var(--space-page);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-graphite);
  font-weight: 800;
  text-decoration: none;
}

.brand__mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-paper);
  background: var(--color-deep-teal);
  border-radius: var(--radius);
}

.brand__text {
  overflow-wrap: anywhere;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  color: var(--color-graphite);
  font-weight: 700;
  text-decoration: none;
}

.nav-list a[aria-current="page"],
.nav-list a:hover {
  color: var(--color-deep-teal);
  background: var(--color-stone);
}

.header-actions,
.action-row,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  color: var(--color-paper);
  background: var(--color-workwear-coral);
}

.button--secondary {
  color: var(--color-paper);
  background: var(--color-deep-teal);
}

.button--outline {
  color: var(--color-deep-teal);
  background: var(--color-paper);
  border-color: var(--color-deep-teal);
}

.button:hover {
  filter: brightness(0.96);
}

.button:disabled {
  color: #68625b;
  background: var(--color-stone);
  border-color: var(--color-border);
  cursor: not-allowed;
  filter: none;
}

main {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding: 0 var(--space-page) 3rem;
}

.hero,
.page-hero,
.page-section,
.site-footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.hero,
.page-hero {
  margin-top: 1.25rem;
  padding: clamp(1.4rem, 5vw, 3rem);
}

.hero {
  display: grid;
  gap: 1.5rem;
}

.repair-folder {
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-left: 8px solid var(--color-tan);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin-block-end: 0.55rem;
  color: var(--color-deep-teal);
  font-weight: 800;
}

.hero__lead,
.page-hero p {
  font-size: 1.1rem;
}

.hero__phone,
.final-phone {
  margin-block: 0.4rem 0.8rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.hero__phone span,
.final-phone {
  color: var(--color-deep-teal);
}

.hero__phone a,
.final-phone a {
  color: var(--color-graphite);
}

.location-line {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-block: 0.4rem 1.2rem;
  padding: 0.45rem 0.75rem;
  color: var(--color-deep-teal);
  background: var(--color-stone);
  border-radius: var(--radius);
  font-weight: 800;
}

.page-section {
  padding-block: clamp(1.8rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(58, 52, 53, 0.12);
}

.section-heading {
  margin-block-end: 1rem;
}

.card-grid,
.media-grid,
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card,
.gallery-card {
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 1rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.card--pending {
  background: var(--color-stone);
}

.proof-strip,
.segmented-list,
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.proof-chip,
.segmented-list span,
.city-list li {
  display: inline-flex;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 800;
}

.proof-chip {
  border-color: var(--color-tan);
  overflow-wrap: anywhere;
}

.city-list {
  list-style: none;
}

.section-note,
.source-label {
  color: #5A5048;
}

.section-note span,
.placeholder-copy {
  font-weight: 800;
}

.placeholder-copy {
  margin-block-end: 0.65rem;
}

.source-label {
  margin-block-end: 0;
  font-size: 0.92rem;
}

.placeholder-media {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 1rem;
  color: var(--color-deep-teal);
  background: var(--color-stone);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.25rem;
}

.check-list li {
  padding-left: 0.25rem;
}

.scope-note {
  padding: 1.25rem;
  background: var(--color-stone);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.final-cta {
  border-bottom: 0;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.field-group {
  min-width: 0;
}

.field-group label,
.field-group legend {
  display: block;
  margin-block-end: 0.4rem;
  font-weight: 800;
}

.field-group input,
.field-group textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  color: var(--color-graphite);
  background: var(--color-paper);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
}

.field-group textarea {
  min-height: 9rem;
  resize: vertical;
}

fieldset.field-group {
  margin: 0;
  padding: 0.75rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
}

.choice {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  margin-right: 0.8rem;
}

.choice input {
  width: 1.1rem;
  height: 1.1rem;
}

.form-note {
  margin: 0;
  color: #5A5048;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem var(--space-page) 6rem;
  color: var(--color-paper);
  background: var(--color-graphite);
}

.site-footer a {
  color: var(--color-paper);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.footer-brand {
  margin-block-end: 0.3rem;
  font-weight: 800;
}

.footer-connect {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.site-footer .footer-actions a {
  font-weight: 900;
}

.footer-social {
  display: grid;
  gap: 0.35rem;
  color: var(--color-paper);
}

.footer-social a,
.footer-social span {
  display: inline-flex;
  line-height: 1.35;
}

.footer-social span,
.footer-booking {
  opacity: 0.84;
}

.footer-booking {
  max-width: 32rem;
  margin: 0;
  font-size: 0.95rem;
}

body.contact-redesign .booking-note-card {
  background: #F7EFE6;
  border-left: 6px solid #C9B7A4;
}

.mobile-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem;
  background: var(--color-paper);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 18px rgba(58, 52, 53, 0.12);
}

.mobile-sticky-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--color-paper);
  background: var(--color-deep-teal);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.mobile-sticky-cta a:first-child {
  background: var(--color-workwear-coral);
}

@media (min-width: 700px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .primary-nav {
    grid-column: 1 / -1;
  }

  .card-grid,
  .media-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-group--full,
  .form-note,
  .quote-form .button {
    grid-column: 1 / -1;
  }

  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .primary-nav {
    grid-column: auto;
  }

  .nav-list {
    justify-content: center;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
  }

  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .media-grid--large {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .site-footer {
    grid-template-columns: minmax(14rem, 1fr) auto minmax(18rem, 0.9fr);
  }

  .footer-connect {
    justify-self: end;
  }
}
@media (min-width: 761px) {
  .mobile-sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .contact-strip {
    flex-direction: column;
    gap: 0.15rem;
  }

  .header-actions .button {
    flex: 1 1 140px;
  }

  .action-row .button {
    flex: 1 1 100%;
  }

  .nav-list a {
    padding-inline: 0.55rem;
  }

  .proof-strip,
  .city-list {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.site-header {
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 0 rgba(58, 52, 53, 0.04);
}

.contact-strip {
  letter-spacing: 0;
}

.brand__mark {
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

.button,
.nav-list a,
.mobile-sticky-cta a {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.nav-list a:hover,
.mobile-sticky-cta a:hover {
  filter: none;
  transform: translateY(-1px);
}

.button--primary:hover,
.mobile-sticky-cta a:first-child:hover {
  background: #C9362A;
}

.button--secondary:hover,
.mobile-sticky-cta a:hover {
  background: #1E4031;
}

.button--outline:hover {
  color: var(--color-paper);
  background: var(--color-deep-teal);
  border-color: var(--color-deep-teal);
}

.hero {
  position: relative;
  align-items: stretch;
  margin-top: clamp(0.85rem, 2.5vw, 1.6rem);
  padding: clamp(1.4rem, 4vw, 3.25rem);
  overflow: hidden;
}

.repair-folder {
  position: relative;
  border-top: 1px solid #D8C9BA;
}

.repair-folder::before {
  position: absolute;
  top: -1px;
  left: clamp(1rem, 4vw, 2rem);
  width: min(13rem, 46vw);
  height: 0.62rem;
  content: "";
  background: var(--color-tan);
  border-radius: 0 0 6px 6px;
}

.repair-folder--soft {
  border-left-width: 4px;
  box-shadow: none;
}

.hero__content {
  display: grid;
  align-content: center;
}

.hero h1 {
  max-width: 15ch;
  margin-block-end: 0.9rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero__lead {
  max-width: 54ch;
  margin-block-end: 0.75rem;
  color: #3A3435;
}

.hero__phone {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0;
}

.hero__phone a,
.final-phone a {
  font-size: 1.08em;
  text-decoration-thickness: 0.11em;
}

.hero__media {
  display: grid;
  min-width: 0;
  gap: 0.75rem;
}

.hero__media--with-tool-board {
  grid-template-rows: auto auto auto;
}

.hero-tool-board {
  position: relative;
  isolation: isolate;
  min-height: clamp(15rem, 26vw, 21rem);
  overflow: hidden;
  background: linear-gradient(145deg, #FFFAF4 0%, #F7EFE6 100%);
  border: 1px solid #D8C9BA;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.86), 0 16px 34px rgba(58, 52, 53, 0.14);
}

.hero-tool-board::before {
  position: absolute;
  inset: 0.75rem;
  z-index: -1;
  content: "";
  background-image: radial-gradient(circle, rgba(201, 183, 164, 0.24) 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: 6px;
}

.hero-tool-board canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-tool-board__fallback {
  position: absolute;
  inset: 1rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #264E3B;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(201, 183, 164, 0.76);
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  transition: opacity 180ms ease;
}

.hero-tool-board.is-loaded .hero-tool-board__fallback {
  opacity: 0;
}

.hero-tool-board.is-error .hero-tool-board__fallback {
  opacity: 1;
}

.hero__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.photo-card.placeholder-media,
.hero__media .placeholder-media {
  position: relative;
  min-height: 11rem;
  align-content: end;
  padding: 1rem;
  color: #264E3B;
  background: #EFE3D6;
  border: 1px solid #C9B7A4;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.68), 0 8px 18px rgba(58, 52, 53, 0.08);
}

.photo-card.placeholder-media::before {
  position: absolute;
  inset: 0.8rem 0.8rem auto auto;
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  border: 2px solid rgba(38, 78, 59, 0.35);
  border-radius: 50%;
}

.photo-card.placeholder-media span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(201, 183, 164, 0.85);
  border-radius: 8px;
}

.photo-card--primary.placeholder-media {
  min-height: clamp(16rem, 32vw, 25rem);
}

.proof-section {
  margin-top: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: var(--color-deep-teal);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.proof-section .eyebrow,
.proof-section h2 {
  color: var(--color-paper);
}

.proof-section .section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-block-end: 0.8rem;
}

.proof-section .section-heading h2 {
  margin-block-end: 0;
}

.proof-chip {
  flex: 1 1 12rem;
  justify-content: center;
  color: var(--color-graphite);
  background: var(--color-paper);
  border-color: rgba(201, 183, 164, 0.9);
  box-shadow: inset 0 -3px 0 rgba(201, 183, 164, 0.3);
  text-align: center;
}

.section-heading p {
  color: #5A5048;
}

.card {
  box-shadow: 0 1px 0 rgba(58, 52, 53, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card:hover {
  border-color: #C9B7A4;
  box-shadow: 0 10px 22px rgba(58, 52, 53, 0.08);
  transform: translateY(-2px);
}

.service-card-grid {
  align-items: stretch;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-height: 14.5rem;
  background: #FFFAF4;
}

.service-card h3,
.service-card p {
  margin-block-end: 0;
}

.card-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 0.25rem 0.55rem;
  color: var(--color-deep-teal);
  background: var(--color-stone);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-weight: 900;
}

.section-note {
  margin-block: 1rem 0.35rem;
}

.section-link a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 900;
}

.work-grid .placeholder-media {
  min-height: 15rem;
}

.review-grid .card {
  border-left: 5px solid var(--color-tan);
}

.card--pending {
  background: #EFE3D6;
}

.service-area-project {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.city-list li {
  flex: 1 1 10rem;
  justify-content: center;
  background: var(--color-paper);
}

.scope-note {
  border-left: 6px solid var(--color-deep-teal);
  box-shadow: none;
}

.scope-note p:last-child {
  margin-block-end: 0;
  font-weight: 700;
}

.final-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2rem);
  border-bottom: 0;
}

.final-cta h2 {
  max-width: 17ch;
  font-size: clamp(1.7rem, 3.4vw, 2.65rem);
}

.final-cta__actions {
  justify-self: stretch;
}

.final-cta .action-row {
  justify-content: flex-start;
}

.mobile-sticky-cta {
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
}

@media (min-width: 700px) {
  .final-cta {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  }

  .final-cta .action-row .button {
    flex: 1 1 12rem;
  }
}

@media (min-width: 980px) {
  .hero__media {
    align-self: stretch;
  }

  .hero__mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-section {
    margin-top: -0.25rem;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    max-width: 12ch;
  }

  .hero__mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-tool-board {
    min-height: 14rem;
  }

  .hero__mini-grid .placeholder-media {
    min-height: 8.5rem;
  }

  .proof-section .section-heading {
    display: block;
  }

  .proof-chip {
    justify-content: flex-start;
    text-align: left;
  }

  .service-card {
    min-height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
h4 {
  margin-block: 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-hero .action-row {
  margin-top: 1rem;
}

.card-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-top: 0.2rem;
  color: var(--color-deep-teal);
  font-weight: 900;
}

.service-card-grid--featured {
  grid-template-columns: 1fr;
}

.service-card--primary {
  border-left: 6px solid var(--color-workwear-coral);
  background: #F7EFE6;
}

.service-card--primary .card-kicker {
  color: var(--color-paper);
  background: var(--color-workwear-coral);
  border-color: var(--color-workwear-coral);
}

.service-cta-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  border-bottom: 0;
}

.service-cta-band h2,
.service-cta-band p {
  margin-block-end: 0;
}

.service-detail-stack {
  display: grid;
  gap: 1rem;
}

.service-detail-group {
  padding: clamp(1rem, 3vw, 1.25rem);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.service-detail-group__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.85rem;
}

.service-detail-group__heading h3 {
  margin-block-end: 0;
}

.service-detail-grid,
.topic-grid,
.task-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  min-width: 0;
  padding: 1rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(58, 52, 53, 0.04);
}

.service-detail-card p {
  margin-block-end: 0;
  color: #5A5048;
}

.service-photo-slot {
  display: inline-grid;
  min-height: 3.25rem;
  place-items: center;
  padding: 0.5rem 0.7rem;
  color: var(--color-deep-teal);
  background: #EFE3D6;
  border: 2px dashed #C9B7A4;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.topic-card {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-height: 12rem;
}

.topic-card h3,
.topic-card p {
  margin-block-end: 0;
}

.task-panel {
  padding: 1rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-tan);
  border-radius: var(--radius);
}

.task-panel h3 {
  margin-block-end: 0.75rem;
}

.task-panel .check-list {
  grid-template-columns: 1fr;
}

.bathroom-hero h1 {
  max-width: 14ch;
}

@media (min-width: 700px) {
  .service-cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .service-detail-grid,
  .topic-grid,
  .task-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-card {
    grid-template-columns: minmax(0, 1fr) minmax(8.5rem, 0.34fr);
    align-items: stretch;
  }
}

@media (min-width: 980px) {
  .service-card-grid--featured {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-card-grid--featured .service-card {
    grid-column: span 2;
  }

  .service-card-grid--featured .service-card--primary,
  .service-card-grid--featured .card--pending {
    grid-column: span 3;
  }

  .topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .task-panel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-cta-band .action-row .button {
    flex: 1 1 100%;
  }

  .service-detail-group {
    padding: 0.85rem;
  }

  .service-photo-slot {
    min-height: 3rem;
  }
}
.gallery-grid,
.review-grid--quotes {
  align-items: stretch;
}

.gallery-grid {
  grid-template-columns: 1fr;
}

.gallery-card {
  display: grid;
  gap: 0.65rem;
}

.gallery-card h3,
.gallery-card p {
  margin-block-end: 0;
}

.gallery-card--featured,
.gallery-card--wide {
  background: #F7EFE6;
  border-left: 6px solid var(--color-tan);
}

.review-grid--quotes .card {
  min-height: 11rem;
}

.city-list--large li {
  flex: 1 1 12rem;
}

.card-grid--three {
  grid-template-columns: 1fr;
}

.contact-methods .card {
  min-height: 11rem;
}

.quote-section {
  scroll-margin-top: 1rem;
}

.preferred-contact {
  background: #FFFAF4;
}

.after-form-phone {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-stone);
  border: 1px solid var(--color-border);
  border-left: 6px solid var(--color-workwear-coral);
  border-radius: var(--radius);
}

.after-form-phone h3 {
  margin-block-end: 0.35rem;
  font-size: 1.35rem;
}

.after-form-phone p:last-child {
  margin-block-end: 0;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card--featured,
  .gallery-card--wide {
    grid-column: span 2;
  }

  .card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-grid--quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-card {
    grid-column: span 2;
  }

  .gallery-card--featured,
  .gallery-card--wide {
    grid-column: span 3;
  }

  .review-grid--quotes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .after-form-phone {
    margin-bottom: 0.5rem;
  }
}
body.home-redesign .home-hero {
  position: relative;
  display: grid;
  width: min(100%, var(--max-width));
  margin: clamp(0.85rem, 2.5vw, 1.6rem) auto 0;
  padding: clamp(1.15rem, 4vw, 2.25rem);
  overflow: hidden;
  background: linear-gradient(135deg, #FFFAF4 0%, #F7EFE6 58%, #FFFAF4 100%);
  border: 1px solid #D8C9BA;
  border-left: 8px solid var(--color-tan);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(58, 52, 53, 0.12);
  gap: clamp(1.2rem, 4vw, 2rem);
}

body.home-redesign .home-hero::before {
  position: absolute;
  top: -1px;
  left: clamp(1rem, 4vw, 2rem);
  width: min(14rem, 54vw);
  height: 0.62rem;
  content: "";
  background: var(--color-tan);
  border-radius: 0 0 6px 6px;
}

body.home-redesign .home-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}

body.home-redesign .home-hero h1 {
  max-width: 15ch;
  margin-block-end: 0.9rem;
  font-size: clamp(2.15rem, 7vw, 4rem);
}

body.home-redesign .home-hero__lead {
  max-width: 53ch;
  margin-block-end: 0.85rem;
  color: #3A3435;
  font-size: 1.08rem;
}

body.home-redesign .home-hero__phone {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  margin-block: 0.15rem 0.7rem;
  color: var(--color-deep-teal);
  font-size: clamp(1.2rem, 4.5vw, 1.45rem);
  font-weight: 900;
}

body.home-redesign .home-hero__phone a {
  color: var(--color-graphite);
  text-decoration-thickness: 0.11em;
}

body.home-redesign .home-hero__area {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-block: 0 1rem;
  padding: 0.45rem 0.75rem;
  color: var(--color-deep-teal);
  background: rgba(232, 224, 211, 0.86);
  border: 1px solid rgba(201, 183, 164, 0.36);
  border-radius: var(--radius);
  font-weight: 900;
}

body.home-redesign .home-hero__actions {
  margin-bottom: 1rem;
}

body.home-redesign .home-hero__actions .button {
  flex: 1 1 9.5rem;
}

body.home-redesign .home-proof-panel {
  display: grid;
  gap: 0.75rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0.9rem;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(201, 183, 164, 0.55);
  border-radius: var(--radius);
  box-shadow: inset 0 -3px 0 rgba(201, 183, 164, 0.22);
}

body.home-redesign .home-proof-panel__source {
  margin: 0;
  color: var(--color-deep-teal);
  font-weight: 900;
}

body.home-redesign .home-proof-panel ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.home-redesign .home-proof-panel li {
  display: grid;
  min-height: 44px;
  align-content: center;
  gap: 0.05rem;
  padding: 0.55rem 0.65rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

body.home-redesign .home-proof-panel strong,
body.home-redesign .home-proof-panel span {
  display: block;
}

body.home-redesign .home-proof-panel strong {
  color: var(--color-graphite);
  line-height: 1.15;
}

body.home-redesign .home-proof-panel span {
  color: #5A5048;
  font-size: 0.9rem;
  font-weight: 700;
}

body.home-redesign .home-work-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  padding: clamp(0.8rem, 2.5vw, 1.15rem);
  color: var(--color-paper);
  background: linear-gradient(145deg, #264E3B 0%, #3A3435 100%);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(58, 52, 53, 0.2);
}

body.home-redesign .home-work-board::before {
  position: absolute;
  inset: 0.7rem;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 253, 248, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 253, 248, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 6px;
}

body.home-redesign .home-work-board__header,
body.home-redesign .home-work-board__grid,
body.home-redesign .home-work-board__notice {
  position: relative;
  z-index: 1;
}

body.home-redesign .home-work-board__header h2 {
  margin-block-end: 0.35rem;
  color: var(--color-paper);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

body.home-redesign .home-work-board__header p {
  margin-block-end: 0;
  color: rgba(255, 253, 248, 0.82);
}

body.home-redesign .home-work-board__kicker {
  margin-block-end: 0.35rem;
  color: #C9B7A4;
  font-weight: 900;
}

body.home-redesign .home-work-board__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

body.home-redesign .work-photo {
  position: relative;
  min-width: 0;
  min-height: 13rem;
  margin: 0;
  overflow: hidden;
  background: #3A3435;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

body.home-redesign .work-photo--main {
  min-height: clamp(18rem, 52vw, 27rem);
}

body.home-redesign .work-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

body.home-redesign .work-photo figcaption {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  left: 0.55rem;
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.65rem;
  color: var(--color-paper);
  background: rgba(58, 52, 53, 0.86);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 7px;
}

body.home-redesign .work-photo figcaption span {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
}

body.home-redesign .work-photo figcaption small {
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
}

body.home-redesign .home-work-board__notice {
  min-height: 44px;
  margin: 0;
  padding: 0.55rem 0.65rem;
  color: #3A3435;
  background: #C9B7A4;
  border-radius: var(--radius);
  font-weight: 900;
}

body.home-redesign .mobile-sticky-cta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home-redesign .mobile-sticky-cta a:last-child {
  color: var(--color-deep-teal);
  background: var(--color-paper);
  border: 2px solid var(--color-deep-teal);
}

@media (min-width: 620px) {
  body.home-redesign .home-proof-panel ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-redesign .home-proof-panel li:first-child {
    grid-column: span 2;
  }

  body.home-redesign .home-work-board__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-redesign .work-photo--main {
    grid-column: span 2;
  }
}

@media (min-width: 980px) {
  body.home-redesign .home-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(23rem, 1.08fr);
    align-items: stretch;
  }

  body.home-redesign .home-work-board__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(8.5rem, auto);
  }

  body.home-redesign .work-photo {
    grid-column: span 3;
    min-height: 11.5rem;
  }

  body.home-redesign .work-photo--main {
    grid-column: span 6;
    min-height: clamp(19rem, 31vw, 24rem);
  }
}

@media (max-width: 760px) {
  body.home-redesign .home-hero {
    padding: 1rem;
  }

  body.home-redesign .home-hero h1 {
    max-width: 12ch;
  }

  body.home-redesign .home-hero__actions .button {
    flex-basis: 100%;
  }

  body.home-redesign .home-proof-panel {
    margin-bottom: 0.15rem;
  }

  body.home-redesign .work-photo,
  body.home-redesign .work-photo--main {
    min-height: 14.5rem;
  }

  body.home-redesign .work-photo figcaption {
    position: static;
    background: #264E3B;
    border-width: 1px 0 0;
    border-radius: 0;
  }
}
body.home-redesign main {
  position: relative;
}

body.home-redesign .home-hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 183, 164, 0.24), transparent 24rem),
    linear-gradient(138deg, #F7EFE6 0%, #EFE3D6 54%, #FFFAF4 100%);
  border-color: #C9B7A4;
  box-shadow: 0 22px 48px rgba(58, 52, 53, 0.14), inset 0 1px 0 rgba(255, 253, 248, 0.88);
}

body.home-redesign .home-hero::after {
  position: absolute;
  inset: auto -5rem -7rem auto;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  content: "";
  background: radial-gradient(circle, rgba(38, 78, 59, 0.14), transparent 68%);
}

body.home-redesign .home-hero .eyebrow {
  width: fit-content;
  padding: 0.25rem 0.55rem;
  color: #264E3B;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(201, 183, 164, 0.46);
  border-radius: 999px;
}

body.home-redesign .home-hero__lead {
  color: #3A3435;
}

body.home-redesign .home-hero__phone {
  padding: 0.25rem 0.55rem 0.25rem 0;
  border-bottom: 2px solid rgba(201, 183, 164, 0.46);
}

body.home-redesign .home-hero__actions .button {
  box-shadow: 0 8px 18px rgba(58, 52, 53, 0.12);
}

body.home-redesign .home-proof-panel {
  background: rgba(255, 253, 248, 0.9);
  border-color: rgba(201, 183, 164, 0.72);
  box-shadow: inset 0 -3px 0 rgba(201, 183, 164, 0.22), 0 12px 28px rgba(58, 52, 53, 0.08);
}

body.home-redesign .home-proof-panel {
  max-width: none;
  padding: 0.85rem;
}

body.home-redesign .home-proof-panel ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.home-redesign .home-proof-panel li {
  min-height: 0;
  padding: 0.55rem;
  background: linear-gradient(180deg, #FFFAF4 0%, #F7EFE6 100%);
}

body.home-redesign .home-work-board {
  align-content: start;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 253, 248, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(227, 66, 52, 0.18), transparent 19rem),
    linear-gradient(145deg, #264E3B 0%, #3A3435 100%);
  background-size: 30px 30px, 30px 30px, auto, auto;
  border-color: rgba(255, 253, 248, 0.2);
  box-shadow: 0 24px 52px rgba(58, 52, 53, 0.22), inset 0 1px 0 rgba(255, 253, 248, 0.16);
}

body.home-redesign .home-work-board::before {
  inset: 0.65rem;
  background-image: none;
  border: 1px solid rgba(255, 253, 248, 0.1);
}

body.home-redesign .home-work-board::after {
  position: absolute;
  top: 0;
  right: clamp(1rem, 4vw, 2rem);
  width: min(11rem, 38vw);
  height: 0.45rem;
  content: "";
  background: #C9B7A4;
  border-radius: 0 0 6px 6px;
}

body.home-redesign .home-work-board__header {
  display: grid;
  gap: 0.35rem;
  padding: 0.15rem 0.15rem 0.35rem;
}

body.home-redesign .home-work-board__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0.25rem 0.55rem;
  color: #3A3435;
  background: #C9B7A4;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0;
}

body.home-redesign .home-work-board__header h2 {
  max-width: 16ch;
  margin-block-end: 0;
}

body.home-redesign .home-work-board__header p:not(.home-work-board__kicker) {
  max-width: 48ch;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
}

body.home-redesign .home-work-board__grid {
  gap: 0.62rem;
}

body.home-redesign .work-photo {
  isolation: isolate;
  background: #3A3435;
  border-color: rgba(255, 253, 248, 0.2);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 253, 248, 0.05);
}

body.home-redesign .work-photo::before {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 0.72rem;
  height: 0.72rem;
  content: "";
  background: #C9B7A4;
  border: 2px solid rgba(58, 52, 53, 0.34);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

body.home-redesign .work-photo--main::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(58, 52, 53, 0.24) 100%);
}

body.home-redesign .work-photo img {
  transition: transform 260ms ease, filter 260ms ease;
}

body.home-redesign .work-photo:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

body.home-redesign .work-photo--shower img {
  object-position: 50% 50%;
}

body.home-redesign .work-photo--profile-a img {
  object-position: 50% 54%;
}

body.home-redesign .work-photo--profile-b img {
  object-position: 50% 58%;
}

body.home-redesign .work-photo--profile-c img {
  object-position: 52% 50%;
}

body.home-redesign .work-photo--profile-d img {
  object-position: 50% 48%;
}

body.home-redesign .work-photo figcaption {
  z-index: 3;
  gap: 0.2rem;
  padding: 0.6rem 0.7rem;
  background: rgba(58, 52, 53, 0.86);
  border-color: rgba(255, 253, 248, 0.24);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

body.home-redesign .work-photo figcaption span {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 0.12rem;
  border-bottom: 2px solid #C9B7A4;
}

body.home-redesign .work-photo figcaption small {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.72rem;
  line-height: 1.22;
}

body.home-redesign .home-work-board__notice {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: #FFFAF4;
  background: rgba(255, 253, 248, 0.09);
  border: 1px solid rgba(201, 183, 164, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.05);
}

@media (min-width: 620px) {
  body.home-redesign .work-photo--main {
    min-height: clamp(19rem, 45vw, 25rem);
  }
}

@media (min-width: 980px) {
  body.home-redesign .home-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
    padding: clamp(1.5rem, 3.4vw, 2.75rem);
  }

  body.home-redesign .home-proof-panel ul {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  body.home-redesign .home-proof-panel li {
    grid-column: span 2;
  }

  body.home-redesign .home-proof-panel li:first-child,
  body.home-redesign .home-proof-panel li:nth-child(2) {
    grid-column: span 3;
  }

  body.home-redesign .home-work-board {
    gap: 0.78rem;
  }

  body.home-redesign .home-work-board__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(8, minmax(3.6rem, 1fr));
    min-height: clamp(29rem, 42vw, 36rem);
  }

  body.home-redesign .work-photo {
    grid-column: auto;
    min-height: 0;
  }

  body.home-redesign .work-photo--main {
    grid-column: 1 / span 7;
    grid-row: 1 / span 6;
  }

  body.home-redesign .work-photo--profile-a {
    grid-column: 8 / span 5;
    grid-row: 1 / span 3;
  }

  body.home-redesign .work-photo--profile-b {
    grid-column: 8 / span 5;
    grid-row: 4 / span 3;
  }

  body.home-redesign .work-photo--profile-c {
    grid-column: 1 / span 5;
    grid-row: 7 / span 2;
  }

  body.home-redesign .work-photo--profile-d {
    grid-column: 6 / span 7;
    grid-row: 7 / span 2;
  }

  body.home-redesign .work-photo:not(.work-photo--main) figcaption {
    right: 0.45rem;
    bottom: 0.45rem;
    left: 0.45rem;
    padding: 0.48rem 0.55rem;
  }

  body.home-redesign .work-photo:not(.work-photo--main) figcaption small {
    font-size: 0.66rem;
  }
}

@media (max-width: 760px) {
  body.home-redesign .home-hero {
    background: linear-gradient(145deg, #F7EFE6 0%, #EFE3D6 100%);
  }

  body.home-redesign .home-hero .eyebrow {
    max-width: 100%;
  }

  body.home-redesign .home-work-board {
    border-radius: 8px;
  }

  body.home-redesign .work-photo figcaption {
    padding: 0.58rem 0.65rem;
    background: #264E3B;
    box-shadow: none;
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-redesign .work-photo img {
    transition: none;
  }

  body.home-redesign .work-photo:hover img {
    transform: none;
  }
}
body.home-redesign .home-hero__content {
  align-content: start;
}

@media (min-width: 980px) {
  body.home-redesign .home-hero__content {
    padding-top: clamp(1.2rem, 2.6vw, 2.1rem);
  }

  body.home-redesign .home-hero h1 {
    max-width: 18ch;
    font-size: clamp(2.65rem, 3.8vw, 3.45rem);
  }

  body.home-redesign .home-work-board__grid {
    grid-template-rows: repeat(7, minmax(3.3rem, 1fr));
    min-height: clamp(25rem, 36vw, 31rem);
  }

  body.home-redesign .work-photo--main {
    grid-row: 1 / span 5;
  }

  body.home-redesign .work-photo--profile-a {
    grid-row: 1 / span 3;
  }

  body.home-redesign .work-photo--profile-b {
    grid-row: 4 / span 2;
  }

  body.home-redesign .work-photo--profile-c,
  body.home-redesign .work-photo--profile-d {
    grid-row: 6 / span 2;
  }
}

@media (max-width: 760px) {
  body.home-redesign .contact-strip {
    overflow-wrap: anywhere;
  }

  body.home-redesign .site-header__inner,
  body.home-redesign .primary-nav,
  body.home-redesign .nav-list,
  body.home-redesign .header-actions {
    min-width: 0;
  }

  body.home-redesign .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  body.home-redesign .header-actions .button {
    width: 100%;
    padding-inline: 0.65rem;
  }

  body.home-redesign .home-hero h1 {
    max-width: 14ch;
    font-size: clamp(2rem, 9.5vw, 2.45rem);
  }

  body.home-redesign .home-hero__lead {
    font-size: 1rem;
    line-height: 1.52;
  }

  body.home-redesign .home-hero__phone {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  body.home-redesign .mobile-sticky-cta {
    gap: 0.42rem;
    padding-inline: 0.55rem;
  }

  body.home-redesign .mobile-sticky-cta a {
    min-width: 0;
    padding-inline: 0.25rem;
  }
}
@media (max-width: 760px) {
  body.home-redesign .site-header,
  body.home-redesign main {
    max-width: 100vw;
    overflow-x: clip;
  }

  body.home-redesign .site-header__inner,
  body.home-redesign .home-hero,
  body.home-redesign .home-hero__content,
  body.home-redesign .home-work-board {
    min-width: 0;
    max-width: 100%;
  }

  body.home-redesign .home-hero h1,
  body.home-redesign .home-hero p,
  body.home-redesign .home-work-board p,
  body.home-redesign .work-photo figcaption {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body.home-redesign .header-actions {
    justify-self: stretch;
    width: min(100%, calc(100vw - (2 * var(--space-page))));
    max-width: calc(100vw - (2 * var(--space-page)));
  }

  body.home-redesign .header-actions .button,
  body.home-redesign .mobile-sticky-cta a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.home-redesign .mobile-sticky-cta {
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
}
@media (min-width: 980px) {
  body.home-redesign .home-hero h1 {
    max-width: 19ch;
    font-size: clamp(2.45rem, 3.2vw, 3.05rem);
  }

  body.home-redesign .home-work-board__grid {
    grid-template-rows: repeat(7, minmax(0, 1fr));
    min-height: clamp(22rem, 28vw, 26rem);
  }

  body.home-redesign .work-photo,
  body.home-redesign .work-photo--main {
    min-height: 0;
  }

  body.home-redesign .work-photo img {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body.home-redesign .home-hero h1 {
    max-width: 15ch;
    margin-block-end: 0.65rem;
    font-size: clamp(1.8rem, 8.8vw, 2.25rem);
  }

  body.home-redesign .home-hero__lead {
    margin-block-end: 0.65rem;
  }
}
body.home-redesign .work-photo img {
  min-height: 0;
}

@media (min-width: 980px) {
  body.home-redesign .home-work-board__grid {
    height: clamp(22rem, 28vw, 26rem);
    min-height: 0;
  }

  body.home-redesign .work-photo img {
    height: 100%;
  }
}

@media (min-width: 620px) and (max-width: 979px) {
  body.home-redesign .home-work-board__grid {
    height: clamp(32rem, 72vw, 38rem);
    min-height: 0;
  }

  body.home-redesign .work-photo,
  body.home-redesign .work-photo--main {
    min-height: 0;
  }

  body.home-redesign .work-photo img {
    height: 100%;
  }
}

@media (max-width: 760px) {
  body.home-redesign .work-photo,
  body.home-redesign .work-photo--main {
    min-height: 0;
  }

  body.home-redesign .work-photo img {
    height: 13.5rem;
    min-height: 0;
  }

  body.home-redesign .work-photo--main img {
    height: 15rem;
  }
}
@media (min-width: 980px) {
  body.home-redesign .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 1fr);
  }

  body.home-redesign .home-hero h1 {
    font-size: clamp(2.15rem, 2.85vw, 2.8rem);
  }
}
@media (max-width: 760px) {
  body.home-redesign .header-actions {
    display: none;
  }

  body.home-redesign .home-hero {
    margin-top: 0.7rem;
    padding: 0.85rem;
  }

  body.home-redesign .home-hero h1 {
    max-width: 16ch;
    font-size: clamp(1.65rem, 7.8vw, 2rem);
    line-height: 1.1;
  }

  body.home-redesign .home-hero__lead {
    font-size: 0.95rem;
  }
}
@media (max-width: 760px) {
  body.home-redesign .home-hero__actions {
    display: none;
  }
}
body.home-redesign .home-work-board__header {
  gap: 0.22rem;
  padding-bottom: 0.2rem;
}

body.home-redesign .home-work-board__kicker {
  min-height: 30px;
  padding: 0.18rem 0.48rem;
  font-size: 0.8rem;
}

body.home-redesign .home-work-board__header h2 {
  max-width: 18ch;
  font-size: clamp(1.18rem, 2.4vw, 1.48rem);
}

body.home-redesign .home-work-board__header p:not(.home-work-board__kicker) {
  max-width: 44ch;
  font-size: 0.86rem;
  line-height: 1.34;
}

body.home-redesign .work-photo figcaption {
  gap: 0.1rem;
  padding: 0.5rem 0.58rem;
}

body.home-redesign .work-photo figcaption small {
  font-size: 0.68rem;
}

body.home-redesign .home-work-board__notice {
  min-height: 36px;
  padding: 0.42rem 0.58rem;
  font-size: 0.82rem;
  line-height: 1.25;
}

@media (min-width: 980px) and (max-width: 1199px) {
  body.home-redesign .home-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
    gap: 0.95rem;
    margin-top: 0.85rem;
    padding: 1rem;
  }

  body.home-redesign .home-hero h1 {
    font-size: clamp(2rem, 2.8vw, 2.35rem);
  }

  body.home-redesign .home-proof-panel {
    gap: 0.5rem;
    padding: 0.72rem;
  }

  body.home-redesign .home-proof-panel li {
    min-height: 38px;
    padding: 0.42rem 0.55rem;
  }

  body.home-redesign .home-work-board {
    gap: 0.52rem;
    padding: 0.72rem;
  }

  body.home-redesign .home-work-board__header p:not(.home-work-board__kicker) {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  body.home-redesign .home-work-board__grid {
    gap: 0.46rem;
    height: clamp(17.5rem, 22vw, 20rem);
  }

  body.home-redesign .work-photo:not(.work-photo--main) figcaption small {
    display: none;
  }

  body.home-redesign .work-photo figcaption span {
    font-size: 0.86rem;
  }
}

@media (max-width: 760px) {
  body.home-redesign .home-hero .eyebrow {
    display: block;
    width: auto;
    padding: 0;
    color: var(--color-deep-teal);
    background: transparent;
    border: 0;
    border-radius: 0;
    line-height: 1.2;
  }

  body.home-redesign .mobile-sticky-cta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.5rem 0.5rem max(0.5rem, env(safe-area-inset-bottom));
  }

  body.home-redesign .mobile-sticky-cta a {
    min-height: 48px;
    padding-inline: 0.18rem;
    font-size: clamp(0.82rem, 3.6vw, 0.95rem);
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  body.home-redesign .mobile-sticky-cta {
    gap: 0.28rem;
    padding-inline: 0.42rem;
  }

  body.home-redesign .mobile-sticky-cta a {
    min-height: 46px;
    font-size: 0.82rem;
  }
}
@media (min-width: 980px) {
  body.home-redesign .home-work-board {
    align-self: start;
  }
}

/* AP-TASK-0016 Home below-fold proof path */
body.home-redesign .thumbtack-proof-band,
body.home-redesign .service-fit-section,
body.home-redesign .featured-proof-section,
body.home-redesign .review-safe-section,
body.home-redesign .local-area-section,
body.home-redesign .scope-note--home,
body.home-redesign .final-cta--home {
  margin-top: clamp(1.1rem, 3vw, 1.8rem);
}

body.home-redesign .section-heading--split {
  display: grid;
  gap: 0.8rem;
  align-items: end;
}

body.home-redesign .section-heading--split > p,
body.home-redesign .section-heading--split .source-note {
  margin-block-end: 0;
}

body.home-redesign .thumbtack-proof-band {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.45rem);
  color: var(--color-paper);
  background:
    linear-gradient(90deg, rgba(201, 183, 164, 0.2), transparent 38%),
    var(--color-deep-teal);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(38, 78, 59, 0.18);
}

body.home-redesign .thumbtack-proof-band .eyebrow,
body.home-redesign .thumbtack-proof-band h2 {
  color: var(--color-paper);
}

body.home-redesign .thumbtack-proof-band h2 {
  margin-block-end: 0;
}

body.home-redesign .thumbtack-proof-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 0;
}

body.home-redesign .thumbtack-proof-list div {
  min-width: 0;
  padding: 0.75rem;
  color: #264E3B;
  background: #FFFAF4;
  border: 1px solid rgba(201, 183, 164, 0.78);
  border-radius: var(--radius);
  box-shadow: inset 0 -3px 0 rgba(201, 183, 164, 0.24);
}

body.home-redesign .thumbtack-proof-list dt {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.1;
}

body.home-redesign .thumbtack-proof-list dd {
  margin: 0.25rem 0 0;
  color: #5A5048;
  font-size: 0.92rem;
  font-weight: 800;
}

body.home-redesign .service-fit-section {
  padding-top: clamp(2rem, 5vw, 3.4rem);
}

body.home-redesign .service-fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

body.home-redesign .service-fit-card {
  min-width: 0;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: linear-gradient(180deg, #FFFAF4 0%, #F7EFE6 100%);
  border: 1px solid #D8C9BA;
  border-left: 6px solid var(--color-tan);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(58, 52, 53, 0.07);
}

body.home-redesign .service-fit-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-block-end: 0.65rem;
  padding: 0.22rem 0.55rem;
  color: #FFFAF4;
  background: var(--color-deep-teal);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

body.home-redesign .service-fit-card h3 {
  margin-block-end: 0.65rem;
}

body.home-redesign .service-fit-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.15rem;
}


body.home-redesign .service-fit-card--more {
  background: linear-gradient(135deg, rgba(247, 239, 230, 0.92), rgba(201, 183, 164, 0.28));
}

body.home-redesign .service-fit-card--more p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
body.home-redesign .service-fit-card li {
  padding-left: 0.15rem;
}

body.home-redesign .section-action-bar {
  display: grid;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.9rem;
  background: #264E3B;
  border-radius: var(--radius);
}

body.home-redesign .section-action-bar strong {
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

body.home-redesign .featured-proof-section {
  padding-block: clamp(2rem, 5vw, 3.6rem);
}

body.home-redesign .source-note {
  padding: 0.75rem;
  color: #3A3435;
  background: #C9B7A4;
  border: 1px solid #C9B7A4;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
}

body.home-redesign .featured-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

body.home-redesign .featured-proof-card {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--color-paper);
  background: #3A3435;
  border: 1px solid rgba(38, 78, 59, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(58, 52, 53, 0.16);
}

body.home-redesign .featured-proof-card img {
  display: block;
  width: 100%;
  height: 14.5rem;
  object-fit: cover;
}

body.home-redesign .featured-proof-card--lead img {
  height: 17rem;
}

body.home-redesign .featured-proof-card figcaption {
  display: grid;
  gap: 0.38rem;
  padding: 0.75rem;
  background: #264E3B;
}

body.home-redesign .featured-proof-card figcaption span {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
}

body.home-redesign .featured-proof-card figcaption small {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.28;
}

body.home-redesign .review-safe-section {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: #F7EFE6;
  border: 1px solid #D8C9BA;
  border-radius: var(--radius);
}

body.home-redesign .review-proof-layout {
  display: grid;
  gap: 0.9rem;
}

body.home-redesign .review-proof-score {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: clamp(1rem, 3vw, 1.3rem);
  color: var(--color-paper);
  background: linear-gradient(145deg, #264E3B 0%, #3A3435 100%);
  border-radius: var(--radius);
}

body.home-redesign .review-proof-score p,
body.home-redesign .review-proof-score span {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-weight: 800;
}

body.home-redesign .review-proof-score strong {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1;
}

body.home-redesign .review-approval-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

body.home-redesign .review-approval-grid article {
  min-width: 0;
  padding: 1rem;
  background: var(--color-paper);
  border: 1px solid #D8C9BA;
  border-radius: var(--radius);
}

body.home-redesign .review-approval-grid h3,
body.home-redesign .review-approval-grid p {
  margin-block-end: 0.55rem;
}

body.home-redesign .review-approval-grid p {
  font-weight: 900;
}

body.home-redesign .review-approval-grid span {
  color: #5A5048;
  font-size: 0.9rem;
  font-weight: 800;
}

body.home-redesign .local-area-section {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: linear-gradient(180deg, #FFFAF4 0%, #F7EFE6 100%);
  border: 1px solid #D8C9BA;
  border-radius: var(--radius);
}

body.home-redesign .local-area-section__lead,
body.home-redesign .local-area-section__cities {
  min-width: 0;
}

body.home-redesign .local-area-section__cities {
  padding: 1rem;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid #D8C9BA;
  border-radius: var(--radius);
}

body.home-redesign .local-area-section__cities strong {
  display: block;
  margin-block-end: 0.8rem;
  font-family: var(--font-heading);
}

body.home-redesign .local-area-section .city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body.home-redesign .local-area-section .city-list li {
  flex: 1 1 9.5rem;
  justify-content: center;
  background: #FFFAF4;
}

body.home-redesign .scope-note--home {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: #EFE3D6;
  border: 1px solid #C9B7A4;
  border-left: 8px solid var(--color-workwear-coral);
}

body.home-redesign .scope-note--home h2,
body.home-redesign .scope-note--home p {
  margin-block-end: 0;
}

body.home-redesign .scope-note--home p:not(.eyebrow) {
  font-size: 1.05rem;
  font-weight: 800;
}

body.home-redesign .final-cta--home {
  margin-bottom: 1rem;
  color: var(--color-paper);
  background:
    linear-gradient(90deg, rgba(227, 66, 52, 0.18), transparent 42%),
    #264E3B;
  border-color: rgba(255, 253, 248, 0.18);
  border-left-color: var(--color-tan);
}

body.home-redesign .final-cta--home .eyebrow,
body.home-redesign .final-cta--home h2,
body.home-redesign .final-cta--home p,
body.home-redesign .final-cta--home a {
  color: var(--color-paper);
}

body.home-redesign .final-cta--home .button--outline {
  color: var(--color-deep-teal);
  background: var(--color-paper);
}

@media (min-width: 620px) {
  body.home-redesign .thumbtack-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-redesign .featured-proof-grid,
  body.home-redesign .review-approval-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-redesign .featured-proof-card--lead {
    grid-column: 1 / -1;
  }
}

@media (min-width: 780px) {
  body.home-redesign .section-heading--split,
  body.home-redesign .section-action-bar,
  body.home-redesign .review-proof-layout,
  body.home-redesign .local-area-section {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.82fr);
  }

  body.home-redesign .service-fit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-redesign .section-action-bar .action-row {
    justify-content: flex-end;
  }
}

@media (min-width: 980px) {
  body.home-redesign .thumbtack-proof-band {
    grid-template-columns: minmax(13rem, 0.45fr) minmax(0, 1fr);
    align-items: center;
  }

  body.home-redesign .thumbtack-proof-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  body.home-redesign .featured-proof-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  body.home-redesign .featured-proof-card {
    grid-column: span 3;
  }

  body.home-redesign .featured-proof-card--lead {
    grid-column: span 6;
    grid-row: span 2;
  }

  body.home-redesign .featured-proof-card img {
    height: 13.5rem;
  }

  body.home-redesign .featured-proof-card--lead img {
    height: 30.1rem;
  }
}

@media (max-width: 760px) {
  body.home-redesign .section-action-bar .action-row,
  body.home-redesign .local-area-section .action-row,
  body.home-redesign .scope-note--home .action-row,
  body.home-redesign .final-cta--home .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.home-redesign .thumbtack-proof-list div,
  body.home-redesign .service-fit-card,
  body.home-redesign .review-approval-grid article,
  body.home-redesign .local-area-section__cities {
    padding: 0.85rem;
  }

  body.home-redesign .featured-proof-card img,
  body.home-redesign .featured-proof-card--lead img {
    height: 13.5rem;
  }

  body.home-redesign .final-cta--home {
    margin-bottom: 1.5rem;
  }
}

/* AP-TASK-0017 Services/Bathroom premium service pages */
body.service-redesign .service-page-hero h1 {
  max-width: 18ch;
}

body.service-redesign .service-hero-card,
body.service-redesign .bathroom-hero-proof {
  position: relative;
  z-index: 1;
  min-width: 0;
}

body.service-redesign .service-hero-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: clamp(1rem, 3vw, 1.35rem);
  color: var(--color-paper);
  background:
    linear-gradient(135deg, rgba(227, 66, 52, 0.16), transparent 48%),
    #264E3B;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-left: 6px solid var(--color-tan);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(58, 52, 53, 0.16);
}

body.service-redesign .service-hero-card h2,
body.service-redesign .service-hero-card p,
body.service-redesign .service-hero-card li {
  color: var(--color-paper);
}

body.service-redesign .service-hero-card h2,
body.service-redesign .service-hero-card p {
  margin-block-end: 0;
}

body.service-redesign .service-hero-card__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0.22rem 0.55rem;
  color: #264E3B;
  background: #C9B7A4;
  border-radius: 999px;
  font-weight: 900;
}

body.service-redesign .service-hero-card ol {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.25rem;
}

body.service-redesign .service-detail-section .section-action-bar {
  margin-top: 1rem;
}

body.service-redesign .service-detail-grid--premium {
  grid-template-columns: 1fr;
}

body.service-redesign .service-detail-card--compact {
  display: block;
  grid-template-columns: 1fr;
  min-height: auto;
  padding: clamp(0.9rem, 2.5vw, 1.05rem);
  background: linear-gradient(180deg, #FFFAF4 0%, #F7EFE6 100%);
  border: 1px solid #D8C9BA;
  border-left: 5px solid var(--color-tan);
  border-radius: var(--radius);
}

body.service-redesign .service-detail-card--compact h4,
body.service-redesign .service-detail-card--compact p {
  margin-block-end: 0;
}

body.service-redesign .service-detail-card--compact h4 + p {
  margin-block-start: 0.45rem;
}

body.service-redesign .bathroom-hero-proof {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

body.service-redesign .bathroom-hero-proof figure {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--color-paper);
  background: #3A3435;
  border: 1px solid rgba(38, 78, 59, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(58, 52, 53, 0.16);
}

body.service-redesign .bathroom-hero-proof img {
  display: block;
  width: 100%;
  height: clamp(17rem, 33vw, 25rem);
  object-fit: cover;
}

body.service-redesign .bathroom-hero-proof figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  background: #264E3B;
}

body.service-redesign .bathroom-hero-proof figcaption span {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
}

body.service-redesign .bathroom-hero-proof figcaption small {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.28;
}

body.service-redesign .bathroom-hero-proof .source-note {
  margin: 0;
}

body.service-redesign .bathroom-fit-band .action-row .button {
  flex: 1 1 9rem;
}

body.service-redesign .bathroom-services-bridge .local-area-section__cities p {
  margin-block-end: 0;
}

body.service-redesign .featured-proof-card figcaption small,
body.service-redesign .bathroom-hero-proof figcaption small {
  overflow-wrap: anywhere;
}

@media (min-width: 700px) {
  body.service-redesign .service-detail-grid--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  body.service-redesign .service-detail-grid--premium {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.service-redesign .bathroom-task-path .service-fit-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  body.service-redesign .service-page-hero h1 {
    max-width: 16ch;
  }

  body.service-redesign .service-hero-card,
  body.service-redesign .bathroom-hero-proof figcaption,
  body.service-redesign .service-detail-card--compact {
    padding: 0.85rem;
  }

  body.service-redesign .bathroom-hero-proof img {
    height: 15rem;
  }

  body.service-redesign .service-hero-card ol {
    padding-left: 1rem;
  }
}

/* AP-TASK-0018 Gallery/Reviews/Area/Contact premium continuation */
body.gallery-redesign main,
body.reviews-redesign main,
body.area-redesign main,
body.contact-redesign main {
  background:
    linear-gradient(180deg, rgba(247, 239, 230, 0.66), rgba(255, 253, 248, 0) 18rem),
    var(--color-paper);
}

body.gallery-redesign .page-hero--split,
body.reviews-redesign .page-hero--split,
body.area-redesign .page-hero--split,
body.contact-redesign .page-hero--split {
  position: relative;
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
  max-width: 1180px;
  margin: clamp(1rem, 4vw, 2rem) auto;
  padding: clamp(1.05rem, 3vw, 1.7rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(247, 239, 230, 0.78)),
    linear-gradient(90deg, rgba(58, 52, 53, 0.07), transparent 56%);
  border: 1px solid #D8C9BA;
  border-radius: var(--radius);
  box-shadow: 0 20px 52px rgba(58, 52, 53, 0.12);
}

body.gallery-redesign .page-hero--split::before,
body.reviews-redesign .page-hero--split::before,
body.area-redesign .page-hero--split::before,
body.contact-redesign .page-hero--split::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(38, 78, 59, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 78, 59, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.5;
}

body.gallery-redesign .page-hero__content,
body.reviews-redesign .page-hero__content,
body.area-redesign .page-hero__content,
body.contact-redesign .page-hero__content,
body.gallery-redesign .gallery-proof-board,
body.reviews-redesign .review-proof-score--hero,
body.area-redesign .area-anchor-card,
body.contact-redesign .contact-direct-card {
  position: relative;
  z-index: 1;
  min-width: 0;
}

body.gallery-redesign .page-hero--split h1,
body.reviews-redesign .page-hero--split h1,
body.area-redesign .page-hero--split h1,
body.contact-redesign .page-hero--split h1 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 7vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

body.gallery-redesign .page-hero--split p,
body.reviews-redesign .page-hero--split p,
body.area-redesign .page-hero--split p,
body.contact-redesign .page-hero--split p {
  max-width: 38rem;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

body.gallery-redesign .gallery-proof-board,
body.contact-redesign .contact-direct-card,
body.area-redesign .area-anchor-card,
body.reviews-redesign .review-proof-score--hero {
  align-self: stretch;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: clamp(0.95rem, 2.5vw, 1.25rem);
  color: var(--color-paper);
  background:
    linear-gradient(145deg, rgba(227, 66, 52, 0.14), transparent 44%),
    #264E3B;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-left: 6px solid var(--color-tan);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(58, 52, 53, 0.16);
}

body.contact-redesign .contact-direct-card {
  align-self: start;
}

body.gallery-redesign .gallery-proof-board .home-work-board__kicker,
body.contact-redesign .contact-direct-card span,
body.area-redesign .area-anchor-card span,
body.reviews-redesign .review-proof-score--hero span {
  width: fit-content;
  margin: 0;
  padding: 0.23rem 0.56rem;
  color: #264E3B;
  background: #C9B7A4;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.gallery-redesign .gallery-proof-board .work-photo,
body.gallery-redesign .gallery-proof-board__mini .work-photo {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #3A3435;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: calc(var(--radius) - 2px);
}

body.gallery-redesign .gallery-proof-board .work-photo img {
  display: block;
  width: 100%;
  height: clamp(13rem, 28vw, 22rem);
  object-fit: cover;
}

body.gallery-redesign .gallery-proof-board__mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

body.gallery-redesign .gallery-proof-board__mini .work-photo img {
  height: 8.3rem;
}

body.gallery-redesign .gallery-proof-board .work-photo figcaption,
body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption {
  display: grid;
  gap: 0.25rem;
  padding: 0.65rem;
  color: var(--color-paper);
  background: #264E3B;
}

body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption span,
body.gallery-redesign .gallery-proof-board .work-photo figcaption span {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
}

body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption small,
body.gallery-redesign .gallery-proof-board .work-photo figcaption small,
body.gallery-redesign .gallery-proof-board .source-note {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.28;
}

body.gallery-redesign .gallery-proof-board .source-note {
  margin: 0;
}

body.gallery-redesign .gallery-proof-board--interactive {
  align-content: start;
}

body.gallery-redesign .gallery-proof-board--interactive .work-photo--main {
  min-height: 0;
}

body.gallery-redesign .gallery-proof-board--interactive .work-photo--main img {
  height: clamp(20rem, 34vw, 31rem);
}

body.gallery-redesign .gallery-proof-board__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

body.gallery-redesign .gallery-proof-board__thumbs button {
  min-width: 0;
  min-height: 4.6rem;
  padding: 0;
  overflow: hidden;
  background: #3A3435;
  border: 2px solid rgba(255, 253, 248, 0.2);
  border-radius: 7px;
  cursor: pointer;
}

body.gallery-redesign .gallery-proof-board__thumbs button.is-active {
  border-color: #C9B7A4;
  box-shadow: 0 0 0 2px rgba(201, 183, 164, 0.22);
}

body.gallery-redesign .gallery-proof-board__thumbs img {
  display: block;
  width: 100%;
  height: 5.4rem;
  object-fit: cover;
}

body.gallery-redesign .segmented-list--premium {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

body.gallery-redesign .segmented-list--premium span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  color: #264E3B;
  background: #FFFAF4;
  border: 1px solid #D8C9BA;
  border-radius: 999px;
  font-weight: 900;
}

body.gallery-redesign .gallery-request-card {
  display: grid;
  gap: 0.5rem;
  align-content: center;
  min-height: 13.5rem;
  padding: 1rem;
  background:
    repeating-linear-gradient(135deg, rgba(38, 78, 59, 0.055) 0 1px, transparent 1px 12px),
    #FFFAF4;
  border: 1px dashed #C9B7A4;
  border-left: 5px solid var(--color-tan);
  border-radius: var(--radius);
}

body.gallery-redesign .gallery-request-card span {
  width: fit-content;
  padding: 0.18rem 0.5rem;
  color: #264E3B;
  background: #C9B7A4;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
}

body.gallery-redesign .gallery-request-card h3,
body.gallery-redesign .gallery-request-card p {
  margin-block-end: 0;
}

body.reviews-redesign .review-proof-score--hero strong,
body.area-redesign .area-anchor-card strong,
body.contact-redesign .contact-direct-card strong {
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 0.9;
}

body.contact-redesign .contact-direct-card strong a {
  color: var(--color-paper);
  text-decoration-thickness: 0.08em;
}

body.contact-redesign .contact-direct-card__phone {
  display: block;
  max-width: 100%;
  font-size: clamp(2.05rem, 5.4vw, 3.85rem);
  overflow-wrap: anywhere;
  word-break: normal;
}

body.reviews-redesign .review-proof-score--hero p,
body.area-redesign .area-anchor-card p,
body.contact-redesign .contact-direct-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.86);
}

body.contact-redesign .contact-direct-card__steps {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.contact-redesign .contact-direct-card__steps li {
  padding: 0.66rem 0.72rem;
  color: #FFFAF4;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

body.contact-redesign .contact-direct-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.4rem;
}

body.contact-redesign .contact-direct-card__actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #264E3B;
  background: #C9B7A4;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

body.reviews-redesign .reviews-proof-band {
  margin-top: clamp(1rem, 4vw, 2rem);
}

body.reviews-redesign .reviews-ledger .review-approval-grid article {
  background: linear-gradient(180deg, #FFFAF4 0%, #F7EFE6 100%);
  border: 1px solid #D8C9BA;
  border-left: 5px solid var(--color-tan);
}

body.area-redesign .area-city-board .city-list--large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.area-redesign .area-city-board .city-list--large li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.65rem;
  background: rgba(255, 253, 248, 0.9);
  border-color: #D8C9BA;
}

body.area-redesign .area-steps .service-fit-card span,
body.contact-redesign .contact-methods .service-fit-card span {
  width: fit-content;
  min-width: 0;
}

body.contact-redesign .quote-section--premium {
  display: grid;
  gap: 1rem;
}

body.contact-redesign .quote-form-container {
  background: linear-gradient(180deg, #FFFAF4 0%, #F7EFE6 100%);
  border: 1px solid #D8C9BA;
  border-left: 6px solid var(--color-tan);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(58, 52, 53, 0.1);
  padding: 1.5rem;
}

body.contact-redesign .lead-form {
  display: grid;
  gap: 1.25rem;
}

body.contact-redesign .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  body.contact-redesign .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

body.contact-redesign .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.contact-redesign .form-label,
body.contact-redesign .form-legend {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-graphite);
}

body.contact-redesign .form-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

body.contact-redesign .required-star {
  color: var(--color-workwear-coral);
  font-weight: bold;
}

body.contact-redesign .optional-tag {
  font-weight: normal;
  font-size: 0.85rem;
  color: #666;
}

body.contact-redesign .form-input,
body.contact-redesign .form-textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  background: #FFFAF4;
  border: 1px solid #C9B7A4;
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--color-graphite);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.contact-redesign .form-textarea {
  min-height: 7.5rem;
  resize: vertical;
}

body.contact-redesign .form-input:focus,
body.contact-redesign .form-textarea:focus {
  outline: none;
  border-color: var(--color-deep-teal);
  box-shadow: 0 0 0 3px rgba(38, 78, 59, 0.2);
}

body.contact-redesign .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

body.contact-redesign .radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  background: #FFFAF4;
  border: 1px solid #D8C9BA;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.contact-redesign .radio-label:has(input:checked) {
  background: var(--color-stone);
  border-color: var(--color-deep-teal);
  color: var(--color-deep-teal);
}

body.contact-redesign .file-upload-box {
  position: relative;
  border: 2px dashed #C9B7A4;
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  background: #FFFAF4;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.contact-redesign .file-upload-box:hover,
body.contact-redesign .file-upload-box.is-dragover {
  border-color: var(--color-deep-teal);
  background-color: var(--color-stone);
}

body.contact-redesign .file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

body.contact-redesign .file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
}

body.contact-redesign .upload-icon {
  color: var(--color-deep-teal);
}

body.contact-redesign .file-upload-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-graphite);
}

body.contact-redesign .form-help {
  font-size: 0.8rem;
  color: #666;
}

body.contact-redesign .photos-preview {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.contact-redesign .photos-preview li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-stone);
  border: 1px solid #C9B7A4;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.85rem;
}

body.contact-redesign .photos-preview .remove-photo-btn {
  background: transparent;
  border: 0;
  color: var(--color-workwear-coral);
  font-weight: bold;
  cursor: pointer;
  padding: 0 0.2rem;
  line-height: 1;
}

body.contact-redesign .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}

body.contact-redesign .checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-deep-teal);
}

body.contact-redesign .field-error {
  color: var(--color-workwear-coral);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  margin-bottom: 0;
  min-height: 1.1em;
}

body.contact-redesign .form-status-alert {
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  margin-top: 1rem;
}

body.contact-redesign .form-status-alert.status-success {
  background-color: #E6F4EA;
  border: 1px solid #34A853;
  color: #137333;
}

body.contact-redesign .form-status-alert.status-error {
  background-color: #FCE8E6;
  border: 1px solid #EA4335;
  color: #C5221F;
}

body.contact-redesign .form-status-alert.status-loading {
  background-color: #E8F0FE;
  border: 1px solid #4285F4;
  color: #1A73E8;
}

body.contact-redesign .consent-check input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.18rem;
  flex: 0 0 auto;
}

body.contact-redesign .form-setup-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  color: #264E3B;
  background: #C9B7A4;
  border: 1px solid #C9B7A4;
  border-radius: var(--radius);
}

body.contact-redesign .form-setup-panel strong,
body.contact-redesign .form-setup-panel p {
  margin: 0;
}

body.contact-redesign .optional-label {
  font-weight: 800;
  color: rgba(58, 52, 53, 0.72);
}

body.contact-redesign .form-status {
  grid-column: 1 / -1;
  min-height: 1.35rem;
  margin: -0.25rem 0 0;
  color: #264E3B;
  font-weight: 900;
}

body.contact-redesign .form-status[data-state="error"] {
  color: #9F2D22;
}

body.contact-redesign .form-status[data-state="success"] {
  color: #1E5A3F;
}

body.contact-redesign .quote-fallback {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: #F7EFE6;
  border: 1px solid #C9B7A4;
  border-left: 6px solid var(--color-deep-teal);
  border-radius: var(--radius);
}

body.contact-redesign .quote-fallback[hidden] {
  display: none;
}

body.contact-redesign .quote-fallback h3,
body.contact-redesign .quote-fallback p {
  margin: 0;
}

body.contact-redesign .quote-fallback textarea {
  width: 100%;
  min-height: 10rem;
  resize: vertical;
  padding: 0.75rem;
  color: var(--color-graphite);
  background: var(--color-paper);
  border: 1px solid #C9B7A4;
  border-radius: var(--radius);
  font: 0.9rem/1.45 var(--font-body);
}

body.contact-redesign .quote-form--premium button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

body.contact-redesign .after-form-phone {
  padding: 1rem;
  color: var(--color-paper);
  background: #264E3B;
  border-radius: var(--radius);
}

body.contact-redesign .after-form-phone h3,
body.contact-redesign .after-form-phone p,
body.contact-redesign .after-form-phone a {
  color: var(--color-paper);
}

body.service-redesign .service-hero-card {
  align-content: start;
}

body.service-redesign .service-hero-card__visual {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 0.55rem;
  margin: 0.15rem 0 0.35rem;
}

body.service-redesign .service-hero-card__visual img {
  display: block;
  width: 100%;
  height: 8.5rem;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 7px;
}

body.service-redesign .service-hero-card__visual img:first-child {
  height: 12rem;
}

body.service-redesign .service-more-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

body.service-redesign .service-more-strip small {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.55rem;
  color: #264E3B;
  background: #C9B7A4;
  border-radius: 999px;
  font-weight: 900;
}

body.service-redesign .service-detail-card--cta {
  color: var(--color-paper);
  background: #264E3B;
  border-color: #264E3B;
}

body.service-redesign .service-detail-card--cta h4,
body.service-redesign .service-detail-card--cta p,
body.service-redesign .service-detail-card--cta a {
  color: var(--color-paper);
}

body.service-redesign .featured-proof-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  overflow: visible;
  padding: 0;
}

body.service-redesign .featured-proof-carousel .featured-proof-card {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

body.service-redesign .featured-proof-carousel .featured-proof-card img {
  height: 100%;
  min-height: 0;
}

body.reviews-redesign .review-receipt-card {
  align-content: start;
  min-height: 0;
}

body.reviews-redesign .review-receipt-card__rows {
  display: grid;
  gap: 0.5rem;
}

body.reviews-redesign .review-receipt-card__rows p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  align-items: center;
  padding: 0.55rem 0.65rem;
  color: #264E3B;
  background: #FFFAF4;
  border: 1px solid rgba(201, 183, 164, 0.54);
  border-radius: 7px;
}

body.reviews-redesign .review-receipt-card__rows b {
  color: #3A3435;
}

body.reviews-redesign .review-receipt-card > a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  color: #264E3B;
  background: #C9B7A4;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

body.reviews-redesign .review-approval-grid--ledger {
  position: relative;
}

body.reviews-redesign .review-approval-grid--ledger::before {
  content: "";
  position: absolute;
  inset: -0.65rem;
  z-index: -1;
  background:
    linear-gradient(rgba(38, 78, 59, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 78, 59, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  border-radius: var(--radius);
}

/* AP-TASK-0032 visual cleanup: compact proof strips and controlled photo areas. */
@media (min-width: 980px) {
  body.home-redesign .home-proof-panel {
    grid-column: 1 / -1;
    max-width: none;
    margin-top: 0.2rem;
  }

  body.home-redesign .home-proof-panel ul {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  body.home-redesign .home-proof-panel li,
  body.home-redesign .home-proof-panel li:first-child,
  body.home-redesign .home-proof-panel li:nth-child(2) {
    grid-column: auto;
    min-height: 5.2rem;
  }
}

body.service-redesign .thumbtack-proof-band {
  align-items: center;
  color: #3A3435;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 239, 230, 0.88));
  border: 1px solid #D8C9BA;
  border-left: 6px solid #C9B7A4;
  box-shadow: 0 16px 34px rgba(58, 52, 53, 0.1);
}

body.service-redesign .thumbtack-proof-band .eyebrow,
body.service-redesign .thumbtack-proof-band h2 {
  color: #264E3B;
}

body.service-redesign .thumbtack-proof-list {
  grid-template-columns: repeat(auto-fit, minmax(8.4rem, 1fr));
}

body.service-redesign .thumbtack-proof-list div {
  min-height: 4.9rem;
  background: #FFFAF4;
  border: 1px solid #D8C9BA;
  box-shadow: none;
}

body.service-redesign .thumbtack-proof-list dt {
  overflow-wrap: normal;
  word-break: normal;
}

@media (min-width: 900px) {
  body.service-redesign .thumbtack-proof-band {
    display: grid;
    grid-template-columns: minmax(13rem, 0.46fr) minmax(0, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 860px) {
  body.gallery-redesign .page-hero--split,
  body.reviews-redesign .page-hero--split,
  body.area-redesign .page-hero--split,
  body.contact-redesign .page-hero--split {
    grid-template-columns: minmax(0, 0.96fr) minmax(22rem, 0.8fr);
    align-items: start;
  }

  body.contact-redesign .quote-section--premium {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.45fr);
    align-items: start;
  }

  body.contact-redesign .quote-section--premium .section-heading {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  body.area-redesign .area-city-board .city-list--large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.gallery-redesign .page-hero--split,
  body.reviews-redesign .page-hero--split,
  body.area-redesign .page-hero--split,
  body.contact-redesign .page-hero--split,
  body.gallery-redesign .gallery-proof-board,
  body.contact-redesign .contact-direct-card,
  body.area-redesign .area-anchor-card,
  body.reviews-redesign .review-proof-score--hero,
  body.contact-redesign .quote-form--premium,
  body.contact-redesign .after-form-phone {
    padding: 0.9rem;
  }

  body.gallery-redesign .page-hero--split h1,
  body.reviews-redesign .page-hero--split h1,
  body.area-redesign .page-hero--split h1,
  body.contact-redesign .page-hero--split h1 {
    max-width: 13ch;
    font-size: clamp(2.25rem, 14vw, 3.45rem);
  }

  body.gallery-redesign .gallery-proof-board__mini,
  body.area-redesign .area-city-board .city-list--large,
  body.contact-redesign .contact-direct-card__actions {
    grid-template-columns: 1fr;
  }

  body.gallery-redesign .gallery-proof-board .work-photo img,
  body.gallery-redesign .gallery-proof-board__mini .work-photo img {
    height: 12.5rem;
  }

  body.gallery-redesign .gallery-proof-board--interactive .work-photo--main img {
    height: 18rem;
  }

  body.gallery-redesign .gallery-proof-board__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.service-redesign .service-hero-card__visual,
  body.home-redesign .home-proof-panel ul {
    grid-template-columns: 1fr;
  }

  body.service-redesign .service-hero-card__visual img,
  body.service-redesign .service-hero-card__visual img:first-child {
    height: 10rem;
  }

  body.gallery-redesign .page-hero .action-row,
  body.reviews-redesign .page-hero .action-row,
  body.area-redesign .page-hero .action-row,
  body.contact-redesign .page-hero .action-row {
    display: none;
  }

  body.contact-redesign .quote-form--premium .preferred-contact {
    display: grid;
    gap: 0.55rem;
  }

  body.contact-redesign .quote-form--premium .choice {
    width: 100%;
  }
}

/* AP-TASK-0019 mobile Home gate repair: keep the entry page full-width at narrow viewports. */
@media (max-width: 760px) {
  body.home-redesign main {
    width: 100%;
    max-width: none;
    padding-inline: 0.75rem;
    overflow: visible;
  }

  body.home-redesign .site-header,
  body.home-redesign .site-header__inner,
  body.home-redesign .primary-nav,
  body.home-redesign .nav-list,
  body.home-redesign .home-hero,
  body.home-redesign .home-hero__content,
  body.home-redesign .home-proof-panel,
  body.home-redesign .home-work-board,
  body.home-redesign .home-work-board__grid,
  body.home-redesign .work-photo {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.home-redesign .home-hero {
    grid-template-columns: minmax(0, 1fr);
    margin: 0.75rem 0 0;
    padding: 0.9rem;
    overflow: visible;
    border-left-width: 5px;
  }

  body.home-redesign .home-hero::before,
  body.home-redesign .home-hero::after,
  body.home-redesign .home-work-board::after {
    display: none;
  }

  body.home-redesign .home-hero h1 {
    width: 100%;
    max-width: 18ch;
    font-size: clamp(1.72rem, 7.4vw, 2.05rem);
    overflow-wrap: normal;
  }

  body.home-redesign .home-hero__lead,
  body.home-redesign .home-hero__phone,
  body.home-redesign .home-hero__area,
  body.home-redesign .home-proof-panel,
  body.home-redesign .home-work-board__header,
  body.home-redesign .home-work-board__notice {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  body.home-redesign .home-work-board {
    display: grid;
    gap: 0.72rem;
    padding: 0.75rem;
    overflow: visible;
  }

  body.home-redesign .home-work-board::before {
    inset: 0.45rem;
  }

  body.home-redesign .home-work-board__grid {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    min-height: 0;
  }

  body.home-redesign .work-photo,
  body.home-redesign .work-photo--main {
    display: grid;
    min-height: 0;
  }

  body.home-redesign .work-photo img,
  body.home-redesign .work-photo--main img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  body.home-redesign .work-photo figcaption {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    border-width: 1px 0 0;
    border-radius: 0;
  }
}

/* AP-TASK-0020 header brand treatment: real client logo asset. */
.brand {
  gap: 0.72rem;
  align-items: center;
  min-width: 0;
}

.brand__mark--logo {
  display: inline-flex;
  width: 68px;
  height: 58px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
  color: var(--color-graphite);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  min-width: 0;
  gap: 0.08rem;
  overflow-wrap: normal;
}

.brand__name,
.brand__descriptor {
  display: block;
  line-height: 1.05;
  white-space: nowrap;
}

.brand__name {
  color: var(--color-graphite);
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 1.65vw, 1.3rem);
  font-weight: 900;
}

.brand__descriptor {
  color: #5A5048;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

@media (min-width: 1180px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: clamp(0.85rem, 1.6vw, 1.35rem);
  }

  .primary-nav,
  .nav-list,
  .header-actions {
    min-width: 0;
  }

  .nav-list {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.18rem;
  }

  .nav-list a {
    padding-inline: clamp(0.42rem, 0.65vw, 0.62rem);
    white-space: nowrap;
  }

  .header-actions {
    flex-wrap: nowrap;
    gap: 0.55rem;
  }

  .header-actions .button {
    padding-inline: clamp(0.78rem, 1vw, 1rem);
    white-space: nowrap;
  }
}

@media (min-width: 761px) and (max-width: 1179px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    row-gap: 0.62rem;
  }

  .brand {
    grid-column: 1;
    min-width: 0;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    flex-wrap: nowrap;
    gap: 0.55rem;
  }

  .header-actions .button {
    padding-inline: 0.86rem;
    white-space: nowrap;
  }

  .primary-nav {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.3rem;
  }

  .nav-list a {
    padding-inline: 0.62rem;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .brand {
    gap: 0.58rem;
  }

  .brand__mark--logo {
    width: 58px;
    height: 50px;
    border-radius: 0;
  }

  .brand__name {
    font-size: 1.06rem;
  }

  .brand__descriptor {
    font-size: 0.66rem;
    letter-spacing: 0;
  }

  body.home-redesign .mobile-sticky-cta {
    display: flex;
    right: 0;
    left: 0;
    width: auto;
    max-width: none;
    gap: 0.42rem;
    box-sizing: border-box;
  }

  body.home-redesign .mobile-sticky-cta a {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 370px) {
  .brand__descriptor {
    max-width: 16ch;
  }
}


/* AP-TASK-0025 hotfix: work-photo class support after AP-0024 cleanup rename. */
body.home-redesign .home-work-board__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

body.home-redesign .work-photo,
body.gallery-redesign .gallery-proof-board .work-photo,
body.gallery-redesign .gallery-proof-board__mini .work-photo {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 12rem;
  margin: 0;
  overflow: hidden;
  color: var(--color-paper);
  background: #3A3435;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: calc(var(--radius) - 1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

body.home-redesign .work-photo--main {
  min-height: clamp(18rem, 52vw, 27rem);
}

body.home-redesign .work-photo img,
body.gallery-redesign .gallery-proof-board .work-photo img,
body.gallery-redesign .gallery-proof-board__mini .work-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

body.home-redesign .work-photo:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

body.home-redesign .work-photo--shower img { object-position: 50% 50%; }
body.home-redesign .work-photo--profile-a img { object-position: 50% 54%; }
body.home-redesign .work-photo--profile-b img { object-position: 50% 58%; }
body.home-redesign .work-photo--profile-c img { object-position: 52% 50%; }
body.home-redesign .work-photo--profile-d img { object-position: 50% 48%; }

body.home-redesign .work-photo figcaption,
body.gallery-redesign .gallery-proof-board .work-photo figcaption,
body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  left: 0.55rem;
  z-index: 3;
  display: grid;
  gap: 0.2rem;
  padding: 0.6rem 0.7rem;
  color: var(--color-paper);
  background: rgba(58, 52, 53, 0.88);
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

body.home-redesign .work-photo figcaption span,
body.gallery-redesign .gallery-proof-board .work-photo figcaption span,
body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption span {
  width: fit-content;
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
  border-bottom: 2px solid #C9B7A4;
}

body.home-redesign .work-photo figcaption small,
body.gallery-redesign .gallery-proof-board .work-photo figcaption small,
body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption small,
body.gallery-redesign .gallery-proof-board .source-note {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

body.gallery-redesign .gallery-proof-board .work-photo img {
  height: clamp(13rem, 28vw, 22rem);
  min-height: 0;
}

body.gallery-redesign .gallery-proof-board__mini .work-photo img {
  height: 8.3rem;
  min-height: 0;
}

@media (min-width: 760px) {
  body.home-redesign .home-work-board__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.home-redesign .work-photo--main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body.home-redesign .work-photo,
  body.home-redesign .work-photo--main {
    width: 100%;
    min-height: 0;
  }

  body.home-redesign .work-photo img,
  body.home-redesign .work-photo--main img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  body.home-redesign .work-photo figcaption,
  body.gallery-redesign .gallery-proof-board .work-photo figcaption,
  body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption {
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    border-width: 1px 0 0;
    border-radius: 0;
  }

  body.gallery-redesign .gallery-proof-board .work-photo img,
  body.gallery-redesign .gallery-proof-board__mini .work-photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* AP-TASK-0025 hotfix: contact setup panel class support after AP-0024 cleanup rename. */
body.contact-redesign .form-setup-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  color: #264E3B;
  background: #C9B7A4;
  border: 1px solid #C9B7A4;
  border-radius: var(--radius);
}

body.contact-redesign .form-setup-panel strong,
body.contact-redesign .form-setup-panel p {
  margin: 0;
}

/* AP-TASK-0026 final layout guard: clean Home proof board contract. */
body.home-redesign[data-page="home"] .home-work-board__grid {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  min-height: 0 !important;
  gap: 0.68rem !important;
}

body.home-redesign[data-page="home"] .work-photo {
  grid-column: auto !important;
  grid-row: auto !important;
  min-height: 0 !important;
  transform: none !important;
}

body.home-redesign[data-page="home"] .work-photo--main {
  flex: 0 0 100% !important;
  aspect-ratio: 4 / 3 !important;
  min-height: 0 !important;
}

body.home-redesign[data-page="home"] .work-photo:not(.work-photo--main) {
  flex: 1 1 calc((100% - 1.36rem) / 3) !important;
  max-width: calc((100% - 1.36rem) / 3) !important;
  aspect-ratio: 1 / 1 !important;
}

body.home-redesign[data-page="home"] .work-photo img,
body.home-redesign[data-page="home"] .work-photo--main img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}

body.home-redesign[data-page="home"] .work-photo:not(.work-photo--main) figcaption {
  display: none !important;
}

body.home-redesign[data-page="home"] .work-photo--profile-d {
  display: none !important;
}

body.home-redesign[data-page="home"] .work-photo--main figcaption {
  position: absolute !important;
  right: 0.72rem !important;
  bottom: 0.72rem !important;
  left: 0.72rem !important;
  max-width: min(20rem, calc(100% - 1.44rem));
  border-radius: 7px !important;
}

/* AP-TASK-0031 client feedback guard: no cramped proof labels or broken contact phone. */
body.home-redesign .home-proof-panel ul {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10.5rem), 1fr));
}

body.home-redesign .home-proof-panel li {
  min-width: 0;
}

body.home-redesign .home-proof-panel strong {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  overflow-wrap: normal;
  word-break: normal;
}

body.home-redesign .home-proof-panel span {
  overflow-wrap: normal;
  word-break: normal;
}

body.contact-redesign .contact-direct-card strong {
  font-size: clamp(2.05rem, 4.6vw, 3.3rem);
  line-height: 1;
}

body.contact-redesign .contact-direct-card strong a {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  text-decoration: none;
}

body.gallery-redesign .featured-proof-grid .gallery-request-card {
  min-height: 0;
}

@media (max-width: 760px) {
  body.home-redesign[data-page="home"] .home-work-board__grid {
    gap: 0.52rem !important;
  }

  body.home-redesign[data-page="home"] .work-photo:not(.work-photo--main) {
    flex-basis: calc((100% - 1.04rem) / 3) !important;
    max-width: calc((100% - 1.04rem) / 3) !important;
  }

  body.home-redesign[data-page="home"] .work-photo--main figcaption {
    right: 0.52rem !important;
    bottom: 0.52rem !important;
    left: 0.52rem !important;
    width: auto !important;
    padding: 0.48rem 0.58rem !important;
    border: 1px solid rgba(255, 253, 248, 0.24) !important;
    border-radius: 7px !important;
    background: rgba(58, 52, 53, 0.88) !important;
  }
}

/* AP-TASK-0027: Work Gallery hero and proof-board layout guard. */
body.gallery-redesign .work-page-hero {
  width: min(calc(100% - 2rem), 1180px);
  overflow: visible !important;
}

body.gallery-redesign .work-page-hero .page-hero__content {
  min-width: 0;
  overflow-wrap: anywhere;
}

body.gallery-redesign .work-page-hero h1 {
  max-width: 12.5ch !important;
  font-size: clamp(2.3rem, 4.1vw, 3.55rem) !important;
  line-height: 0.98 !important;
}

body.gallery-redesign .work-page-hero > .gallery-proof-board {
  align-self: start !important;
  min-width: 0;
  gap: 0.82rem !important;
  padding: clamp(0.9rem, 1.8vw, 1.15rem) !important;
}

body.gallery-redesign .gallery-proof-board .work-photo {
  display: block !important;
  min-height: 0 !important;
}

body.gallery-redesign .gallery-proof-board > .work-photo--main img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
}

body.gallery-redesign .gallery-proof-board > .work-photo--main figcaption {
  right: 0.7rem !important;
  bottom: 0.7rem !important;
  left: 0.7rem !important;
  width: auto !important;
  max-width: min(24rem, calc(100% - 1.4rem));
  padding: 0.52rem 0.64rem !important;
}

body.gallery-redesign .gallery-proof-board__mini {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
  justify-items: stretch !important;
  align-items: stretch !important;
}

body.gallery-redesign .gallery-proof-board__mini .work-photo {
  width: 100% !important;
  max-width: none !important;
}

body.gallery-redesign .gallery-proof-board__mini .work-photo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
}

body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption {
  position: static !important;
  width: auto !important;
  padding: 0.48rem 0.55rem !important;
  border-width: 1px 0 0 !important;
  border-radius: 0 !important;
  background: rgba(58, 52, 53, 0.9) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption span {
  border-bottom: 0 !important;
  font-size: 0.9rem !important;
}

body.gallery-redesign .gallery-proof-board__mini .work-photo figcaption small {
  display: none !important;
}

body.gallery-redesign .gallery-proof-board .source-note {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  color: rgba(255, 253, 248, 0.74) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

@media (min-width: 860px) {
  body.gallery-redesign .work-page-hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(19rem, 0.74fr) !important;
    align-items: start !important;
  }
}

@media (max-width: 520px) {
  body.gallery-redesign .work-page-hero {
    width: min(calc(100% - 1rem), 1180px);
    overflow: hidden !important;
  }

  body.gallery-redesign .work-page-hero h1 {
    max-width: 12ch !important;
    font-size: clamp(2.2rem, 11vw, 3.1rem) !important;
  }

  body.gallery-redesign .gallery-proof-board__mini {
    grid-template-columns: 1fr !important;
  }
}

/* AP-TASK-0029: visual regression guards for service cards, proof photos, nav, and contact CTA. */
body.home-redesign .service-fit-card--more,
body.service-redesign .service-fit-card--more {
  grid-column: auto !important;
  min-height: 14.5rem;
}

body.home-redesign .service-fit-card--more p,
body.service-redesign .service-fit-card--more p {
  max-width: 30rem;
}

body.service-redesign .featured-proof-carousel {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

body.service-redesign .featured-proof-carousel .featured-proof-card {
  aspect-ratio: 4 / 3 !important;
  min-height: 0 !important;
  box-shadow: 0 18px 36px rgba(58, 52, 53, 0.13);
}

body.service-redesign .featured-proof-carousel .featured-proof-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}

body.contact-redesign .contact-direct-card {
  width: 100%;
  min-width: min(100%, 23rem);
  overflow: hidden;
}

body.contact-redesign .contact-direct-card__phone {
  display: block !important;
  max-width: 100% !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  white-space: normal !important;
}

body.contact-redesign .contact-direct-card__phone a {
  display: inline !important;
  color: inherit !important;
  text-decoration-thickness: 0.08em !important;
  text-underline-offset: 0.12em !important;
}

body.contact-redesign .contact-direct-card__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.gallery-redesign .gallery-proof-board--interactive {
  max-width: 28rem;
}

body.gallery-redesign .gallery-proof-board--interactive .work-photo--main img {
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  max-height: 20rem !important;
}

body.gallery-redesign .gallery-proof-board__thumbs {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.gallery-redesign .gallery-proof-board__thumbs button,
body.gallery-redesign .gallery-proof-board__thumbs img {
  aspect-ratio: 1 / 1 !important;
}

@media (max-width: 980px) {
  body.service-redesign .featured-proof-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  body.service-redesign .featured-proof-carousel {
    grid-template-columns: 1fr !important;
  }

  body.home-redesign .service-fit-card--more,
  body.service-redesign .service-fit-card--more {
    min-height: 0;
  }

  body.contact-redesign .contact-direct-card {
    min-width: 0;
  }

  body.contact-redesign .contact-direct-card__phone {
    font-size: clamp(1.85rem, 11vw, 2.35rem) !important;
  }
}

/* AP-TASK-0030: source-backed reviews, hours, payment, and process blocks. */
body.reviews-redesign .premium-review-section {
  border-color: rgba(201, 183, 164, 0.62);
  background:
    linear-gradient(135deg, rgba(201, 183, 164, 0.18), transparent 36%),
    var(--color-paper);
}

.premium-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.premium-review-card,
.business-proof-grid article,
.business-detail-card {
  display: grid;
  gap: 0.58rem;
  min-width: 0;
  padding: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-ink);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(201, 183, 164, 0.78);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 16px 34px rgba(58, 52, 53, 0.08);
}

.premium-review-card span,
.business-proof-grid span,
.business-detail-card span {
  width: fit-content;
  padding: 0.25rem 0.58rem;
  color: var(--color-paper);
  background: #264E3B;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.premium-review-card h3,
.business-proof-grid h3,
.business-detail-card h3 {
  margin: 0;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.1;
}

.premium-review-card p,
.business-proof-grid p,
.business-detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.premium-review-card small {
  color: #264E3B;
  font-weight: 900;
}

.review-topic-strip,
.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.review-topic-strip span,
.payment-list li {
  padding: 0.34rem 0.62rem;
  color: #264E3B;
  background: rgba(201, 183, 164, 0.38);
  border: 1px solid rgba(201, 183, 164, 0.78);
  border-radius: 999px;
  font-weight: 900;
}

.review-theme-strip {
  gap: 0.65rem;
}

.review-theme-strip span {
  max-width: 100%;
  padding: 0.48rem 0.72rem;
  font-size: 0.92rem;
}

.business-proof-section,
.business-contact-section {
  background:
    linear-gradient(180deg, rgba(247, 239, 230, 0.78), rgba(255, 253, 248, 0.92));
}

.business-proof-grid,
.business-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hours-list {
  display: grid;
  gap: 0.52rem;
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.85fr) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: baseline;
  padding-block: 0.38rem;
  border-bottom: 1px solid rgba(201, 183, 164, 0.48);
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list dt {
  color: #264E3B;
  font-weight: 900;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.business-detail-card--wide {
  grid-column: span 1;
}

@media (max-width: 1120px) {
  .premium-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .premium-review-grid,
  .business-proof-grid,
  .business-detail-grid {
    grid-template-columns: 1fr;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}

