:root {
  --forest: #092c26;
  --cedar: #c68b46;
  --cedar-light: #dfa861;
  --moss: #5b674e;
  --ink: #1a1c1e;
  --ink-rgb: 26, 28, 30;
  --birch: #a8adb3;
  --linen: #fdfcf0;
  --corn: #fcedc2;
  --paper: #f5f1e5;
  --line: rgba(26, 28, 30, 0.22);
  --line-light: rgba(253, 252, 240, 0.24);
  --header-height: 92px;
  --radius: 6px;
  --content: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: Futura, "Avenir Next", "Century Gothic", Arial, sans-serif;
  --font-body: Futura, "Avenir Next", "Century Gothic", Arial, sans-serif;
  --font-label: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

#fences,
#decks,
#process,
#work,
#service-area,
#questions,
#estimate,
#materials {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--linen);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--corn);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px, 2.6vw, 44px);
  padding: 12px clamp(22px, 5vw, 78px);
  border-bottom: 1px solid var(--line-light);
  color: var(--linen);
  transition:
    background-color 220ms ease,
    min-height 220ms ease,
    padding 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(16, 17, 18, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

.brand {
  display: grid;
  width: clamp(176px, 14vw, 226px);
  gap: 3px;
  text-decoration: none;
  transition: width 220ms var(--ease);
}

.brand__wordmark {
  display: block;
  aspect-ratio: 876 / 242;
  overflow: hidden;
}

.brand__wordmark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.brand__descriptor {
  max-height: 12px;
  overflow: hidden;
  color: var(--linen);
  font-size: clamp(8px, 0.7vw, 10px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  transition:
    max-height 180ms ease,
    opacity 180ms ease,
    transform 180ms var(--ease);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2vw, 30px);
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease),
    visibility 180ms ease;
}

.site-nav a,
.header-phone {
  position: relative;
  color: var(--linen);
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--cedar-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: grid;
  gap: 2px;
  white-space: nowrap;
}

.header-phone span {
  color: var(--corn);
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 821px) {
  .site-header.is-condensed {
    min-height: 64px;
    padding-top: 7px;
    padding-bottom: 7px;
    background: rgba(16, 17, 18, 0.97);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
  }

  .site-header.is-condensed .brand {
    width: 150px;
  }

  .site-header.is-condensed .brand__descriptor {
    max-height: 0;
    opacity: 0;
    transform: translateY(-3px);
  }

  .site-header.is-condensed .header-estimate {
    min-height: 42px;
    padding: 9px 16px;
  }
}

.mobile-action-bar {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--linen);
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms var(--ease),
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 0.72rem;
}

.button--linen {
  color: var(--ink);
  background: var(--linen);
}

.button--linen:hover {
  background: var(--corn);
}

.button--cedar {
  color: var(--forest);
  background: var(--cedar-light);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.button--cedar:hover {
  background: var(--corn);
}

.button--ink {
  color: var(--linen);
  background: var(--ink);
}

.button--ink:hover {
  background: var(--forest);
}

.eyebrow,
.section-index,
.prototype-note,
.process__validation-note {
  margin: 0;
  font-family: var(--font-label);
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--corn);
}

.eyebrow--dark {
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: var(--linen);
  background: var(--ink);
  isolation: isolate;
}

.compare,
.compare__before,
.compare__shade {
  position: absolute;
  inset: 0;
}

.compare {
  overflow: hidden;
  z-index: -1;
  background: #101112;
}

.compare__image {
  position: absolute;
  inset: -1.5%;
  width: 103%;
  height: 103%;
  object-fit: cover;
  object-position: center 52%;
  transform: translate(var(--image-x, 0), var(--image-y, 0));
  transition: transform 480ms var(--ease);
}

.compare--pool .compare__image--before {
  object-position: 54% 54%;
  filter: brightness(0.92) saturate(0.88);
}

.compare--pool .compare__image--after {
  inset: -2.6%;
  width: 105.2%;
  height: 105.2%;
  object-position: 51% 57%;
  filter: brightness(1.02) contrast(1.08) saturate(0.96);
  transform: translate(var(--image-x, 0), var(--image-y, 0)) scaleX(-1);
}

.compare--hillside .compare__image {
  inset: -2.4%;
  width: 104.8%;
  height: 104.8%;
}

.compare--hillside .compare__image--before {
  object-position: 50% 22%;
  filter: brightness(1.02) contrast(1.05) saturate(0.83);
}

.compare--hillside .compare__image--after {
  object-position: 50% 25%;
  filter: brightness(0.96) contrast(1.04) saturate(0.88);
}

.compare__before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  overflow: hidden;
}

.compare.is-revealing .compare__before {
  transition: clip-path 1280ms var(--ease);
}

.compare__shade {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.88) 0%, rgba(7, 8, 9, 0.65) 34%, rgba(7, 8, 9, 0.14) 66%, rgba(7, 8, 9, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 8, 9, 0.54) 0%, transparent 26%, transparent 68%, rgba(7, 8, 9, 0.8) 100%);
}

