@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #171714;
  --ink-soft: #34342f;
  --paper: #ffffff;
  --cream: #f5f2eb;
  --line: #dedbd2;
  --orange: #f47a00;
  --orange-dark: #d96400;
  --orange-pale: #fff0df;
  --muted: #6b6a63;
  --max-width: 1180px;
  --shadow: 0 20px 70px rgba(16, 16, 13, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.5vw, 4.35rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 3.2vw, 3.15rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 25px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #171714;
  box-shadow: 0 12px 30px rgba(244, 122, 0, 0.22);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ff8a16;
  box-shadow: 0 16px 34px rgba(244, 122, 0, 0.3);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffb560;
  outline-offset: 3px;
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.button--full {
  width: 100%;
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

.button--dark:hover {
  background: #2d2d28;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--paper);
  font-weight: 700;
}

.text-link--light {
  margin-top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 17, 15, 0.94);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 134px;
  height: 50px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #d5d4cf;
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.phone-kicker {
  color: #96958e;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-link strong {
  margin-top: 3px;
  font-size: 0.98rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 50px;
  background:
    linear-gradient(110deg, rgba(17, 17, 15, 0.99) 0%, rgba(17, 17, 15, 0.96) 52%, rgba(17, 17, 15, 0.9) 100%);
  color: var(--paper);
}

.hero-glow {
  position: absolute;
  right: -15%;
  bottom: -40%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(244, 122, 0, 0.14);
  filter: blur(100px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(650px, 1.2fr);
  align-items: center;
  gap: clamp(30px, 3.5vw, 48px);
}

.hero-copy {
  padding-block: 14px;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 22px;
  color: #cecdc8;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 24px 0 0;
  color: #b9b8b2;
  font-size: 0.87rem;
  list-style: none;
}

.hero-checks li::before {
  margin-right: 8px;
  color: var(--orange);
  content: "✓";
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(380px, 1.22fr);
  min-height: 0;
  align-items: center;
  gap: 18px;
}

.hero-image-wrap {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 15, 0.4), transparent 46%);
  content: "";
}

.hero-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(17, 17, 15, 0.78);
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
}

