:root {
  --ink: #17181a;
  --muted: #5f6668;
  --line: #d9d4ca;
  --paper: #fbfaf7;
  --concrete: #f0ede6;
  --white: #ffffff;
  --orange: #e85d04;
  --orange-dark: #ba4700;
  --teal: #2f6f73;
  --moss: #66754b;
  --navy: #22313f;
  --shadow: 0 20px 60px rgba(23, 24, 26, 0.14);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(23, 24, 26, 0.92);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: auto;
  height: clamp(42px, 5vw, 62px);
  max-width: 170px;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.28));
}

.brand-subtitle {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.phone-link:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg,
.button svg,
.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(232, 93, 4, 0.24);
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-ghost.light {
  margin-top: 22px;
}

.button-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.button-small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: clamp(560px, 80svh, 760px);
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/legacy-block-hero.jpg") center right / cover no-repeat;
  transform: scale(1.01);
  animation: heroPhotoDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 22, 0.88) 0%, rgba(12, 18, 22, 0.66) 40%, rgba(12, 18, 22, 0.13) 74%),
    linear-gradient(0deg, rgba(12, 18, 22, 0.36), rgba(12, 18, 22, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 48px;
  min-height: inherit;
  align-items: center;
  padding: 58px 0 68px;
}

@keyframes heroPhotoDrift {
  from {
    background-position: center right;
    transform: scale(1.01);
  }

  to {
    background-position: 58% 50%;
    transform: scale(1.07);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    animation: none;
  }
}

.hero-copy {
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb36d;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7vw, 5.7rem);
  line-height: 0.96;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.18;
}

.hero-subhead {
  width: min(590px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-strip {
  display: flex;
  width: min(680px, 100%);
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-card {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(23, 24, 26, 0.72);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.hero-card-top,
.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #64d97b;
  box-shadow: 0 0 0 7px rgba(100, 217, 123, 0.14);
}

.hero-card-top {
  justify-content: flex-start;
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1.02;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.78);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.mini-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-metrics span,
.mini-metrics small {
  display: block;
}

.mini-metrics span {
  margin-bottom: 4px;
  font-size: 1.45rem;
  font-weight: 950;
}

.mini-metrics small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.proof-bar {
  background: var(--ink);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.proof-grid div {
  min-height: 96px;
  padding: 18px 20px;
  background: var(--ink);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.buyer-strip {
  padding: 18px 0;
  background: var(--paper);
}

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

.buyer-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 22px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  box-shadow: 0 18px 40px rgba(23, 24, 26, 0.13);
}

.buyer-card::before,
.buyer-card::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
}

.buyer-card::before {
  background: url("assets/legacy-block-hero.jpg") center / cover no-repeat;
  transform: scale(1.08);
}

.buyer-card.contractor::before {
  background-image: url("assets/buyer-contractors.jpg");
  background-position: 58% 48%;
}

.buyer-card.landscape::before {
  background-image: url("assets/buyer-landscapers.jpg");
  background-position: 50% 52%;
}

.buyer-card.homeowner::before {
  background-image: url("assets/buyer-homeowners.jpg");
  background-position: 50% 54%;
}

.buyer-card::after {
  background:
    linear-gradient(180deg, rgba(12, 18, 22, 0.02), rgba(12, 18, 22, 0.86)),
    linear-gradient(90deg, rgba(12, 18, 22, 0.5), rgba(12, 18, 22, 0.08));
}

.buyer-card span {
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(232, 93, 4, 0.92);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.buyer-card strong {
  width: min(310px, 100%);
  font-size: 1.22rem;
  line-height: 1.16;
}

.estimator-section {
  background:
    linear-gradient(90deg, rgba(23, 24, 26, 0.96), rgba(34, 49, 63, 0.9)),
    url("assets/legacy-block-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.estimator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.estimator-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.estimate-note {
  display: grid;
  gap: 5px;
  width: min(520px, 100%);
  margin-top: 26px;
  border-left: 4px solid var(--orange);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
}

.estimate-note strong {
  color: #ffb36d;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.estimate-note span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 760;
}

.estimator-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.estimate-form {
  display: grid;
  gap: 16px;
  border-radius: calc(var(--radius) - 2px);
  padding: 24px;
  background: var(--white);
  color: var(--ink);
}

.estimate-form label {
  display: grid;
  gap: 7px;
  color: #33383a;
  font-size: 0.88rem;
  font-weight: 900;
}

.estimate-form input,
.estimate-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfc9bf;
  border-radius: 6px;
  padding: 0 12px;
  background: #fffdfa;
  color: var(--ink);
  outline: none;
}

.estimate-form input:focus,
.estimate-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.15);
}

.input-unit {
  position: relative;
  display: block;
}

.input-unit input {
  padding-right: 62px;
}

.input-unit small {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 900;
}

.estimate-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.estimate-results div {
  min-height: 104px;
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(232, 93, 4, 0.12), rgba(232, 93, 4, 0.04)),
    var(--concrete);
}

.estimate-results span,
.estimate-results small {
  display: block;
}

.estimate-results span {
  margin-bottom: 4px;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 950;
  line-height: 1;
}

.estimate-results small {
  color: var(--muted);
  font-weight: 900;
}

.estimate-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.estimate-send {
  width: 100%;
  min-height: 54px;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--concrete);
}

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

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.quote-copy p,
.area-layout p,
.faq-layout p,
.final-layout p,
.site-footer p {
  color: var(--muted);
  font-size: 1.03rem;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 34px;
  align-items: start;
}

