:root {
  --bg: #090909;
  --bg-2: #111111;
  --bg-3: #191919;
  --panel: rgba(255,255,255,.05);
  --panel-2: rgba(255,255,255,.03);
  --line: rgba(255,255,255,.11);
  --line-2: rgba(255,255,255,.2);
  --text: #f4efe7;
  --muted: #bfb5a8;
  --bronze: #ab7a4f;
  --bronze-2: #d8b28a;
  --stone: #ece1d3;
  --shadow: 0 28px 90px rgba(0,0,0,.42);
  --shadow-soft: 0 18px 50px rgba(0,0,0,.26);
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1400px;
  --nav-h: 88px;
  --mobile-bar-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(171,122,79,.14), transparent 26%),
    radial-gradient(circle at 100% 10%, rgba(216,178,138,.07), transparent 18%),
    linear-gradient(180deg, #080808 0%, #0d0d0d 42%, #090909 100%);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: calc(var(--mobile-bar-h) + 1rem);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
main { overflow: clip; }
::selection { background: rgba(216,178,138,.2); }

.progress-line {
  position: fixed; inset: 0 0 auto 0; height: 3px; width: 0; z-index: 100;
  background: linear-gradient(90deg, var(--bronze), var(--stone));
  box-shadow: 0 0 20px rgba(216,178,138,.55);
}
.skip-link {
  position: absolute; left: 1rem; top: -90px; z-index: 101;
  background: var(--stone); color: #111; padding: .8rem 1rem; border-radius: 14px;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 5rem 0; position: relative; }
.section-tight { padding: 3rem 0; }
.section-xl { padding: 6.5rem 0; }
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: .65rem; margin: 0 0 1rem;
  color: var(--stone); text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; font-weight: 700;
}
.eyebrow::before, .kicker::before {
  content: ""; width: 42px; height: 1px; background: linear-gradient(90deg, var(--bronze), transparent);
}
.section-title {
  margin: 0 0 1rem; max-width: 11ch;
  font-size: clamp(2.25rem, 5vw, 5.3rem); line-height: .92; letter-spacing: -.055em;
}
.section-intro { max-width: 66ch; color: var(--muted); font-size: 1.04rem; }
.muted { color: var(--muted); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.section-cta-row { margin-top: 2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  min-height: 54px; padding: .95rem 1.35rem; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.btn-primary { background: var(--stone); color: #090909; }
.btn-primary:hover { background: #fff3e3; }
.btn-secondary { border-color: var(--line-2); background: rgba(255,255,255,.04); }
.btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.btn-ghost { color: var(--muted); border-color: var(--line); }
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.25); }

.site-utility {
  display: none;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.utility-wrap {
  min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  color: var(--muted); font-size: .84rem;
}
.utility-wrap span, .utility-links { display: inline-flex; align-items: center; gap: .55rem; }
.utility-wrap svg { width: 14px; color: var(--bronze-2); }
.utility-links { gap: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 90; backdrop-filter: blur(16px);
  background: rgba(8,8,8,.76); border-bottom: 1px solid rgba(255,255,255,.06); transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(8,8,8,.92); box-shadow: 0 18px 44px rgba(0,0,0,.28); }
.nav-wrap { min-height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: min-height .25s ease; }
.site-header.scrolled .nav-wrap { min-height: 76px; }
.brand { display: flex; align-items: center; gap: .95rem; min-width: 0; }
.brand img { width: 62px; filter: none; transition: width .25s ease; }
.site-header.scrolled .brand img { width: 56px; }
.brand-copy { display: grid; }
.brand-copy strong { font-size: .84rem; letter-spacing: .14em; text-transform: uppercase; }
.brand-copy span { font-size: .8rem; color: var(--muted); }
.nav-toggle {
  width: 48px; height: 48px; display: inline-grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text);
}
.nav-toggle svg { width: 22px; }
.site-nav {
  position: fixed; inset: var(--nav-h) 0 auto 0; transform: translateY(-110%); transition: transform .36s ease;
  background: rgba(10,10,10,.98); border-bottom: 1px solid var(--line);
}
.site-nav.open { transform: translateY(0); }
.site-nav ul { list-style: none; padding: 1rem; margin: 0; display: grid; gap: .2rem; }
.site-nav a { display: block; padding: .95rem 1rem; border-radius: 16px; }
.site-nav a:hover, .site-nav a.active { background: rgba(255,255,255,.06); }
.nav-cta { display: none; }

.hero, .page-hero {
  position: relative; isolation: isolate; display: grid; align-items: end; overflow: clip;
}
.hero { min-height: calc(100vh - var(--nav-h)); }
.page-hero { min-height: 66vh; }
.hero-media, .page-hero-media {
  position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero-shade, .page-hero-shade {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.44) 38%, rgba(0,0,0,.9) 100%),
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.26) 56%, rgba(0,0,0,.52) 100%);
}
.hero-grid { min-height: calc(100vh - var(--nav-h)); padding: 4rem 0 2rem; display: grid; gap: 2rem; align-items: end; }
.page-hero-grid { min-height: 66vh; padding: 4.5rem 0 2rem; display: grid; gap: 1.5rem; align-items: end; }
.hero-copy { max-width: 58rem; }
.hero-copy h1, .page-hero-copy h1 {
  margin: 0 0 1.15rem; max-width: 12ch;
  font-size: clamp(3rem, 10vw, 7.6rem); line-height: .88; letter-spacing: -.075em;
}
.hero-copy p, .page-hero-copy p { max-width: 46rem; color: var(--stone); font-size: clamp(1.04rem, 2.2vw, 1.26rem); }
.hero-wordmark { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.3rem; }
.hero-chip, .mini-chip {
  padding: .55rem .8rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05); color: var(--stone); font-size: .82rem;
}
.hero-proof, .side-badges, .form-trust-row, .compare-callout, .footer-badges {
  display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem;
}
.hero-proof span, .side-badges span, .form-trust-row span, .compare-callout span, .footer-badges span {
  padding: .42rem .68rem; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: var(--stone); font-size: .78rem;
}
.hero-side, .page-side, .trust-panel {
  width: min(100%, 430px); justify-self: end; position: relative;
  padding: 1.25rem; border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow);
}
.hero-side-grid, .mini-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .85rem; margin-top: 1rem; }
.hero-side-card, .mini-stat {
  padding: .95rem; border-radius: 18px; background: rgba(0,0,0,.26); border: 1px solid rgba(255,255,255,.06);
}
.hero-side-card span, .mini-stat span { display: block; color: var(--muted); font-size: .82rem; }
.hero-side-card strong, .mini-stat strong { font-size: 1.02rem; }
.hero-side-cta { margin-top: 1rem; }
.page-side { width: min(100%, 380px); }
.chip-wrap { margin-top: .85rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1rem; color: var(--muted); font-size: .9rem; }
.breadcrumbs a:hover { color: var(--text); }
.hero-bottom-bar { border-top: 1px solid rgba(255,255,255,.08); background: rgba(10,10,10,.72); }
.hero-ribbon { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .65rem; padding: 1rem 0; }
.ribbon-item {
  padding: .75rem 0; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; border-top: 1px solid rgba(255,255,255,.08);
}

