/*
 * Colonial Window & Door homepage redesign
 *
 * This file intentionally scopes the approved visual system to the homepage.
 * Shared subpage styles remain separate so they can be migrated deliberately.
 */

:root {
  --home-navy: #0b1d3a;
  --home-navy-soft: #17345f;
  --home-gold: #d6a34a;
  --home-gold-soft: #f1dfbd;
  --home-cream: #f8f4ec;
  --home-cream-deep: #eee6d8;
  --home-ink: #15243b;
  --home-slate: #506078;
  --home-border: #ddd5c8;
  --home-white: #fff;
  --home-shadow: 0 22px 60px rgba(11, 29, 58, 0.14);
}

.home-header a,
main a,
.home-footer a,
.home-mobile-actions a {
  transition: color 160ms ease, background-color 160ms ease,
    border-color 160ms ease, opacity 160ms ease, transform 160ms ease,
    text-decoration-color 160ms ease;
}

.home-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--home-white);
  color: var(--home-navy);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.home-skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--home-gold);
  outline-offset: 3px;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--home-white);
  box-shadow: 0 1px 0 rgba(11, 29, 58, 0.1);
}

.home-utility {
  background: var(--home-navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.home-utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-utility p {
  margin: 0;
  letter-spacing: 0.02em;
}

.home-utility-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.home-utility a {
  color: var(--home-white);
  font-weight: 700;
  text-underline-offset: 4px;
}

.home-utility a:hover {
  color: var(--home-gold-soft);
  text-decoration-color: currentColor;
}

.home-nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.home-logo img {
  width: auto;
  height: 54px;
  display: block;
  transition: opacity 160ms ease;
}

.home-logo:hover img { opacity: 0.76; }

.home-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-nav-links > li {
  position: relative;
}

.home-nav-links > li > a,
.home-nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 11px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--home-ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.home-nav-links > li > a:hover,
.home-nav-links > li > a:focus-visible,
.home-nav-links > li > button:hover,
.home-nav-links > li > button:focus-visible {
  background: var(--home-cream);
  color: var(--home-navy);
}

.home-nav-links .home-nav-primary {
  color: var(--home-navy);
  box-shadow: inset 0 -3px 0 var(--home-gold);
}

.home-nav-caret {
  display: inline-block;
  font-size: 10px;
  transition: transform 160ms ease;
}

.home-has-dropdown.is-open .home-nav-caret,
.home-mobile-styles-toggle[aria-expanded="true"] .home-nav-caret {
  transform: rotate(180deg);
}

.home-desktop-styles-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 320;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: var(--home-white);
  box-shadow: var(--home-shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.home-has-dropdown.is-open .home-desktop-styles-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home-desktop-styles-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.home-desktop-styles-menu a:hover,
.home-desktop-styles-menu a:focus-visible {
  background: var(--home-cream);
  color: var(--home-navy);
}

.home-nav-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 7px;
  background: var(--home-gold);
  color: var(--home-navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

.home-nav-estimate:hover {
  background: #e1b45f;
  transform: translateY(-1px);
}

.home-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--home-border);
  border-radius: 7px;
  background: var(--home-white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.home-menu-button:hover {
  border-color: var(--home-gold);
  background: var(--home-cream);
}

.home-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--home-navy);
  transition: transform 160ms ease, opacity 160ms ease;
}

.home-menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.home-menu-button.is-open span:nth-child(2) { opacity: 0; }
.home-menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.home-mobile-menu {
  display: none;
  border-top: 1px solid var(--home-border);
  background: var(--home-white);
  box-shadow: 0 20px 42px rgba(11, 29, 58, 0.14);
}

.home-mobile-menu-inner {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  padding-bottom: 18px;
}

.home-mobile-menu a,
.home-mobile-menu button {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--home-ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.home-mobile-menu a:hover,
.home-mobile-menu a:focus-visible,
.home-mobile-menu button:hover,
.home-mobile-menu button:focus-visible {
  background: var(--home-cream);
}

.home-mobile-menu .home-mobile-primary {
  background: var(--home-cream);
  color: var(--home-navy);
  box-shadow: inset 4px 0 0 var(--home-gold);
}

.home-mobile-styles-toggle {
  width: 100%;
  justify-content: space-between;
  text-align: left;
}

.home-mobile-styles-menu {
  display: grid;
  gap: 2px;
  padding: 4px 0 8px 16px;
}

.home-mobile-styles-menu a {
  min-height: 44px;
  padding-block: 8px;
  background: #f8f4ec;
  font-size: 14px;
  box-shadow: inset 3px 0 0 rgba(200, 145, 58, 0.42);
}

.home-mobile-menu-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--home-border);
}

.home-mobile-menu-actions a {
  justify-content: center;
  padding: 8px;
  text-align: center;
  background: var(--home-navy);
  color: var(--home-white);
}

.home-mobile-menu-actions a:last-child {
  background: var(--home-gold);
  color: var(--home-navy);
}

.home-mobile-menu-actions a:hover,
.home-mobile-menu-actions a:focus-visible {
  background: var(--home-navy-soft);
  color: var(--home-white);
}

.home-mobile-menu-actions a:last-child:hover,
.home-mobile-menu-actions a:last-child:focus-visible {
  background: #e1b45f;
  color: var(--home-navy);
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--home-cream);
  color: var(--home-ink);
}

