:root {
  --forest: #073b23;
  --forest-deep: #082818;
  --charcoal: #202020;
  --paper: #f5f2e8;
  --parchment: #e9e1c8;
  --gum: #8ea57b;
  --paper-muted: #d8d1bf;
  --rule-light: rgba(32, 32, 32, 0.18);
  --rule-dark: rgba(245, 242, 232, 0.18);
  --text-on-dark: #f5f2e8;
  --text-on-light: #202020;
  --container: 1440px;
  --gutter: 48px;
  --hero: clamp(64px, 5.25vw, 92px);
  --h2-large: clamp(48px, 4vw, 68px);
  --h2: clamp(42px, 3.3vw, 58px);
  --h3: clamp(28px, 2.2vw, 38px);
  --body-lg: clamp(18px, 1.35vw, 21px);
  --body: 17px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--text-on-light);
  font: 400 var(--body)/1.7 "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, blockquote, dl, dd { margin-top: 0; }
h1, h2, h3 {
  font-family: "Literata", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}
h2 { max-width: 20ch; font-size: var(--h2); }
h3 { font-size: var(--h3); }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--gum); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--forest);
}
.skip-link:focus { transform: none; }
.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(96px, 8vw, 136px); }
.section--dark { background: var(--forest-deep); color: var(--text-on-dark); }
.eyebrow {
  margin-bottom: 26px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}
.section--dark .eyebrow, .section-intro--dark .eyebrow { color: var(--gum); }
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 2px;
  padding: 15px 28px;
  background: var(--forest);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), background-color 240ms var(--ease), color 240ms var(--ease);
}
.button:hover { transform: translateY(-2px); background: var(--forest-deep); }
.button:active { transform: translateY(0) scale(0.985); }
.button--small { min-height: 46px; padding: 12px 20px; font-size: 12px; }
.button--outline { background: transparent; color: var(--forest); }
.button--outline:hover { background: var(--forest); color: var(--paper); }
.button--paper { border-color: var(--paper); background: var(--paper); color: var(--forest-deep); }
.button--paper:hover { background: var(--parchment); }
.button--outline-light { border-color: rgba(245, 242, 232, 0.65); background: transparent; color: var(--paper); }
.button--outline-light:hover { background: var(--paper); color: var(--forest-deep); }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }
.button-row--center { justify-content: center; }
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { transition: transform 240ms var(--ease); }
.text-link:hover span { transform: translateX(4px); }
.back-to-top {
  position: fixed;
  z-index: 20;
  bottom: 24px;
  left: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(245, 242, 232, 0.72);
  border-radius: 0;
  transform: translateY(8px);
  visibility: hidden;
  opacity: 0;
  background: var(--forest);
  color: var(--paper);
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.back-to-top.is-visible { transform: translateY(0); visibility: visible; opacity: 1; pointer-events: auto; }
.back-to-top:hover { border-color: var(--paper); }
.back-to-top:active { transform: translateY(2px); }
.sticky-call { display: none; }

/* Header */
.site-header { position: relative; z-index: 30; background: var(--paper); }
.site-header__inner { display: flex; min-height: 94px; align-items: center; gap: 40px; }
.brand { display: block; width: clamp(205px, 17vw, 260px); flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: clamp(24px, 3vw, 46px); }
.site-nav__list { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 34px); }
.site-nav__list > li > a, .services-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.site-nav__list > li > a { position: relative; }
.site-nav__list > li > a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--forest);
  content: "";
  transition: transform 240ms var(--ease);
}
.site-nav__list > li > a:hover::after, .site-nav__list > li > a[aria-current="page"]::after { transform: scaleX(1); }
.services-toggle { cursor: pointer; gap: 7px; }
.services-toggle span { font-size: 18px; transition: transform 240ms var(--ease); }
.services-toggle[aria-expanded="true"] span { transform: rotate(180deg); }
.nav-services { position: relative; }
.services-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -22px;
  width: 265px;
  border: 1px solid var(--rule-light);
  transform: translateY(-8px);
  visibility: hidden;
  opacity: 0;
  background: var(--paper);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
}
.services-menu.is-open { transform: none; visibility: visible; opacity: 1; }
.services-menu li + li { border-top: 1px solid var(--rule-light); }
.services-menu a { display: flex; min-height: 48px; align-items: center; padding: 10px 20px; font-size: 13px; font-weight: 600; text-decoration: none; }
.services-menu a:hover, .services-menu a:focus-visible { background: var(--parchment); }
.menu-toggle { display: none; }

/* Hero */
.hero { position: relative; min-height: 810px; overflow: hidden; background: var(--paper); }
.hero__inner { position: relative; z-index: 2; padding-top: clamp(46px, 4.2vw, 62px); padding-bottom: 66px; }
.hero__photo {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 59%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 10%, #000 36%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 10%, #000 36%, #000 100%);
}
.hero__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,242,232,0.16), transparent 42%), rgba(7,59,35,0.05);
  content: "";
  pointer-events: none;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 56% 38%; filter: saturate(0.88) contrast(0.96); }