.grid, .service-grid, .stats-grid, .timeline, .footer-top, .dual-grid, .portfolio-editorials, .mosaic-grid,
.project-grid, .gallery-grid, .badge-grid, .benefit-grid, .faq-layout, .faq-stack, .footer-stack { display: grid; gap: 1rem; }
.panel, .service-card, .stat-card, .project-card, .process-card, .contact-card, .map-card, .quote-shell,
.project-editorial, .badge-card, .benefit-card, .faq-item, .footer-brand-card, .trust-panel, .warranty-band {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); box-shadow: var(--shadow-soft);
}

.trust-feature { align-items: start; }
.badge-grid { grid-template-columns: 1fr; margin-top: 1rem; }
.badge-card {
  padding: 1.1rem; border-radius: 22px; display: flex; flex-direction: column; gap: .5rem; background: rgba(255,255,255,.04);
}
.badge-card svg, .service-card svg, .benefit-card svg { width: 22px; color: var(--bronze-2); }
.badge-card strong { font-size: 1.02rem; }
.badge-card span { color: var(--muted); }

.before-after-shell { display: grid; gap: 1rem; align-items: start; }
.before-after {
  position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.09); box-shadow: var(--shadow); background: #000;
}
.before-after img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.after-wrap { position: absolute; inset: 0; width: 56%; overflow: hidden; }
.slider-line { position: absolute; inset: 0 auto 0 56%; width: 2px; background: rgba(255,255,255,.92); transform: translateX(-1px); }
.slider-handle {
  position: absolute; left: 56%; top: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25); background: rgba(11,11,11,.66); backdrop-filter: blur(8px);
}
.slider-tag {
  position: absolute; top: 1rem; padding: .48rem .8rem; border-radius: 999px;
  background: rgba(10,10,10,.74); border: 1px solid rgba(255,255,255,.12); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
}
.slider-tag.left { left: 1rem; }
.slider-tag.right { right: 1rem; }
.slider-range { width: 100%; accent-color: var(--stone); }

.quote-shell, .contact-card, .map-card { padding: 1.35rem; }
.form-grid, .form-row, .dual-grid { display: grid; gap: .95rem; }
label { display: grid; gap: .42rem; font-weight: 600; font-size: .95rem; }
input, textarea, select {
  width: 100%; border-radius: 16px; padding: .92rem 1rem; color: var(--text);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04);
}
textarea { min-height: 160px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(216,178,138,.22); border-color: rgba(216,178,138,.32); }
.form-note { color: var(--muted); font-size: .88rem; }

.service-grid { grid-template-columns: 1fr; }
.service-grid-compact .service-card { min-height: 240px; }
.service-card {
  position: relative; overflow: hidden; padding: 1.35rem; min-height: 300px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(171,122,79,.12), transparent 46%); opacity: 0; transition: opacity .3s ease;
}
.service-card::after {
  content: attr(data-index); position: absolute; right: 1rem; bottom: .55rem; font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 1; color: rgba(255,255,255,.05); font-weight: 800;
}
.service-card:hover::before { opacity: 1; }
.service-card h3 { margin: .75rem 0 .6rem; font-size: 1.35rem; }
.service-card p { color: var(--muted); }
.service-card .service-meta, .service-inline-links { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.service-card .service-meta span, .service-inline-links a {
  padding: .45rem .65rem; border-radius: 999px; background: rgba(255,255,255,.06); font-size: .78rem; color: var(--stone);
}
.service-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: .5rem; color: var(--stone); font-weight: 700; }
.service-link svg { width: 16px; }
.benefit-grid { grid-template-columns: 1fr; }
.benefit-card { padding: 1.2rem; }
.benefit-card strong { display: block; margin-bottom: .45rem; }
.benefit-card p { margin: 0; color: var(--muted); }

.portfolio-editorials { grid-template-columns: 1fr; }
.project-editorial { overflow: hidden; }
.project-shell { display: grid; gap: 0; }
.project-media { position: relative; min-height: 380px; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.project-editorial:hover .project-media img { transform: scale(1.05); }
.project-number {
  position: absolute; left: 1rem; top: 1rem; padding: .55rem .7rem; border-radius: 999px;
  background: rgba(9,9,9,.68); border: 1px solid rgba(255,255,255,.12); letter-spacing: .16em; font-size: .72rem;
}
.project-statline {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; flex-wrap: wrap; gap: .5rem; z-index: 1;
}
.project-statline span {
  padding: .42rem .65rem; border-radius: 999px; background: rgba(9,9,9,.72); border: 1px solid rgba(255,255,255,.11); font-size: .78rem;
}
.project-copy { padding: 1.45rem; }
.project-copy h3 { margin: .45rem 0 .85rem; font-size: clamp(1.7rem, 2.8vw, 2.8rem); line-height: .95; }
.project-gridline { display: grid; gap: .9rem; margin-top: 1rem; }
.project-gridline div { padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); }
.project-gridline span { display: block; margin-bottom: .25rem; color: var(--stone); letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; }
.project-result {
  margin-top: 1rem; padding: 1rem; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.project-result ul { margin: .35rem 0 0 1.1rem; padding: 0; color: var(--stone); }
.project-result li + li { margin-top: .45rem; }

.gallery-grid { grid-template-columns: 1fr; margin-top: 1.25rem; }
.gallery-card {
  position: relative; min-height: 220px; overflow: hidden; border-radius: 26px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow-soft);
}
.gallery-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery-card::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.7));
}
.gallery-card span {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 1; font-size: 1.05rem; font-weight: 700;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-tall { min-height: 320px; }

.warranty-band {
  padding: 1.7rem; display: grid; gap: 1rem; align-items: center; background: linear-gradient(135deg, rgba(171,122,79,.24), rgba(255,255,255,.04));
}
.warranty-points { display: flex; flex-wrap: wrap; gap: .6rem; }
.warranty-points span {
  padding: .55rem .8rem; border-radius: 999px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.1); color: var(--stone);
}

.stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.stat-card { padding: 1.35rem; min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; }
.stat-card strong { font-size: clamp(1.8rem, 5vw, 3.6rem); line-height: .92; letter-spacing: -.05em; }
.stat-card span { color: var(--muted); }
.stat-card small { color: var(--stone); text-transform: uppercase; letter-spacing: .14em; }

.timeline { grid-template-columns: 1fr; }
.process-card { padding: 1.2rem; position: relative; overflow: hidden; }
.process-card .step { color: var(--bronze-2); letter-spacing: .18em; text-transform: uppercase; font-size: .76rem; font-weight: 800; }
.process-card h3 { margin: .7rem 0 .45rem; font-size: 1.18rem; }
.process-card::after {
  content: ""; position: absolute; right: -28px; bottom: -28px; width: 108px; height: 108px; border-radius: 50%;
  background: radial-gradient(circle, rgba(171,122,79,.18), transparent 68%);
}

.project-carousel { position: relative; }
.carousel-top {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem;
}
.carousel-controls { display: inline-flex; gap: .65rem; }
.carousel-controls button {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: var(--text);
}
.carousel-controls button:last-child { transform: rotate(180deg); }
.carousel-viewport { overflow: hidden; border-radius: 24px; }
.carousel-track { display: flex; transition: transform .5s ease; }
.project-slide { min-width: 100%; padding: .15rem; }
.project-card { padding: 1.6rem; min-height: 100%; }
.project-card .stars { color: var(--stone); letter-spacing: .16em; font-size: .82rem; }
.project-card blockquote { margin: .7rem 0 1rem; font-size: 1.06rem; color: var(--stone); }
.project-card .quote-mark { font-size: 3.4rem; line-height: .8; color: var(--bronze-2); }
.project-card .project-outcome { color: var(--muted); font-weight: 600; }
.carousel-dots { display: flex; gap: .45rem; margin-top: 1rem; }
.carousel-dots button {
  width: 10px; height: 10px; padding: 0; border-radius: 50%; border: 0; background: rgba(255,255,255,.2);
}
.carousel-dots button.active { background: var(--stone); }

.faq-layout { grid-template-columns: 1fr; align-items: start; }
.faq-stack { grid-template-columns: 1fr; }
.faq-item { padding: 0 1rem; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1rem 0; font-weight: 700; position: relative; padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--bronze-2); font-size: 1.4rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 0 1rem; color: var(--muted); }

.map-card iframe { width: 100%; min-height: 360px; border: 0; filter: grayscale(1) contrast(1.12) brightness(.82); border-radius: 24px; }
.map-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.map-pills span {
  padding: .48rem .74rem; border-radius: 999px; background: rgba(255,255,255,.05); color: var(--muted); font-size: .88rem;
}
.final-contact-card { min-height: 100%; }

.cta-band {
  position: relative; overflow: hidden; padding: 2rem; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(171,122,79,.22), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
}
.cta-band::after {
  content: ""; position: absolute; inset: auto -6% -34% auto; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,223,210,.2), transparent 64%);
}
.cta-band h2 { margin: 0 0 .75rem; max-width: 14ch; font-size: clamp(2.1rem, 5vw, 4.4rem); line-height: .92; }
.cta-band p { max-width: 58ch; color: var(--stone); }

.footer {
  background: rgba(0,0,0,.24); border-top: 1px solid rgba(255,255,255,.07); padding: 0 0 5rem;
}
.footer-cta-band {
  position: relative; overflow: hidden; margin-top: 2rem; padding: 2rem; border-radius: 32px;
  background: linear-gradient(135deg, rgba(171,122,79,.24), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); display: grid; gap: 1rem;
}
.footer-cta-band::after {
  content: ""; position: absolute; inset: auto -8% -34% auto; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,223,210,.18), transparent 64%);
}
.footer-cta-band h2 { margin: 0 0 .75rem; max-width: 12ch; font-size: clamp(2rem, 5vw, 4rem); line-height: .94; }
.footer-cta-band p { max-width: 58ch; color: var(--stone); }
.footer-cta-actions { position: relative; z-index: 1; }
.footer-top { grid-template-columns: 1fr; align-items: start; padding-top: 2rem; }
.footer-brand-card { padding: 1.4rem; }
.footer-brand-card img { width: 74px; filter: none; }
.footer-brand-card strong { display: block; margin-top: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer p, .footer a, .footer small, .footer span { color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: .7rem 1rem; }
.footer-stack a { padding: .2rem 0; }
.footer-stack { gap: .25rem; }
.footer-contact { display: grid; gap: .35rem; }
.footer-map-link { margin-top: .5rem; color: var(--stone); }
.footer-bottom { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; gap: .5rem; }

.floating-estimate {
  position: fixed; right: 1rem; bottom: calc(var(--mobile-bar-h) + 1rem); z-index: 80;
  display: none; align-items: center; gap: .55rem; padding: .95rem 1.2rem; border-radius: 999px;
  background: var(--stone); color: #090909; font-weight: 800; box-shadow: var(--shadow);
}
.floating-estimate svg { width: 16px; }
.mobile-sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(8,8,8,.96); border-top: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(16px);
}
.mobile-sticky-bar a {
  min-height: var(--mobile-bar-h); display: inline-flex; align-items: center; justify-content: center; gap: .6rem; font-weight: 800;
}
.mobile-call { background: #121212; color: var(--text); }
.mobile-call svg { width: 18px; }
.mobile-estimate { background: var(--stone); color: #090909; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal-scale { transform: scale(.96); }
.parallax { will-change: transform; }

@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 rgba(236,225,211,0); }
  50% { box-shadow: 0 0 0 10px rgba(236,225,211,.08); }
}
.floating-estimate { animation: pulse-soft 2.8s infinite; }