.split-feature .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin-bottom: 0;
}

.split-feature .feature-grid {
  grid-template-columns: 1fr;
}

.jobsite-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.jobsite-photo {
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(23, 24, 26, 0), rgba(23, 24, 26, 0.16)),
    url("assets/legacy-block-hero.jpg") center / cover no-repeat;
}

.jobsite-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.jobsite-copy span {
  margin-bottom: 10px;
  color: #ffb36d;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.jobsite-copy strong {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.04;
}

.jobsite-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.split-heading {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

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

.feature-card,
.product-card,
.testimonial-grid figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(23, 24, 26, 0.05);
}

.feature-card {
  min-height: 250px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  right: -34px;
  bottom: -52px;
  width: 148px;
  height: 148px;
  border: 24px solid rgba(232, 93, 4, 0.08);
  border-radius: 50%;
  content: "";
}

.feature-card p,
.product-card p {
  color: var(--muted);
}

.icon-shell {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(232, 93, 4, 0.12);
  color: var(--orange);
}

.icon-shell svg {
  width: 24px;
  height: 24px;
}

.section-quote {
  background:
    linear-gradient(90deg, rgba(34, 49, 63, 0.97), rgba(34, 49, 63, 0.92)),
    var(--navy);
  color: var(--white);
}

.quote-layout,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.quote-copy p,
.final-layout p {
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.check-list svg {
  color: #8fd3a4;
}

.lead-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-topline {
  margin-bottom: 2px;
  color: var(--muted);
}

.form-topline span {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(232, 93, 4, 0.12);
  color: var(--orange-dark);
}

.form-topline strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #33383a;
  font-size: 0.88rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cfc9bf;
  border-radius: 6px;
  background: #fffdfa;
  color: var(--ink);
  outline: none;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 104px;
  resize: vertical;
  padding: 12px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.15);
}

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

.form-submit {
  width: 100%;
  min-height: 54px;
}

.form-status {
  display: none;
  border-radius: 6px;
  padding: 12px;
  background: #e7f5ec;
  color: #1d5f36;
  font-weight: 850;
}

.form-status.is-visible {
  display: block;
}

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

.steps article {
  position: relative;
  min-height: 190px;
  border-top: 4px solid var(--orange);
  padding: 24px 22px 18px;
  background: var(--concrete);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
}

.steps p {
  color: var(--muted);
}

