@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fafbfc;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue: #1d4f91;
  --blue-deep: #143b6b;
  --orange: #e86a2c;
  --orange-deep: #c84f16;
  --white: #fff;
  --soft: #eff6ff;
  --warm: #fff7f2;
  --green: #0f766e;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.wrap {
  width: min(1140px, 94vw);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.88rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: filter 150ms ease, border-color 150ms ease, transform 150ms ease;
}

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

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--ink);
}

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

.btn-orange:hover {
  filter: brightness(0.95);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  filter: brightness(1.06);
}

.btn-white {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue);
}

.btn-white:hover {
  border-color: var(--blue);
}

.btn-outline {
  border-color: #9fb2ca;
  background: transparent;
  color: var(--blue-deep);
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Original Proof-Dense header proportions, updated only for the current logo. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.brand img {
  width: 178px;
  height: auto;
}

.brand-note {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.25;
}

.brand-note strong {
  display: block;
  color: var(--blue-deep);
  font-size: 0.76rem;
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-links a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-phone {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0.65rem 0.88rem;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--soft);
  color: var(--blue-deep);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

main > section {
  padding-block: 2.75rem;
}

/* Original Proof-Dense hero: one promise, two homeowner paths, compact proof. */
.hero {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem 1.6rem;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--blue), #2a6bb8);
  color: var(--white);
}

.hero-main .eyebrow {
  color: #cfe3ff;
}

.hero-main h1 {
  max-width: 15ch;
  margin: 0.5rem 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.hero-lede {
  max-width: 38rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-main .actions {
  margin-bottom: 1rem;
}

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

.chips span {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-review-link {
  display: block;
  width: min(100%, 500px);
  margin-top: 1rem;
  border-radius: 14px;
}

.hero-review-link img {
  width: 100%;
  height: auto;
}

.hero-side {
  display: grid;
  gap: 0.75rem;
}

.path-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.path-label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--orange-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card h2 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.path-card p {
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.path-card .btn {
  width: 100%;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.proof-row div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  text-align: center;
}

.proof-row strong {
  display: block;
  color: var(--blue);
  font-size: 1.08rem;
}

.proof-row span {
  color: var(--muted);
  font-size: 0.76rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  margin: 0.25rem 0 0.35rem;
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
}

.section-heading p:last-child {
  max-width: 43rem;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.tile {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.tile h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.tile p {
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
}

.service-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--orange-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 0.8rem 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-card .btn {
  align-self: flex-start;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: var(--soft);
}

.banner strong {
  display: block;
  margin-bottom: 0.2rem;
}

.banner p {
  color: var(--muted);
  font-size: 0.92rem;
}

.difference-grid {
  margin-top: 1rem;
}

.difference-grid .tile {
  min-height: 145px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.promise-item {
  min-height: 190px;
  padding: 1.15rem;
  border-right: 1px solid var(--line);
}

.promise-item:last-child {
  border-right: 0;
}

.promise-item > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
}

.promise-item h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.promise-item p {
  color: var(--muted);
  font-size: 0.88rem;
}

.protection-section {
  background: var(--blue-deep);
  color: var(--white);
}

.protection-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.protection-copy .eyebrow {
  color: #ffc19e;
}

.protection-copy h2 {
  max-width: 13ch;
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.protection-copy > p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
}

.protection-risks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.protection-risks span {
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
}

.protection-link {
  color: var(--white);
}

.coverage-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.coverage-card {
  min-height: 190px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
}

.coverage-card-featured {
  border: 2px solid var(--orange);
  box-shadow: 8px 8px 0 var(--orange);
}

.coverage-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--blue-deep);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1;
}

.coverage-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.coverage-disclosure {
  grid-column: 1 / -1;
  padding-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.protection-illustration {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: #f8f5ee;
}

.protection-illustration img {
  width: 100%;
  height: auto;
}

.work-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 220px);
  gap: 0.8rem;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 16px;
  background: var(--ink);
}

.work-card:first-child {
  grid-row: 1 / 3;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}

.step {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.step b {
  color: var(--orange);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.step h3 {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.step p {
  color: var(--muted);
  font-size: 0.82rem;
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.mid-cta p {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.owner-section {
  background: var(--blue-deep);
  color: var(--white);
}

.owner-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
}

.owner-copy .eyebrow {
  color: #ffc19e;
}

.owner-copy h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.owner-copy p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.owner-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.owner-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.owner-card figcaption {
  padding: 0.8rem 0.9rem;
  font-weight: 800;
}

.owner-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.video-card,
.review-stack {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.video-card-featured {
  border-color: #b8cce5;
  box-shadow: 0 16px 42px rgba(29, 79, 145, 0.12);
}

.video-card video {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--ink);
  object-fit: contain;
}

.video-card footer {
  padding: 0.9rem 1rem 1rem;
}

.video-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.video-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.review-stack {
  display: grid;
  gap: 0;
}

.visual-review {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.visual-review:last-child {
  border-bottom: 0;
}

.visual-review img {
  width: 100%;
  height: auto;
}

.visual-review blockquote {
  margin: 0.8rem 0 0.7rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.visual-review a {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.estimate-section {
  background: var(--soft);
  border-block: 1px solid #dbeafe;
}

.estimate-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid #cfe0f6;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.estimate-copy h2 {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

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

.estimate-actions {
  align-items: center;
  margin-top: 1rem;
}

.estimate-actions .text-link {
  white-space: nowrap;
}

.estimate-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.estimate-steps div {
  min-height: 145px;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
}

.estimate-steps span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
}

.estimate-steps strong {
  display: block;
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

.estimate-steps p {
  color: var(--muted);
  font-size: 0.84rem;
}

.estimate-boundary {
  grid-column: 1 / -1;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 110px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.1rem 2.4rem 1.1rem 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 1rem;
  right: 0;
  color: var(--blue);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 2rem 1.1rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  padding: 2rem;
  border-radius: 20px;
  background: var(--ink);
  color: var(--white);
}

.final-cta h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.final-cta > p {
  max-width: 40rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.treeline-divider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
  background: var(--bg);
  line-height: 0;
}

.treeline-divider img {
  width: 100%;
  min-width: 960px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.site-footer {
  margin-top: 1rem;
  padding: 2.4rem 0 5.5rem;
  background: #0b1422;
  color: #9cadc3;
  font-size: 0.84rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 1.3rem;
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  max-width: 22rem;
  margin-bottom: 0.6rem;
}

.footer-brand > a:not(:first-child) {
  display: inline-block;
  color: var(--white);
  font-weight: 800;
}

.footer-column strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  padding: 0.2rem 0;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #243041;
}

.sticky-actions {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  gap: 0.45rem;
  padding: 0.6rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.1);
}

.sticky-actions a {
  display: grid;
  min-height: 48px;
  flex: 1;
  place-items: center;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.sticky-actions .schedule {
  background: var(--orange);
  color: var(--ink);
}

.sticky-actions .estimate {
  background: var(--blue);
  color: var(--white);
}

.sticky-actions .call {
  border: 1px solid #9fb2ca;
  background: var(--white);
  color: var(--blue-deep);
}

@media (max-width: 1080px) {
  .brand-note,
  .header-phone {
    display: none;
  }

  .desktop-links {
    gap: 0.7rem;
    font-size: 0.82rem;
  }

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

@media (max-width: 900px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 4.8rem;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 154px;
  }

  .desktop-links,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 49;
    width: 100vw;
    height: calc(100dvh - 72px);
    overflow-y: auto;
    padding: 1rem 3vw 6rem;
    background: var(--white);
  }

  .mobile-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .mobile-nav a:not(.btn) {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--blue-deep);
    font-weight: 800;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .steps,
  .owner-grid,
  .reviews-grid,
  .protection-panel,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .promise-item:nth-child(2) {
    border-right: 0;
  }

  .promise-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
  }

  .work-card:first-child {
    grid-row: auto;
  }

  .estimate-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout .section-heading {
    position: static;
  }

  .mid-cta,
  .banner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-actions.is-active {
    display: flex;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 1.25rem, 1140px);
  }

  main > section {
    padding-block: 2.2rem;
  }

  .hero {
    padding-top: 0.8rem;
  }

  .hero-main {
    padding: 1.35rem 1.1rem;
    border-radius: 17px;
  }

  .hero-main h1 {
    font-size: clamp(1.85rem, 10vw, 2.3rem);
  }

  .hero-main .btn,
  .mid-cta .btn,
  .final-cta .btn {
    width: 100%;
  }

  .proof-row,
  .estimate-steps,
  .coverage-options,
  .owner-portraits {
    grid-template-columns: 1fr;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-item,
  .promise-item:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-item:last-child {
    border-bottom: 0;
  }

  .coverage-card {
    min-height: 0;
  }

  .proof-row div {
    text-align: left;
  }

  .work-grid {
    grid-template-rows: repeat(3, 220px);
  }

  .estimate-panel,
  .final-cta {
    padding: 1.1rem;
    border-radius: 16px;
  }

  .video-card video {
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