.compare--pool .compare__shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.88) 0%, rgba(7, 8, 9, 0.64) 34%, rgba(7, 8, 9, 0.1) 66%, rgba(7, 8, 9, 0.04) 100%),
    linear-gradient(180deg, rgba(7, 8, 9, 0.42) 0%, transparent 27%, transparent 69%, rgba(7, 8, 9, 0.74) 100%);
}

.compare--hillside .compare__shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.9) 0%, rgba(7, 8, 9, 0.66) 35%, rgba(7, 8, 9, 0.12) 68%, rgba(7, 8, 9, 0.05) 100%),
    linear-gradient(180deg, rgba(7, 8, 9, 0.4) 0%, transparent 27%, transparent 68%, rgba(7, 8, 9, 0.76) 100%);
}

.compare__line {
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  pointer-events: none;
  background: rgba(253, 252, 240, 0.84);
  transform: translateX(-1px);
}

.compare.is-revealing .compare__line {
  transition: left 1280ms var(--ease);
}

.compare__handle {
  position: absolute;
  top: 82%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid rgba(9, 44, 38, 0.84);
  border-radius: 50%;
  color: var(--ink);
  background: var(--linen);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.compare__handle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.compare__label {
  position: absolute;
  z-index: 7;
  top: 79%;
  padding: 8px 10px;
  border: 1px solid rgba(253, 252, 240, 0.34);
  border-radius: 3px;
  color: var(--linen);
  background: rgba(16, 17, 18, 0.7);
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.compare__label--before {
  left: clamp(22px, 3vw, 46px);
}

.compare__label--after {
  right: clamp(22px, 3vw, 46px);
}

.compare__range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0.001;
}

.compare:has(.compare__range:focus-visible) .compare__handle {
  outline: 4px solid var(--corn);
  outline-offset: 5px;
}

.hero__content {
  position: relative;
  z-index: 10;
  display: grid;
  width: min(650px, calc(100% - 48px));
  min-height: max(760px, 100svh);
  align-content: center;
  gap: 22px;
  margin-left: clamp(24px, 7vw, 112px);
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 150px;
  pointer-events: none;
}

.hero__content a,
.hero__content button {
  pointer-events: auto;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 6.1vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.36);
}

.hero__lede {
  max-width: 44rem;
  margin: 0;
  color: var(--linen);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
}

.hero__phone {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(253, 252, 240, 0.58);
  color: var(--linen);
  font-size: 0.81rem;
  font-weight: 800;
  text-decoration: none;
}

.reveal-replay {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  color: var(--linen);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.reveal-replay svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cedar-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.reveal-replay span {
  padding-left: 9px;
  border-left: 1px solid rgba(253, 252, 240, 0.32);
  color: rgba(253, 252, 240, 0.76);
  font-family: var(--font-label);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.prototype-note {
  position: absolute;
  z-index: 9;
  top: calc(var(--header-height) + 22px);
  right: clamp(22px, 5vw, 78px);
  max-width: 240px;
  padding: 9px 11px;
  border: 1px solid rgba(253, 252, 240, 0.22);
  border-radius: 4px;
  color: var(--linen);
  background: rgba(10, 10, 10, 0.62);
  font-size: 0.55rem;
}

.hero__credentials {
  position: absolute;
  z-index: 9;
  right: clamp(22px, 5vw, 78px);
  bottom: 30px;
  left: clamp(22px, 7vw, 112px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(253, 252, 240, 0.26);
  color: var(--linen);
  font-family: var(--font-label);
  font-size: clamp(0.55rem, 0.75vw, 0.67rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__credentials span {
  display: flex;
  align-items: center;
}

.hero__credentials span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 18px;
  border-radius: 50%;
  background: var(--cedar-light);
}

.proof-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.proof-ledger__item {
  display: grid;
  min-height: 148px;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(22px, 3vw, 48px);
}

.proof-ledger__item:not(:last-child) {
  border-right: 1px solid var(--ink);
}

.proof-ledger strong {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.proof-ledger span {
  max-width: 18rem;
  color: rgba(var(--ink-rgb), 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.section {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 6vw, 96px);
}

.section-heading,
.services > article,
.services > div,
.standards > div,
.questions,
.review-band {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.72fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 100px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.section h2,
.process h2,
.review-band h2,
.estimate h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.3vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-heading > p:last-child,
.process__intro > p:last-child,
.estimate__copy > p {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.7);
  font-size: 1rem;
  line-height: 1.65;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.3fr);
  min-height: 560px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service-feature__copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(38px, 6vw, 80px) clamp(0px, 4vw, 54px) clamp(38px, 6vw, 80px) 0;
}

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

.service-feature h3,
.service-secondary h3,
.standard h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.service-feature h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  line-height: 1.02;
}

.service-feature__copy > p:not(.section-index),
.service-secondary__item > p:not(.section-index),
.standard p,
.questions__intro > p:not(.eyebrow),
.faq p {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.7);
  line-height: 1.65;
}

.material-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.material-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-feature__media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.service-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.service-feature__image--cedar {
  object-position: 53% 55%;
}

.service-feature__media:hover img {
  transform: scale(1.025);
}

.service-feature__media figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(253, 252, 240, 0.24);
  color: var(--linen);
  background: rgba(12, 13, 14, 0.72);
  font-family: var(--font-label);
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.service-secondary__item {
  display: grid;
  gap: 20px;
  padding: clamp(42px, 5vw, 70px);
}

.service-secondary__item:first-child {
  padding-left: 0;
  border-right: 1px solid var(--ink);
}

.service-secondary h3 {
  max-width: 14ch;
  font-size: clamp(1.8rem, 2.9vw, 3.1rem);
  line-height: 1.05;
}

.project-journal {
  padding: clamp(90px, 10vw, 150px) max(clamp(24px, 6vw, 96px), calc((100vw - var(--content)) / 2));
  color: var(--linen);
  background: var(--ink);
}

.project-journal__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.72fr);
  gap: 24px clamp(38px, 7vw, 100px);
  align-items: end;
}

.project-journal__intro .eyebrow {
  grid-column: 1 / -1;
}

.project-journal__intro h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.3vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.project-journal__intro > p:last-child {
  margin: 0;
  color: rgba(253, 252, 240, 0.7);
  line-height: 1.65;
}

.project-journal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  grid-template-rows: minmax(250px, 0.8fr) auto;
  gap: 18px;
  margin-top: clamp(58px, 7vw, 92px);
}