@media (min-width: 720px) {
  .badge-grid, .benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .before-after-shell, .dual-grid, .faq-layout { grid-template-columns: 1.08fr .92fr; }
  .stats-grid, .hero-ribbon { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .hero-ribbon { gap: .8rem; }
  .timeline { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-tall { grid-column: span 2; }
  .form-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-top { grid-template-columns: 1.2fr .8fr .8fr 1fr; }
}

@media (min-width: 980px) {
  body { padding-bottom: 0; }
  .site-utility { display: block; }
  .mobile-sticky-bar { display: none; }
  .floating-estimate { display: inline-flex; }
  .quote-shell { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
  .footer-cta-band { grid-template-columns: 1.15fr auto; align-items: end; }
  .hero-grid { grid-template-columns: 1.22fr .56fr; }
  .page-hero-grid { grid-template-columns: 1.18fr .62fr; }
  .service-grid { grid-template-columns: repeat(12, minmax(0,1fr)); }
  .service-card { min-height: 330px; }
  .service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 5; }
  .service-card:nth-child(2), .service-card:nth-child(5) { grid-column: span 4; }
  .service-card:nth-child(3), .service-card:nth-child(6) { grid-column: span 3; }
  .service-grid-compact .service-card:nth-child(1) { grid-column: span 4; }
  .service-grid-compact .service-card:nth-child(2) { grid-column: span 4; }
  .service-grid-compact .service-card:nth-child(3) { grid-column: span 4; }
  .portfolio-editorials { gap: 1.6rem; }
  .project-shell { grid-template-columns: 1fr 1fr; }
  .project-editorial:nth-child(even) .project-shell { direction: rtl; }
  .project-editorial:nth-child(even) .project-copy,
  .project-editorial:nth-child(even) .project-media { direction: ltr; }
  .process-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .project-slide { min-width: 50%; }
  .gallery-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .gallery-tall { grid-row: span 2; grid-column: auto; min-height: 100%; }
  .badge-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (min-width: 1160px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; transform: none; background: transparent; border: 0; }
  .site-nav ul { padding: 0; display: flex; align-items: center; gap: .15rem; }
  .site-nav a { padding: .8rem .95rem; }
  .nav-cta { display: inline-flex; }
  .project-slide { min-width: 33.333%; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero-copy h1, .page-hero-copy h1 { max-width: 10ch; }
  .section-title { max-width: 12ch; }
  .hero-side, .page-side, .trust-panel { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .carousel-controls { width: 100%; justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


.hero-home-premium .hero-copy { max-width: 64rem; }
.hero-home-premium .hero-copy h1 { max-width: 9.5ch; }
.hero-home-premium .hero-copy p { max-width: 44rem; }
.hero-cta-row .btn-primary { box-shadow: 0 18px 40px rgba(236,225,211,.12); }
.hero-investment-note {
  margin-top: 1.15rem; display: grid; gap: .35rem; max-width: 42rem;
  padding: 1rem 1.05rem; border-radius: 22px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
}
.hero-investment-note strong { font-size: 1rem; color: var(--stone); }
.hero-investment-note span { color: var(--muted); }
.hero-side-cta-stack { display: grid; gap: .75rem; }
.hero-project-mini {
  margin-top: 1rem; padding: 1rem; border-radius: 22px; background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.08); display: grid; gap: .55rem;
}
.hero-project-mini p { margin: 0; color: var(--stone); font-size: .96rem; line-height: 1.55; }
.hero-project-mini strong { color: var(--muted); font-size: .92rem; }
.hero-project-stars, .project-stars-large { letter-spacing: .18em; color: var(--stone); font-weight: 800; }
.home-authority-strip { padding-top: 1.4rem; }
.authority-strip {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: center;
  padding: 1rem 1.1rem; border-radius: 999px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08);
}
.authority-strip span {
  padding: .45rem .75rem; border-radius: 999px; background: rgba(255,255,255,.04); color: var(--stone); font-size: .82rem;
  border: 1px solid rgba(255,255,255,.07);
}
.home-photo-story .section-title,
.home-service-story .section-title,
.home-project-section .section-title { max-width: 12ch; }
.project-peek-grid { display: grid; gap: 1rem; margin-top: 1.25rem; }
.project-peek-card {
  padding: 1.2rem; border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.09); box-shadow: var(--shadow-soft); display: grid; gap: .4rem;
}
.project-peek-card strong { font-size: 1.05rem; }
.project-peek-card span { color: var(--stone); font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; }
.project-peek-card p { margin: 0; color: var(--muted); }
.home-service-benefits { margin-bottom: 1.15rem; }
.project-proof-layout { align-items: start; }
.project-proof-card {
  padding: 1.5rem; border-radius: 30px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
}
.featured-quote {
  margin-top: 1rem; padding: 1.2rem; border-radius: 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.featured-quote blockquote { margin: .55rem 0 .85rem; color: var(--stone); font-size: 1.08rem; line-height: 1.7; }
.featured-quote strong { color: var(--muted); }
.project-proof-pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.project-proof-pills span {
  padding: .45rem .7rem; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: var(--stone); font-size: .78rem;
}
@media (min-width: 720px) {
  .project-peek-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .authority-strip { border-radius: 28px; justify-content: flex-start; }
  .hero-investment-note { padding: .95rem; }
  .featured-quote blockquote { font-size: 1rem; }
}


.service-authority-wrap { padding-top: 1.3rem; }
.service-authority-strip {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; align-items: center;
  padding: 1rem 1.1rem; border-radius: 999px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08);
}
.service-authority-strip span {
  padding: .45rem .75rem; border-radius: 999px; background: rgba(255,255,255,.04); color: var(--stone); font-size: .82rem;
  border: 1px solid rgba(255,255,255,.07);
}
.service-premium-intro .section-title,
.service-photo-story .section-title,
.service-project-proof .section-title,
.service-benefits-section .section-title { max-width: 12ch; }
.service-investment-note { max-width: 46rem; }
.service-photo-story .gallery-grid { margin-top: 1rem; }
.service-benefits-section .benefit-grid { margin-top: 1rem; }
@media (max-width: 640px) {
  .service-authority-strip { border-radius: 28px; justify-content: flex-start; }
}

/* Quote flow conversion pass */
.nav-actions {
  display: none;
  align-items: center;
  gap: .75rem;
}
.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--stone);
  font-weight: 700;
}
.quote-shell-top {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.quote-intro {
  margin: .55rem 0 0;
  color: var(--muted);
}
.quote-phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--stone);
  font-weight: 800;
}
.quote-trust-grid {
  display: grid;
  gap: .8rem;
  margin-bottom: 1rem;
}
.quote-trust-item {
  padding: .95rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}
