:root {
  --ink: #142841;
  --text: #101820;
  --muted: #5f6b75;
  --cream: #fbf6ed;
  --paper: #ffffff;
  --sand: #dfc9a4;
  --sage: #879b86;
  --rust: #9a5b32;
  --line: rgba(20, 40, 65, 0.16);
  --shadow: 0 18px 60px rgba(20, 40, 65, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 246, 237, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  color: var(--ink);
  text-decoration: none;
}
.brand img {
  width: 92px;
  height: 52px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.main-nav a,
.call-pill,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}
.main-nav a {
  padding: 8px 12px;
  color: var(--ink);
}
.main-nav a:hover { background: rgba(20, 40, 65, 0.08); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.call-pill,
.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 30px rgba(20, 40, 65, 0.18);
}
.call-pill { padding: 8px 16px; white-space: nowrap; }
.mobile-menu {
  display: none;
  position: relative;
}
.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.menu-bars {
  display: grid;
  gap: 4px;
}
.menu-bars span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: var(--ink);
}
.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  width: min(86vw, 320px);
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(20, 40, 65, 0.18);
}
.mobile-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.mobile-nav a:hover { background: rgba(20, 40, 65, 0.08); }
.legacy-mobile-header { display: none; }
.button { padding: 12px 18px; border: 1px solid transparent; }
.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
}
.button.wide { width: 100%; }
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: clamp(120px, 16vh, 190px) clamp(18px, 5vw, 74px) clamp(42px, 8vw, 92px);
  overflow: hidden;
  background: var(--ink);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 40, 65, 0.88), rgba(20, 40, 65, 0.54) 42%, rgba(20, 40, 65, 0.12) 76%),
    linear-gradient(0deg, rgba(20, 40, 65, 0.62), rgba(20, 40, 65, 0.02) 42%);
}
.hero-copy {
  position: relative;
  max-width: 780px;
  color: #fff;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f0d19d; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
}
.page-hero h1 { font-size: clamp(40px, 5.6vw, 76px); }
h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  margin-bottom: 16px;
}
h3 { color: var(--ink); }
.hero-lede,
.page-hero p {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 24px);
}
.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.trust-strip {
  margin-top: 22px;
}
.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-weight: 800;
}
.concept-home {
  background:
    linear-gradient(180deg, #fbf6ed 0%, #ffffff 42%, #f1f6f0 72%, #ffffff 100%);
}
.concept-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding: clamp(84px, 10vw, 142px) clamp(18px, 5vw, 74px) clamp(38px, 6vw, 82px);
  overflow: hidden;
  background: #fbf6ed;
}
.concept-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(105deg, rgba(251, 246, 237, 0.98) 0%, rgba(251, 246, 237, 0.92) 34%, rgba(234, 239, 231, 0.74) 52%, rgba(20, 40, 65, 0.88) 100%),
    linear-gradient(180deg, rgba(135, 155, 134, 0.22), rgba(255, 255, 255, 0) 48%);
}
.concept-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -2;
  height: 36%;
  background: linear-gradient(180deg, rgba(251, 246, 237, 0), rgba(20, 40, 65, 0.18));
}
.concept-hero-photo {
  position: absolute;
  right: max(-28px, -2vw);
  bottom: 0;
  z-index: -1;
  width: min(76vw, 1180px);
  height: 88%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 30px 42px rgba(20, 40, 65, 0.24));
}
.concept-hero-content {
  max-width: 760px;
  color: var(--ink);
}
.concept-hero-content h1 {
  max-width: 780px;
}
.concept-lede {
  max-width: 680px;
  color: #31445a;
  font-size: clamp(18px, 2vw, 24px);
}
.concept-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.concept-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(20, 40, 65, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  backdrop-filter: blur(14px);
}
.concept-quote-card {
  align-self: end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #fff;
  background: rgba(20, 40, 65, 0.78);
  box-shadow: 0 28px 70px rgba(20, 40, 65, 0.24);
  backdrop-filter: blur(20px);
}
.concept-quote-card .eyebrow,
.concept-quote-card h2 {
  color: #fff;
}
.concept-quote-card h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}
.concept-quote-card p {
  color: rgba(255, 255, 255, 0.82);
}
.concept-backdrop-band,
.concept-services,
.concept-results,
.concept-trust {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 74px);
}
.concept-backdrop-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: #fff;
}
.concept-backdrop-band > p,
.concept-results p,
.concept-trust p {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}
.concept-services {
  background:
    linear-gradient(135deg, rgba(251, 246, 237, 0.94), rgba(241, 246, 240, 0.94)),
    #fbf6ed;
}
.concept-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.concept-service {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(20, 40, 65, 0.08);
  text-decoration: none;
}
.concept-service:hover {
  transform: translateY(-2px);
  border-color: rgba(135, 155, 134, 0.52);
}
.concept-service span {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.02;
}
.concept-service p {
  margin: 18px 0 0;
  color: var(--muted);
}
.concept-results,
.concept-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #fff;
}
.concept-results .compare {
  min-height: clamp(320px, 34vw, 520px);
}
.concept-trust {
  background: #f1f6f0;
}
.concept-trust .brand-proof {
  justify-self: center;
  width: min(100%, 520px);
  padding: clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.88);
}
.concept-trust .brand-proof img {
  max-height: 260px;
  object-fit: contain;
}
.redo-home {
  background: #fbf6ed;
}
.redo-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  padding: clamp(110px, 14vh, 176px) clamp(18px, 5vw, 74px) clamp(46px, 7vw, 86px);
  overflow: hidden;
  background: var(--ink);
}
.redo-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.redo-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 40, 65, 0.92), rgba(20, 40, 65, 0.66) 42%, rgba(20, 40, 65, 0.22) 78%),
    linear-gradient(0deg, rgba(20, 40, 65, 0.78), rgba(20, 40, 65, 0.04) 46%);
}
.redo-hero-copy {
  position: relative;
  max-width: 820px;
  color: #fff;
}
.redo-hero-copy .eyebrow {
  color: #f0d19d;
}
.redo-hero-copy h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(48px, 6.6vw, 94px);
}
.redo-hero-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}
.redo-hero-copy .button.primary {
  color: var(--ink);
  background: #fff;
}
.redo-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.redo-proof-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.redo-intro,
.redo-services,
.redo-results,
.redo-local {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 74px);
}
.redo-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #fff;
}
.redo-intro h2 {
  max-width: 860px;
}
.redo-quote-box {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 246, 237, 0.92);
  box-shadow: 0 18px 54px rgba(20, 40, 65, 0.1);
}
.redo-quote-box h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}
.redo-quote-box p {
  color: var(--muted);
}
.redo-services {
  background:
    linear-gradient(180deg, #fbf6ed, #f6f7f0);
}
.redo-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.redo-service {
  min-height: 285px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 42px rgba(20, 40, 65, 0.08);
  text-decoration: none;
}
.redo-service:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 91, 50, 0.4);
}
.redo-service img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.redo-service span {
  padding: 0 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
}
.redo-service p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}
.redo-results,
.redo-local {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #fff;
}
.redo-results p,
.redo-local p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}
.redo-results .compare {
  min-height: clamp(320px, 34vw, 520px);
}
.redo-local {
  background: #f1f6f0;
}
.redo-local .brand-proof {
  justify-self: center;
  width: min(100%, 520px);
  padding: clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.92);
}
.redo-local .brand-proof img {
  max-height: 260px;
  object-fit: contain;
}
.intro-band,
.services-section,
.intent-section,
.before-after,
.proof-section,
.service-area-map,
.faq-section,
.visual-services,
.commercial-job-photos,
.content-two-col,
.wide-copy {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 74px);
}
.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: #fff;
}
.intro-band p:last-child {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--muted);
}
.section-heading {
  max-width: 920px;
  margin-bottom: 28px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.service-card,
.image-service,
.commercial-photo-grid figure,
.quote-panel,
.intent-panel,
.review,
.brand-proof,
.gallery-grid figure,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 40px rgba(20, 40, 65, 0.08);
}
.service-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 91, 50, 0.42);
}
.service-card span {
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-card strong {
  font-size: 19px;
}
.service-grid.compact .service-card { min-height: 92px; }
.more-services { margin-top: 18px; }
.more-services summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.service-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-topic-group {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 44px rgba(20, 40, 65, 0.08);
}
.service-topic-group h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.04;
}
.service-topic-group > p {
  margin: 0;
  color: var(--muted);
}
.topic-service-list {
  display: grid;
  gap: 10px;
}
.topic-service-link {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 40, 65, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
}
.topic-service-link:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 91, 50, 0.42);
}
.topic-service-link span {
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.topic-service-link strong {
  font-size: 18px;
  line-height: 1.16;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.location-card {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 44px rgba(20, 40, 65, 0.08);
  text-decoration: none;
}
.location-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 91, 50, 0.42);
}
.location-card span {
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.location-card strong {
  font-size: 22px;
  line-height: 1.1;
}
.location-card p {
  margin: 0;
  color: var(--muted);
}
.intent-section {
  background: linear-gradient(180deg, #fbf6ed, #f5f7ef);
}
.intent-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
}
.intent-category-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 44px rgba(20, 40, 65, 0.08);
}
.intent-category-card h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.08;
}
.intent-category-card p {
  color: var(--muted);
}
.intent-category-card .intent-keywords {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 14px;
}
.visual-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  background: #fff;
}
.image-service { overflow: hidden; }
.image-service img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.image-service h3 { padding: 18px; margin: 0; }
.commercial-job-photos {
  background: linear-gradient(180deg, #fbf6ed, #fff);
}
.commercial-job-photos .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}
.commercial-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.commercial-photo-grid figure {
  margin: 0;
  overflow: hidden;
}
.commercial-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.commercial-photo-grid figcaption {
  min-height: 76px;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 850;
}
.compare-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1180px;
}
.compare {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 28vw, 360px);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-after {
  position: absolute;
  inset: 0;
  width: var(--pos);
  overflow: hidden;
  border-right: 4px solid #fff;
}
.compare input {
  position: absolute;
  inset: auto 18px 18px;
  width: calc(100% - 36px);
}
.quote-panel,
.intent-panel {
  padding: clamp(22px, 4vw, 34px);
}
.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: 24px;
  align-items: center;
  background: #fff;
}
.brand-proof { overflow: hidden; padding: 10px; }
.brand-proof img { width: 100%; border-radius: 6px; }
.service-area-map {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
  background: linear-gradient(180deg, #fbf6ed, #f5f7ef);
}
.map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}
.map-copy p {
  margin: 0;
  color: var(--muted);
}
.map-copy a:not(.button) {
  color: var(--ink);
  font-weight: 900;
}
.area-chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 4px 0 8px;
}
.area-chip-list li {
  border: 1px solid rgba(20, 40, 65, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}
.map-frame,
.contact-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.map-frame iframe,
.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
}
.map-frame iframe {
  min-height: clamp(320px, 38vw, 460px);
}
.contact-map {
  margin-top: 22px;
}
.contact-map iframe {
  min-height: 300px;
}
.faq-section details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.intent-keyword-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.intent-keyword-grid span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}
.search-need-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.search-need-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-shadow: 0 12px 34px rgba(20, 40, 65, 0.07);
}
.search-need-card h3 {
  font-size: 21px;
  line-height: 1.15;
  margin: 0 0 10px;
}
.search-need-card p {
  margin: 0;
  color: var(--muted);
}
.faq-section summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  font-size: 19px;
}
.faq-section p { max-width: 880px; color: var(--muted); }
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(74px, 10vw, 130px) clamp(18px, 5vw, 74px);
  background: #fff;
}
.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.page-hero.simple img { aspect-ratio: 16 / 10; }
.content-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
}
.copy-stack {
  display: grid;
  gap: 20px;
}
.copy-stack section,
.wide-copy > h2,
.wide-copy > p {
  max-width: 900px;
}
.copy-stack section {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.copy-stack h2 { font-size: clamp(26px, 3vw, 38px); }
.intent-panel {
  position: sticky;
  top: 100px;
}
.intent-panel ul {
  margin: 0 0 20px;
  padding-left: 20px;
}
.gallery-grid,
.reviews-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 800;
}
.review { padding: 22px; }
.review strong {
  color: var(--ink);
  font-size: 22px;
}
.profile-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.contact-large {
  color: var(--ink);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
}
.quote-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}
.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}
textarea { resize: vertical; }
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 74px);
  color: #fff;
  background: var(--ink);
}
.site-footer h2 {
  color: #fff;
  font-size: 20px;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}