.project-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(253, 252, 240, 0.22);
  background: #101112;
}

.project-card--feature {
  grid-row: 1 / 3;
  min-height: 680px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 520ms var(--ease);
}

.project-card__image--fence {
  object-position: 45% 50%;
}

.project-card__image--deck {
  object-position: 50% 58%;
}

.project-card:hover img {
  transform: scale(1.018);
}

.project-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 7px;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 10, 0.94));
}

.project-card figcaption span,
.project-card figcaption small,
.material-proof > p {
  font-family: var(--font-label);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-card figcaption span {
  color: var(--cedar-light);
}

.project-card figcaption strong {
  max-width: 24rem;
  font-size: clamp(1.12rem, 1.8vw, 1.7rem);
}

.project-card figcaption small {
  color: rgba(253, 252, 240, 0.6);
}

.project-card--note {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  color: var(--ink);
  background: var(--cedar-light);
}

.project-card--note h3,
.project-card--note p {
  margin: 0;
}

.project-card--note h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.project-card--note > p:not(.section-index) {
  color: rgba(var(--ink-rgb), 0.72);
  font-size: 0.82rem;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.process {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 6vw, 96px);
  color: var(--linen);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    var(--ink);
  background-size: 32px 32px;
}

.process__intro,
.process__track,
.process__validation-note {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.process__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: end;
}

.process__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.process__intro > p:last-child {
  color: rgba(253, 252, 240, 0.7);
}

.process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: clamp(70px, 8vw, 110px);
  padding-top: 35px;
  border-top: 1px solid rgba(253, 252, 240, 0.32);
}

.process-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid var(--linen);
  border-radius: 50%;
  background: var(--cedar);
}

.process-step__number {
  color: var(--cedar-light);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.5vw, 1.42rem);
  line-height: 1.15;
}

.process-step p {
  margin: 0;
  color: rgba(253, 252, 240, 0.66);
  font-size: clamp(0.79rem, 0.9vw, 0.86rem);
  line-height: 1.6;
}

.process__validation-note {
  margin-top: 50px;
  color: rgba(253, 252, 240, 0.48);
  font-size: 0.57rem;
}

.standards {
  background: var(--paper);
}

.standards__statement {
  display: grid;
  max-width: 980px;
  gap: 22px;
}

.standards__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.standard {
  display: grid;
  gap: 18px;
  padding: clamp(36px, 4vw, 58px);
}

.standard:first-child {
  padding-left: 0;
}

.standard:not(:last-child) {
  border-right: 1px solid var(--ink);
}

.standard > span {
  color: var(--forest);
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 800;
}

.standard h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.05;
}

.material-proof {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: stretch;
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.material-proof > p {
  align-self: center;
  max-width: 30ch;
  margin: 0;
  color: var(--forest);
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  line-height: 1.55;
  letter-spacing: 0.09em;
}

.material-proof ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-proof li {
  display: flex;
  min-height: 92px;
  align-items: center;
  padding: 18px clamp(18px, 1.8vw, 28px);
  border-left: 1px solid var(--line);
  font-size: clamp(0.95rem, 1.1vw, 1.18rem);
  font-weight: 800;
  line-height: 1.25;
}

.review-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  padding: clamp(78px, 9vw, 130px) 0;
}

.review-band__copy {
  display: grid;
  gap: 22px;
}

.review-slot {
  display: grid;
  gap: 14px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px dashed rgba(var(--ink-rgb), 0.5);
  border-radius: var(--radius);
  background: var(--paper);
}