.quote-trust-item strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--stone);
}
.quote-trust-item span {
  color: var(--muted);
  font-size: .92rem;
}
.quote-submit-row {
  display: grid;
  gap: .8rem;
}
.quote-submit-row .btn {
  width: 100%;
}
.quote-step-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.quote-step-list span {
  padding: .45rem .72rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--stone);
  font-size: .8rem;
}
.carousel-intro {
  margin-top: .85rem;
}
.carousel-side {
  display: grid;
  gap: .85rem;
}
.carousel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: flex-start;
}
.trust-panel-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.trust-panel-note strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--stone);
}
.trust-panel-note p {
  margin: 0;
  color: var(--muted);
}
.floating-estimate {
  right: 1rem;
  bottom: 1rem;
  align-items: stretch;
  gap: .9rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(8,8,8,.94);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
}
.floating-estimate-copy {
  display: grid;
  gap: .2rem;
}
.floating-estimate-copy strong {
  color: var(--stone);
  font-size: .98rem;
}
.floating-estimate-copy span {
  color: var(--muted);
  font-size: .82rem;
}
.floating-estimate-actions {
  display: flex;
  gap: .55rem;
}
.floating-estimate-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .85rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}
.floating-call {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
}
.floating-quote {
  background: var(--stone);
  color: #090909;
}
.mobile-sticky-bar {
  grid-template-columns: 1fr;
}
.mobile-sticky-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .55rem .85rem .25rem;
}
.mobile-sticky-meta span {
  padding: .35rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--stone);
  font-size: .74rem;
}
.mobile-sticky-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mobile-sticky-actions a {
  min-height: var(--mobile-bar-h);
}
@media (min-width: 720px) {
  .quote-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .quote-shell-top,
  .quote-submit-row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .quote-submit-row .btn {
    width: auto;
  }
}
@media (min-width: 980px) {
  .floating-estimate {
    display: grid;
  }
}
@media (min-width: 1160px) {
  .nav-actions {
    display: inline-flex;
  }
}
@media (max-width: 640px) {
  .floating-estimate {
    display: none !important;
  }
  .quote-phone-pill,
  .quote-submit-row .btn,
  .carousel-actions .btn {
    width: 100%;
  }
}

/* spacing-fix pass: header and interior hero layout */
@media (min-width: 1160px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.1rem;
  }
  .brand {
    max-width: 270px;
  }
  .brand-copy {
    line-height: 1.08;
  }
  .site-nav {
    position: static;
    transform: none;
    background: transparent;
    border: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .site-nav ul {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .08rem;
    flex-wrap: nowrap;
  }
  .site-nav li {
    flex: 0 0 auto;
    min-width: max-content;
  }
  .site-nav a {
    padding: .72rem .72rem;
    font-size: .88rem;
    line-height: 1.1;
    white-space: nowrap;
  }
  .nav-actions {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    flex: 0 0 auto;
  }
  .nav-call,
  .nav-cta {
    white-space: nowrap;
  }
  .nav-call {
    min-height: 46px;
    padding: .75rem .95rem;
    font-size: .9rem;
  }
  .nav-cta {
    min-height: 48px;
    padding: .82rem 1.08rem;
  }
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .58fr);
    gap: 2.3rem;
    padding: 5.2rem 0 3.2rem;
    align-items: end;
  }
  .page-hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.35rem, 5.8vw, 5.85rem);
    line-height: .92;
  }
  .page-hero-copy p {
    max-width: 40rem;
  }
  .page-hero-copy .btn-row {
    margin-top: 1.25rem;
  }
  .page-side {
    width: min(100%, 360px);
    padding: 1.1rem;
  }
}

@media (min-width: 1160px) and (max-width: 1380px) {
  .brand img {
    width: 54px;
  }
  .brand-copy strong {
    font-size: .78rem;
  }
  .brand-copy span {
    display: none;
  }
  .site-nav a {
    padding: .68rem .56rem;
    font-size: .83rem;
  }
  .nav-call {
    padding: .72rem .84rem;
    font-size: .84rem;
  }
  .nav-cta {
    padding: .78rem .94rem;
    font-size: .88rem;
  }
}

@media (min-width: 1381px) {
  .brand {
    max-width: 320px;
  }
}

/* visual-qa polish pass for netlify upload */
@media (min-width: 980px) and (max-width: 1279px) {
  .hero-grid,
  .page-hero-grid,
  .dual-grid,
  .before-after-shell,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-side,
  .page-side,
  .trust-panel {
    justify-self: start;
    width: min(100%, 560px);
  }
  .quote-shell {
    position: relative;
    top: auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card,
  .service-grid-compact .service-card:nth-child(1),
  .service-grid-compact .service-card:nth-child(2),
  .service-grid-compact .service-card:nth-child(3),
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: auto;
    min-height: unset;
  }
  .project-shell {
    grid-template-columns: 1fr;
  }
  .project-editorial:nth-child(even) .project-shell {
    direction: ltr;
  }
}