.hero-badge span {
  max-width: 100px;
  color: #dddcd6;
  font-size: 0.72rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.quote-card {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 18px;
  border: 1px solid #e7e3da;
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.quote-card__head h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.quote-card__head > p:last-child {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.estimate-form {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.estimate-form label {
  display: grid;
  gap: 5px;
}

.estimate-form label > span {
  font-size: 0.73rem;
  font-weight: 700;
}

.estimate-form input,
.estimate-form select {
  width: 100%;
  height: 39px;
  padding: 0 12px;
  border: 1px solid #d8d5cd;
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 0.88rem;
}

.estimate-form input:focus,
.estimate-form select:focus {
  border-color: var(--orange);
}

.form-note {
  display: none;
}

.proof-bar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 84px;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-weight: 800;
}

.proof-item div {
  display: grid;
  line-height: 1.3;
}

.proof-item strong {
  font-size: 0.9rem;
}

.proof-item div span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.section {
  padding: 76px 0;
}

.section--warm {
  background: var(--cream);
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 46px;
}

.section-heading--split h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p:last-child {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.compare-card {
  position: relative;
  height: min(60vw, 540px);
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #252521;
  box-shadow: var(--shadow);
}

.compare-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.compare-image--before {
  filter: saturate(0.88) brightness(0.88);
}

.compare-after {
  position: absolute;
  inset: 0;
  width: var(--compare-position);
  overflow: hidden;
}

.compare-after .compare-image {
  width: max(100vw, var(--max-width));
  max-width: none;
}

.compare-label {
  position: absolute;
  top: 24px;
  z-index: 4;
  padding: 8px 13px;
  border-radius: 6px;
  background: rgba(17, 17, 15, 0.8);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-label--before {
  right: 24px;
}

.compare-label--after {
  left: 24px;
  background: var(--orange);
  color: var(--ink);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 3;
  width: 3px;
  transform: translateX(-50%);
  background: var(--paper);
  pointer-events: none;
}

.compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.project-facts article {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.project-facts article:last-child {
  border-right: 0;
}

.project-facts span,
.project-facts strong {
  display: block;
}

.project-facts span {
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-facts strong {
  font-size: 0.94rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 225px;
  padding: 24px;
  border: 1px solid #ded9ce;
  border-radius: 16px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(42, 38, 30, 0.08);
}

.card-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-card--accent {
  border-color: var(--orange);
  background: var(--orange);
}

.benefit-card--accent .card-number {
  background: var(--ink);
  color: var(--paper);
}

.benefit-card--accent p {
  color: #4c321b;
}

.benefit-card--accent a {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px solid var(--ink);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #ddd;
  cursor: zoom-in;
}

.gallery-item--wide {
  grid-row: 1 / 3;
}

.gallery-item:nth-child(4) {
  grid-column: 2 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(17, 17, 15, 0.78));
  content: "";
}

.gallery-item span {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  color: var(--paper);
  font-weight: 700;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.process-copy {
  position: sticky;
  top: 125px;
  align-self: start;
}

.process-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.04rem;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  padding-top: 4px;
}

.process-list li > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.faq-intro > p:not(.eyebrow) {
  color: #aaa9a3;
}

.faq-list details {
  border-top: 1px solid #3d3d37;
}

.faq-list details:last-child {
  border-bottom: 1px solid #3d3d37;
}

.faq-list summary {
  position: relative;
  padding: 19px 50px 19px 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 2px;
  color: var(--orange);
  content: "+";
  font-size: 1.55rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  padding: 0 36px 24px 0;
  margin: 0;
  color: #aaa9a3;
}

.final-cta {
  padding: 54px 0;
  background: var(--orange);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .eyebrow {
  color: #633100;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 10px;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: #633100;
}

.final-cta__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
}

.final-phone {
  display: grid;
  line-height: 1.25;
}

.final-phone span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.final-phone strong {
  font-size: 1.05rem;
}

.site-footer {
  padding: 38px 0;
  background: #0d0d0c;
  color: #aaa9a3;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px 50px;
}

.brand--footer img {
  width: 138px;
}

.footer-grid > p {
  max-width: 430px;
  margin-bottom: 0;
  font-size: 0.88rem;
}

.footer-contact {
  display: grid;
  justify-items: end;
  font-size: 0.88rem;
}

.footer-contact a:hover {
  color: var(--orange);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid #292925;
  color: #6f6e68;
  text-align: center;
}

.mobile-cta {
  display: none;
}

.gallery-dialog {
  width: min(1000px, calc(100% - 40px));
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 14px;
  background: #10100f;
  color: var(--paper);
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
}

.gallery-dialog img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 14px 14px 0 0;
}

.gallery-dialog p {
  padding: 14px 20px;
  margin: 0;
}

.dialog-close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    padding: 0;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(390px, 1.15fr);
    min-height: 0;
    align-items: center;
    gap: 18px;
  }

  .hero-image-wrap {
    position: relative;
    inset: auto;
    height: 440px;
  }

  .quote-card {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 18px;
    transform: none;
  }

  .quote-card__head h2 {
    font-size: 1.35rem;
  }

  .quote-card__head > p:last-child {
    margin-bottom: 10px;
    font-size: 0.82rem;
  }

  .estimate-form input,
  .estimate-form select {
    height: 39px;
  }

  .quote-card .button {
    min-height: 46px;
  }

  .quote-card .form-note {
    display: none;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .project-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-facts article:nth-child(2) {
    border-right: 0;
  }

  .project-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .faq-grid {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 75px;
  }

  body {
    padding-bottom: 60px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 126px;
    height: 48px;
  }

  .header-actions .button,
  .phone-kicker {
    display: none;
  }

  .phone-link strong {
    font-size: 0.9rem;
  }

  .hero {
    padding: 32px 0 40px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
    border-bottom: 0;
  }

  .hero-checks {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
  }

  .hero-image-wrap,
  .quote-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .hero-image-wrap {
    height: 320px;
  }

  .quote-card {
    padding: 20px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    min-height: 88px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 58px 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .compare-card {
    height: 430px;
    min-height: 0;
  }

  .compare-after .compare-image {
    width: calc(100vw - 32px);
  }

  .project-facts {
    grid-template-columns: 1fr;
  }

  .project-facts article,
  .project-facts article:nth-child(2),
  .project-facts article:nth-child(-n + 2) {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-facts article:last-child {
    border-bottom: 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 180px 180px;
  }

  .gallery-item--wide {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .gallery-item:nth-child(4) {
    grid-column: 1 / -1;
  }

  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-copy {
    position: static;
  }

  .process-list li {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .process-list li > span {
    width: 46px;
    height: 46px;
  }

  .final-cta__inner,
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta__actions {
    width: 100%;
  }

  .final-phone {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand--footer {
    justify-content: center;
  }

  .footer-contact {
    justify-items: center;
  }

  .copyright {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 80;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--orange);
    color: var(--ink);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.32);
    font-weight: 800;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
  }
}

/* Compact desktop rhythm for project landing pages */
@media (min-width: 761px) {
  .hero {
    padding: 22px 0 28px;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-stage .hero-copy {
    width: min(760px, 70%);
    padding: 32px 40px;
  }

  .hero-stage .hero-copy h1 {
    font-size: clamp(2.35rem, 3.7vw, 3.7rem);
  }

  .hero-stage .hero-lede {
    max-width: 650px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-project-tag {
    margin-top: 14px;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .compare-card {
    height: min(48vw, 430px);
    min-height: 340px;
  }

  .project-facts {
    margin-top: 18px;
  }

  .project-facts article {
    padding: 14px 18px;
  }

  .benefit-card {
    min-height: 190px;
    padding: 20px;
  }

  .card-number {
    margin-bottom: 14px;
  }

  .gallery-grid {
    grid-template-rows: repeat(2, 180px);
  }

  .process-grid,
  .faq-grid {
    gap: 54px;
  }

  .process-list li {
    padding: 16px 0;
  }

  .faq-list summary {
    padding-block: 15px;
  }

  .faq-list details p {
    padding-bottom: 18px;
  }

  .final-cta {
    padding: 42px 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 280px);
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item:nth-child(4) {
    grid-column: auto;
  }

  .compare-card {
    height: 400px;
  }

  .dialog-close {
    top: 8px;
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Option A: cinematic project hero with a compact estimate bar */
.hero {
  padding: 30px 0 38px;
}

.hero-stage {
  position: relative;
  display: flex;
  min-height: 500px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #24231f;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.hero-stage__image,
.hero-stage__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-stage__image {
  object-fit: cover;
  object-position: center 58%;
}

.hero-stage__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 12, 10, 0.94) 0%, rgba(12, 12, 10, 0.76) 43%, rgba(12, 12, 10, 0.18) 78%),
    linear-gradient(to top, rgba(12, 12, 10, 0.64), transparent 48%);
}

.hero-stage .hero-copy {
  position: relative;
  z-index: 2;
  width: min(660px, 62%);
  padding: 42px 46px;
}

.hero-stage .hero-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 4.2vw, 4.25rem);
}

.hero-stage .hero-lede {
  max-width: 530px;
  margin-bottom: 20px;
}

.hero-project-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 380px;
  margin-top: 22px;
  color: #c9c8c2;
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero-project-tag strong {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.estimate-bar {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.15fr auto;
  align-items: end;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.estimate-bar__intro {
  display: grid;
  align-self: center;
  padding: 0 8px;
  line-height: 1.25;
}

.estimate-bar__intro span {
  color: var(--orange-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimate-bar__intro strong {
  margin-top: 3px;
  font-size: 0.9rem;
}

.estimate-bar label {
  display: grid;
  gap: 4px;
}

.estimate-bar label > span {
  font-size: 0.68rem;
  font-weight: 800;
}

.estimate-bar input,
.estimate-bar select {
  width: 100%;
  height: 42px;
  padding: 0 11px;
  border: 1px solid #d8d5cd;
  border-radius: 7px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 0.82rem;
}

.estimate-bar .button {
  min-height: 42px;
  padding: 10px 17px;
  white-space: nowrap;
}

@media (min-width: 761px) {
  body {
    padding-bottom: 112px;
  }

  .estimate-bar {
    position: fixed;
    right: auto;
    bottom: 14px;
    left: 50%;
    width: min(calc(100% - 40px), var(--max-width));
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 28px));
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .estimate-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero-stage {
    min-height: 520px;
  }

  .hero-stage .hero-copy {
    width: min(650px, 72%);
    max-width: none;
    padding: 38px 36px;
  }

  .estimate-bar {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .estimate-bar__intro {
    grid-column: span 2;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  body {
    padding-bottom: 164px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 18px 0 26px;
  }

  .hero-stage {
    display: block;
    min-height: 0;
    border-radius: 18px;
  }

  .hero-stage__image {
    bottom: auto;
    height: 400px;
    object-position: 58% center;
  }

  .hero-stage__overlay {
    bottom: auto;
    height: 400px;
    background: linear-gradient(90deg, rgba(12, 12, 10, 0.9), rgba(12, 12, 10, 0.35));
  }

  .hero-stage .hero-copy {
    width: 100%;
    min-height: 400px;
    padding: 28px 18px;
  }

  .hero-stage .hero-copy h1 {
    font-size: clamp(2rem, 9.4vw, 2.75rem);
    line-height: 1.02;
  }

  .hero-project-tag {
    margin-top: 14px;
  }

  .estimate-bar {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .estimate-bar__intro {
    grid-column: auto;
    padding: 0 0 4px;
  }

  .estimate-bar .button {
    width: 100%;
  }
}

@media (min-width: 761px) {
  .hero {
    padding: 22px 0 28px;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-stage .hero-copy {
    width: min(760px, 70%);
    padding: 32px 40px;
  }

  .hero-stage .hero-copy h1 {
    font-size: clamp(2.35rem, 3.7vw, 3.7rem);
  }

  .hero-stage .hero-lede {
    max-width: 650px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-project-tag {
    display: grid;
    margin-top: 14px;
    gap: 4px;
    max-width: 440px;
  }

  .hero-project-tag strong {
    font-size: 1.15rem;
  }
}