.review-slot span {
  color: var(--forest);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-slot p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.review-slot cite {
  color: var(--forest);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.review-slot small {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: rgba(var(--ink-rgb), 0.6);
  font-size: 0.66rem;
  line-height: 1.5;
}

.service-map-section {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 6vw, 96px);
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(70px, 8vw, 110px);
  background: var(--linen);
}

.service-map-section + .questions {
  padding-top: 0;
}

.service-map-panel {
  display: grid;
  width: min(100%, var(--content));
  min-height: 650px;
  grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-map-panel__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
  padding: clamp(34px, 4.6vw, 68px);
  border-right: 1px solid var(--line);
}

.service-map-panel h2 {
  max-width: 11ch;
  margin: 18px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4vw, 4.8rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.service-map-panel__lede {
  max-width: 34rem;
  margin: 0;
  color: rgba(var(--ink-rgb), 0.7);
  line-height: 1.65;
}

.service-zip-checker {
  display: grid;
  max-width: 35rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 34px;
}

.service-zip-checker label {
  grid-column: 1 / -1;
  margin-bottom: 9px;
  color: var(--forest);
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-zip-checker input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-right: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--linen);
  font-family: var(--font-label);
  font-size: 1rem;
}

.service-zip-checker button {
  min-height: 56px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--cedar-light);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.service-zip-checker input:focus-visible,
.service-zip-checker button:focus-visible {
  position: relative;
  z-index: 1;
}

.service-zip-status {
  min-height: 42px;
  margin: 13px 0 0;
  color: var(--forest);
  font-family: var(--font-label);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-map-panel__cta {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.service-map-panel__note {
  max-width: 32rem;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(var(--ink-rgb), 0.62);
  font-family: var(--font-label);
  font-size: 0.62rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-map-panel__visual {
  position: relative;
  display: grid;
  min-width: 0;
  align-items: center;
  padding: clamp(22px, 3.4vw, 50px);
  background:
    linear-gradient(rgba(var(--ink-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--ink-rgb), 0.035) 1px, transparent 1px),
    #e7dfcf;
  background-size: 30px 30px;
}

.service-map {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.service-map-canvas {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.service-map .map-underlay {
  display: none;
}

.service-map .context-shape {
  fill: rgba(198, 139, 70, 0.075);
  fill-rule: evenodd;
  stroke: rgba(var(--ink-rgb), 0.14);
  stroke-width: 0.55;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.service-map .zip-shapes {
  filter: drop-shadow(0 0 1px rgba(var(--ink-rgb), 0.54));
}

.service-map .zip-shape {
  fill: rgba(198, 139, 70, 0.66);
  fill-rule: evenodd;
  stroke: transparent;
  stroke-width: 0;
  vector-effect: non-scaling-stroke;
  transition: fill 180ms ease, stroke 180ms ease, opacity 180ms ease;
}

.service-map .zip-shape.is-match {
  outline: none;
  fill: var(--forest);
  stroke: var(--linen);
  stroke-width: 3.2;
  opacity: 1;
  filter: drop-shadow(0 3px 4px rgba(var(--ink-rgb), 0.28));
}

.service-map .water-shape {
  fill: rgba(47, 88, 80, 0.18);
  fill-rule: evenodd;
  stroke: rgba(47, 88, 80, 0.42);
  stroke-width: 0.7;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.service-map .river-label {
  fill: rgba(25, 78, 71, 0.66);
  stroke: rgba(231, 223, 207, 0.9);
  stroke-width: 3;
  paint-order: stroke;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.service-map .city-marker {
  pointer-events: none;
}

.service-map .city-marker circle {
  fill: var(--ink);
  stroke: var(--linen);
  stroke-width: 1.5;
}

.service-map .city-marker text {
  fill: rgba(var(--ink-rgb), 0.82);
  stroke: rgba(231, 223, 207, 0.96);
  stroke-width: 3.5;
  paint-order: stroke;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-map .city-marker--primary text {
  fill: var(--ink);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.service-map .city-marker--context {
  opacity: 0.58;
}

.service-office-callout {
  position: absolute;
  z-index: 5;
  top: var(--office-y);
  left: var(--office-x);
  width: 0;
  height: 0;
  pointer-events: none;
}

.service-office-callout__beacon {
  position: absolute;
  z-index: 2;
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  border: 3px solid var(--cedar);
  border-radius: 50%;
  background: rgba(245, 241, 229, 0.96);
  box-shadow:
    0 0 0 2px var(--forest),
    0 5px 12px rgba(var(--ink-rgb), 0.28);
  animation: service-office-beacon-in 580ms cubic-bezier(0.2, 0.85, 0.3, 1.15) 180ms both;
}

.service-office-callout__beacon::before,
.service-office-callout__beacon::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.service-office-callout__beacon::before {
  inset: 6px;
  border: 2px solid var(--linen);
  background: var(--forest);
}

.service-office-callout__beacon::after {
  inset: 12px;
  background: var(--cedar-light);
}

.service-office-callout__leader {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 14px;
  width: 31px;
  border-top: 1.5px solid rgba(var(--ink-rgb), 0.8);
  transform: rotate(-8deg);
  transform-origin: right center;
}

.service-office-callout__plaque {
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 43px;
  display: block;
  min-width: 138px;
  padding: 8px 10px 9px;
  border: 1px solid var(--ink);
  border-top: 4px solid var(--cedar-light);
  color: var(--linen);
  background: var(--forest);
  box-shadow: 0 4px 10px rgba(var(--ink-rgb), 0.2);
  text-align: left;
  animation: service-office-plaque-in 460ms ease-out 300ms both;
}

.service-office-callout__plaque strong,
.service-office-callout__plaque small {
  display: block;
  font-family: var(--font-label);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-office-callout__plaque strong {
  font-size: 0.7rem;
  letter-spacing: 0.065em;
}

.service-office-callout__plaque small {
  margin-top: 4px;
  color: var(--cedar-light);
  font-size: 0.54rem;
  letter-spacing: 0.09em;
}

.service-map-panel.has-map-selection .service-office-callout__beacon {
  animation: service-office-beacon-settle 360ms ease-out both;
}

@keyframes service-office-beacon-in {
  0% {
    opacity: 0;
    transform: scale(0.66);
  }
  72% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes service-office-plaque-in {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes service-office-beacon-settle {
  0% { transform: translateY(0) scale(1); }
  48% { transform: translateY(-2px) scale(1.07); }
  100% { transform: translateY(0) scale(1); }
}

.service-map-north {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  justify-items: center;
  color: rgba(var(--ink-rgb), 0.7);
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-map-north i {
  width: 1px;
  height: 24px;
  margin-top: 4px;
  background: currentColor;
}

.service-map-north i::before {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  content: "";
  transform: translate(-3px, 1px) rotate(45deg);
}

.service-map-legend {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 9px 11px;
  border: 1px solid rgba(var(--ink-rgb), 0.16);
  background: rgba(245, 241, 229, 0.9);
  font-family: var(--font-label);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-map-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
}

.service-map-legend__area {
  border: 1px solid rgba(var(--ink-rgb), 0.34);
  background: rgba(198, 139, 70, 0.66);
}

.service-map-legend__selected {
  border: 2px solid var(--linen);
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest);
  opacity: 0.36;
  transition: opacity 180ms ease;
}

.service-map-panel.has-map-selection .service-map-legend__selected {
  opacity: 1;
}

.service-map-legend__office {
  position: relative;
  border: 2px solid var(--cedar);
  border-radius: 50%;
  background: var(--linen);
  box-shadow: 0 0 0 1px var(--forest);
}

.service-map-legend__office::after {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--forest);
  content: "";
}

.questions {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.questions__intro {
  display: grid;
  gap: 24px;
}

.questions__intro h2 {
  max-width: 12ch;
}

.faq {
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 800;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 5px;
  font-family: var(--font-label);
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  max-width: 42rem;
  padding: 0 44px 24px 0;
}

.estimate {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(520px, 1fr);
  gap: clamp(58px, 9vw, 130px);
  align-items: start;
  padding: clamp(90px, 10vw, 150px) max(clamp(24px, 6vw, 96px), calc((100vw - var(--content)) / 2));
  color: var(--linen);
  background: var(--forest);
}

.estimate__copy {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 24px;
}

.estimate__copy > p {
  color: rgba(253, 252, 240, 0.72);
}

.estimate__phone {
  display: grid;
  width: max-content;
  gap: 4px;
  margin-top: 10px;
  color: var(--linen);
  font-family: var(--font-label);
  font-size: 0.65rem;
  text-decoration: none;
  text-transform: uppercase;
}

.estimate__phone strong {
  color: var(--corn);
  font-family: var(--font-body);
  font-size: 1.35rem;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(253, 252, 240, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 17, 18, 0.26);
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-label);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(253, 252, 240, 0.38);
  border-radius: 4px;
  color: var(--linen);
  background: rgba(5, 14, 12, 0.42);
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--corn);
  background: rgba(5, 14, 12, 0.7);
}

.field select option {
  color: var(--ink);
  background: var(--linen);
}

.estimate-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--corn);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 60px;
  padding: 44px clamp(24px, 6vw, 96px);
  border-top: 1px solid rgba(253, 252, 240, 0.2);
  color: var(--linen);
  background: var(--ink);
}

.site-footer__brand,
.site-footer__details {
  display: grid;
  gap: 7px;
}

.site-footer__brand strong {
  font-size: 1rem;
}

.site-footer__brand span,
.site-footer__details,
.site-footer__prototype {
  color: rgba(253, 252, 240, 0.64);
  font-size: 0.7rem;
  line-height: 1.5;
}

.site-footer__details {
  text-align: right;
}

.site-footer__details a {
  color: var(--corn);
  font-weight: 800;
  text-decoration: none;
}

.site-footer__prototype {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(253, 252, 240, 0.14);
  font-family: var(--font-label);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Core service pages */

.page-hero {
  position: relative;
  min-height: clamp(760px, 92svh, 820px);
  overflow: hidden;
  color: var(--linen);
  background: var(--ink);
  isolation: isolate;
}

.page-hero > img,
.page-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.page-hero > .page-hero__image--deck {
  object-position: 50% 56%;
}

.page-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.9) 0%, rgba(8, 9, 10, 0.7) 42%, rgba(8, 9, 10, 0.18) 76%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.45), transparent 34%, rgba(8, 9, 10, 0.62));
}

.page-hero__content {
  display: grid;
  width: min(780px, calc(100% - 48px));
  min-height: clamp(760px, 92svh, 820px);
  align-content: center;
  gap: 24px;
  margin-left: max(24px, calc((100vw - var(--content)) / 2));
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 80px;
}

.page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.4);
}

.page-hero--fence h1 {
  line-height: 1.01;
  letter-spacing: -0.045em;
}

.page-hero__content > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: var(--linen);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.service-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.service-proof > div {
  display: grid;
  min-height: 132px;
  align-content: center;
  gap: 7px;
  padding: 24px max(24px, calc((100vw - var(--content)) / 6));
}

.service-proof > div:not(:last-child) {
  border-right: 1px solid var(--ink);
}

.service-proof strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-proof span {
  max-width: 18rem;
  color: rgba(var(--ink-rgb), 0.68);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.45;
}

.fence-gallery {
  padding: clamp(88px, 9vw, 138px) max(24px, calc((100vw - var(--content)) / 2));
  color: var(--linen);
  background: var(--ink);
}

.fence-gallery__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.fence-gallery__intro > div {
  display: grid;
  gap: 22px;
}

.fence-gallery__intro h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.5vw, 5.1rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.fence-gallery__intro > p {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(253, 252, 240, 0.3);
  color: rgba(253, 252, 240, 0.74);
  line-height: 1.7;
}

.fence-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 16px;
  margin-top: clamp(58px, 7vw, 92px);
}

.fence-gallery__item {
  position: relative;
  grid-column: span 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(253, 252, 240, 0.2);
  background: #101112;
}

.fence-gallery__item--feature {
  grid-column: span 7;
  grid-row: span 2;
}

.fence-gallery__item--wide {
  grid-column: span 6;
}

.fence-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.93) contrast(1.03);
  transition: transform 620ms var(--ease), filter 620ms var(--ease);
}

.fence-gallery__item:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.02);
}