.hero__mobile-stage { display: contents; }
.hero__mobile-break { display: none; }
.hero__location { margin-bottom: 24px; }
.hero h1 { max-width: none; margin-bottom: 28px; color: var(--forest); font-size: var(--hero); }
.hero h1 span { display: block; white-space: nowrap; }
.hero__body { max-width: 650px; margin-bottom: 30px; font-size: var(--body-lg); line-height: 1.65; }
.evidence { display: grid; max-width: 720px; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0 0 30px; border-block: 1px solid var(--rule-light); }
.evidence > div { min-height: 76px; padding: 16px 14px; }
.evidence > div:first-child { padding-left: 0; }
.evidence > div + div { border-left: 1px solid var(--rule-light); }
.evidence dt, .evidence dd { font-size: 12px; line-height: 1.45; text-transform: uppercase; }
.evidence dt { font-weight: 700; }
.evidence dd { margin-left: 0; }
.hero__actions .button { min-width: 230px; }
.hero__closer { max-width: 620px; margin: 28px 0 0; padding-left: 34px; font-size: 15px; line-height: 1.65; }
.hero__closer::before { display: inline-block; width: 21px; height: 1px; margin: 0 13px 5px -34px; background: var(--forest); content: ""; }
.hero__mobile-photo { display: none; }

/* Proof */
.proof-band { border-block: 1px solid var(--rule-light); background: var(--paper); }
.proof-band__grid { display: grid; grid-template-columns: 0.9fr 1fr 1.55fr 0.9fr; padding-block: 28px; }
.proof-band__rail { display: contents; }
.proof-band__grid > .proof-rating, .proof-band__rail > * { min-width: 0; padding-inline: 26px; }
.proof-band__grid > .proof-rating { padding-left: 0; }
.proof-band__rail > :last-child { padding-right: 0; }
.proof-band__rail > * { border-left: 1px solid var(--rule-light); }
.proof-rating { display: flex; flex-direction: column; justify-content: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.stars { color: var(--gum); font-size: 15px; letter-spacing: 0.12em; }
.proof-band blockquote { margin-bottom: 0; }
.proof-band blockquote p { margin-bottom: 8px; font-family: "Literata", serif; font-size: 15px; line-height: 1.45; }
.proof-band cite, .review cite { color: var(--forest); font-size: 12px; font-style: normal; font-weight: 700; letter-spacing: 0.05em; }

/* Editorial sections */
.editorial-split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(40px, 1fr) minmax(0, 5fr); align-items: start; }
.editorial-split > :first-child { grid-column: 1; }
.editorial-split > :last-child { grid-column: 3; }
.problem .editorial-split { display: flex; max-width: 1280px; flex-direction: column; align-items: center; text-align: center; }
.problem .eyebrow { text-align: center; }
.problem .text-mask { max-width: 100%; }
.problem h2 { max-width: none; margin-bottom: 0; font-size: clamp(44px, 3.65vw, 62px); white-space: nowrap; }
.problem .section-copy { max-width: 72ch; margin: 32px auto 0; text-align: center; }
.section-copy { max-width: 53ch; margin: 58px 0 0; font-size: var(--body-lg); line-height: 1.85; }
.section-intro { max-width: 980px; margin: 0 auto clamp(64px, 6vw, 92px); text-align: center; }
.section-intro h2 { max-width: 19ch; margin: 0 auto 28px; }
.section-intro > p:last-child { max-width: 65ch; margin: 0 auto; font-size: var(--body-lg); }
.section-intro--compact { margin-bottom: 62px; }
.section-intro--dark h2 { color: var(--paper); }

/* Finish */
.finish-standard { display: grid; max-width: 1220px; grid-template-columns: 1fr 1fr; gap: 0 76px; margin-inline: auto; }
.finish-standard li { display: grid; min-height: 126px; grid-template-columns: 116px 1fr; align-items: center; border-top: 1px solid var(--rule-light); }
.finish-standard li:last-child { border-bottom: 1px solid var(--rule-light); }
.finish-number { color: var(--forest); font: 400 clamp(46px, 4vw, 66px)/1 "Literata", serif; letter-spacing: -0.04em; }
.finish-standard li > span:last-child { max-width: 30ch; font-size: 17px; }
.finish__closing { margin-top: 72px; text-align: center; }
.finish__closing p { margin-bottom: 8px; color: var(--forest); font: 500 clamp(28px, 2.4vw, 38px)/1.25 "Literata", serif; letter-spacing: -0.025em; }
.finish__closing span { font-size: 16px; }