.home-hero::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -220px;
  border: 80px solid rgba(214, 163, 74, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.home-hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 36px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 12px 0;
}

.home-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: #765116;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-eyebrow::before {
  content: '';
  width: 42px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--home-gold);
}

.home-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--home-navy);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(40px, 4.1vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
}

.home-hero-lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--home-slate);
  font-size: 17px;
  line-height: 1.65;
}

.home-hero-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  max-width: 650px;
  margin-bottom: 16px;
}

.home-hero-action {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 2px solid var(--home-navy);
  border-radius: 7px;
  color: var(--home-navy);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.home-hero-action:hover { transform: translateY(-2px); }
.home-hero-action.is-call { background: var(--home-navy); color: var(--home-white); }
.home-hero-action.is-text { background: transparent; }
.home-hero-action.is-estimate {
  border-color: var(--home-gold);
  background: var(--home-gold);
  color: var(--home-navy);
}

.home-hero-action.is-call:hover { background: var(--home-navy-soft); }
.home-hero-action.is-text:hover { background: var(--home-cream-deep); }
.home-hero-action.is-estimate:hover { background: #e1b45f; }

.home-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--home-border);
  list-style: none;
}

.home-hero-facts li {
  position: relative;
  padding-left: 16px;
  color: #3b4b63;
  font-size: 13px;
  font-weight: 700;
}

.home-hero-facts li::before {
  content: '';
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-gold);
}

.home-hero-visual {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--home-cream);
}

.home-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
}

.home-hero-visual::after {
  content: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 29, 58, 0.12), rgba(11, 29, 58, 0));
  pointer-events: none;
}

.home-hero-card {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  max-width: 330px;
  padding: 20px 22px;
  border-left: 4px solid var(--home-gold);
  background: rgba(11, 29, 58, 0.94);
  color: var(--home-white);
  box-shadow: var(--home-shadow);
}

.home-hero-card strong {
  display: block;
  margin-bottom: 5px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.home-hero-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.home-service-priority {
  padding: 92px 0;
  background: var(--home-white);
}

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

.home-section-heading h2 {
  margin: 0 0 14px;
  color: var(--home-navy);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.home-section-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--home-slate);
  font-size: 17px;
  line-height: 1.7;
}

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

.home-service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 14px;
  background: var(--home-cream);
}

.home-service-card.is-primary {
  border-color: var(--home-navy);
  background: var(--home-navy);
  color: var(--home-white);
  box-shadow: var(--home-shadow);
}

.home-service-number {
  display: block;
  margin-bottom: 38px;
  color: #765116;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-service-card.is-primary .home-service-number {
  color: var(--home-gold-soft);
}

.home-service-card h3 {
  margin: 0 0 14px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.home-service-card p {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--home-slate);
  font-size: 16px;
  line-height: 1.72;
}

.home-service-card.is-primary p { color: rgba(255, 255, 255, 0.78); }

.home-service-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 7px;
  background: var(--home-gold);
  color: var(--home-navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.home-service-link:hover {
  background: #e1b45f;
  transform: translateY(-1px);
}

.home-service-card:not(.is-primary) .home-service-link {
  background: var(--home-navy);
  color: var(--home-white);
}

.home-impact-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid var(--home-border);
  border-left: 4px solid var(--home-gold);
  border-radius: 10px;
  background: #fcfaf6;
}

.home-impact-note strong {
  color: var(--home-navy);
  font-size: 14px;
  white-space: nowrap;
}

.home-impact-note p {
  margin: 0;
  color: var(--home-slate);
  font-size: 14px;
  line-height: 1.65;
}

#services,
#why,
#about,
#process,
#catalog,
#financing,
#areas,
#contact {
  scroll-margin-top: 130px;
}

.home-signs,
.home-process,
.home-areas,
.home-faq,
.home-reviews,
.home-catalog,
.home-contact {
  position: relative;
  padding: 96px 0;
}

.home-signs {
  overflow: hidden;
  border-top: 1px solid var(--home-border);
  background: var(--home-cream);
}