.fence-gallery__item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 42px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 9, 0.92));
}

.fence-gallery__item figcaption span {
  color: var(--cedar-light);
  font-family: var(--font-label);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fence-gallery__item figcaption strong {
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  line-height: 1.25;
}

.page-section {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding-block: clamp(88px, 10vw, 145px);
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.page-intro > div:first-child {
  display: grid;
  gap: 22px;
}

.page-intro h2,
.option-grid h2,
.project-break h2,
.page-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4.7rem);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.page-intro__copy {
  display: grid;
  gap: 20px;
  padding-top: 38px;
  border-top: 1px solid var(--ink);
}

.page-intro__copy p {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.7);
  line-height: 1.7;
}

.page-intro__copy--single {
  align-self: center;
  padding-top: 30px;
}

.page-intro__copy--single p {
  max-width: 39rem;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 600;
  line-height: 1.65;
}

.option-grid {
  border-top: 1px solid var(--ink);
}

.option-grid__heading {
  display: grid;
  max-width: 940px;
  gap: 22px;
}

.option-grid__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(58px, 7vw, 90px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.option-grid__items--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-item {
  display: grid;
  align-content: start;
  gap: 17px;
  min-height: 290px;
  padding: 34px;
}

.option-item:first-child {
  padding-left: 0;
}

.option-item:not(:last-child) {
  border-right: 1px solid var(--ink);
}

.option-item > span {
  color: var(--forest);
  font-family: var(--font-label);
  font-size: 0.63rem;
  font-weight: 800;
}

.option-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.option-item p {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.68);
  font-size: 0.8rem;
  line-height: 1.65;
}