.site-footer img { margin-bottom: 12px; }
.footer-area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-area-links a,
.footer-area-links span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.footer-area-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 900px) {
  body.has-legacy-mobile-header #dslc-header {
    display: none !important;
  }
  body.has-legacy-mobile-header .legacy-mobile-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(251, 246, 237, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }
  .legacy-mobile-brand {
    flex: 1 1 auto;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
  }
  .legacy-mobile-brand img {
    width: 58px;
    height: 36px;
    object-fit: contain;
  }
  .legacy-mobile-brand span {
    overflow: hidden;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .legacy-mobile-call {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 8px;
    color: #fff;
    background: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
  }
  .legacy-mobile-menu {
    position: relative;
  }
  .legacy-mobile-menu summary {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    list-style: none;
  }
  .legacy-mobile-menu summary::-webkit-details-marker { display: none; }
  .legacy-menu-bars {
    display: grid;
    gap: 4px;
  }
  .legacy-menu-bars span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: var(--ink);
  }
  .legacy-mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1001;
    width: min(86vw, 320px);
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(20, 40, 65, 0.22);
  }
  .legacy-mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 7px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
  }
  .legacy-mobile-nav a:hover { background: rgba(20, 40, 65, 0.08); }
  .site-header { align-items: center; gap: 10px; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand small { display: none; }
  .main-nav { display: none; }
  .header-actions { margin-left: 0; }
  .mobile-menu { display: block; }
  .hero {
    min-height: 0;
    display: block;
    padding: 0;
    background: var(--ink);
  }
  .hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1080 / 608;
    object-fit: contain;
    object-position: center;
    background: #fbf6ed;
  }
  .hero-overlay { display: none; }
  .hero-copy {
    max-width: none;
    padding: 28px clamp(18px, 5vw, 34px) 44px;
    background: linear-gradient(180deg, rgba(20, 40, 65, 0.98), #142841);
  }
  .concept-hero {
    min-height: 0;
    display: block;
    padding: 0;
    background: #fbf6ed;
  }
  .concept-hero::before,
  .concept-hero::after {
    display: none;
  }
  .concept-hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1080 / 608;
    object-fit: contain;
    object-position: center;
    background: #fbf6ed;
    filter: none;
  }
  .concept-hero-content {
    max-width: none;
    padding: 30px clamp(18px, 5vw, 34px) 24px;
  }
  .concept-quote-card {
    margin: 0 clamp(18px, 5vw, 34px) 34px;
  }
  .concept-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .redo-hero {
    min-height: 0;
    display: block;
    padding: 0;
    background: var(--ink);
  }
  .redo-hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1080 / 608;
    object-fit: contain;
    object-position: center;
    background: #fbf6ed;
  }
  .redo-hero-shade {
    display: none;
  }
  .redo-hero-copy {
    max-width: none;
    padding: 30px clamp(18px, 5vw, 34px) 44px;
    background: linear-gradient(180deg, rgba(20, 40, 65, 0.98), #142841);
  }
  .redo-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .intro-band,
  .concept-backdrop-band,
  .concept-results,
  .concept-trust,
  .redo-intro,
  .redo-results,
  .redo-local,
  .compare-wrap,
  .commercial-photo-grid,
  .service-topic-grid,
  .proof-section,
  .service-area-map,
  .page-hero,
  .content-two-col,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .intent-panel { position: static; }
  h1 { font-size: clamp(42px, 13vw, 68px); }
}
@media (max-width: 560px) {
  .hero { min-height: 0; padding-top: 0; }
  html,
  body {
    width: 100%;
    max-width: 100vw;
  }
  .redo-home .site-header {
    width: 100%;
    max-width: 100vw;
    justify-content: flex-start;
    padding-left: 14px;
    padding-right: 14px;
  }
  .redo-home main {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  .brand img { width: 72px; height: 42px; }
  .brand span { display: none; }
  .redo-home .brand {
    flex: 0 1 auto;
    margin-right: auto;
  }
  .redo-home .header-actions { flex: 0 0 auto; gap: 8px; }
  .redo-home .call-pill {
    width: 54px;
    min-height: 40px;
    padding: 8px 10px;
    overflow: hidden;
    font-size: 0;
  }
  .redo-home .call-pill::before {
    content: "Call";
    font-size: 13px;
  }
  .redo-home .mobile-menu {
    flex: 0 0 auto;
  }
  .mobile-menu summary { min-height: 40px; padding: 8px 10px; }
  .menu-text { display: none; }
  .legacy-menu-text { display: none; }
  .hero-copy { padding: 24px 20px 40px; }
  .hero-copy h1 { font-size: clamp(48px, 14vw, 64px); }
  .concept-hero-content { padding: 26px 20px 22px; }
  .concept-quote-card { margin: 0 20px 30px; }
  .concept-feature-grid { grid-template-columns: 1fr; }
  .concept-service { min-height: 150px; }
  .redo-hero,
  .redo-hero-photo,
  .redo-hero-copy {
    width: 100%;
    max-width: 100vw;
  }
  .redo-hero-copy { padding: 26px 20px 40px; }
  .redo-hero-copy,
  .redo-hero-copy h1,
  .redo-hero-copy p {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }
  .redo-hero-copy h1 {
    font-size: clamp(35px, 9.6vw, 40px);
    line-height: 1;
  }
  .redo-feature-grid { grid-template-columns: 1fr; }
  .redo-service { min-height: 0; }
  .hero-actions .button,
  .button.secondary,
  .button.primary {
    width: 100%;
  }
  .compare { min-height: 280px; }
}