.home-signs-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.home-signs-intro h2,
.home-owner-copy h2,
.home-process-heading h2,
.home-reviews-heading h2,
.home-catalog-copy h2,
.home-areas-copy h2,
.home-faq h2,
.home-contact-heading h2 {
  margin: 0 0 20px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 4.3vw, 54px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-wrap: balance;
}

.home-signs-intro > p:last-of-type,
.home-owner-copy > p,
.home-process-heading > p,
.home-reviews-heading > p,
.home-catalog-copy > p,
.home-areas-copy > p,
.home-contact-heading > p {
  color: var(--home-slate);
  font-size: 17px;
  line-height: 1.75;
}

.home-text-links {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.home-text-links a,
.home-inline-cta,
.home-review-links a {
  width: fit-content;
  color: var(--home-navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration-color: var(--home-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.home-text-links a:hover,
.home-inline-cta:hover,
.home-review-links a:hover {
  color: #765116;
  text-decoration-color: currentColor;
}

.home-signs-list {
  border-top: 1px solid var(--home-border);
}

.home-signs-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--home-border);
}

.home-signs-list article > span {
  color: #765116;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.home-signs-list h3 {
  margin: 0 0 7px;
  color: var(--home-navy);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.home-signs-list p {
  margin: 0;
  color: var(--home-slate);
  font-size: 15px;
  line-height: 1.7;
}

.home-owner {
  padding: 96px 0;
  overflow: hidden;
  background: var(--home-navy);
  color: var(--home-white);
}

.home-owner-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.home-owner-visual {
  position: relative;
  aspect-ratio: 1000 / 709;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--home-navy-soft);
  box-shadow: 24px 28px 0 rgba(6, 20, 40, 0.42);
}

.home-owner-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-owner-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(11, 29, 58, 0.84));
  pointer-events: none;
}

.home-owner-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-owner-copy {
  align-self: center;
  padding: 0;
}

.home-owner-copy .home-eyebrow {
  color: var(--home-gold-soft);
}

.home-owner-copy h2 { color: var(--home-white); }

.home-owner-copy > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
}

.home-owner-points {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-owner-points article {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-owner-points h3 {
  margin: 0;
  color: var(--home-white);
  font-size: 15px;
  line-height: 1.45;
}

.home-owner-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.home-owner-quote {
  margin: 30px 0 22px;
  padding: 22px 24px;
  border-left: 4px solid var(--home-gold);
  background: rgba(255, 255, 255, 0.06);
}

.home-owner-quote p {
  margin: 0 0 10px;
  color: var(--home-white);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  line-height: 1.4;
}

.home-owner-quote footer,
.home-owner-meta,
.home-owner-name-note {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

.home-owner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-owner-meta span,
.home-owner-meta a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.home-owner-meta a {
  color: var(--home-gold-soft);
  font-weight: 700;
  text-underline-offset: 3px;
}

.home-owner-meta a:hover {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--home-white);
}

.home-owner-name-note {
  margin: 16px 0 0 !important;
  font-size: 12px !important;
}

.home-process { background: var(--home-white); }

.home-process-heading,
.home-reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: end;
  margin-bottom: 50px;
}

.home-process-heading h2,
.home-reviews-heading h2 { color: var(--home-navy); }

.home-process-heading > p,
.home-reviews-heading > p { margin: 0 0 6px; }

.home-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--home-border);
  background: var(--home-border);
  list-style: none;
}

.home-process-steps li {
  min-height: 320px;
  padding: 32px 28px;
  background: var(--home-white);
}

.home-process-steps li > span {
  display: block;
  margin-bottom: 62px;
  color: #765116;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.home-process-steps h3 {
  margin: 0 0 14px;
  color: var(--home-navy);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.home-process-steps p {
  margin: 0;
  color: var(--home-slate);
  font-size: 14px;
  line-height: 1.7;
}

.home-reviews {
  border-top: 1px solid var(--home-border);
  background: var(--home-cream);
}

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

.home-review-grid blockquote {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 32px;
  border: 1px solid var(--home-border);
  border-top: 4px solid var(--home-gold);
  background: var(--home-white);
}

.home-review-grid blockquote > p {
  margin: 0 0 36px;
  color: var(--home-ink);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  line-height: 1.48;
}

.home-review-grid footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--home-slate);
  font-size: 13px;
}

.home-review-grid footer strong { color: var(--home-navy); }

.home-review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 30px;
}

.home-catalog {
  overflow: hidden;
  background: #10294e;
  color: var(--home-white);
}

.home-catalog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(48px, 8vw, 106px);
  align-items: center;
}

.home-catalog-copy .home-eyebrow { color: var(--home-gold-soft); }
.home-catalog-copy h2 { color: var(--home-white); }
.home-catalog-copy > p {
  max-width: 690px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
}

.home-catalog-form,
.home-estimate-form {
  display: grid;
  gap: 16px;
}