.project-break {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  min-height: 680px;
}

.project-break--dark {
  color: var(--linen);
  background: var(--ink);
}

.project-break--cedar {
  color: var(--ink);
  background: var(--cedar-light);
}

.project-break__media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #101112;
}

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

.project-break__image--fence-gate {
  object-position: 55% 50%;
}

.project-break__image--deck-detail {
  object-position: 52% 50%;
}

.project-break__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(253, 252, 240, 0.24);
  color: var(--linen);
  background: rgba(10, 11, 12, 0.76);
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-break__copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(48px, 7vw, 104px);
}

.project-break__copy h2 {
  font-size: clamp(2rem, 3.6vw, 4.2rem);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  border-top: 1px solid rgba(253, 252, 240, 0.24);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid rgba(253, 252, 240, 0.24);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cedar-light);
}

.check-list--dark {
  border-color: rgba(26, 28, 30, 0.3);
}

.check-list--dark li {
  border-color: rgba(26, 28, 30, 0.3);
}

.check-list--dark li::before {
  background: var(--forest);
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: clamp(85px, 10vw, 145px) max(24px, calc((100vw - var(--content)) / 2));
  color: var(--linen);
  background: var(--forest);
}

.page-cta > div {
  display: grid;
  max-width: 850px;
  gap: 22px;
}