@media (max-width: 979px) {
  .nav-wrap {
    min-height: 76px;
  }
  .brand img {
    width: 54px;
  }
  .brand-copy strong {
    font-size: .78rem;
    letter-spacing: .12em;
  }
  .brand-copy span {
    display: none;
  }
  .site-nav {
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .hero,
  .page-hero {
    min-height: auto;
  }
  .hero-grid,
  .page-hero-grid {
    min-height: auto;
    padding: 3.9rem 0 2rem;
  }
  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.7rem, 11vw, 4.3rem);
    line-height: .94;
  }
  .hero-copy p,
  .page-hero-copy p {
    max-width: 100%;
    font-size: 1rem;
  }
  .hero-side,
  .page-side,
  .trust-panel {
    justify-self: stretch;
    width: 100%;
  }
  .section-title {
    font-size: clamp(2rem, 8vw, 3.4rem);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max));
  }
  .section {
    padding: 3.6rem 0;
  }
  .section-xl {
    padding: 4.4rem 0;
  }
  .btn-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .btn,
  .nav-call,
  .nav-cta {
    width: 100%;
  }
  .page-side,
  .hero-side,
  .trust-panel,
  .project-proof-card,
  .quote-shell,
  .contact-card,
  .map-card,
  .badge-card,
  .benefit-card,
  .service-card,
  .project-editorial,
  .footer-brand-card {
    border-radius: 20px;
  }
  .hero-chip,
  .mini-chip,
  .hero-proof span,
  .side-badges span,
  .form-trust-row span,
  .footer-badges span,
  .project-proof-pills span,
  .service-authority-strip span,
  .authority-strip span {
    font-size: .74rem;
  }
  .breadcrumbs {
    font-size: .82rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }
}

/* live-qa final polish pass: reduce title bloat and remove desktop CTA collisions */
@media (min-width: 980px) {
  .floating-estimate {
    display: none !important;
  }

  .page-hero + .section,
  .page-hero + .section.section-xl {
    padding-top: 4rem;
  }

  .page-hero + .section .section-title,
  .page-hero + .section.section-xl .section-title {
    max-width: 15ch;
    font-size: clamp(2.3rem, 3.6vw, 4rem);
    line-height: .96;
    letter-spacing: -.02em;
    margin-bottom: .85rem;
  }

  .page-hero + .section .section-intro,
  .page-hero + .section.section-xl .section-intro {
    max-width: 50rem;
  }

  .page-hero + .section .portfolio-editorials,
  .page-hero + .section .service-grid,
  .page-hero + .section .gallery-grid,
  .page-hero + .section .dual-grid,
  .page-hero + .section .project-peek-grid {
    margin-top: 1.4rem;
  }
}

@media (min-width: 980px) and (max-width: 1279px) {
  .page-hero + .section .section-title,
  .page-hero + .section.section-xl .section-title {
    max-width: 16ch;
    font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  }
}

@media (max-width: 979px) {
  .page-hero + .section,
  .page-hero + .section.section-xl {
    padding-top: 3.2rem;
  }

  .page-hero + .section .section-title,
  .page-hero + .section.section-xl .section-title {
    max-width: 12ch;
    font-size: clamp(1.95rem, 7.2vw, 3rem);
    line-height: .98;
  }

  .page-hero + .section .section-intro,
  .page-hero + .section.section-xl .section-intro {
    max-width: 100%;
  }
}


/* final-launch-fix pass: contrast, hero crops, and mobile responsiveness */
.btn-secondary {
  color: var(--stone);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.065);
}
.btn-secondary:hover {
  color: var(--text);
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.3);
}
label {
  color: var(--stone);
}
input, textarea, select {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: var(--text);
}
input::placeholder,
textarea::placeholder,
select,
.form-note,
.muted,
.section-intro,
.badge-card span,
.benefit-card p,
.service-card p,
.hero-side-card span,
.mini-stat span,
.quote-intro,
.trust-panel-note p {
  color: #d8d0c6;
}
.service-card .service-meta span,
.service-inline-links a,
.project-statline span,
.hero-proof span,
.side-badges span,
.project-proof-pills span,
.service-authority-strip span,
.authority-strip span,
.form-trust-row span,
.compare-callout span,
.footer-badges span,
.mobile-sticky-meta span {
  color: #f4eadc;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.quote-shell,
.contact-card,
.map-card,
.hero-side,
.page-side,
.trust-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
}
.gallery-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.52));
}
.gallery-card img {
  filter: brightness(1.06) contrast(1.03) saturate(1.02);
}
.gallery-card span {
  text-shadow: 0 2px 14px rgba(0,0,0,.72);
}
.page-hero-media {
  background-position: center 58%;
}
.page-hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.36) 38%, rgba(0,0,0,.84) 100%),
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.18) 56%, rgba(0,0,0,.46) 100%);
}
@media (max-width: 979px) {
  .page-hero-grid {
    padding: 3rem 0 1.35rem;
    gap: 1rem;
  }
  .page-hero-copy h1 {
    font-size: clamp(2.2rem, 8.6vw, 3.5rem);
    line-height: .96;
    max-width: 11ch;
  }
  .page-hero-copy p {
    font-size: .98rem;
  }
  .page-side {
    padding: 1rem;
  }
  .page-hero-media {
    background-position: center 64%;
  }
}
@media (max-width: 640px) {
  .hero-grid,
  .page-hero-grid {
    padding: 2.4rem 0 1.1rem;
  }
  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.05rem, 8.9vw, 3.15rem);
    line-height: .98;
    max-width: 10.5ch;
    margin-bottom: .9rem;
  }
  .hero-copy p,
  .page-hero-copy p {
    font-size: .96rem;
  }
  .section-title {
    font-size: clamp(1.8rem, 6.8vw, 2.75rem);
    line-height: 1.02;
  }
  .page-hero-media {
    background-position: center 68%;
  }
}


