:root {
  --ink: #111311;
  --ink-2: #1a1d1a;
  --paper: #f2efe8;
  --muted: #a8aaa4;
  --line: rgba(17, 19, 17, .15);
  --orange: #ff5a2f;
  --orange-dark: #e7431b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 clamp(24px, 4.5vw, 78px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .25s ease, height .25s ease;
}
.header.is-scrolled {
  position: fixed;
  height: 72px;
  background: rgba(17,19,17,.92);
  backdrop-filter: blur(14px);
}
.logo { display: inline-flex; align-items: center; gap: 11px; justify-self: start; }
.logo svg { width: 38px; fill: none; stroke: var(--orange); stroke-width: 2.7; }
.logo > span { font-size: 22px; font-weight: 900; letter-spacing: -.7px; line-height: .9; }
.logo small { display: block; margin-top: 7px; font-size: 8px; font-weight: 600; letter-spacing: 1.25px; text-transform: uppercase; color: rgba(255,255,255,.58); }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 50px); }
.nav a { position: relative; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -9px; background: var(--orange); transition: right .25s; }
.nav a:hover::after { right: 0; }
.header-phone { justify-self: end; text-align: right; }
.header-phone small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.header-phone b { font-size: 15px; }
.menu-button { display: none; background: none; border: 0; padding: 12px 0 12px 18px; }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: end;
  padding: 146px clamp(24px, 6vw, 112px) 66px;
  background: var(--ink) url("assets/hero.webp") center/cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,8,7,.96) 0%, rgba(7,8,7,.78) 36%, rgba(7,8,7,.16) 66%, rgba(7,8,7,.48) 100%), linear-gradient(0deg, rgba(7,8,7,.74), transparent 45%);
}
.hero-copy { max-width: 720px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; font-size: 10px; font-weight: 800; letter-spacing: 1.8px; }
.eyebrow i { width: 34px; height: 2px; background: var(--orange); }
.eyebrow.light { color: rgba(255,255,255,.74); }
.hero h1, .section-head h2, .projects-head h2, .process h2, .promise h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(54px, 6.4vw, 112px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.068em;
}
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-text { max-width: 540px; margin: 34px 0; color: rgba(255,255,255,.68); font-size: clamp(14px, 1.1vw, 17px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.hero-actions > a { padding: 13px 0; font-size: 12px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.4); }
.hero-actions > a span { margin-left: 12px; color: var(--orange); }
.button { min-height: 58px; border: 0; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 30px; font-size: 12px; font-weight: 900; letter-spacing: .4px; cursor: pointer; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button.orange { color: #fff; background: var(--orange); }
.button.orange:hover { background: var(--orange-dark); }
.hero-side { align-self: end; justify-self: end; width: min(100%, 420px); }
.availability { margin-left: auto; width: max-content; padding: 12px 15px; display: flex; align-items: center; gap: 10px; background: rgba(17,19,17,.78); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.12); }
.availability > i { width: 8px; height: 8px; background: #73d85d; border-radius: 50%; box-shadow: 0 0 0 5px rgba(115,216,93,.13); }
.availability span { color: rgba(255,255,255,.6); font-size: 9px; line-height: 1.5; text-transform: uppercase; letter-spacing: 1px; }
.availability b { color: #fff; font-size: 11px; }
.hero-stats { margin-top: 130px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.hero-stats > span { padding: 22px 12px 0; border-left: 1px solid rgba(255,255,255,.2); }
.hero-stats b { display: block; font-size: 32px; letter-spacing: -1.5px; }
.hero-stats small { display: block; margin-top: 6px; color: rgba(255,255,255,.53); font-size: 9px; line-height: 1.35; text-transform: uppercase; }
.hero-corner { position: absolute; right: 22px; top: 52%; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 8px; font-weight: 800; }
.hero-corner i { width: 1px; height: 50px; background: rgba(255,255,255,.3); }
.hero-corner small { color: rgba(255,255,255,.45); }

.ticker { overflow: hidden; color: #fff; background: var(--orange); transform: rotate(-1.2deg) scale(1.02); }
.ticker div { width: max-content; display: flex; align-items: center; gap: 28px; padding: 18px 0; animation: ticker 25s linear infinite; }
.ticker span { font-size: 12px; font-weight: 900; letter-spacing: 2px; }
.ticker i { color: var(--ink); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.quick-calc { margin: 74px auto 0; width: min(1280px, calc(100% - 48px)); padding: 30px; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr) auto; align-items: end; gap: 1px; background: #d6d3cc; box-shadow: 0 18px 50px rgba(30,24,18,.08); }
.calc-title, .quick-calc label, .quick-calc > button { height: 88px; }
.calc-title { padding: 14px 24px 0 8px; background: var(--paper); }
.calc-title small { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: 1.4px; }
.calc-title h2 { margin: 10px 0 0; font-size: 22px; line-height: 1; letter-spacing: -1px; }
.quick-calc label { position: relative; padding: 15px 18px; display: block; background: #fff; }
.quick-calc label span { display: block; margin-bottom: 10px; color: #8d8f89; font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.quick-calc select, .quick-calc input { width: 100%; padding: 0 24px 0 0; background: transparent; border: 0; outline: 0; font-size: 13px; font-weight: 700; appearance: none; }
.quick-calc label:has(select)::after { content: "⌄"; position: absolute; right: 16px; bottom: 25px; color: var(--orange); }
.quick-calc label i { position: absolute; right: 18px; bottom: 23px; color: #8d8f89; font-size: 11px; font-style: normal; }
.quick-calc > button { min-width: 190px; padding: 0 22px; border: 0; color: #fff; background: var(--ink); font-size: 11px; font-weight: 900; cursor: pointer; }
.quick-calc > button span { margin-left: 20px; color: var(--orange); }

.services { padding: 145px clamp(24px, 6vw, 112px); }
.section-head { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: end; gap: 40px; }
.section-head .eyebrow { align-self: start; }
.section-head h2, .projects-head h2, .process h2, .promise h2, .final-cta h2 { font-size: clamp(45px, 5vw, 84px); line-height: .88; }
.section-head > p:last-child, .projects-head > div p { margin: 0 0 4px; color: #676a65; font-size: 14px; line-height: 1.65; }
.services-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.services-grid article { position: relative; min-height: 320px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, color .25s, transform .25s; }
.services-grid article:hover { z-index: 2; color: #fff; background: var(--ink); transform: translateY(-5px); }
.services-grid article > span { color: var(--orange); font-size: 10px; font-weight: 900; }
.services-grid svg { width: 46px; margin: 30px 0 22px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.services-grid h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.8px; }
.services-grid p { max-width: 240px; margin: 0; color: #767974; font-size: 13px; line-height: 1.55; }
.services-grid article:hover p { color: rgba(255,255,255,.56); }
.services-grid small { position: absolute; bottom: 28px; left: 28px; color: var(--orange); font-size: 10px; font-weight: 800; }
.services-grid button { position: absolute; right: 22px; bottom: 22px; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.services-grid article:hover button { color: #fff; border-color: rgba(255,255,255,.25); }

.promise { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 760px; color: #fff; background: var(--ink); }
.promise-visual { position: relative; padding: 80px 8%; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: linear-gradient(145deg, #ff6c42, #ed451e); }
.promise-visual::before { content: ""; position: absolute; width: 480px; height: 480px; left: -180px; top: 40px; border: 95px solid rgba(17,19,17,.09); border-radius: 50%; }
.promise-visual strong { position: relative; font-size: clamp(74px, 10vw, 150px); letter-spacing: -.09em; line-height: .78; white-space: nowrap; }
.promise-visual small { position: relative; margin-top: 20px; font-size: 10px; font-weight: 900; letter-spacing: 1.8px; text-transform: uppercase; }
.measure { position: absolute; top: 42px; right: 30px; bottom: 42px; display: flex; flex-direction: column; align-items: end; justify-content: space-between; font-size: 9px; color: rgba(17,19,17,.6); }
.measure i { width: 36px; height: 1px; background: rgba(17,19,17,.3); }
.promise-copy { padding: 100px clamp(38px, 7vw, 125px); }
.promise-copy h2 { max-width: 840px; }
.promise-copy > p:not(.eyebrow) { max-width: 620px; margin: 34px 0 50px; color: rgba(255,255,255,.54); font-size: 15px; line-height: 1.7; }
.promise-copy ul { margin: 0; padding: 0; list-style: none; }
.promise-copy li { padding: 22px 0; display: grid; grid-template-columns: 50px 1fr 1fr; align-items: center; gap: 16px; border-top: 1px solid rgba(255,255,255,.14); }
.promise-copy li > span { color: var(--orange); font-size: 10px; font-weight: 900; }
.promise-copy li b { font-size: 14px; }
.promise-copy li small { color: rgba(255,255,255,.46); font-size: 11px; line-height: 1.45; }

.projects { padding: 145px clamp(24px, 6vw, 112px); }
.projects-head { display: grid; grid-template-columns: .8fr 1.3fr 1fr; align-items: end; gap: 50px; }
.projects-head > div a { display: inline-block; margin-top: 24px; padding-bottom: 8px; border-bottom: 1px solid; font-size: 11px; font-weight: 900; }
.projects-head > div a span { margin-left: 14px; color: var(--orange); }
.project-grid { margin-top: 70px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; }
.project-grid article { overflow: hidden; }
.project-photo { height: 470px; background: #bbb center/cover no-repeat; transition: transform .5s ease, filter .5s; }
.photo-one { background-image: url("assets/project-1.webp"); }
.photo-two { background-image: url("assets/project-2.webp"); }
.photo-three { background-image: url("assets/project-3.webp"); }
.project-grid article:hover .project-photo { transform: scale(.985); filter: saturate(1.12); }
.project-grid article > div:last-child { position: relative; padding: 24px 0; border-bottom: 1px solid var(--line); }
.project-grid article > div:last-child > span { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: 1.2px; }
.project-grid h3 { margin: 10px 0 8px; font-size: 21px; }
.project-grid p { margin: 0; color: #7b7e78; font-size: 11px; }

.process { padding: 130px clamp(24px, 6vw, 112px); background: #dedbd4; }
.process-title { display: flex; align-items: end; justify-content: space-between; }
.process-title .eyebrow { align-self: flex-start; }
.steps { margin-top: 75px; display: grid; grid-template-columns: repeat(4, 1fr); }
.steps article { position: relative; min-height: 250px; padding: 28px; border-top: 1px solid #a9aaa5; border-right: 1px solid #bcbdb8; }
.steps article:first-child { border-left: 1px solid #bcbdb8; }
.steps article > span { display: inline-grid; place-items: center; width: 36px; height: 36px; color: #fff; background: var(--orange); border-radius: 50%; font-size: 10px; font-weight: 900; }
.steps h3 { margin: 50px 0 12px; font-size: 19px; }
.steps p { max-width: 210px; margin: 0; color: #686b66; font-size: 12px; line-height: 1.55; }
.steps small { position: absolute; bottom: 25px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }

.reviews { padding: 130px clamp(24px, 10vw, 180px); display: grid; grid-template-columns: 1fr 280px; align-items: center; gap: 80px; color: #fff; background: var(--ink); }
.review { position: relative; padding-left: 65px; }
.review > span { position: absolute; left: 0; top: -25px; color: var(--orange); font: 120px/1 Georgia,serif; }
.review blockquote { max-width: 870px; margin: 0; font-size: clamp(24px, 3vw, 46px); font-weight: 700; letter-spacing: -.035em; line-height: 1.2; }
.review p { margin: 34px 0 0; }
.review p b, .review p small { display: block; font-size: 11px; }
.review p small { margin-top: 6px; color: rgba(255,255,255,.45); }
.review-score { padding: 35px; border: 1px solid rgba(255,255,255,.15); text-align: center; }
.review-score > b { display: block; font-size: 70px; letter-spacing: -5px; }
.review-score > div { margin: 6px 0 12px; color: var(--orange); letter-spacing: 5px; }
.review-score p { color: rgba(255,255,255,.45); font-size: 10px; }
.review-score span { margin-top: 25px; display: flex; justify-content: center; gap: 8px; }
.review-score i { width: 28px; height: 3px; background: rgba(255,255,255,.2); }
.review-score i:first-child { background: var(--orange); }

.final-cta { padding: 100px clamp(24px, 6vw, 112px); display: flex; justify-content: space-between; align-items: end; gap: 40px; color: #fff; background: var(--orange); }
.final-cta em { color: var(--ink); }
.final-cta > div > p:last-child { margin: 30px 0 0; color: rgba(17,19,17,.67); font-size: 14px; }
.final-cta > button { min-width: 240px; min-height: 76px; border: 0; color: #fff; background: var(--ink); font-size: 12px; font-weight: 900; cursor: pointer; }
.final-cta > button span { margin-left: 30px; color: var(--orange); }

footer { position: relative; padding: 70px clamp(24px, 6vw, 112px) 34px; display: grid; grid-template-columns: 1.2fr .8fr 1fr auto; align-items: start; gap: 50px; color: #fff; background: #0b0c0b; }
.footer-logo { color: #fff; }
footer > div > small { color: rgba(255,255,255,.35); font-size: 8px; font-weight: 900; letter-spacing: 1.4px; }
footer > div > p { margin: 10px 0 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.7; }
.footer-phone { font-size: clamp(19px, 2vw, 28px); font-weight: 900; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.65); font-size: 10px; font-weight: 800; }
.copyright { grid-column: 1/-1; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.25); font-size: 9px; }
.mobile-bar { display: none; }

.modal { position: fixed; z-index: 100; inset: 0; padding: 20px; display: grid; place-items: center; background: rgba(5,6,5,.8); backdrop-filter: blur(9px); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-card { position: relative; width: min(100%, 540px); max-height: calc(100svh - 40px); overflow-y: auto; padding: 48px; background: var(--paper); transform: translateY(20px); transition: transform .25s; }
.modal.open .modal-card { transform: none; }
.modal-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.modal-card h2 { margin: 0; font-size: 38px; letter-spacing: -1.8px; }
.modal-card > p:not(.eyebrow) { margin: 14px 0 28px; color: #6e716b; font-size: 13px; line-height: 1.55; }
#quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
#quote-form label { position: relative; color: #7d807a; font-size: 9px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
#quote-form input, #quote-form select { width: 100%; height: 54px; margin-top: 7px; padding: 0 14px; border: 1px solid #d3d1cb; outline: 0; color: var(--ink); background: #fff; font-size: 16px; appearance: none; }
#quote-form input:focus, #quote-form select:focus { border-color: var(--orange); }
#quote-form label span { position: absolute; right: 14px; bottom: 19px; }
#quote-form .button { grid-column: 1/-1; margin-top: 7px; }
.result { padding-top: 16px; }
.result small { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: 1.2px; }
.result strong { display: block; margin: 14px 0; font-size: 43px; letter-spacing: -2px; }
.result p { color: #6e716b; font-size: 13px; line-height: 1.55; }
.result .button { width: 100%; margin-top: 12px; }
.result-back { width: 100%; margin-top: 12px; padding: 12px; border: 0; background: transparent; text-decoration: underline; cursor: pointer; }
body.modal-open { overflow: hidden; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .header { height: 76px; grid-template-columns: 1fr auto; }
  .header-phone { display: none; }
  .menu-button { display: block; position: relative; z-index: 2; }
  .menu-button i { display: block; width: 25px; height: 2px; margin: 6px 0; background: #fff; transition: transform .25s; }
  .menu-button[aria-expanded="true"] i:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav { position: fixed; inset: 0; padding: 120px 28px 100px; display: flex; flex-direction: column; align-items: flex-start; gap: 28px; color: #fff; background: rgba(17,19,17,.98); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
  .nav.open { opacity: 1; visibility: visible; }
  .nav a { font-size: 30px; letter-spacing: -1px; text-transform: none; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-side { width: 100%; margin-top: 60px; }
  .availability { display: none; }
  .hero-stats { margin-top: 0; }
  .quick-calc { grid-template-columns: 1fr 1fr; }
  .calc-title { grid-column: 1/-1; }
  .quick-calc > button { min-width: 0; }
  .section-head, .projects-head { grid-template-columns: 1fr 2fr; }
  .section-head > p:last-child, .projects-head > div { grid-column: 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .promise { grid-template-columns: 1fr; }
  .promise-visual { min-height: 380px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-main { grid-column: 1/-1; }
  .project-main .project-photo { height: 540px; }
  .process-title { display: block; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .review-score { max-width: 300px; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  html, body { max-width: 100%; overflow-x: clip; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  main { overflow: hidden; }
  .header, .header.is-scrolled {
    position: fixed;
    height: 68px;
    padding: 0 max(18px, env(safe-area-inset-right)) 0 max(18px, env(safe-area-inset-left));
    background: linear-gradient(180deg, rgba(11,12,11,.94), rgba(11,12,11,.76));
    backdrop-filter: blur(10px);
  }
  .logo svg { width: 32px; }
  .logo > span { font-size: 18px; }
  .logo small { margin-top: 5px; font-size: 6px; }
  .nav {
    padding: calc(108px + env(safe-area-inset-top)) 22px calc(90px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .nav a { font-size: clamp(27px, 9vw, 36px); }
  .hero {
    min-height: 0;
    padding: clamp(350px, 104vw, 430px) 18px 32px;
    align-items: end;
    background-color: #090a09;
    background-image: url("assets/hero-mobile.webp");
    background-position: center top;
    background-size: 100% auto;
  }
  .hero::before {
    background: linear-gradient(0deg, #090a09 0%, #090a09 53%, rgba(9,10,9,.84) 63%, rgba(9,10,9,.08) 82%, rgba(9,10,9,.3) 100%);
  }
  .hero h1 { font-size: clamp(43px, 14vw, 61px); line-height: .86; letter-spacing: -.06em; }
  .eyebrow { margin-bottom: 20px; font-size: 8px; letter-spacing: 1.25px; }
  .eyebrow i { width: 25px; }
  .hero-text { max-width: 390px; margin: 24px 0; font-size: 14px; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .hero-actions .button { width: 100%; min-height: 60px; }
  .hero-actions > a { align-self: center; padding: 12px 0; }
  .hero-side { margin-top: 30px; }
  .hero-stats > span { padding: 15px 8px 0; }
  .hero-stats b { font-size: 25px; }
  .hero-stats small { font-size: 8px; }
  .hero-corner { display: none; }
  .ticker div { padding: 14px 0; gap: 20px; }
  .ticker span { font-size: 9px; }
  .quick-calc { width: calc(100% - 28px); margin-top: 50px; padding: 14px; grid-template-columns: 1fr; box-shadow: none; }
  .calc-title, .quick-calc label, .quick-calc > button { height: auto; min-height: 72px; }
  .calc-title { grid-column: auto; padding: 8px 7px 20px; }
  .calc-title h2 { font-size: 21px; }
  .quick-calc select, .quick-calc input { font-size: 16px; }
  .quick-calc > button { min-height: 60px; touch-action: manipulation; }
  .services, .projects { padding: 100px 18px; }
  .section-head, .projects-head { display: block; }
  .section-head h2, .projects-head h2, .process h2, .promise h2, .final-cta h2 { font-size: clamp(42px, 13vw, 59px); }
  .section-head > p:last-child, .projects-head > div p { margin-top: 26px; font-size: 13px; }
  .services-grid { margin-top: 45px; grid-template-columns: 1fr; }
  .services-grid article { min-height: 248px; padding: 24px; }
  .services-grid article:hover { transform: none; }
  .services-grid svg { margin: 22px 0 16px; }
  .services-grid small { left: 24px; bottom: 24px; }
  .promise-visual { min-height: 310px; padding: 50px 24px; }
  .promise-visual strong { font-size: 88px; }
  .promise-copy { padding: 80px 18px; }
  .promise-copy > p:not(.eyebrow) { margin: 26px 0 38px; font-size: 13px; }
  .promise-copy li { grid-template-columns: 35px 1fr; gap: 9px; }
  .promise-copy li small { grid-column: 2; }
  .project-grid { margin-top: 48px; display: block; }
  .project-grid article { margin-bottom: 34px; }
  .project-photo, .project-main .project-photo { height: min(105vw, 410px); }
  .process { padding: 90px 18px; }
  .steps { margin-top: 50px; grid-template-columns: 1fr; }
  .steps article { min-height: 205px; border-left: 1px solid #bcbdb8; }
  .steps h3 { margin-top: 36px; }
  .reviews { padding: 90px 18px; gap: 45px; }
  .review { padding-left: 36px; }
  .review > span { font-size: 80px; }
  .review blockquote { font-size: 25px; }
  .review-score { max-width: none; }
  .final-cta { padding: 80px 18px; display: block; }
  .final-cta > button { width: 100%; min-height: 64px; margin-top: 40px; }
  footer { padding: 65px 18px 35px; grid-template-columns: 1fr; gap: 34px; }
  .footer-phone { font-size: 25px; }
  .copyright { margin-top: 10px; }
  .mobile-bar { position: fixed; z-index: 50; bottom: 0; left: 0; right: 0; height: calc(64px + env(safe-area-inset-bottom)); padding: 7px max(7px, env(safe-area-inset-right)) env(safe-area-inset-bottom) max(7px, env(safe-area-inset-left)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 6px; background: #fff; box-shadow: 0 -8px 30px rgba(0,0,0,.13); }
  .mobile-bar a, .mobile-bar button { display: grid; place-items: center; border: 0; font-size: 11px; font-weight: 900; }
  .mobile-bar a { color: var(--ink); background: #e6e3dc; }
  .mobile-bar button { color: #fff; background: var(--orange); }
  .modal { padding: 8px; align-items: end; }
  .modal-card { width: 100%; max-height: calc(100svh - 8px); padding: 42px 20px calc(22px + env(safe-area-inset-bottom)); border-radius: 18px 18px 0 0; }
  .modal-card h2 { font-size: 32px; }
  #quote-form { grid-template-columns: 1fr; }
  #quote-form .button { grid-column: auto; }
  .result strong { font-size: 36px; }
}

@media (max-width: 380px) {
  .hero { padding-top: 345px; }
  .hero h1 { font-size: 43px; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-stats > span { padding-inline: 5px; }
  .hero-stats b { font-size: 22px; }
  .section-head h2, .projects-head h2, .process h2, .promise h2, .final-cta h2 { font-size: 41px; }
  .promise-visual strong { font-size: 76px; }
  .review blockquote { font-size: 22px; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 640px) and (orientation: landscape) and (max-height: 500px) {
  .nav { padding-top: 78px; flex-direction: row; flex-wrap: wrap; align-content: center; }
  .nav a { width: calc(50% - 20px); font-size: 24px; }
  .modal { align-items: center; }
  .modal-card { border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