.motion-stagger > * {
  animation: soft-in 620ms var(--ease) both;
  animation-delay: calc(var(--motion-order, 0) * 80ms + 120ms);
}

.motion-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes soft-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: clamp(14px, 2vw, 26px);
    padding-inline: 24px;
  }

  .site-nav {
    display: flex;
    gap: clamp(12px, 1.5vw, 22px);
  }

  .header-phone {
    display: none;
  }

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

  .proof-ledger__item:nth-child(2) {
    border-right: 0;
  }

  .proof-ledger__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .process__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 50px;
  }

  .material-proof {
    grid-template-columns: 1fr;
  }

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

  .process-step:nth-child(n + 4)::before {
    display: none;
  }

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

  .option-item:nth-child(2) {
    border-right: 0;
  }

  .option-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .option-grid__items--three .option-item:nth-child(3) {
    border-top: 1px solid var(--ink);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 20px;
  }

  .brand {
    width: 164px;
  }

  .header-phone,
  .header-estimate {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 98;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(253, 252, 240, 0.22);
    border-radius: 10px;
    background: rgba(16, 17, 18, 0.94);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
    transition:
      opacity 200ms ease,
      transform 240ms var(--ease);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-action-bar__estimate,
  .mobile-action-bar__call {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 0.77rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-action-bar__estimate {
    color: var(--forest);
    background: var(--cedar-light);
  }

  .mobile-action-bar__call {
    min-width: 86px;
    border: 1px solid rgba(253, 252, 240, 0.28);
    color: var(--linen);
  }

  body.menu-open .mobile-action-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    padding: 32px 24px;
    background: rgba(16, 17, 18, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line-light);
    font-size: 1.15rem;
  }

  .hero__content {
    width: min(590px, calc(100% - 40px));
    margin-left: 20px;
    padding-top: 110px;
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13vw, 5.7rem);
  }

  .compare__shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 9, 0.58) 0%, rgba(7, 8, 9, 0.18) 28%, rgba(7, 8, 9, 0.68) 64%, rgba(7, 8, 9, 0.9) 100%),
      linear-gradient(90deg, rgba(7, 8, 9, 0.48), rgba(7, 8, 9, 0.12));
  }

  .compare--pool .compare__shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 9, 0.52) 0%, rgba(7, 8, 9, 0.14) 28%, rgba(7, 8, 9, 0.64) 64%, rgba(7, 8, 9, 0.88) 100%),
      linear-gradient(90deg, rgba(7, 8, 9, 0.46), rgba(7, 8, 9, 0.06));
  }

  .compare--hillside .compare__image--before,
  .compare--hillside .compare__image--after {
    object-position: 50% 50%;
  }

  .compare--hillside .compare__shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 9, 0.52) 0%, rgba(7, 8, 9, 0.14) 28%, rgba(7, 8, 9, 0.65) 64%, rgba(7, 8, 9, 0.89) 100%),
      linear-gradient(90deg, rgba(7, 8, 9, 0.48), rgba(7, 8, 9, 0.07));
  }

  .prototype-note {
    top: 95px;
    right: 20px;
    max-width: 190px;
  }

  .compare__label {
    top: 77%;
  }

  .compare__handle {
    top: 80%;
  }

  .hero__credentials {
    right: 20px;
    left: 20px;
    flex-wrap: wrap;
    gap: 9px 0;
  }

  .hero__credentials span:not(:last-child)::after {
    margin: 0 11px;
  }

  .section-heading,
  .process__intro,
  .project-journal__intro,
  .review-band,
  .questions,
  .estimate {
    grid-template-columns: 1fr;
  }

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

  .service-map-panel__copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-map-panel__visual {
    min-height: 440px;
  }

  .section-heading .eyebrow,
  .process__intro .eyebrow {
    margin-bottom: -12px;
  }

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

  .service-feature__copy {
    padding-right: 0;
  }

  .service-feature__media {
    min-height: 460px;
  }

  .process__track {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 0 28px;
    border-top: 0;
    border-left: 1px solid rgba(253, 252, 240, 0.32);
  }

  .process-step {
    min-height: 142px;
    padding: 0 0 34px 20px;
  }

  .process-step::before,
  .process-step:nth-child(n + 4)::before {
    top: 2px;
    left: -35px;
    display: block;
  }

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

  .standard,
  .standard:first-child {
    padding: 34px 0;
  }

  .standard:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .estimate__copy {
    position: static;
  }

  .page-intro,
  .fence-gallery__intro,
  .project-break,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .fence-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .fence-gallery__item,
  .fence-gallery__item--feature,
  .fence-gallery__item--wide {
    grid-column: span 1;
    grid-row: auto;
  }

  .fence-gallery__item--feature {
    grid-row: span 2;
  }

  .page-hero,
  .page-hero__content {
    min-height: 760px;
  }

  .page-hero__content {
    margin-left: 24px;
  }

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

  .service-proof > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .page-intro__copy {
    padding-top: 28px;
  }

  .project-break__media {
    min-height: 520px;
  }

  .page-cta {
    align-items: start;
  }

  .page-cta .button {
    width: max-content;
  }

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

  .project-card--feature {
    grid-row: auto;
    min-height: 540px;
  }
}