.product-card {
  display: grid;
  min-height: 330px;
  grid-template-rows: 132px auto auto 1fr;
  overflow: hidden;
}

.product-card h3,
.product-card p,
.product-card .text-button {
  margin-inline: 20px;
}

.product-card h3 {
  margin-top: 18px;
}

.text-button {
  align-self: end;
  justify-self: start;
  margin-bottom: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--orange-dark);
  font-weight: 950;
}

.text-button:hover {
  color: var(--ink);
}

.block-visual {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    #c7c3ba;
}

.block-visual::before,
.block-visual::after {
  position: absolute;
  content: "";
}

.block-visual::before {
  inset: 28px 18px 30px;
  border-radius: 4px;
  background:
    radial-gradient(ellipse at 30% 50%, transparent 0 15%, #8d8b85 16% 26%, transparent 27%),
    radial-gradient(ellipse at 70% 50%, transparent 0 15%, #8d8b85 16% 26%, transparent 27%),
    linear-gradient(90deg, #aaa69e 0 48%, #8f8b84 48% 52%, #aaa69e 52%);
  box-shadow:
    12px 12px 0 #9a968e,
    24px 24px 0 #837f78;
}

.block-visual::after {
  inset: auto 0 0;
  height: 18px;
  background: rgba(23, 24, 26, 0.15);
}

.block-visual.half::before {
  inset-right: 42%;
}

.block-visual.corner::before {
  clip-path: polygon(0 0, 76% 0, 76% 38%, 100% 38%, 100% 100%, 0 100%);
}

.block-visual.lintel::before {
  background:
    linear-gradient(#8d8b85, #8d8b85) center / 70% 20% no-repeat,
    linear-gradient(90deg, #aaa69e 0 48%, #8f8b84 48% 52%, #aaa69e 52%);
}

.block-visual.split::before {
  background:
    repeating-linear-gradient(135deg, #b7b1a7 0 8px, #8f887f 8px 12px),
    #aaa69e;
}

.block-visual.bond::before {
  background:
    linear-gradient(#85827b, #85827b) 50% 50% / 88% 28% no-repeat,
    linear-gradient(90deg, #aaa69e 0 48%, #8f8b84 48% 52%, #aaa69e 52%);
}

.block-visual.mortar::before {
  inset: 24px 34px 28px;
  border-radius: 10px 10px 5px 5px;
  background:
    linear-gradient(90deg, rgba(23, 24, 26, 0.14) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(#d8c7a8, #bfa37a);
  box-shadow: 0 12px 0 #907852;
}

.block-visual.mortar.loose::before {
  background:
    linear-gradient(90deg, rgba(23, 24, 26, 0.12) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(#cfc4ae, #a79573);
}

.block-visual.sand::before {
  inset: 42px 18px 24px;
  border-radius: 999px 999px 18px 18px;
  background:
    radial-gradient(circle at 25% 35%, rgba(255,255,255,0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 52%, rgba(255,255,255,0.22) 0 2px, transparent 3px),
    linear-gradient(#d9bd78, #b89143);
  box-shadow: 0 16px 0 #866829;
}

.section-map {
  background: #e6e1d6;
}

.area-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 48px;
  align-items: center;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.city-list span {
  border: 1px solid rgba(47, 111, 115, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
  font-weight: 850;
}

.map-card {
  min-height: 410px;
  border: 1px solid rgba(47, 111, 115, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(47, 111, 115, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(47, 111, 115, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    #f8f5ee;
  box-shadow: 0 18px 40px rgba(23, 24, 26, 0.08);
}

.map-rings {
  position: relative;
  width: 100%;
  height: 410px;
}

.ring,
.map-center,
.dot {
  position: absolute;
  transform: translate(-50%, -50%);
}

.ring {
  top: 50%;
  left: 50%;
  border: 2px solid rgba(232, 93, 4, 0.22);
  border-radius: 50%;
}

.ring-one {
  width: 140px;
  height: 140px;
}

.ring-two {
  width: 250px;
  height: 250px;
}

.ring-three {
  width: 360px;
  height: 360px;
}

.map-center {
  top: 50%;
  left: 50%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 5px solid #f8f5ee;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(232, 93, 4, 0.25);
}

.dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffb36d;
  content: "";
}

.dot-wg {
  top: 44%;
  left: 22%;
}

.dot-sanford {
  top: 18%;
  left: 58%;
}

.dot-kiss {
  top: 75%;
  left: 53%;
}

.dot-clermont {
  top: 58%;
  left: 14%;
}

.dot-oviedo {
  top: 36%;
  left: 78%;
}

.testimonial-grid figure {
  min-height: 230px;
  margin: 0;
  padding: 26px;
}

.testimonial-grid blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
}

.testimonial-grid figcaption {
  color: var(--muted);
  font-weight: 850;
}

.faq-layout {
  align-items: start;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  font-weight: 950;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.12);
  color: var(--orange-dark);
  content: "+";
  flex: 0 0 22px;
  line-height: 22px;
  text-align: center;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -4px 18px 18px;
  color: var(--muted);
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(23, 24, 26, 0.95), rgba(23, 24, 26, 0.82)),
    url("assets/legacy-block-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.lead-form-compact textarea {
  min-height: 88px;
}

.site-footer {
  padding: 42px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
}

.footer-brand .brand-logo {
  width: auto;
  height: 78px;
  max-width: min(220px, 100%);
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 18px;
  }

  .nav-links {
    display: none;
  }

  .proof-grid,
  .buyer-grid,
  .feature-grid,
  .product-grid,
  .testimonial-grid,
  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-layout,
  .area-layout,
  .faq-layout,
  .estimator-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .split-feature,
  .jobsite-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    align-self: stretch;
  }

  .split-feature .section-heading {
    position: static;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card,
  .map-rings {
    min-height: 360px;
    height: 360px;
  }

  .ring-three {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    gap: 12px;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-logo {
    height: 44px;
    max-width: 116px;
  }

  .phone-link span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding-inline: 14px;
  }

  .header-actions .button,
  .header-actions .phone-link {
    width: auto;
  }

  .button-small {
    width: 44px;
    padding-inline: 0;
  }

  .button-small span {
    display: none;
  }

  .hero {
    min-height: min(720px, calc(100svh - 42px));
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 18, 22, 0.9), rgba(12, 18, 22, 0.48)),
      linear-gradient(0deg, rgba(12, 18, 22, 0.5), rgba(12, 18, 22, 0.12));
  }

  .hero-inner {
    align-items: end;
    padding: 44px 0 48px;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.65rem);
  }

  .section {
    padding: 64px 0;
  }

  .proof-grid,
  .buyer-grid,
  .feature-grid,
  .product-grid,
  .testimonial-grid,
  .steps,
  .footer-grid,
  .estimate-results,
  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 18px;
  }

  .estimate-form {
    padding: 18px;
  }

  .estimator-card {
    padding: 6px;
  }

  .hero-card {
    display: none;
  }

  .buyer-card {
    min-height: 180px;
  }

  .jobsite-panel {
    min-height: 0;
  }

  .jobsite-photo {
    min-height: 210px;
  }

  .jobsite-copy {
    padding: 24px;
  }

  .form-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip span {
    font-size: 0.8rem;
  }

  .map-card,
  .map-rings {
    min-height: 320px;
    height: 320px;
  }

  .ring-one {
    width: 104px;
    height: 104px;
  }

  .ring-two {
    width: 190px;
    height: 190px;
  }

  .ring-three {
    width: 268px;
    height: 268px;
  }

  .map-center {
    width: 76px;
    height: 76px;
    font-size: 0.9rem;
  }

  .dot {
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .dot-clermont {
    left: 18%;
  }

  .dot-oviedo {
    left: 76%;
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: 104px;
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}