/* refinement pass: smaller headlines, cleaner forms, consistent CTA spacing */
.hero-copy h1, .page-hero-copy h1 {
  font-size: clamp(2.5rem, 8.2vw, 6.2rem);
  max-width: 13ch;
}
.section-title {
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  max-width: 13ch;
}
.hero-copy p, .page-hero-copy p, .section-intro {
  max-width: 60ch;
}
.quote-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}
.quote-trust-item {
  padding: .95rem;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 979px) {
  .quote-trust-grid { grid-template-columns: 1fr; }
}
.form-grid {
  gap: 1rem;
}
.quote-shell .form-row {
  align-items: start;
}
.hero-side-card strong, .mini-stat strong {
  font-size: .98rem;
}
.project-peek-card p,
.project-card blockquote,
.project-outcome,
.project-result p,
.contact-card p,
.footer-brand-card p {
  max-width: 65ch;
}
.btn-row .btn,
.quote-submit-row .btn,
.footer-cta-actions .btn {
  min-width: 220px;
}
@media (max-width: 640px) {
  .btn-row .btn,
  .quote-submit-row .btn,
  .footer-cta-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .page-hero {
    min-height: 58vh;
  }
}


/* global trust cleanup */
.badge-grid,
.mini-stat-grid,
.quote-trust-grid {
  align-items: stretch;
  gap: 1rem;
}

.badge-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.mini-stat-grid,
.quote-trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.badge-card,
.mini-stat,
.quote-trust-item {
  min-height: 100%;
  padding: 1.1rem 1rem;
}

.badge-card,
.quote-trust-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .45rem;
}

.badge-card strong,
.mini-stat strong,
.quote-trust-item strong {
  display: block;
  white-space: nowrap;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
}

.side-badges,
.form-trust-row,
.footer-badges,
.project-proof-pills,
.warranty-points,
.authority-strip,
.service-authority-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  align-items: stretch;
}

.side-badges span,
.form-trust-row span,
.footer-badges span,
.project-proof-pills span,
.warranty-points span,
.authority-strip span,
.service-authority-strip span {
  min-height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .65rem .9rem;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .badge-grid,
  .mini-stat-grid,
  .quote-trust-grid,
  .side-badges,
  .form-trust-row,
  .footer-badges,
  .project-proof-pills,
  .warranty-points,
  .authority-strip,
  .service-authority-strip {
    grid-template-columns: 1fr;
  }
}