@media (max-width: 590px) {
  .hero {
    min-height: max(790px, 100svh);
  }

  .hero__content {
    min-height: max(790px, 100svh);
    align-content: end;
    gap: 16px;
    padding-bottom: 168px;
  }

  .page-hero,
  .page-hero__content {
    min-height: 740px;
  }

  .page-hero__content {
    width: calc(100% - 40px);
    align-content: end;
    gap: 18px;
    margin-left: 20px;
    padding-bottom: 86px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .page-hero > .page-hero__image--deck {
    object-position: 52% 54%;
  }

  .page-section {
    width: calc(100% - 40px);
    padding-block: 76px;
  }

  .option-grid__items,
  .option-grid__items--three {
    grid-template-columns: 1fr;
  }

  .option-item,
  .option-item:first-child {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .option-grid__items--three .option-item:nth-child(3) {
    border-top: 0;
  }

  .project-break__media {
    min-height: 420px;
  }

  .project-break__copy {
    padding: 64px 20px;
  }

  .page-cta {
    padding-block: 76px;
  }

  .page-cta .button {
    width: 100%;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.65rem, 11.4vw, 3.4rem);
  }

  .hero__lede {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero__actions {
    display: grid;
    justify-items: start;
    gap: 14px;
  }

  .hero__actions .button {
    width: min(100%, 330px);
  }

  .reveal-replay {
    align-items: flex-start;
  }

  .reveal-replay span {
    display: none;
  }

  .prototype-note {
    display: none;
  }

  .compare__label {
    top: 82%;
  }

  .compare__handle {
    top: 86%;
  }

  .compare__line {
    bottom: auto;
    height: 100%;
  }

  .fence-gallery {
    padding-inline: 20px;
  }

  .fence-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 12px;
  }

  .fence-gallery__item--feature {
    grid-row: auto;
    min-height: 430px;
  }

  .compare__label--before {
    left: 14px;
  }

  .compare__label--after {
    right: 14px;
  }

  .hero__credentials {
    font-size: 0.5rem;
  }

  .hero__credentials span:nth-child(3),
  .hero__credentials span:nth-child(4) {
    display: none;
  }

  .proof-ledger {
    grid-template-columns: 1fr;
  }

  .proof-ledger__item {
    min-height: 112px;
  }

  .proof-ledger__item:not(:last-child),
  .proof-ledger__item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .section {
    padding-block: 78px;
  }

  .service-map-section {
    padding: 58px 14px 78px;
  }

  .service-map-panel__copy {
    padding: 34px 22px;
  }

  .service-map-panel h2 {
    font-size: clamp(2.6rem, 13vw, 3.9rem);
  }

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

  .service-zip-checker input {
    border-right: 1px solid var(--ink);
  }

  .service-zip-checker button {
    margin-top: 8px;
  }

  .service-map-panel__visual {
    min-height: 320px;
    padding: 14px;
  }

  .service-office-callout__beacon {
    top: -14px;
    left: -14px;
    width: 28px;
    height: 28px;
  }

  .service-office-callout__beacon::before {
    inset: 5px;
  }

  .service-office-callout__beacon::after {
    inset: 10px;
  }

  .service-office-callout__leader {
    top: 9px;
    right: 12px;
    width: 18px;
  }

  .service-office-callout__plaque {
    top: 6px;
    right: 28px;
    min-width: 118px;
    padding: 7px 8px 8px;
  }

  .service-office-callout__plaque strong {
    font-size: 0.58rem;
    letter-spacing: 0.045em;
  }

  .service-office-callout__plaque small {
    font-size: 0.45rem;
    letter-spacing: 0.065em;
  }

  .service-map-legend {
    right: 12px;
    bottom: 12px;
  }

  .section-heading {
    margin-bottom: 52px;
  }

  .service-feature__media {
    min-height: 360px;
  }

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

  .service-secondary__item,
  .service-secondary__item:first-child {
    padding: 36px 0;
  }

  .project-journal {
    padding-block: 78px;
  }

  .project-card,
  .project-card--feature {
    min-height: 390px;
  }

  .project-card--note {
    min-height: 330px;
  }

  .material-proof ul {
    grid-template-columns: 1fr;
  }

  .material-proof li {
    border-bottom: 1px solid var(--line);
  }

  .service-secondary__item:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

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

  .review-band {
    padding-inline: 24px;
  }

  .questions {
    gap: 60px;
  }

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

  .estimate-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .field--full {
    grid-column: auto;
  }

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

  .site-footer__details {
    text-align: left;
  }
}

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

  .motion-reveal {
    opacity: 1;
    transform: none;
  }
}