/* Recent work marquees */
.recent-work { overflow: hidden; padding-bottom: 104px; }
.recent-work .section-intro { margin-bottom: 58px; }
.marquee { width: 100%; overflow: hidden; }
.marquee + .marquee { margin-top: 22px; }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group { display: flex; flex: none; }
.marquee[data-ready="true"][data-direction="left"] .marquee__track { animation: marquee-left 110s linear infinite; }
.marquee[data-ready="true"][data-direction="right"] .marquee__track { animation: marquee-right 90s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track, .marquee.is-paused .marquee__track { animation-play-state: paused; }
@keyframes marquee-left { to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.review { width: 390px; min-height: 252px; margin: 0; padding: 28px 34px; border-block: 1px solid var(--rule-dark); border-right: 1px solid var(--rule-dark); white-space: normal; }
.review p { display: -webkit-box; margin: 14px 0 20px; overflow: hidden; color: var(--paper); font-size: 15px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 6; }
.review cite { color: var(--gum); }
.photo-strip { gap: 12px; padding-right: 12px; }
.photo-strip figure { height: 275px; flex: none; margin: 0; overflow: hidden; background: rgba(245,242,232,0.08); }
.photo-strip__portrait { width: 210px; }
.photo-strip__landscape { width: 410px; }
.photo-strip__wide { width: 330px; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.86) contrast(0.98); }
.photo-strip__wide img { object-position: 50% 32%; }
.recent-work__cta { margin-top: 64px; text-align: center; }
.recent-work__cta .button { min-width: 260px; }
.recent-work__cta p { margin: 24px 0 0; color: var(--paper-muted); font-size: 15px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 72px 34px; }
.service { display: grid; grid-template-rows: auto auto 1fr auto; align-content: start; }
.service__media { display: block; height: clamp(240px, 23vw, 330px); overflow: hidden; background: var(--parchment); }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.service--stump .service__media img { object-position: 62% 51%; }
.service--firewood .service__media img { object-position: 61% 59%; }
.service:hover .service__media img { transform: scale(1.025); }
.service:nth-child(1) .service__media img { object-position: 50% 46%; }
.service:nth-child(2) .service__media img { object-position: 50% 28%; }
.service:nth-child(5) .service__media img { object-position: 50% 60%; }
.service__media--type { display: flex; align-items: flex-end; padding: 28px; background: var(--parchment); }
.service__media--type span { color: var(--forest); font: 500 clamp(33px, 3vw, 48px)/1.02 "Literata", serif; letter-spacing: -0.04em; }
.service h3 { margin: 24px 0 14px; color: var(--forest); font-size: clamp(26px, 2vw, 34px); }
.service p { max-width: 41ch; margin-bottom: 18px; line-height: 1.65; }
.services__closing { max-width: 820px; margin: 78px auto 0; padding-top: 34px; border-top: 1px solid var(--rule-light); color: var(--forest); font: 500 clamp(23px, 2vw, 31px)/1.4 "Literata", serif; text-align: center; }

/* Projects */
.projects { padding-top: 40px; }
.projects .section-intro { margin-bottom: 64px; }
.project-journal { display: grid; width: min(100%, 1280px); gap: 88px; margin-inline: auto; }
.project { display: grid; min-height: 520px; grid-template-columns: minmax(0, 58fr) minmax(0, 42fr); align-items: stretch; overflow: hidden; border: 1px solid var(--rule-light); background: rgba(233,225,200,0.36); }
.project--reverse { grid-template-columns: minmax(0, 42fr) minmax(0, 58fr); }
.project--reverse .project__media { grid-column: 2; }
.project--reverse .project__copy { grid-column: 1; grid-row: 1; }
.project__media { display: block; height: 520px; overflow: hidden; }
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.project:hover .project__media img { transform: scale(1.018); }
.project:nth-child(1) .project__media img { object-position: 54% 31%; }
.project:nth-child(2) .project__media img { object-position: 51% 47%; }
.project:nth-child(3) .project__media img { object-position: 50% 50%; }
.project__copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(42px, 4.5vw, 68px); }
.project__copy h3 { max-width: 12ch; margin-bottom: 22px; color: var(--forest); font-size: clamp(34px, 3vw, 48px); }
.project__copy p { max-width: 34ch; margin-bottom: 22px; font-size: var(--body-lg); }
.projects__closing { width: min(100%, 1280px); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--rule-light); color: var(--forest); font: 500 26px/1.3 "Literata", serif; text-align: center; }