/* mobile optimization pass */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  body {
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px) + 1rem);
  }

  .container {
    width: min(calc(100% - 1rem), var(--max));
  }

  .section {
    padding: 3.4rem 0;
  }

  .section-xl {
    padding: 4.1rem 0;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.2rem;
    padding: 2.8rem 0 1.25rem;
    align-items: end;
  }

  .hero-copy,
  .page-hero-copy,
  .hero-copy p,
  .page-hero-copy p,
  .section-intro,
  .hero-investment-note,
  .service-investment-note {
    max-width: 100%;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 3.25rem);
    line-height: 1;
    letter-spacing: -.04em;
    overflow-wrap: anywhere;
  }

  .section-title,
  .page-hero + .section .section-title,
  .page-hero + .section.section-xl .section-title {
    max-width: 100%;
    font-size: clamp(1.85rem, 7vw, 3rem);
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  .hero-copy p,
  .page-hero-copy p,
  .section-intro {
    font-size: .98rem;
  }

  .hero-wordmark,
  .btn-row,
  .carousel-actions,
  .footer-cta-actions,
  .quote-submit-row,
  .hero-side-cta-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .btn,
  .nav-call,
  .nav-cta,
  .quote-phone-pill,
  .quote-submit-row .btn,
  .footer-cta-actions .btn,
  .hero-side-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .nav-wrap {
    min-height: 72px;
    gap: .75rem;
  }

  .brand {
    min-width: 0;
    gap: .75rem;
  }

  .brand img {
    width: 50px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-nav {
    inset: 72px 0 auto 0;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }

  .site-nav ul {
    padding: .85rem;
    gap: .35rem;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hero-side,
  .page-side,
  .trust-panel,
  .project-proof-card,
  .quote-shell,
  .contact-card,
  .map-card,
  .badge-card,
  .benefit-card,
  .service-card,
  .project-editorial,
  .footer-brand-card,
  .warranty-band {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    border-radius: 20px;
  }

  .dual-grid,
  .before-after-shell,
  .faq-layout,
  .service-grid,
  .portfolio-editorials,
  .footer-top,
  .project-peek-grid,
  .hero-side-grid,
  .stats-grid,
  .timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .gallery-card,
  .project-media {
    min-height: 220px;
  }

  .gallery-card span {
    left: .9rem;
    right: .9rem;
    bottom: .9rem;
    font-size: .98rem;
  }

  .project-shell {
    grid-template-columns: 1fr;
  }

  .project-copy {
    padding: 1.1rem;
  }

  .project-copy h3 {
    font-size: clamp(1.45rem, 6.2vw, 2rem);
    line-height: 1.02;
  }

  .service-card,
  .service-grid-compact .service-card {
    min-height: auto;
    padding: 1.15rem;
  }

  .service-card::after {
    right: .8rem;
    bottom: .35rem;
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .service-card h3 {
    font-size: 1.25rem;
    line-height: 1.08;
  }

  .service-card .service-meta,
  .service-inline-links {
    gap: .45rem;
  }

  .hero-proof,
  .side-badges,
  .form-trust-row,
  .compare-callout,
  .footer-badges,
  .project-proof-pills,
  .warranty-points,
  .authority-strip,
  .service-authority-strip,
  .badge-grid,
  .mini-stat-grid,
  .quote-trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof span,
  .side-badges span,
  .form-trust-row span,
  .compare-callout span,
  .footer-badges span,
  .project-proof-pills span,
  .warranty-points span,
  .authority-strip span,
  .service-authority-strip span,
  .badge-card strong,
  .mini-stat strong,
  .quote-trust-item strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-proof span,
  .side-badges span,
  .form-trust-row span,
  .compare-callout span,
  .footer-badges span,
  .project-proof-pills span,
  .warranty-points span,
  .authority-strip span,
  .service-authority-strip span {
    min-height: 44px;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
  }

  .form-grid,
  .form-row,
  .quote-shell-top,
  .quote-submit-row {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  label,
  .form-note {
    font-size: .92rem;
  }

  input,
  textarea,
  select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  textarea {
    min-height: 140px;
  }

  .carousel-top,
  .carousel-actions,
  .carousel-controls {
    justify-content: flex-start;
  }

  .carousel-controls {
    width: auto;
    flex-wrap: wrap;
  }

  .hero-ribbon {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .ribbon-item {
    padding: .6rem 0;
  }

  .footer-top {
    gap: 1.15rem;
  }

  .footer-links,
  .footer-contact,
  .footer-map-link,
  .footer-bottom,
  .contact-card a,
  .map-card,
  .project-gridline div {
    overflow-wrap: anywhere;
  }

  .mobile-sticky-bar {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-sticky-actions a {
    min-height: 64px;
    font-size: .95rem;
  }

  .mobile-sticky-meta {
    padding: .45rem .75rem .2rem;
  }

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

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - .8rem), var(--max));
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.45rem);
  }

  .section-title,
  .page-hero + .section .section-title,
  .page-hero + .section.section-xl .section-title {
    font-size: clamp(1.7rem, 7.4vw, 2.35rem);
  }

  .brand img {
    width: 46px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .site-nav {
    inset: 70px 0 auto 0;
    max-height: calc(100dvh - 70px);
  }

  .slider-handle {
    width: 58px;
    height: 58px;
  }

  .mobile-sticky-actions a {
    font-size: .9rem;
  }
}

/* cross-device qa final pass */
@media (max-width: 1024px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(20px);
  }

  .reveal-scale {
    transform: scale(.985);
  }
}

@media (max-width: 768px) {
  .hero-media,
  .page-hero-media {
    transform: scale(1.02);
  }

  .hero-project-mini,
  .trust-panel-note,
  .project-result,
  .featured-quote {
    padding: .95rem;
  }

  .carousel-top {
    gap: .85rem;
  }

  .carousel-controls button {
    width: 46px;
    height: 46px;
  }

  .footer-cta-band {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* final qa nav tap-target polish */
@media (min-width: 1160px) {
  .site-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}


/* final cross-device hardening */
.reveal.reveal-left.in-view,
.reveal.reveal-right.in-view,
.reveal.reveal-scale.in-view {
  transform: none;
}

.hero-grid > *,
.page-hero-grid > *,
.dual-grid > *,
.before-after-shell > *,
.faq-layout > *,
.project-shell > *,
.footer-top > *,
.service-grid > *,
.portfolio-editorials > *,
.project-peek-grid > * {
  min-width: 0;
}

.project-proof-card,
.project-carousel,
.carousel-viewport,
.carousel-track,
.project-slide,
.project-card,
.featured-quote,
.project-stars-large,
.project-card blockquote,
.featured-quote blockquote,
.featured-quote strong,
.project-outcome,
.project-proof-pills,
.project-proof-pills span,
.project-gridline div,
.project-gridline span,
.service-card,
.service-card h3,
.service-card p,
.contact-card,
.map-card,
.footer-brand-card,
.cta-band,
.footer-cta-band,
.authority-strip,
.service-authority-strip {
  min-width: 0;
  max-width: 100%;
}

.project-stars-large,
.project-card blockquote,
.featured-quote blockquote,
.featured-quote strong,
.project-outcome,
.project-gridline div,
.project-gridline span,
.service-card h3,
.service-card p,
.contact-card,
.map-card,
.footer-brand-card,
.cta-band,
.footer-cta-band {
  overflow-wrap: anywhere;
}

.carousel-viewport {
  width: 100%;
}

.carousel-track {
  width: 100%;
  max-width: 100%;
}

.project-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 980px) {
  .project-slide {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 1160px) {
  .project-slide {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 1024px) {
  .project-proof-layout,
  .dual-grid,
  .before-after-shell,
  .faq-layout,
  .project-shell,
  .footer-top,
  .portfolio-editorials,
  .service-grid,
  .project-peek-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-side,
  .hero-side,
  .trust-panel,
  .project-proof-card,
  .project-carousel,
  .carousel-viewport,
  .carousel-track,
  .project-slide,
  .project-card,
  .featured-quote,
  .cta-band,
  .footer-cta-band,
  .quote-shell,
  .contact-card,
  .map-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-copy,
  .page-hero-copy,
  .hero-wordmark,
  .btn-row,
  .carousel-top,
  .carousel-side,
  .carousel-actions,
  .quote-submit-row,
  .footer-cta-actions {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-wordmark,
  .carousel-actions,
  .btn-row,
  .footer-cta-actions {
    gap: .75rem;
  }
}


/* page-side badge and logo fit fix */
.brand img {
  display: block;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.page-side .chip-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin-top: 1rem;
}

.page-side .mini-chip {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .62rem .82rem;
  text-align: center;
  line-height: 1.2;
  font-size: .76rem;
  white-space: normal;
  text-wrap: balance;
}

.page-side .chip-wrap .mini-chip:nth-child(3) {
  grid-column: 1 / -1;
}

.page-side .side-badges {
  margin-top: .7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.page-side .side-badges span {
  min-height: 50px;
  padding: .68rem .82rem;
  font-size: .76rem;
  line-height: 1.2;
  white-space: normal;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .brand {
    max-width: calc(100% - 58px);
  }

  .brand img {
    width: 48px;
  }

  .brand-copy strong {
    font-size: .76rem;
    letter-spacing: .12em;
  }

  .brand-copy span {
    font-size: .72rem;
    line-height: 1.15;
  }

  .page-side {
    padding: 1rem;
  }

  .page-side .chip-wrap,
  .page-side .side-badges {
    grid-template-columns: 1fr;
  }

  .page-side .chip-wrap .mini-chip:nth-child(3) {
    grid-column: auto;
  }

  .page-side .mini-chip,
  .page-side .side-badges span {
    min-height: 44px;
    font-size: .75rem;
  }
}

@media (max-width: 480px) {
  .brand-copy span {
    display: none;
  }

  .brand img {
    width: 44px;
  }

  .brand-copy strong {
    font-size: .74rem;
  }
}


/* recreated white logo sizing */
.brand img,
.footer-brand-card img {
  filter: none;
}

.footer-brand-card img {
  height: auto;
  object-fit: contain;
}
