@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122, U+2190-21FF, U+2605;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122, U+2190-21FF, U+2605;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-500-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

:root {
  --forest: #16281f;
  --ink: #10150f;
  --cream: #efe9dc;
  --tan: #e2d9c4;
  --orange: #e4571b;
  --orange-dark: #b4400e;
  --green-muted: #b7c2b2;
  --green-mid: #2c352b;
  --body: #2e362c;
  --line-soft: #8a8878;
  --content: 1304px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-pad: clamp(56px, 7vw, 88px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

main img {
  object-position: center bottom;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 12px 18px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  min-height: 34px;
  padding: 7px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 14px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.utility-bar span {
  color: var(--orange);
}

.utility-bar a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}

.header-inner {
  width: min(100%, var(--content));
  min-height: 80px;
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy strong,
.footer-logo {
  font-family: "Anton", Impact, sans-serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  margin-left: auto;
}

.primary-nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.header-phone:hover {
  color: var(--orange-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}

.header-phone {
  font-family: "Anton", Impact, sans-serif;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 50px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--orange);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 150ms ease, color 150ms ease;
}

.button:hover {
  background: #c8490f;
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 11px;
}

.button-outline-light {
  border-color: var(--cream);
  background: transparent;
  color: var(--cream);
}

.button-outline-light:hover {
  background: rgb(239 233 220 / 10%);
}

.button-outline-dark {
  background: transparent;
}

.button-outline-dark:hover {
  background: rgb(16 21 15 / 8%);
}

.hero {
  background: var(--forest);
  color: var(--cream);
  border-bottom: 3px solid var(--ink);
}

.hero-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(24px, 3.5vw, 36px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-kicker,
.section-label {
  margin: 0;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--green-muted);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.veteran-band h2,
.before-after-copy h2,
.firewood-grid h2,
.areas-intro h2,
.estimate-copy h2,
.entry h1,
.error-page h1 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 100%;
  color: var(--cream);
  font-size: clamp(40px, 5.5vw, 62px);
}

.hero-lede {
  max-width: 54ch;
  margin: 0;
  color: var(--green-muted);
  font-size: 17px;
  line-height: 1.58;
}

.hero-media,
.captioned-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 3px solid var(--ink);
  overflow: hidden;
}

.hero-image-frame picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Focal exception: favor Jason's face, harness, and the scale of the trunk. */
  object-position: center 16%;
}

.hero-media figcaption,
.captioned-photo figcaption {
  min-height: 42px;
  padding: 9px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.captioned-photo figcaption span:last-child {
  color: var(--orange);
}

.stat-band {
  width: 100%;
  background: var(--ink);
  border-top: 3px solid var(--ink);
}

.stat-strip {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--green-mid);
}

.stat-strip > div {
  min-height: 80px;
  padding: 14px clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: var(--ink);
}

.stat-strip strong {
  color: var(--cream);
  font-family: "Anton", Impact, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.stat-strip span {
  color: var(--green-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  border-top: 0 solid transparent;
}

.section-cream {
  background: var(--cream);
}

.section-tan {
  background: var(--tan);
}

.section-forest {
  background: var(--forest);
  color: var(--cream);
}

.section-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.split-heading {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
}

.split-heading > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-heading h2,
.about-copy h2,
.before-after-copy h2,
.firewood-grid h2,
.areas-intro h2,
.estimate-copy h2 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
}

.split-heading > p {
  max-width: 44ch;
  margin: 0;
  color: #4a5245;
  font-size: 16px;
  line-height: 1.62;
}

.service-ledger {
  margin-top: 48px;
  border-bottom: 2px solid var(--ink);
}

.service-row {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 46px 300px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 26px;
  border-top: 2px solid var(--ink);
}

.service-number {
  align-self: center;
  color: var(--orange-dark);
  font-family: "Anton", Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.service-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.service-title-wrap h3,
.section-callout h3,
.project-card h3,
.process-grid h3,
.county-list h3,
.dts-form-unavailable h3 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(25px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-title-wrap h3 a {
  color: inherit;
  text-decoration: none;
}

.service-title-wrap h3 a:hover {
  color: var(--orange-dark);
}

.service-badge {
  padding: 3px 8px;
  background: var(--orange);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-copy p {
  margin: 0 0 7px;
  color: #3a4238;
  font-size: 15.5px;
  line-height: 1.58;
}

.service-copy small {
  color: var(--line-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-row > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.section-callout {
  margin-top: 56px;
  padding: clamp(34px, 5vw, 52px) 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--forest);
}

.section-callout > div {
  max-width: 64ch;
}

.section-callout h3 {
  color: var(--cream);
  font-size: 31px;
}

.section-callout p {
  margin: 9px 0 0;
  color: var(--green-muted);
}

.about-section {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(38px, 5vw, 64px);
}

.captioned-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.6;
  border: 3px solid var(--ink);
  object-fit: cover;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.about-copy > p:not(.section-label) {
  margin: 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.68;
}

.about-background {
  padding-top: 3px;
  font-size: 14px !important;
  line-height: 1.58 !important;
}

.about-background a {
  color: var(--orange-dark);
  font-weight: 750;
}

.licensed-insured {
  color: #696957 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fact-list {
  width: 100%;
  margin: 2px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  list-style: none;
}

.fact-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.fact-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--orange);
  content: "";
}

.text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--orange-dark);
}

.veteran-band {
  position: relative;
  min-height: min(66vh, 560px);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.veteran-band::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(16 21 15 / 98%) 0%, rgb(16 21 15 / 94%) 35%, rgb(16 21 15 / 68%) 52%, rgb(16 21 15 / 8%) 78%, rgb(16 21 15 / 2%) 100%);
  content: "";
  pointer-events: none;
}

.veteran-grid {
  position: relative;
  z-index: 2;
  min-height: min(66vh, 560px);
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(64px, 9vw, 112px);
  display: flex;
  align-items: center;
}

.veteran-copy {
  max-width: 620px;
}

.veteran-band h2 {
  max-width: none;
  margin-top: 13px;
  color: var(--cream);
  font-size: clamp(40px, 5vw, 62px);
}

.veteran-band p:not(.section-label) {
  max-width: 55ch;
  margin: 18px 0 0;
  color: #d8d2c4;
  font-size: 17px;
}

.veteran-band .section-label {
  color: var(--orange);
}

.veteran-band > img {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(50%, 720px);
  max-width: none;
  height: 100%;
  border: 0;
  object-fit: cover;
  /* Focal exception: show the complete flag rather than anchoring to the ground. */
  object-position: center 70%;
  filter: saturate(0.88) contrast(1.08);
}

.project-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.project-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--ink);
  text-decoration: none;
  transition: transform 150ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
}