/* Offer */
.offer { padding-block: clamp(76px, 7vw, 104px); }
.offer .eyebrow { text-align: center; }
.offer__grid { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.offer h2 { max-width: none; margin: 0; font-size: clamp(20px, 6.15vw, 58px); white-space: nowrap; }
.offer__grid > p { max-width: 64ch; margin: 0; font-size: var(--body-lg); line-height: 1.8; text-align: center; }
.offer__closing { width: min(100%, 980px); margin: 48px auto 0; padding-top: 28px; border-top: 1px solid var(--rule-dark); font: 500 clamp(23px, 2.1vw, 32px)/1.35 "Literata", serif; text-align: center; }

/* Checklist */
.checklist__grid { display: grid; max-width: 1120px; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr); align-items: center; gap: 110px; margin-inline: auto; }
.checklist-object { position: relative; max-width: 470px; padding: 0 20px 24px 0; }
.checklist-object__back { position: absolute; z-index: 0; inset: 28px 0 0 42px; transform: rotate(3deg); background: #b6c0a7; }
.checklist-object__sheet { position: relative; z-index: 1; display: flex; min-height: 560px; flex-direction: column; align-items: center; border: 1px solid rgba(7,59,35,0.65); padding: 38px 36px; background-color: var(--paper); background-image: radial-gradient(rgba(7,59,35,0.04) 0.7px, transparent 0.7px); background-size: 7px 7px; box-shadow: 0 24px 42px rgba(31,48,35,0.15); text-align: center; }
.checklist-object__sheet img { width: 150px; height: 112px; object-fit: contain; }
.checklist-object__sheet strong { margin-top: 54px; color: var(--forest); font: 500 132px/0.9 "Literata", serif; }
.checklist-object__sheet > span { margin-top: 18px; color: var(--forest); font: 500 39px/1 "Literata", serif; letter-spacing: -0.025em; text-transform: uppercase; }
.checklist-object__sheet small { max-width: 22ch; margin-top: 20px; color: var(--forest); font: 600 17px/1.5 "Literata", serif; letter-spacing: 0.04em; text-transform: uppercase; }

/* Forms */
.form { display: grid; gap: 28px; }
.field { display: grid; gap: 10px; }
.field label, .field__label span { font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.field__label { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.field__label span { color: var(--gum); font-size: 11px; }
.field input:not([type="file"]), .field textarea {
  width: 100%;
  border: 1px solid rgba(32,32,32,0.45);
  border-radius: 0;
  padding: 13px 16px;
  background: transparent;
  color: inherit;
  box-shadow: none;
}
.field input:not([type="file"]) { min-height: 56px; }
.field textarea { min-height: 136px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gum); outline: 2px solid var(--gum); outline-offset: 2px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: currentColor; outline: 2px solid currentColor; outline-offset: 2px; }
.form > .button { width: 100%; }
.form--light { padding-left: 58px; border-left: 1px solid var(--rule-light); }
.form--light > p { margin: -10px 0 0; color: rgba(32,32,32,0.7); }
.form-status { min-height: 0; margin: 0 !important; font-size: 13px; }

/* Permits */
.permits { background: var(--parchment); }
.permits h2 { max-width: 15ch; color: var(--forest); }
.permits-title-line { display: inline; }
.permits .section-copy { margin-top: 58px; }
.locality-strip { display: grid; grid-template-columns: 1fr 1fr; margin-top: 76px; border-block: 1px solid var(--rule-light); }
.locality-strip span { padding: 24px 28px; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.locality-strip span + span { border-left: 1px solid var(--rule-light); }
.locality-strip strong { margin-right: 8px; color: var(--forest); font-size: 18px; letter-spacing: 0.12em; }
.permits__closing { margin: 44px 0 0; color: var(--forest); font: 500 clamp(27px, 2.5vw, 39px)/1.35 "Literata", serif; text-align: center; }

/* Quote */
.quote .section-intro { margin-bottom: 60px; }
.quote .section-intro h2 { max-width: 20ch; }
.quote-form { max-width: 980px; margin-inline: auto; }
.quote-form__top { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form--dark input:not([type="file"]), .form--dark textarea { border-color: rgba(245,242,232,0.4); color: var(--paper); }
.file-control { display: flex; min-height: 116px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(245,242,232,0.4); cursor: pointer; text-align: center; }
.field--upload:has(input:focus-visible) .file-control { outline: 2px solid var(--gum); outline-offset: 4px; }
.file-control strong { font-size: 16px; font-weight: 600; letter-spacing: 0; text-transform: none; }
.file-control span { margin-top: 6px; color: var(--paper-muted); font-size: 13px; letter-spacing: 0; text-transform: none; }
.field--upload input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.quote-form__actions { display: grid; grid-template-columns: 1fr 1fr; }
.quote-form__area { margin: -2px 0 0; padding-top: 22px; border-top: 1px solid var(--rule-dark); color: var(--paper-muted); text-align: center; }

/* Warning and signoff */
.warning { padding-bottom: 88px; }
.warning .eyebrow { text-align: center; }
.warning__grid { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.warning h2 { max-width: none; margin: 0; color: var(--forest); font-size: var(--h2-large); text-align: center; }
.warning h2 span, .warning h2 small { display: block; white-space: nowrap; }
.warning h2 small { margin-top: 4px; font: inherit; }
.warning__grid > p { max-width: 70ch; margin: 0 auto; font-size: var(--body-lg); line-height: 1.85; text-align: center; }
.warning__closing { margin: 68px 0 0; padding-top: 34px; border-top: 1px solid var(--rule-light); color: var(--forest); font: 500 clamp(25px, 2.2vw, 35px)/1.4 "Literata", serif; text-align: center; }
.signoff { padding-block: 58px 72px; background: var(--paper); }
.signoff__grid { display: grid; max-width: 1050px; grid-template-columns: 1fr 1fr; }
.signoff__grid > div { padding-inline: 54px; }
.signoff__grid > div + div { border-left: 1px solid var(--forest); }
.signoff .eyebrow { margin-bottom: 18px; }
.signoff p:last-child { margin-bottom: 0; line-height: 1.75; }

/* Footer */
.site-footer { padding: 66px 0 26px; background: var(--forest-deep); color: var(--paper); }
.site-footer__grid { display: grid; grid-template-columns: 1.25fr 1fr 0.85fr 0.85fr 0.75fr; gap: clamp(28px, 4vw, 64px); }
.site-footer__brand { display: block; width: min(100%, 190px); align-self: start; }
.site-footer__brand img { width: 100%; height: auto; }
.site-footer h2 { margin-bottom: 18px; color: var(--gum); font: 700 12px/1.4 "Manrope", sans-serif; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer li, .site-footer__contact a { margin-bottom: 8px; color: var(--paper-muted); font-size: 13px; }
.site-footer a { text-decoration: none; }
.site-footer nav a, .site-footer__contact a { display: inline-flex; min-height: 44px; align-items: center; }
.site-footer nav li:has(a), .site-footer__contact a { margin-bottom: 0; }
.site-footer a:hover { color: var(--paper); }
.site-footer__contact { display: flex; flex-direction: column; }
.site-footer__legal { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--rule-dark); color: var(--paper-muted); font-size: 11px; }
.site-footer__meta { display: grid; gap: 3px; }
.site-footer__legal p { margin-bottom: 0; }
.site-footer__meta a { color: inherit; text-decoration: none; }
.site-footer__meta a:hover, .site-footer__meta a:focus-visible { color: var(--paper); }
.site-footer__legal nav { display: flex; flex-wrap: wrap; gap: 20px; }

@media (max-width: 1180px) {
  :root { --gutter: 32px; }
  .site-header__inner { gap: 22px; }
  .site-nav { gap: 22px; }
  .site-nav__list { gap: 17px; }
  .brand { width: 190px; }
  .hero { min-height: 760px; }
  .hero__photo { width: 54%; opacity: 0.82; }
  .hero h1 { font-size: clamp(58px, 6vw, 70px); }
  .hero__body, .evidence { max-width: 620px; }
  .proof-band__grid > .proof-rating, .proof-band__rail > * { padding-inline: 18px; }
  .proof-band__grid > .proof-rating { padding-left: 0; }
  .proof-band__rail > :last-child { padding-right: 0; }
  .checklist__grid { gap: 60px; }
  .form--light { padding-left: 42px; }
  .site-footer__grid { grid-template-columns: 1.25fr 1fr 1fr 1fr; }
  .site-footer__contact { grid-column: 2; }
}

@media (max-width: 1023px) {
  .site-header__inner { min-height: 82px; }
  .menu-toggle { display: inline-flex; min-width: 76px; min-height: 48px; align-items: center; justify-content: flex-end; gap: 10px; margin-left: auto; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle__label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
  .menu-toggle__lines { display: grid; width: 22px; gap: 6px; }
  .menu-toggle__lines i { display: block; height: 1px; background: var(--forest); transition: transform 240ms var(--ease); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 40; inset: 82px 0 0; display: block; overflow-y: auto; transform: translateX(100%); visibility: hidden; padding: 24px var(--gutter) 50px; background: var(--paper); transition: transform 380ms var(--ease), visibility 380ms; }
  .site-nav.is-open { transform: none; visibility: visible; }
  .site-nav__list { display: block; }
  .site-nav__list > li { border-bottom: 1px solid var(--rule-light); }
  .site-nav__list > li > a, .services-toggle { width: 100%; min-height: 58px; justify-content: space-between; font-size: 16px; }
  .site-nav__list > li > a::after { display: none; }
  .services-menu { position: static; width: 100%; max-height: 0; border: 0; transform: none; overflow: hidden; visibility: visible; opacity: 1; transition: max-height 380ms var(--ease); }
  .services-menu.is-open { max-height: 340px; }
  .services-menu li { border-top: 1px solid var(--rule-light); border-bottom: 0; }
  .services-menu a { min-height: 50px; padding-left: 18px; }
  .site-nav__call { width: 100%; margin-top: 24px; }
  .hero { min-height: 730px; }
  .hero__photo { width: 66%; opacity: 0.48; }
  .hero__inner { padding-top: 42px; }
  .hero h1 { font-size: clamp(55px, 6.6vw, 68px); }
  .editorial-split { grid-template-columns: 1fr 54px 1fr; }
  .problem h2 { font-size: 46px; }
  .section-copy { margin-top: 48px; font-size: 17px; }
  .finish-standard { gap: 0 40px; }
  .finish-standard li { grid-template-columns: 86px 1fr; }
  .services-grid { gap: 62px 24px; }
  .service__media { height: 250px; }
  .project { grid-template-columns: 1.5fr 0.8fr; gap: 44px; }
  .project--reverse { grid-template-columns: 0.8fr 1.5fr; }
  .project__media { height: 480px; }
  .offer__grid, .warning__grid { gap: 54px; }
  .checklist-object__sheet { min-height: 500px; }
  .checklist-object__sheet strong { font-size: 110px; }
}

@media (max-width: 1100px) {
  .projects .section-intro { margin-bottom: 56px; }
  .project-journal { max-width: 760px; gap: 72px; }
  .project, .project--reverse { display: flex; min-height: 0; flex-direction: column; align-items: stretch; gap: 0; }
  .project__media, .project:nth-child(3) .project__media { width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .project__copy { padding: 44px 46px 48px; }
  .projects__closing { max-width: 760px; margin-top: 44px; }
}

@media (max-width: 900px) {
  .problem h2 { max-width: 16ch; white-space: normal; }
  .warning h2 span, .warning h2 small { white-space: normal; }
}

@media (max-width: 820px) {
  :root {
    --gutter: 20px;
    --hero: clamp(40px, 10vw, 52px);
    --h2-large: clamp(36px, 10vw, 47px);
    --h2: clamp(34px, 9vw, 45px);
    --h3: 28px;
    --body: 16px;
  }
  body { line-height: 1.65; }
  .section { padding-block: 72px; }
  .eyebrow { margin-bottom: 18px; font-size: 12px; }
  .brand { width: 185px; }
  .site-header__inner { min-height: 76px; }
  .site-nav { inset: 76px 0 0; }
  .button-row { display: grid; grid-template-columns: 1fr; width: 100%; }
  .button { width: 100%; min-height: 54px; }

  .hero { min-height: auto; overflow: visible; }
  .hero__inner { display: flex; flex-direction: column; padding-top: 0; padding-bottom: 38px; }
  .hero__photo { display: none; }
  .hero__mobile-stage { position: relative; display: block; order: 1; height: clamp(500px, 136vw, 560px); margin-inline: calc(var(--gutter) * -1); overflow: hidden; padding: 36px var(--gutter) 0; }
  .hero__mobile-stage::after { position: absolute; z-index: 1; inset: 0 0 auto; height: 74%; background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 40%, rgba(245,242,232,0.96) 48%, rgba(245,242,232,0.72) 57%, rgba(245,242,232,0.36) 67%, rgba(245,242,232,0) 82%); content: ""; pointer-events: none; }
  .hero h1 { position: relative; z-index: 2; width: 100%; min-width: 0; margin: 0; font-size: clamp(37px, 9.7vw, 43px); line-height: 1.01; overflow-wrap: normal; }
  .hero h1 span { display: block; white-space: nowrap; }
  .hero h1 span::after { content: none; }
  .hero__mobile-break { display: block; }
  .hero__location { position: relative; z-index: 2; margin-bottom: 18px; }
  .hero__mobile-photo { position: absolute; z-index: 0; inset: 0; display: block; background-color: var(--paper); background-image: url("Images/imgi_35_618051821_17847546789634121_54303019835316815_n.webp"); background-position: center 45px; background-repeat: no-repeat; background-size: 100% auto; }
  .hero__body { position: relative; z-index: 3; order: 4; margin: -42px 0 20px; padding-top: 28px; background: var(--paper); box-shadow: calc(var(--gutter) * -1) 0 var(--paper), var(--gutter) 0 var(--paper); font-size: 16px; line-height: 1.68; }
  .evidence { order: 5; grid-template-columns: repeat(6, 1fr); width: 100%; margin-bottom: 20px; }
  .evidence > div { min-height: 56px; grid-column: span 2; padding: 10px 8px; }
  .evidence > div:first-child { padding-left: 8px; }
  .evidence > div:nth-child(4), .evidence > div:nth-child(5) { grid-column: span 3; border-top: 1px solid var(--rule-light); }
  .evidence > div:nth-child(4) { border-left: 0; }
  .evidence dt, .evidence dd { font-size: 10px; }
  .hero__actions { order: 6; gap: 10px; }
  .hero__closer { order: 7; margin-top: 18px; font-size: 14px; }
  .proof-band { overflow: hidden; }
  .proof-band__grid { display: block; padding-block: 14px 16px; }
  .proof-band__grid > .proof-rating { padding: 0 0 13px; }
  .proof-rating { align-items: flex-start; gap: 3px; }
  .proof-band__rail { display: flex; width: calc(100% + var(--gutter)); margin-right: calc(var(--gutter) * -1); overflow-x: auto; border-top: 1px solid var(--rule-light); scroll-snap-type: x mandatory; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
  .proof-band__rail:focus-visible { outline: 2px solid var(--gum); outline-offset: 3px; }
  .proof-band__rail > blockquote { display: flex; min-height: 142px; flex: 0 0 86%; flex-direction: column; justify-content: center; scroll-snap-align: start; border-left: 0; border-right: 1px solid var(--rule-light); padding: 18px 22px; }
  .proof-band__rail > blockquote:first-child { padding-left: 0; }
  .proof-band blockquote p { margin-bottom: 7px; font-size: 15px; line-height: 1.45; }

  .editorial-split { display: block; }
  .problem h2 { margin-inline: auto; font-size: var(--h2); }
  .problem .section-copy { margin-top: 26px; text-align: center; }
  .section-copy { margin-top: 30px; font-size: 16px; line-height: 1.75; }
  .section-intro { margin-bottom: 52px; text-align: left; }
  .section-intro h2 { margin-inline: 0; }
  .section-intro > p:last-child { margin-inline: 0; font-size: 16px; }
  .finish .section-intro, .recent-work .section-intro, .services .section-intro, .projects .section-intro, .checklist .section-intro, .quote .section-intro { text-align: center; }
  .finish .section-intro h2, .recent-work .section-intro h2, .services .section-intro h2, .projects .section-intro h2, .checklist .section-intro h2, .quote .section-intro h2 { margin-inline: auto; }
  .finish .section-intro > p:last-child, .recent-work .section-intro > p:last-child, .services .section-intro > p:last-child, .projects .section-intro > p:last-child, .checklist .section-intro > p:last-child, .quote .section-intro > p:last-child { margin-inline: auto; }

  .finish-standard { grid-template-columns: 1fr; gap: 0; }
  .finish-standard ol + ol li:first-child { border-top: 0; }
  .finish-standard li { min-height: 96px; grid-template-columns: 72px 1fr; }
  .finish-standard li:last-child { border-bottom: 0; }
  .finish-standard ol:last-child li:last-child { border-bottom: 1px solid var(--rule-light); }
  .finish-number { font-size: 43px; }
  .finish-standard li > span:last-child { font-size: 15px; }
  .finish__closing { margin-top: 52px; }
  .finish__closing p { font-size: 27px; }

  .recent-work { padding-bottom: 72px; }
  .review { width: min(84vw, 330px); min-height: 235px; padding: 24px 22px; }
  .photo-strip figure { height: 225px; }
  .photo-strip__portrait { width: 165px; }
  .photo-strip__landscape { width: 300px; }
  .photo-strip__wide { width: 250px; }
  .recent-work__cta { margin-top: 48px; }
  .recent-work__cta .button { min-width: 0; }

  .services-grid { grid-template-columns: 1fr; gap: 52px; }
  .service__media { height: min(78vw, 340px); }
  .service h3 { margin-top: 18px; }
  .services__closing { margin-top: 58px; padding-top: 28px; font-size: 24px; }
  .projects { padding-top: 20px; }
  .projects .section-intro { margin-bottom: 44px; }
  .project-journal { gap: 52px; }
  .project, .project--reverse { gap: 0; }
  .project__media, .project:nth-child(3) .project__media { width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .project__copy { padding: 28px 24px 30px; }
  .project__copy h3 { margin-bottom: 16px; font-size: 35px; }
  .project__copy p { margin-bottom: 16px; font-size: 16px; }
  .projects__closing { margin-top: 40px; padding-top: 22px; font-size: 24px; }

  .offer { padding-block: 64px; }
  .offer__grid, .warning__grid { grid-template-columns: 1fr; gap: 28px; }
  .offer h2, .warning h2 { max-width: none; }
  .offer__grid > p, .warning__grid > p { font-size: 16px; line-height: 1.75; }
  .offer__closing { margin-top: 38px; padding-top: 26px; font-size: 25px; }

  .checklist__grid { grid-template-columns: 1fr; gap: 56px; }
  .checklist-object { width: min(100%, 390px); margin-inline: auto; }
  .checklist-object__sheet { min-height: 470px; padding: 30px 24px; }
  .checklist-object__sheet img { width: 125px; height: 94px; }
  .checklist-object__sheet strong { margin-top: 36px; font-size: 104px; }
  .checklist-object__sheet > span { font-size: 32px; }
  .checklist-object__sheet small { font-size: 14px; }
  .form--light { padding: 0; border: 0; }

  .permits h2 { max-width: none; }
  .locality-strip { grid-template-columns: 1fr; margin-top: 48px; }
  .locality-strip span { padding: 20px 0; }
  .locality-strip span + span { border-top: 1px solid var(--rule-light); border-left: 0; }
  .locality-strip strong { display: block; margin: 0 0 5px; }
  .permits__closing { margin-top: 36px; font-size: 27px; text-align: left; }

  .quote-form__top { grid-template-columns: 1fr; }
  .quote-form__actions { grid-template-columns: 1fr; }
  .file-control { min-height: 104px; }
  .quote-form__area { font-size: 14px; }

  .warning { padding-bottom: 62px; }
  .warning h2 small { margin-top: 4px; }
  .warning__closing { margin-top: 42px; padding-top: 28px; font-size: 25px; text-align: center; }
  .signoff { padding-block: 48px; }
  .signoff__grid { grid-template-columns: 1fr; }
  .signoff__grid > div { padding: 0; }
  .signoff__grid > div + div { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--rule-light); border-left: 0; }

  .site-footer { padding-top: 52px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 26px; }
  .site-footer__brand { grid-column: 1 / -1; width: 160px; }
  .site-footer__contact { grid-column: auto; }
  .site-footer__legal { flex-direction: column; margin-top: 38px; }
  .site-footer__legal nav { flex-direction: column; gap: 8px; }
}

@media (min-width: 601px) and (max-width: 820px) {
  .hero__mobile-stage { height: 720px; }
}

@media (max-width: 600px) {
  .hero__inner { padding-bottom: 24px; }
  .hero__mobile-stage { height: auto; min-height: 0; overflow: visible; padding: 24px var(--gutter) 18px; }
  .hero__mobile-stage::after, .hero__mobile-photo { display: none; }
  .hero__location { margin-bottom: 14px; text-align: center; }
  .hero h1 { font-size: clamp(36px, 9.4vw, 38px); line-height: 0.99; text-align: center; }
  .hero__body { max-width: 360px; margin: 0 auto 12px; padding-top: 0; box-shadow: none; font-size: 15px; line-height: 1.55; text-align: center; }
  .evidence { margin-bottom: 14px; }
  .evidence > div { min-height: 48px; padding-block: 6px; text-align: center; }
  .hero__actions { gap: 8px; }
  .hero__actions .button { min-height: 50px; }
  .hero__closer { max-width: 340px; margin: 12px auto 0; padding-left: 0; font-size: 13px; line-height: 1.55; text-align: center; }
  .hero__closer::before { display: block; margin: 0 auto 8px; }
  .proof-band__grid { padding-block: 10px 12px; }
  .proof-band__grid > .proof-rating { padding-bottom: 9px; }
  .proof-rating { align-items: center; text-align: center; }
  .proof-band__rail > blockquote, .proof-band__rail > blockquote:first-child { min-height: 118px; align-items: center; padding: 14px 18px; text-align: center; }
  .proof-band blockquote p, .proof-band cite { text-align: center; }
  .proof-band blockquote p { font-size: 14px; }
  .finish-standard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .finish-standard ol { display: contents; }
  .finish-standard ol + ol li:first-child { border-top: 1px solid var(--rule-light); }
  .finish-standard li { display: flex; min-height: 124px; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 8px; padding: 14px 12px 16px; }
  .finish-standard li:nth-child(even) { border-left: 1px solid var(--rule-light); }
  .finish-standard ol:last-child li:last-child { min-height: 84px; grid-column: 1 / -1; }
  .finish-number { font-size: 30px; line-height: 1; }
  .finish-standard li > span:last-child { max-width: none; font-size: 13px; line-height: 1.4; }
  .finish__closing { margin-top: 28px; padding-top: 24px; border-top: 2px solid var(--forest); }
  .finish__closing p { margin-bottom: 8px; font-size: 24px; line-height: 1.22; }
  .finish__closing span { display: block; max-width: 31ch; margin-inline: auto; font-size: 14px; line-height: 1.55; }
  .permits { padding-block: 64px; }
  .permits .editorial-split, .permits .eyebrow, .permits h2 { text-align: center; }
  .permits h2 { max-width: none; margin-inline: auto; font-size: clamp(25px, 6.8vw, 28px); line-height: 1.14; letter-spacing: -0.035em; }
  .permits-title-line { display: block; white-space: nowrap; }
  .permits .section-copy { max-width: 360px; margin: 24px auto 0; font-size: 15px; line-height: 1.65; text-align: center; }
  .locality-strip { margin-top: 36px; text-align: center; }
  .locality-strip span { padding-block: 16px; text-align: center; }
  .permits__closing { max-width: 330px; margin: 28px auto 0; font-size: 24px; line-height: 1.35; text-align: center; }
  .signoff__grid > div, .signoff .eyebrow, .signoff p { text-align: center; }
  .signoff p:last-child { max-width: 360px; margin-inline: auto; }
  .form--light > p:not(.form-status) { text-align: center; }
  .site-footer { padding: 36px 0 18px; }
  .site-footer__grid { grid-template-areas: "brand brand" "services company" "areas areas" "contact contact"; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 20px; }
  .site-footer__brand { width: 132px; grid-area: brand; justify-self: center; }
  .site-footer__grid > nav:nth-of-type(1) { grid-area: services; }
  .site-footer__grid > nav:nth-of-type(2) { grid-area: areas; padding-top: 18px; border-top: 1px solid var(--rule-dark); text-align: center; }
  .site-footer__grid > nav:nth-of-type(3) { grid-area: company; }
  .site-footer h2 { margin-bottom: 8px; font-size: 11px; }
  .site-footer__grid > nav:nth-of-type(1) a, .site-footer__grid > nav:nth-of-type(3) a { min-height: 44px; }
  .site-footer__grid > nav:nth-of-type(2) ul { display: flex; flex-wrap: wrap; justify-content: center; line-height: 1.6; }
  .site-footer__grid > nav:nth-of-type(2) li { margin: 0; }
  .site-footer__grid > nav:nth-of-type(2) li + li::before { margin-inline: 5px; content: "·"; }
  .site-footer__contact { display: grid; grid-area: contact; grid-template-columns: 1fr 1fr; border-block: 1px solid var(--rule-dark); padding-block: 14px; text-align: center; }
  .site-footer__contact h2 { grid-column: 1 / -1; }
  .site-footer__contact a { min-height: 44px; justify-content: center; margin: 0; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
  .site-footer__contact a + a { border-left: 1px solid var(--rule-dark); }
  .site-footer__legal { align-items: center; gap: 8px; margin-top: 22px; padding-top: 18px; text-align: center; }
  .site-footer__meta { gap: 2px; }
  .site-footer__legal nav { flex-direction: row; justify-content: center; gap: 0; }
  .site-footer__legal nav a { min-height: 32px; }
  .site-footer__legal nav a + a::before { margin-inline: 6px; color: var(--paper-muted); content: "·"; }
  .back-to-top { bottom: calc(16px + env(safe-area-inset-bottom)); left: 16px; }
  .sticky-call {
    position: fixed;
    z-index: 20;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 242, 232, 0.72);
    border-radius: 0;
    transform: translateY(8px);
    visibility: hidden;
    opacity: 0;
    padding: 10px 16px;
    background: var(--forest);
    color: var(--paper);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    pointer-events: none;
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  }
  .sticky-call.is-visible { transform: translateY(0); visibility: visible; opacity: 1; pointer-events: auto; }
  .sticky-call:hover { border-color: var(--paper); }
  .sticky-call:active { transform: translateY(2px); }
}

@media (max-width: 390px) {
  .brand { width: 164px; }
  .hero h1 { font-size: clamp(38px, 10vw, 40px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee { overflow-x: auto; scrollbar-width: thin; }
  .marquee__track { transform: none !important; animation: none !important; }
  .marquee__group[aria-hidden="true"] { display: none; }
}