.home-catalog-fields,
.home-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-catalog-form label,
.home-estimate-form label {
  display: grid;
  gap: 7px;
}

.home-catalog-form label > span,
.home-estimate-form label > span {
  font-size: 13px;
  font-weight: 800;
}

.home-catalog-form input,
.home-estimate-form input,
.home-estimate-form select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--home-white);
  font: inherit;
}

.home-catalog-form input:focus,
.home-estimate-form input:focus,
.home-estimate-form select:focus {
  border-color: var(--home-gold);
  outline: 3px solid rgba(214, 163, 74, 0.25);
  outline-offset: 1px;
}

.home-catalog-form button,
.home-estimate-form button {
  min-height: 52px;
  width: fit-content;
  padding: 12px 22px;
  border: 0;
  border-radius: 7px;
  background: var(--home-gold);
  color: var(--home-navy);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.home-catalog-form button:hover,
.home-estimate-form button:hover {
  background: #e1b45f;
  transform: translateY(-1px);
}

.home-catalog-form button:disabled,
.home-estimate-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.home-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.home-captcha-wrap {
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.home-captcha-wrap .h-captcha {
  min-height: 78px;
}

.home-local-preview-note {
  margin: 8px 0 0;
  color: inherit;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.76;
}

.home-form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.6;
}

.home-form-note a { color: inherit; }

.home-catalog-success {
  display: none;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.home-catalog-success h3 {
  margin: 0 0 8px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.home-catalog-success p { color: rgba(255, 255, 255, 0.72); }
.home-catalog-success a { color: var(--home-gold-soft); font-weight: 800; }
.home-catalog-success a:hover { color: var(--home-white); }

.home-catalog-preview {
  position: relative;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid var(--home-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 24px 28px 0 rgba(6, 20, 40, 0.4);
}

.home-catalog-preview > span,
.home-financing-card > span,
.home-contact-direct > span,
.home-estimate-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--home-gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-catalog-preview h3 {
  margin: 0 0 22px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
}

.home-catalog-preview ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.home-catalog-preview li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.home-catalog-preview li::before {
  content: '';
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-gold);
}

.home-catalog-preview > p {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.home-areas { background: var(--home-white); }

.home-areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.home-areas-copy h2 { color: var(--home-navy); }
.home-areas-copy > p { margin: 0 0 28px; }

.home-city-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--home-border);
  border-left: 1px solid var(--home-border);
}

.home-city-links a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-right: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
  color: var(--home-navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.home-city-links a::after { content: '→'; color: #765116; }
.home-city-links a:hover { background: var(--home-cream); }

.home-faq {
  border-top: 1px solid var(--home-border);
  background: var(--home-cream);
}

.home-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.home-faq h2 { max-width: 700px; color: var(--home-navy); }

.home-faq-list {
  margin-top: 34px;
  border-top: 1px solid var(--home-border);
}

.home-faq-list details { border-bottom: 1px solid var(--home-border); }

.home-faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  color: var(--home-navy);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease;
}

.home-faq-list summary:hover { color: #765116; }

.home-faq-list summary::-webkit-details-marker { display: none; }
.home-faq-list summary::after { content: '+'; color: #765116; font-size: 24px; font-weight: 400; }
.home-faq-list details[open] summary::after { content: '−'; }

.home-faq-list details p {
  margin: -2px 0 20px;
  padding-right: 46px;
  color: var(--home-slate);
  font-size: 15px;
  line-height: 1.7;
}

.home-financing-card {
  padding: 34px;
  border-top: 4px solid var(--home-gold);
  background: var(--home-navy);
  color: var(--home-white);
  box-shadow: var(--home-shadow);
}

.home-financing-card h3 {
  margin: 0 0 14px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
}

.home-financing-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.home-financing-card a {
  color: var(--home-gold-soft);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.home-financing-card a:hover {
  color: var(--home-white);
  text-decoration-color: currentColor;
}

.home-contact {
  overflow: hidden;
  background: var(--home-navy);
  color: var(--home-white);
}

.home-contact::before {
  content: '';
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 460px;
  height: 460px;
  border: 100px solid rgba(214, 163, 74, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.home-contact-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-bottom: 46px;
}

.home-contact-heading .home-eyebrow { color: var(--home-gold-soft); }
.home-contact-heading h2 { color: var(--home-white); }
.home-contact-heading > p { margin: 0; color: rgba(255, 255, 255, 0.72); }

.home-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
}

.home-contact-direct,
.home-estimate-card {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-contact-direct {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
}

.home-contact-direct h3,
.home-estimate-card h3 {
  margin: 0 0 18px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.08;
}

.home-contact-direct h3 { color: var(--home-white); }

.home-contact-number,
.home-contact-number:visited {
  color: var(--home-white);
  -webkit-text-fill-color: currentColor;
  text-decoration-color: rgba(255, 255, 255, 0.72);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}

.home-contact-number:hover {
  color: var(--home-gold-soft);
  text-decoration-color: currentColor;
}

.home-contact-direct > p,
.home-estimate-card > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

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

.home-contact-buttons a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  color: var(--home-white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease,
    color 160ms ease, transform 160ms ease;
}

.home-contact-buttons a:first-child {
  border-color: var(--home-gold);
  background: var(--home-gold);
  color: var(--home-navy);
}

.home-contact-buttons a:hover {
  border-color: var(--home-white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.home-contact-buttons a:first-child:hover {
  border-color: #e1b45f;
  background: #e1b45f;
}

.home-contact-scope {
  margin-top: auto;
  padding-top: 32px;
}

.home-contact-scope strong {
  color: var(--home-gold-soft);
  font-size: 13px;
}

.home-contact-scope p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.home-estimate-card {
  background: var(--home-white);
  color: var(--home-ink);
}

.home-estimate-card > span { color: #765116; }
.home-estimate-card h3 { color: var(--home-navy); }
.home-estimate-card > p { color: var(--home-slate); }

.home-estimate-form label > span { color: var(--home-ink); }
.home-estimate-form label small { color: var(--home-slate); font-weight: 500; }

.home-estimate-form input,
.home-estimate-form select {
  border-color: var(--home-border);
  background: var(--home-white);
  color: var(--home-ink);
}

.home-estimate-form .home-form-note { color: var(--home-slate); }
.home-estimate-form .home-form-note a { color: var(--home-navy); }
.home-estimate-form .home-form-note a:hover {
  color: #765116;
  text-decoration-color: currentColor;
}

.home-estimate-card .form-success {
  display: none;
  padding: 28px;
  border: 1px solid #b9d8c5;
  background: #eef8f1;
}

.home-estimate-card .form-success h3 {
  margin-bottom: 10px;
  color: #1f603e;
  font-size: 30px;
}

.home-estimate-card .form-success p {
  margin: 0;
  color: #315c43;
  line-height: 1.65;
}

.home-footer {
  padding: 72px 0 24px;
  background: #07152b;
  color: var(--home-white);
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.95fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

/* Scoped to the logo link's own img. As a descendant selector this also caught
   the social icons nested further down the brand column, painting the
   full-colour Yelp PNG solid white and stretching it to 54px tall. */
.home-footer-brand > a > img {
  width: auto;
  height: 54px;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 160ms ease;
}

.home-footer-brand > a:hover img { opacity: 0.76; }

.home-footer-brand > p {
  max-width: 360px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.home-footer-review-card {
  display: flex;
  max-width: 280px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.home-footer-review-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.home-footer-review-card > svg { flex: 0 0 auto; }

.home-footer-review-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.home-footer-review-info strong {
  color: var(--home-white);
  font-size: 13px;
  line-height: 1.25;
}

.home-footer-review-info > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.home-footer-review-info .home-footer-review-link {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.home-footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.home-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.home-social-icon:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

.home-social-icon.is-google { background: #fff; }
.home-social-icon.is-yelp { background: transparent; }
.home-social-icon.is-nextdoor { background: #8dc63f; }
.home-social-icon img,
.home-social-icon svg { display: block; }
/* Brand-mark PNGs keep their own colours and fill the 40px tile, whatever the
   surrounding footer rules do. */
.home-social-icon img {
  width: 40px;
  height: 40px;
  filter: none;
}

.home-footer a {
  color: rgba(255, 255, 255, 0.74);
  text-underline-offset: 4px;
}

.home-footer a:hover {
  color: var(--home-white);
  text-decoration-color: var(--home-gold);
}

.home-footer h2 {
  margin: 8px 0 18px;
  color: var(--home-white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-footer ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-footer li,
.home-footer li a { font-size: 13px; line-height: 1.55; }

.home-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.home-footer-bottom p { margin: 0; }
.home-footer-bottom > div { display: flex; flex-wrap: wrap; gap: 18px; }

.home-mobile-actions {
  display: none;
}

.home-header a:focus-visible,
.home-header button:focus-visible,
.home-hero a:focus-visible,
.home-service-priority a:focus-visible,
.home-signs a:focus-visible,
.home-owner a:focus-visible,
.home-process a:focus-visible,
.home-reviews a:focus-visible,
.home-catalog a:focus-visible,
.home-catalog button:focus-visible,
.home-areas a:focus-visible,
.home-faq a:focus-visible,
.home-faq summary:focus-visible,
.home-contact a:focus-visible,
.home-contact button:focus-visible,
.home-footer a:focus-visible,
.home-mobile-actions a:focus-visible {
  outline: 3px solid var(--home-navy);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--home-white);
}

@media (max-width: 1240px) {
  .home-hero-visual { margin-right: -24px; }
  .home-nav-links > li > a,
  .home-nav-links > li > button { padding-inline: 8px; }
}

@media (max-width: 1100px) {
  .home-nav-links,
  .home-nav-estimate { display: none; }
  .home-menu-button { display: flex; }
  .home-mobile-menu.is-open {
    display: block;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 1000px) {
  .home-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .home-hero-copy { padding: 58px 0 48px; }
  .home-hero-visual {
    min-height: 430px;
    margin: 0 -24px;
  }
  .home-hero-visual img {
    position: absolute;
    inset: 0;
  }
  .home-service-grid { grid-template-columns: 1fr; }
  .home-service-card { min-height: 300px; }
  .home-signs-grid,
  .home-owner-grid,
  .home-catalog-grid,
  .home-areas-grid,
  .home-faq-grid,
  .home-contact-grid {
    grid-template-columns: 1fr;
  }
  .home-owner-visual {
    max-width: 760px;
    min-height: 0;
    margin: 0;
  }
  .home-owner-copy { padding: 0; }
  .home-process-heading,
  .home-reviews-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-process-steps li { min-height: 280px; }
  .home-process-steps li > span { margin-bottom: 38px; }
  .home-catalog-preview {
    max-width: 680px;
    box-shadow: 16px 18px 0 rgba(6, 20, 40, 0.4);
  }
  .home-financing-card { max-width: 680px; }
  .home-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .home-utility { display: none; }
  .home-nav-shell { min-height: 70px; }
  .home-logo img { height: 48px; }
  .home-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.05;
  }
  .home-hero-actions { grid-template-columns: 1fr; }
  .home-hero-action { min-height: 52px; }
  .home-hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .home-hero-visual { min-height: 360px; }
  .home-hero-card { right: 20px; bottom: 20px; left: 20px; max-width: none; }
  .home-service-priority { padding: 68px 0; }
  .home-impact-note { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  .home-impact-note strong { white-space: normal; }
  .home-signs,
  .home-process,
  .home-areas,
  .home-faq,
  .home-reviews,
  .home-catalog,
  .home-contact {
    padding: 68px 0;
  }
  .home-signs-grid,
  .home-catalog-grid,
  .home-areas-grid,
  .home-faq-grid { gap: 42px; }
  .home-signs-list article { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; }
  .home-owner { padding: 68px 0; }
  .home-owner-visual { min-height: 0; box-shadow: 10px 12px 0 rgba(6, 20, 40, 0.42); }
  .home-owner-copy { padding: 0; }
  .home-owner-points article { grid-template-columns: 1fr; gap: 7px; }
  .home-process-steps,
  .home-review-grid { grid-template-columns: 1fr; }
  .home-process-steps li { min-height: 0; }
  .home-process-steps li > span { margin-bottom: 28px; }
  .home-review-grid blockquote { min-height: 0; }
  .home-catalog-fields,
  .home-form-row { grid-template-columns: 1fr; }
  .home-catalog-form button,
  .home-estimate-form button { width: 100%; }
  .home-catalog-preview { box-shadow: 10px 12px 0 rgba(6, 20, 40, 0.4); }
  .home-contact-buttons { grid-template-columns: 1fr 1fr; }
  .home-footer-grid { grid-template-columns: 1fr; }
  .home-footer-bottom { align-items: flex-start; flex-direction: column; }
  .home-mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 500;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--home-navy);
    box-shadow: 0 -8px 24px rgba(11, 29, 58, 0.2);
    transition: transform 160ms ease;
  }
  .home-mobile-actions a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--home-white);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }
  .home-mobile-actions a:last-child {
    border-right: 0;
    border-radius: 6px;
    background: var(--home-gold);
    color: var(--home-navy);
  }
  .home-mobile-actions a:hover {
    background: var(--home-navy-soft);
    color: var(--home-white);
  }
  .home-mobile-actions a:last-child:hover {
    background: #e1b45f;
    color: var(--home-navy);
  }
  body:has(input:focus, select:focus, textarea:focus) .home-mobile-actions {
    transform: translateY(120%);
  }
}

@media (max-width: 420px) {
  .home-hero-copy { padding-top: 48px; }
  .home-hero-facts { grid-template-columns: 1fr; }
  .home-city-links,
  .home-contact-buttons { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .home-skip-link,
  .home-nav-estimate,
  .home-menu-button span,
  .home-hero-action,
  .home-service-link,
  .home-catalog-form button,
  .home-estimate-form button,
  .home-contact-buttons a,
  .home-mobile-actions {
    transition: none;
  }
}

/* Real customer photography and a direct path to the estimate. */
.home-discount-banner { background: #e9d5ad; color: #15243b; }
.home-discount-banner > a { display: flex; justify-content: center; align-items: center; gap: 18px; padding: 9px 20px; color: inherit; text-decoration: none; font-size: 13px; line-height: 1.45; }
.home-discount-banner strong { font-weight: 800; }
.home-discount-banner > a > span { text-decoration: underline; text-underline-offset: 3px; }
.home-discount-banner a:hover { background: #e1c48f; }
.home-hero::before { content: none; }
.home-hero-personal { margin: 0; color: var(--home-slate); font-size: 13px; }
.home-hero-personal a { color: var(--home-navy); text-underline-offset: 3px; font-weight: 700; }
.home-hero-visual figcaption { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 13px 0 0; font-size: 12px; color: var(--home-slate); }
.home-hero-visual figcaption a { color: var(--home-navy); font-weight: 700; text-underline-offset: 4px; }
.home-trust-strip { border-block: 1px solid var(--home-border); background: var(--home-white); }
.home-trust-strip .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 38px; padding-block: 18px; font-size: 13px; font-weight: 700; color: var(--home-slate); }
.home-trust-strip a { color: var(--home-navy); text-underline-offset: 4px; }
.home-service-grid { align-items: stretch; }
.home-service-card { overflow: hidden; padding: 0 28px 28px; gap: 24px; }
.home-service-photo { display: block; align-self: center; width: calc(100% + 56px); max-width: none; height: auto; aspect-ratio: 4 / 3; margin: 0 -28px; object-fit: contain; background: #eee7db; }
.home-service-card h3 { font-size: 30px; }
.home-project { background: var(--home-cream); padding: 80px 0; }
.home-project-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; margin-bottom: 32px; }
.home-project h2 { margin: 0; font: 400 clamp(32px, 4vw, 48px)/1.1 'DM Serif Display', Georgia, serif; color: var(--home-navy); letter-spacing: -.02em; }
.home-project-heading p:not(.home-eyebrow) { color: var(--home-slate); margin: 0 0 18px; line-height: 1.7; }
.home-project-link { color: var(--home-navy); font-size: 14px; font-weight: 800; text-underline-offset: 5px; }
.home-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin-inline: auto; }
.home-comparison figure { margin: 0; }
.home-comparison figcaption { display: flex; align-items: center; gap: 12px; padding: 16px 0; font-size: 14px; font-weight: 800; }
.home-comparison figcaption span { color: #84601f; font-weight: 500; }
.home-comparison img { display: block; width: 100%; height: auto; border-radius: 3px; }
.home-photo-note { color: var(--home-slate); font-size: 12px; line-height: 1.6; margin: 16px 0 0; }
.home-comparison + .home-photo-note { max-width: 960px; margin-inline: auto; }
.home-value-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-top: 48px; margin-top: 40px; border-top: 1px solid var(--home-border); }
.home-value-story h3 { font: 400 clamp(30px, 3vw, 40px)/1.15 'DM Serif Display', Georgia, serif; margin: 0 0 18px; }
.home-value-story > div > p:not([class]) { color: var(--home-slate); font-size: 15px; line-height: 1.75; margin: 0 0 18px; }
.home-owner-visual img { position: static; width: 100%; height: auto; object-fit: contain; }
.home-owner-visual::after { content: none; }
.home-owner-visual { aspect-ratio: auto; height: auto; min-height: 0; max-width: 480px; width: 100%; align-self: center; }
.home-owner-visual figcaption { position: static; padding: 15px 18px; background: #17345f; }
#contact { scroll-margin-top: 128px; }
.home-contact-heading { margin-bottom: 30px; }
.home-contact-direct { align-self: start; }
.home-estimate-card h3 { font-size: 34px; }
.home-estimate-card > p { margin-bottom: 22px; }
.home-contact-buttons { grid-template-columns: 1fr 1fr; }
@media (max-width: 1240px) { .home-hero-visual { margin: 0; } }
@media (max-width: 1000px) {
  .home-hero-grid { gap: 26px; padding-block: 30px; }
  .home-hero-copy { padding: 0; }
  .home-hero-visual { min-height: 0; margin: 0; }
  .home-hero-visual img { position: static; }
  .home-service-grid { grid-template-columns: 1fr 1fr; }
  .home-service-card { min-height: 0; }
  .home-project-heading { gap: 30px; }
  .home-contact-grid { display: flex; flex-direction: column; }
  .home-estimate-card { order: -1; }
  .home-contact-direct { width: 100%; }
}
@media (max-width: 700px) {
  .home-discount-banner > a { flex-direction: column; gap: 1px; font-size: 12px; padding-block: 7px; }
  .home-hero-grid { padding: 24px 20px 22px; gap: 22px; }
  .home-hero-copy { padding: 0; }
  .home-hero .home-eyebrow { font-size: 10px; letter-spacing: .09em; gap: 9px; margin-bottom: 14px; }
  .home-hero .home-eyebrow::before { width: 22px; height: 2px; }
  .home-hero h1 { font-size: clamp(31px, 8.8vw, 39px); line-height: 1.07; margin-bottom: 15px; text-wrap: initial; }
  .home-hero-lead { font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
  .home-hero-actions { grid-template-columns: 1.2fr 1fr; gap: 8px; margin-bottom: 12px; }
  .home-hero-action { font-size: 12px; min-height: 48px; padding: 10px 8px; }
  .home-hero-personal { font-size: 12px; }
  .home-hero-visual figcaption { font-size: 11px; padding-top: 9px; }
  .home-trust-strip .container { gap: 7px 18px; padding-block: 14px; font-size: 11px; }
  .home-service-priority, .home-project { padding-block: 48px; }
  .home-service-grid, .home-project-heading, .home-value-story { grid-template-columns: 1fr; }
  .home-service-card { padding: 0 24px 24px; }
  .home-service-photo { width: calc(100% + 48px); margin-inline: -24px; height: auto; }
  .home-project-heading { gap: 20px; }
  .home-project h2 { font-size: 34px; }
  .home-comparison { gap: 18px; grid-template-columns: 1fr; }
  .home-value-story { gap: 30px; margin-top: 26px; padding-top: 30px; }
  .home-owner-grid { gap: 30px; }
  .home-contact, .home-owner, .home-signs, .home-process { padding-block: 48px; }
  .home-contact-direct, .home-estimate-card { padding: 25px 22px; }
  .home-contact-grid { gap: 24px; }
  .home-contact-heading h2 { font-size: 34px; }
  .home-estimate-card h3 { font-size: 28px; }
  .home-estimate-card > span { font-size: 11px; letter-spacing: .08em; }
  .home-estimate-card > p { font-size: 14px; }
  #contact { scroll-margin-top: 82px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Compact review links share the business-details bar below the hero. */
.home-trust-strip .container { max-width: 1360px; justify-content: center; align-items: center; gap: 10px 26px; padding-block: 10px; }
.home-trust-details { display: flex; justify-content: center; flex-wrap: wrap; align-items: center; gap: 10px 26px; }
.home-business-name-note { flex-basis: 100%; margin: 0; text-align: center; font-size: 13px; line-height: 1.6; font-weight: 500; color: var(--home-slate); }
.home-business-name-note strong { color: var(--home-navy); font-weight: 700; }
.home-rating-links { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px 22px; }
.home-trust-strip .home-rating-link { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 44px; color: var(--home-navy); text-decoration: none; white-space: nowrap; }
.home-rating-link > svg, .home-rating-link > img { width: 18px; height: 18px; object-fit: contain; }
.home-rating-name { font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.home-rating-score { font-size: 13px; }
.home-rating-score strong { font-weight: 800; }
.home-rating-score > span { color: #976718; }
.home-rating-count { font-size: 11px; color: var(--home-slate); font-weight: 500; }
.home-rating-link:hover .home-rating-name { text-decoration-thickness: 2px; }
.home-rating-link:focus-visible { outline: 2px solid var(--home-navy); outline-offset: 4px; border-radius: 2px; }
.home-trust-strip .home-rating-link-bbb { gap: 9px; }
.home-bbb-grade { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 5px; background: #e9d5ad; color: var(--home-navy); font-size: 21px; line-height: 1; letter-spacing: -.04em; }
.home-bbb-label { display: grid; gap: 3px; }
.home-bbb-detail { font-size: 10px; line-height: 1.2; font-weight: 500; color: var(--home-slate); }
.home-trust-strip .home-rating-link-nextdoor { padding-inline: 11px; border-radius: 5px; background: #edf5e7; }
.home-nextdoor-label { display: grid; gap: 4px; }
.home-rating-link-nextdoor .home-rating-name { color: #325b20; }
.home-nextdoor-detail { font-size: 10px; line-height: 1.2; font-weight: 500; color: #325b20; }
.home-rating-date { color: var(--home-slate); font-size: 12px; line-height: 1.7; margin: 26px 0 0; }
@media (max-width: 700px) {
  .home-trust-strip .container { gap: 8px; padding-block: 14px 6px; }
  .home-trust-details { gap: 8px 18px; }
  .home-rating-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; max-width: 380px; gap: 4px 16px; border-top: 1px solid var(--home-border); padding-top: 8px; }
  .home-trust-strip .home-rating-link-nextdoor { justify-self: center; }
}

.home-gallery-invitation { margin: 28px 0 0; text-align: center; }