.project-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card > div:last-child {
  min-height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-card h3 {
  color: var(--cream);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.25;
}

.project-card span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-note {
  max-width: 64ch;
  margin: 30px 0 0;
  color: #4a5245;
  font-size: 15px;
}

.before-after-block {
  margin-top: clamp(72px, 9vw, 118px);
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(38px, 5vw, 68px);
}

.before-after-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.before-after-copy p:not(.section-label) {
  margin: 0;
  color: #4a5245;
  font-size: 16px;
}

.before-after-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--ink);
}

.before-after-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.after-image {
  position: absolute;
  inset: 0;
}

.before-layer {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--before-position);
  overflow: hidden;
  border-right: 3px solid var(--cream);
}

.before-layer img {
  width: var(--comparison-width, 100%);
  max-width: none;
}

.compare-label {
  position: absolute;
  top: 14px;
  z-index: 3;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-before { left: 14px; }
.label-after { right: 14px; }

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--before-position);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 3px solid var(--cream);
  background: var(--orange);
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  pointer-events: none;
}

.before-after-stage input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.firewood-section {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.firewood-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(38px, 5vw, 64px);
}

.firewood-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.firewood-photo > div {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 3px solid var(--ink);
  overflow: hidden;
}

.firewood-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.firewood-photo figcaption {
  min-height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.firewood-photo figcaption span:last-child {
  color: var(--orange);
}

.firewood-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.firewood-grid p:not(.section-label) {
  margin: 0;
  color: var(--body);
  font-size: 17px;
}

.firewood-facts {
  grid-template-columns: 1fr;
}

.process-section {
  background: var(--orange);
  color: var(--ink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.process-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.process-heading h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-transform: uppercase;
}

.process-heading p {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.process-grid {
  margin: 46px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid var(--ink);
  list-style: none;
}

.process-grid li {
  min-height: 240px;
  padding: 24px 24px 30px;
  border-right: 2px solid var(--ink);
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid li > span {
  color: var(--ink);
  font-family: "Anton", Impact, sans-serif;
  font-size: 56px;
  line-height: 1;
}

.process-grid h3 {
  margin-top: 16px;
  font-size: 22px;
}

.process-grid p {
  margin: 11px 0 0;
  color: #442513;
  font-size: 15px;
  line-height: 1.55;
}

.areas-section {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.areas-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}

.areas-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.areas-heading-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(48px, 7vw, 90px);
}

.areas-summary {
  padding-bottom: 5px;
}

.areas-summary p {
  margin: 0 0 14px;
  color: var(--green-muted);
  font-size: 17px;
}

.areas-summary a {
  color: var(--cream);
  font-weight: 800;
}

.areas-summary-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.areas-intro h2,
.estimate-copy h2 {
  color: var(--cream);
}

.areas-intro .section-label,
.estimate-copy .section-label {
  color: var(--orange);
}

.area-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--cream);
  border-bottom: 1px solid var(--green-mid);
}

.area-stats > div {
  min-height: 120px;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.area-stats > div + div {
  padding-left: 40px;
  border-left: 1px solid var(--green-mid);
}

.area-stats strong {
  color: var(--orange);
  font-family: "Anton", Impact, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.area-stats span {
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.county-list > div {
  padding: 22px 0;
  display: flex;
  align-items: baseline;
  gap: 32px;
  border-bottom: 1px solid var(--green-mid);
}

.county-list h3 {
  flex: 0 0 200px;
  color: var(--cream);
  font-size: 27px;
}

.county-list p {
  margin: 0;
  color: var(--green-muted);
  font-size: 15px;
}

.county-list p strong {
  color: var(--cream);
}

.home-star {
  color: var(--orange);
}

.area-note {
  margin-top: 18px !important;
  color: #8fa08b !important;
}

.area-note span {
  color: var(--orange);
}

.area-note a {
  color: var(--cream);
  font-weight: 800;
}

.service-area-page-hero h1 {
  max-width: 16ch;
}

.service-area-page-intro {
  border-bottom: 3px solid var(--ink);
}

.service-proof-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.service-area-page-counties {
  border-top: 0;
}

.service-area-services {
  border-bottom: 3px solid var(--ink);
}

.service-area-service-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-area-service-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid var(--ink);
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.service-area-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.service-area-service-card h3 {
  margin: 0 0 16px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-area-service-card p {
  margin: 0 0 24px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.62;
}

.service-area-service-card > span {
  margin-top: auto;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-inner {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}

.faq-list {
  margin-top: 40px;
  border-bottom: 2px solid var(--ink);
}

.faq-list details {
  border-top: 2px solid var(--ink);
}

.faq-list summary {
  min-height: 66px;
  padding: 17px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--orange);
  font-family: "Anton", Impact, sans-serif;
  font-size: 25px;
  font-weight: 400;
  transition: transform 150ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > div {
  padding: 0 4px 21px;
  color: #3a4238;
}

.faq-list details > div p {
  margin: 0;
}

.estimate-section {
  border-top: 3px solid var(--ink);
}

.estimate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(44px, 5vw, 64px);
}

.estimate-copy {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.estimate-copy > p:not(.section-label) {
  margin: 0;
  color: var(--green-muted);
  font-size: 17px;
}

.estimate-emergency {
  color: #8fa08b !important;
  font-size: 14px !important;
}

.estimate-emergency a {
  color: var(--cream);
  font-weight: 800;
}

.estimate-form-wrap,
.dts-form-unavailable {
  min-width: 0;
  padding: clamp(24px, 4vw, 40px);
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
}

.estimate-form-heading {
  margin: 0 0 24px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.dts-form-unavailable h3 {
  font-size: 30px;
}

.dts-form-unavailable p {
  margin-bottom: 0;
}

/* Forminator is intentionally restyled to match the accepted editorial design. */
.estimate-form-wrap .forminator-ui.forminator-custom-form {
  margin: 0 !important;
}

.estimate-form-wrap .forminator-title {
  margin: 0 0 24px !important;
  color: var(--ink) !important;
  font-family: "Anton", Impact, sans-serif !important;
  font-size: 31px !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
}

.estimate-form-wrap .forminator-description {
  color: #3a4238 !important;
  font-family: "Archivo", Arial, sans-serif !important;
}

.estimate-form-wrap .forminator-row {
  margin-bottom: 18px !important;
}

.estimate-form-wrap .forminator-custom-form > .forminator-row:not(.forminator-row-last) {
  margin-right: 0 !important;
  margin-left: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.estimate-form-wrap .forminator-custom-form > .forminator-row:not(.forminator-row-last) > .forminator-col {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: none !important;
  flex-basis: auto !important;
}

.estimate-form-wrap #textarea-1,
.estimate-form-wrap #upload-1,
.estimate-form-wrap #consent-1 {
  grid-column: 1 / -1;
}

.estimate-form-wrap .forminator-label,
.estimate-form-wrap .forminator-checkbox__label,
.estimate-form-wrap .forminator-checkbox__label p {
  color: var(--ink) !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.09em !important;
  line-height: 1.4 !important;
  text-transform: uppercase !important;
}

.estimate-form-wrap input:not([type="checkbox"]):not([type="radio"]),
.estimate-form-wrap select,
.estimate-form-wrap textarea,
.estimate-form-wrap .forminator-input,
.estimate-form-wrap .forminator-select2 + .forminator-select .selection .select2-selection--single {
  width: 100% !important;
  min-height: 50px !important;
  padding: 12px 13px !important;
  border: 2px solid var(--ink) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--ink) !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

.estimate-form-wrap .select2-container,
.estimate-form-wrap .forminator-select {
  width: 100% !important;
}

.estimate-form-wrap textarea {
  min-height: 130px !important;
}

.estimate-form-wrap .forminator-button-submit {
  min-height: 52px !important;
  padding: 14px 28px !important;
  border: 2px solid var(--ink) !important;
  border-radius: 0 !important;
  background: var(--orange) !important;
  color: var(--ink) !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.estimate-form-wrap .forminator-button-submit:hover {
  background: #c8490f !important;
}

.estimate-form-wrap .forminator-error-message {
  color: #8b1f0d !important;
  font-weight: 700 !important;
}

.estimate-form-wrap .forminator-response-message {
  border-radius: 0 !important;
  font-family: "Archivo", Arial, sans-serif !important;
}

.site-footer {
  background: var(--ink);
  color: #8fa08b;
  border-top: 3px solid var(--orange);
}

.footer-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 62px var(--gutter) 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.75fr;
  gap: clamp(34px, 5vw, 70px);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-logo {
  color: var(--cream);
}

.footer-about p {
  max-width: 46ch;
  margin: 4px 0;
}

.veteran-mark {
  padding: 6px 11px;
  border: 2px solid var(--orange);
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid h2 {
  margin: 0 0 4px;
  color: var(--orange);
  font-family: "Anton", Impact, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  color: var(--cream);
  text-decoration: none;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--green-mid);
  color: #6c7569;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-bottom a {
  color: #8fa08b;
}

.site-credit {
  margin-left: auto;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.site-credit > span {
  line-height: 1;
}

.footer-bottom .enok-credit {
  min-width: 90px;
  margin-left: 0;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 8px;
  color: var(--cream);
  line-height: 1;
  text-decoration: none;
  transition: color 150ms ease, opacity 150ms ease;
}

.enok-credit-mark {
  width: 17px;
  height: 14px;
  flex: 0 0 auto;
  align-self: baseline;
  object-fit: contain;
}

.enok-credit-name {
  font-family: "Jost", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-bottom .enok-credit:hover,
.footer-bottom .enok-credit:focus-visible {
  color: #fff;
  opacity: 0.84;
}

.content-shell,
.error-page {
  width: min(100%, 900px);
  min-height: 60vh;
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}

.entry h1,
.error-page h1 {
  margin: 12px 0 28px;
  font-size: clamp(46px, 7vw, 76px);
}

.entry h2,
.entry h3 {
  color: var(--ink);
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.entry h2 { margin-top: 48px; font-size: 36px; }
.entry h3 { margin-top: 32px; font-size: 26px; }
.entry p, .entry li { color: var(--body); }

.reviews-section {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.review-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  margin: 0;
  min-width: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  background: var(--cream);
  border: 2px solid var(--ink);
}

.review-card blockquote,
.review-card blockquote p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-card figcaption strong {
  color: var(--ink);
  font-size: 14px;
}

.review-card figcaption span {
  color: var(--line-soft);
  font-size: 12px;
}

.review-card figcaption a {
  margin-top: 6px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--green-muted);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--cream);
}

.service-page-hero,
.archive-hero,
.project-detail-hero {
  border-bottom: 3px solid var(--ink);
}

.service-page-hero-inner,
.project-detail-hero-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(46px, 6vw, 76px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.service-page-hero-copy,
.project-detail-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.service-page-hero .section-label,
.archive-hero .section-label,
.project-detail-hero .section-label,
.service-final-cta .section-label {
  color: var(--orange);
}

.service-page-hero h1,
.archive-hero h1,
.project-detail-hero h1,
.service-final-cta h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(45px, 6vw, 74px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.service-page-lede,
.project-detail-lede {
  max-width: 58ch;
  margin: 0;
  color: var(--green-muted);
  font-size: 17px;
}

.service-page-hero-media,
.project-detail-featured {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.service-page-hero-media img,
.project-detail-featured > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 3px solid var(--ink);
  object-fit: cover;
}

.service-page-hero-media--stump-grinding > img {
  object-position: center top;
}

.service-page-hero-media figcaption,
.project-detail-comparison figcaption {
  min-height: 44px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-page-hero-media figcaption span:last-child,
.project-detail-comparison figcaption span:last-child {
  color: var(--orange);
}

.service-content-grid,
.project-detail-content {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: clamp(46px, 7vw, 88px);
}

.service-body > :first-child {
  margin-top: 0;
}

.service-body h2,
.service-body h3,
.service-proof-card h2,
.project-detail-aside h2,
.project-archive-copy h2,
.project-archive-copy h3 {
  color: var(--ink);
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-body h2 {
  margin: 50px 0 14px;
  font-size: clamp(32px, 4vw, 44px);
}

.service-body h3 {
  margin: 36px 0 12px;
  font-size: 27px;
}

.service-body p,
.service-body li {
  color: var(--body);
  font-size: 17px;
  line-height: 1.72;
}

.service-body ul {
  margin: 25px 0;
  padding-left: 24px;
}

.service-body li + li {
  margin-top: 8px;
}

.service-body a {
  color: var(--orange-dark);
  font-weight: 750;
}

.service-page-faqs {
  margin-top: 58px;
  border-bottom: 2px solid var(--ink);
}

.service-page-faqs details {
  border-top: 2px solid var(--ink);
}

.service-page-faqs summary {
  min-height: 64px;
  padding: 16px 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.service-page-faqs summary::-webkit-details-marker {
  display: none;
}

.service-page-faqs summary span {
  color: var(--orange);
  font-family: "Anton", Impact, sans-serif;
  font-size: 25px;
  font-weight: 400;
  transition: transform 150ms ease;
}

.service-page-faqs details[open] summary span {
  transform: rotate(45deg);
}

.service-page-faqs details p {
  margin: 0;
  padding: 0 3px 22px;
}

.service-proof-card,
.project-detail-aside {
  position: sticky;
  top: 126px;
  padding: 28px;
  background: var(--tan);
  border: 3px solid var(--ink);
}

.service-proof-card h2 {
  margin: 12px 0 22px;
  font-size: 30px;
}

.service-proof-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-proof-card li {
  padding: 10px 0;
  color: var(--body);
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  font-weight: 700;
}

.service-related-projects {
  border-top: 3px solid var(--ink);
}

.project-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.section-heading + .project-archive-grid {
  margin-top: 44px;
}

.project-archive-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 34px;
}

.project-archive-card {
  min-width: 0;
  background: var(--tan);
  border: 3px solid var(--ink);
}

.project-archive-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.project-archive-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}

.project-archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.project-archive-image.is-contain img,
.project-detail-featured.is-contain > img,
.project-gallery img {
  background: var(--ink);
  object-fit: contain;
  object-position: center bottom;
}

.project-archive-card a:hover .project-archive-image img {
  transform: scale(1.025);
}

.project-archive-copy {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.project-archive-copy > span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-archive-copy h2,
.project-archive-copy h3 {
  margin: 9px 0 12px;
  font-size: clamp(25px, 3vw, 34px);
}

.project-archive-copy p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}

.project-archive-copy small {
  margin-top: auto;
  padding-top: 18px;
  color: var(--line-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-final-cta {
  border-top: 3px solid var(--ink);
}

.service-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.service-final-cta-inner > div:first-child {
  max-width: 720px;
}

.service-final-cta h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 58px);
}

.service-final-cta p:not(.section-label) {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--green-muted);
}

.archive-hero-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(46px, 6vw, 76px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.archive-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.archive-hero h1 {
  max-width: 13ch;
}

.archive-hero-copy > p:not(.section-label) {
  max-width: 66ch;
  margin: 0;
  color: var(--green-muted);
  font-size: 17px;
}

.archive-hero-media {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.archive-hero-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 3px solid var(--ink);
  object-fit: cover;
  object-position: center bottom;
}

.archive-hero-media figcaption {
  min-height: 44px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-hero-media figcaption span:last-child {
  color: var(--orange);
}

.project-detail-hero-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
}

.project-detail-featured > img {
  aspect-ratio: 4 / 3;
}

.project-detail-comparison {
  min-width: 0;
}

.project-hero-before-after,
.project-detail-comparison .before-after-stage {
  width: 100%;
}

.project-detail-comparison .before-after-stage {
  aspect-ratio: 4 / 3;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-detail-aside dl {
  margin: 0 0 24px;
}

.project-detail-aside dt {
  margin-top: 16px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-detail-aside dd {
  margin: 2px 0 0;
  color: var(--body);
  font-weight: 700;
}

.project-media-section {
  border-bottom: 3px solid var(--ink);
}

.project-gallery {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-gallery-item {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--ink);
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
}

.project-gallery-item figcaption {
  min-height: 45px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  color: var(--cream);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-gallery--single {
  grid-template-columns: minmax(0, 900px);
}

.project-gallery--single img {
  aspect-ratio: 16 / 10;
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.error-page p:not(.section-label) {
  max-width: 55ch;
  margin: 0 0 28px;
  color: var(--body);
  font-size: 18px;
}

@media (min-width: 641px) {
  .service-title-wrap {
    position: relative;
    gap: 0;
  }

  .service-badge {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
  }
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 13px;
  }

  .header-phone {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  }

  .service-row {
    grid-template-columns: 42px 240px minmax(0, 1fr) 225px;
    gap: 20px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-archive-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    inset: 109px 0 auto 0;
    z-index: 99;
    padding: 28px var(--gutter) 34px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--ink);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #bbb3a4;
    font-size: 14px;
  }

  .header-actions .button {
    display: none;
  }

  .hero-inner,
  .about-grid,
  .veteran-grid,
  .firewood-grid,
  .areas-grid,
  .estimate-grid {
    grid-template-columns: 1fr;
  }

  .service-page-hero-inner,
  .archive-hero-inner,
  .project-detail-hero-inner,
  .service-content-grid,
  .project-detail-content {
    grid-template-columns: 1fr;
  }

  .service-page-hero-media,
  .archive-hero-media,
  .project-detail-featured {
    max-width: 720px;
  }

  .service-proof-card,
  .project-detail-aside {
    position: static;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-area-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-row {
    grid-template-columns: 42px minmax(0, 1fr) minmax(180px, 0.7fr);
  }

  .service-copy {
    grid-column: 2;
  }

  .service-row > img {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .about-grid,
  .firewood-grid,
  .estimate-grid {
    gap: 38px;
  }

  .captioned-photo {
    max-width: 600px;
  }

  .captioned-photo img {
    height: auto;
  }

  .veteran-band {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .veteran-band::after {
    display: none;
  }

  .veteran-grid {
    order: 1;
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .veteran-band > img {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center 70%;
  }

  .before-after-block {
    grid-template-columns: 1fr;
  }

  .before-after-copy {
    max-width: 650px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(-n + 2) {
    border-bottom: 2px solid var(--ink);
  }

  .areas-heading-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .areas-intro,
  .estimate-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
    --section-pad: 58px;
  }

  .utility-bar {
    min-height: 38px;
    padding: 8px 12px;
    gap: 2px 10px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .header-inner {
    min-height: 68px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .primary-nav {
    inset-block-start: 106px;
  }

  .hero-inner {
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero .button-row,
  .hero .button {
    width: 100%;
  }

  .hero-media figcaption {
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .hero-image-frame {
    aspect-ratio: 4 / 5;
  }

  .stat-strip > div {
    min-height: 74px;
    padding: 13px 18px;
  }

  .stat-strip strong {
    font-size: 24px;
  }

  .stat-strip span {
    font-size: 9px;
  }

  .split-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading h2,
  .about-copy h2,
  .before-after-copy h2,
  .firewood-grid h2,
  .areas-intro h2,
  .estimate-copy h2 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .service-ledger {
    margin-top: 36px;
  }

  .service-row {
    padding: 22px 0 27px;
    grid-template-columns: 38px 1fr;
    gap: 13px 8px;
  }

  .service-number {
    grid-row: 1;
    align-self: start;
    margin-top: 2px;
  }

  .service-title-wrap,
  .service-copy,
  .service-row > img {
    grid-column: 2;
  }

  .service-title-wrap {
    grid-row: 1;
  }

  .service-copy {
    grid-row: 2;
  }

  .service-row > img {
    grid-row: 3;
    margin-top: 8px;
  }

  .section-callout {
    padding: 32px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .section-callout .button {
    width: 100%;
  }

  .fact-list {
    grid-template-columns: 1fr;
  }

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

  .review-grid,
  .project-archive-grid,
  .project-archive-grid-compact,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .service-page-hero-inner,
  .archive-hero-inner,
  .project-detail-hero-inner {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .service-page-hero h1,
  .archive-hero h1,
  .project-detail-hero h1 {
    font-size: clamp(43px, 14vw, 60px);
  }

  .service-page-hero .button-row,
  .service-page-hero .button,
  .service-areas-page-hero .button-row,
  .service-areas-page-hero .button,
  .service-final-cta .button-row,
  .service-final-cta .button {
    width: 100%;
  }

  .service-area-service-grid {
    grid-template-columns: 1fr;
  }

  .service-area-service-card {
    min-height: 0;
    padding: 24px;
  }

  .service-proof-card,
  .project-detail-aside,
  .review-card,
  .project-archive-copy {
    padding: 23px;
  }

  .before-after-block {
    margin-top: 68px;
  }

  .before-after-stage {
    aspect-ratio: 4 / 5;
  }

  .project-detail-comparison .before-after-stage {
    aspect-ratio: 4 / 5;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: 0;
    padding: 24px 22px 28px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 14px;
  }

  .process-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .process-heading p {
    margin: 0;
  }

  .area-stats > div {
    min-height: 102px;
    padding: 20px 8px 20px 0;
  }

  .area-stats > div + div {
    padding-left: 14px;
  }

  .area-stats strong {
    font-size: 38px;
  }

  .area-stats span {
    font-size: 8px;
    letter-spacing: 0.09em;
  }

  .county-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .county-list h3 {
    flex-basis: auto;
  }

  .estimate-form-wrap {
    padding: 22px 18px;
  }

  .estimate-form-wrap .forminator-custom-form > .forminator-row:not(.forminator-row-last) {
    grid-template-columns: 1fr !important;
  }

  .estimate-form-wrap #name-1,
  .estimate-form-wrap #phone-1,
  .estimate-form-wrap #email-1,
  .estimate-form-wrap #text-1,
  .estimate-form-wrap #select-1,
  .estimate-form-wrap #select-2,
  .estimate-form-wrap #textarea-1,
  .estimate-form-wrap #upload-1,
  .estimate-form-wrap #consent-1 {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom > .site-credit {
    align-self: flex-end;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
