:root {
  --pine-950: #132119;
  --pine-900: #1a2e20;
  --pine-800: #24452b;
  --moss: #647653;
  --leaf: #9aac58;
  --leaf-light: #d8e2a7;
  --clay: #c96e42;
  --snow: #d9edee;
  --cream: #f3f1e8;
  --paper: #fbfaf5;
  --white: #ffffff;
  --ink: #20251f;
  --muted: #646a61;
  --line: rgba(32, 37, 31, 0.18);
  --shell: min(92vw, 1440px);
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--pine-800);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: 1rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--pine-950);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.concept-bar {
  color: var(--pine-950);
  background: var(--leaf-light);
  border-bottom: 1px solid rgba(19, 33, 25, 0.24);
}

.concept-bar p {
  width: var(--shell);
  margin: 0 auto;
  padding: 0.48rem 0;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.73rem;
  letter-spacing: 0.04em;
}

.concept-bar strong {
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.utility-bar {
  color: rgba(255,255,255,0.78);
  background: var(--pine-950);
}

.utility-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.utility-inner p {
  margin: 0;
}

.utility-inner p span {
  color: var(--leaf);
  margin-inline: 0.45rem;
}

.utility-phone {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.utility-phone span {
  color: var(--leaf-light);
}

.utility-phone strong {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(243, 241, 232, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.wordmark-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--pine-800);
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.03em;
  box-shadow: inset -8px -8px 0 rgba(154, 172, 88, 0.32);
}

.wordmark-text {
  display: grid;
  line-height: 1.1;
}

.wordmark-text strong {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.wordmark-text small {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 1rem 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: 0.7rem;
  height: 2px;
  background: var(--clay);
  transition: right 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 0.8rem 1.1rem;
  color: var(--white);
  background: var(--pine-800);
  border: 1px solid var(--pine-800);
}

.nav-cta:hover {
  color: var(--pine-950);
  background: var(--leaf-light);
}

.menu-button {
  display: none;
}

.hero {
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent calc(8.333vw - 1px), rgba(36,69,43,0.055) calc(8.333vw - 1px), rgba(36,69,43,0.055) 8.333vw),
    var(--cream);
}

.hero-grid {
  min-height: min(800px, calc(100vh - 162px));
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
  padding-block: clamp(3.5rem, 7vw, 7.4rem);
}

.eyebrow,
.kicker {
  margin: 0 0 1.4rem;
  color: var(--pine-800);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 1rem;
}

.eyebrow span + span::before {
  content: "/";
  margin-right: 1rem;
  color: var(--clay);
}

.hero h1,
.section-heading h2,
.index-heading h2,
.hardscape-copy h2,
.commercial-intro h2,
.snow-copy h2,
.area-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(4.3rem, 7.3vw, 8.2rem);
}

.hero h1 em {
  color: var(--pine-800);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.08em;
}

.hero-lead {
  max-width: 660px;
  margin: 2rem 0 0;
  color: #485046;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 1.15rem 0.8rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button span {
  font-size: 1.2rem;
}

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

.button-primary {
  color: var(--white);
  background: var(--pine-800);
}

.button-primary:hover {
  color: var(--pine-950);
  background: var(--leaf-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  color: var(--pine-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
}

.hero-notes {
  max-width: 690px;
  margin: 3.6rem 0 0;
  padding: 1.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-notes li {
  padding-right: 1rem;
  display: grid;
  gap: 0.25rem;
}

.hero-notes li + li {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.hero-notes strong {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.hero-notes span {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  padding: clamp(1rem, 2vw, 2rem);
  background: var(--pine-800);
  box-shadow: 1.2rem 1.2rem 0 var(--leaf-light);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 0.7rem;
  border: 1px solid rgba(255,255,255,0.4);
}

.hero-visual::after {
  width: 72px;
  height: 72px;
  right: -1px;
  top: -1px;
  border-left: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
  background: repeating-linear-gradient(135deg, transparent 0 5px, rgba(255,255,255,0.28) 5px 6px);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.visual-label {
  position: absolute;
  z-index: 2;
  left: -1.2rem;
  top: 2.2rem;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: var(--pine-950);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-label span {
  color: var(--leaf-light);
  margin-right: 0.6rem;
}

.hero-caption {
  padding-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  color: rgba(255,255,255,0.77);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-ribbon {
  color: var(--cream);
  background: var(--pine-950);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.ribbon-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.ribbon-inner i {
  width: 5px;
  height: 5px;
  background: var(--clay);
  transform: rotate(45deg);
}

.section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

.heading-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.section-heading h2,
.index-heading h2,
.commercial-intro h2,
.area-copy h2,
.contact-copy h2 {
  font-size: clamp(3.6rem, 6vw, 6.8rem);
}

.heading-split > p,
.heading-split > div:last-child > p {
  max-width: 600px;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.path-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.path-grid {
  margin-top: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.path-card {
  position: relative;
  min-height: 680px;
  padding: clamp(2rem, 4vw, 4.5rem);
  overflow: hidden;
}

.residential-path {
  color: var(--pine-950);
  background: var(--leaf-light);
}

.commercial-path {
  color: var(--white);
  background: var(--pine-900);
}

.path-number,
.card-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.commercial-path .path-number {
  color: var(--leaf-light);
}

.path-symbol {
  width: 110px;
  height: 110px;
  margin: 3.3rem 0 2rem;
  position: relative;
}

.path-symbol span {
  position: absolute;
  border: 2px solid var(--pine-800);
  border-radius: 50% 50% 46% 54%;
  transform: rotate(-18deg);
}

.path-symbol span:nth-child(1) { inset: 0 20px 30px 0; }
.path-symbol span:nth-child(2) { inset: 32px 0 0 30px; }
.path-symbol span:nth-child(3) { width: 2px; height: 100px; left: 54px; top: 14px; border: 0; background: var(--pine-800); transform: rotate(33deg); }

.path-symbol-commercial span {
  border: 0;
  border-radius: 0;
  background: var(--leaf-light);
  transform: none;
}

.path-symbol-commercial span:nth-child(1) { inset: 40px 0 0 0; clip-path: polygon(0 100%, 0 42%, 35% 42%, 35% 0, 70% 0, 70% 24%, 100% 24%, 100% 100%); }
.path-symbol-commercial span:nth-child(2) { width: 72px; height: 2px; left: 18px; top: 22px; transform: rotate(-24deg); }
.path-symbol-commercial span:nth-child(3) { width: 72px; height: 2px; left: 18px; top: 15px; transform: rotate(24deg); }

.path-card h3 {
  max-width: 580px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.4vw, 5.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.path-card > p {
  max-width: 530px;
  margin: 1.8rem 0;
  opacity: 0.78;
}

.check-list {
  margin: 2rem 0 3rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.check-list li {
  padding: 0.85rem 0.5rem 0.85rem 1.2rem;
  position: relative;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.8;
}

.check-list li::before {
  position: absolute;
  content: "+";
  left: 0;
}

.path-card > a {
  position: absolute;
  left: clamp(2rem, 4vw, 4.5rem);
  right: clamp(2rem, 4vw, 4.5rem);
  bottom: clamp(2rem, 4vw, 4rem);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card > a span {
  font-size: 1.2rem;
}

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

.index-heading {
  max-width: 1000px;
}

.index-heading > p:last-child {
  max-width: 660px;
  margin: 1.8rem 0 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-index {
  margin-top: 5rem;
  border-top: 2px solid var(--ink);
}

.service-index article {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 130px;
  align-items: start;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.service-index article:hover {
  padding-inline: 1rem;
  background: rgba(216, 226, 167, 0.35);
}

.service-no {
  color: var(--clay);
  font-family: var(--display);
  font-size: 1.8rem;
}

.service-index h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 1.1;
}

.service-index p {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
}

.service-index a {
  margin-top: 0.35rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hardscape-section {
  min-height: 860px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--pine-950);
}

.hardscape-visual {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #d7d0c0;
}

.hardscape-visual::before {
  position: absolute;
  content: "";
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 26px, rgba(19,33,25,0.06) 26px 27px);
}

.hardscape-visual img {
  position: relative;
  width: min(88%, 900px);
}

.art-note {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--clay);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hardscape-copy {
  padding: clamp(4rem, 7vw, 8rem);
  color: var(--white);
  align-self: center;
}

.kicker.light {
  color: var(--leaf-light);
}

.hardscape-copy h2 {
  font-size: clamp(4rem, 6.2vw, 7rem);
}

.hardscape-lead {
  max-width: 690px;
  margin: 2rem 0 3rem;
  color: rgba(255,255,255,0.67);
  font-size: 1.08rem;
}

.material-list {
  margin-bottom: 2.8rem;
  border-top: 1px solid rgba(255,255,255,0.24);
}

.material-list article {
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: 50px 190px 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.24);
}

.material-list span {
  color: var(--clay);
  font-family: var(--display);
  font-size: 1.3rem;
}

.material-list h3,
.material-list p {
  margin: 0;
}

.material-list h3 {
  font-size: 0.92rem;
}

.material-list p {
  color: rgba(255,255,255,0.58);
  font-size: 0.8rem;
}

.button-light {
  color: var(--pine-950);
  background: var(--leaf-light);
}

.button-light:hover {
  background: var(--white);
}

.commercial-section {
  background: var(--paper);
}

.commercial-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(3rem, 10vw, 11rem);
}

.commercial-intro > div:last-child p {
  max-width: 580px;
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.commercial-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.commercial-main,
.commercial-side {
  background: var(--cream);
}

.commercial-main {
  padding: clamp(2.5rem, 5vw, 5.5rem);
}

.commercial-main h3,
.commercial-side h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.commercial-main h3 {
  max-width: 600px;
  margin: 4rem 0 1.5rem;
  font-size: clamp(3rem, 4.6vw, 5.4rem);
}

.commercial-main > p {
  max-width: 580px;
  color: var(--muted);
}

.commercial-main ul {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.commercial-main li {
  padding: 0.9rem 0 0.9rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
}

.commercial-main li::before {
  position: absolute;
  content: "+";
  left: 0;
  color: var(--clay);
}

.commercial-side {
  display: grid;
  grid-template-rows: minmax(300px, 1.05fr) 0.95fr;
}

.commercial-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--pine-800);
}

.commercial-side > div {
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--leaf-light);
}

.commercial-side h3 {
  margin: 2rem 0 1rem;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
}

.commercial-side p {
  max-width: 600px;
  margin: 0;
  color: rgba(19,33,25,0.74);
}

.snow-section {
  position: relative;
  padding-block: clamp(6rem, 10vw, 10rem) 4rem;
  overflow: hidden;
  color: var(--white);
  background: #102432;
}

.snow-noise {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(var(--snow) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.snow-grid,
.contract-strip {
  position: relative;
}

.snow-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.snow-kicker {
  color: #9ed2da;
}

.snow-copy h2 {
  font-size: clamp(4.4rem, 7vw, 8rem);
}

.snow-lead {
  max-width: 640px;
  margin: 2rem 0;
  color: rgba(255,255,255,0.67);
  font-size: 1.08rem;
}

.button-snow {
  color: #102432;
  background: var(--snow);
}

.button-snow:hover {
  background: var(--white);
}

.snow-client-list {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.snow-client-list span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(217,237,238,0.32);
  color: rgba(255,255,255,0.66);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.snow-panel {
  padding: clamp(1rem, 2vw, 2rem);
  background: rgba(217,237,238,0.08);
  border: 1px solid rgba(217,237,238,0.25);
}

.snow-panel img {
  width: 100%;
  border: 1px solid rgba(217,237,238,0.25);
}

.snow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.snow-steps article {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.8rem;
}

.snow-steps article + article {
  border-left: 1px solid rgba(217,237,238,0.2);
}

.snow-steps span {
  color: #9ed2da;
  font-family: var(--display);
}

.snow-steps h3,
.snow-steps p {
  margin: 0;
}

.snow-steps h3 {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.snow-steps p {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.68rem;
  line-height: 1.45;
}

.contract-strip {
  margin-top: 5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(217,237,238,0.24);
}

.contract-strip p {
  margin: 0;
  color: #9ed2da;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contract-strip ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  font-size: 0.76rem;
  font-weight: 700;
}

.contract-strip li::before {
  content: "+";
  margin-right: 0.65rem;
  color: #9ed2da;
}

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

.work-heading {
  align-items: end;
}

.gallery-filters {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gallery-filters button {
  padding: 0.55rem 0.85rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  color: var(--white);
  background: var(--pine-800);
  border-color: var(--pine-800);
}

.gallery-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-auto-rows: minmax(280px, 37vw);
  gap: 1rem;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--pine-800);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  background: rgba(19,33,25,0.88);
  backdrop-filter: blur(8px);
}

.gallery-card figcaption span {
  color: var(--leaf-light);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  font-size: 0.78rem;
}

.area-section {
  padding-block: clamp(6rem, 10vw, 10rem);
  color: var(--white);
  background:
    radial-gradient(circle at 83% 20%, rgba(154,172,88,0.2) 0 1px, transparent 2px),
    var(--pine-800);
  background-size: 24px 24px;
}

.area-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
}

.area-copy h2 {
  font-size: clamp(4rem, 6vw, 7rem);
}

.area-copy > p:not(.kicker) {
  max-width: 560px;
  margin: 2rem 0;
  color: rgba(255,255,255,0.67);
}

.light-link {
  color: var(--leaf-light);
}

.area-map {
  position: relative;
  min-height: 540px;
  padding: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(19,33,25,0.32);
}

.area-map::before,
.area-map::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(216,226,167,0.22);
  border-radius: 50%;
}

.area-map::before { width: 390px; height: 390px; }
.area-map::after { width: 260px; height: 260px; }

.area-center {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--pine-950);
  background: var(--leaf-light);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(216,226,167,0.1);
}

.area-center span,
.area-center small {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.area-center strong {
  margin-block: 0.25rem;
  font-size: 1.35rem;
}

.area-map ul {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.area-map li {
  position: absolute;
  padding: 0.25rem 0.45rem;
  color: rgba(255,255,255,0.75);
  background: var(--pine-800);
}

.area-map li:nth-child(1) { left: 8%; top: 14%; }
.area-map li:nth-child(2) { right: 9%; top: 12%; }
.area-map li:nth-child(3) { left: 3%; top: 37%; }
.area-map li:nth-child(4) { right: 3%; top: 33%; }
.area-map li:nth-child(5) { left: 8%; bottom: 33%; }
.area-map li:nth-child(6) { right: 8%; bottom: 32%; }
.area-map li:nth-child(7) { left: 16%; bottom: 13%; }
.area-map li:nth-child(8) { right: 14%; bottom: 11%; }
.area-map li:nth-child(9) { left: 35%; top: 4%; }
.area-map li:nth-child(10) { left: 33%; bottom: 3%; }
.area-map li:nth-child(11) { right: 0; top: 54%; }
.area-map li:nth-child(12) { left: 0; top: 57%; }

.contact-section {
  padding-block: clamp(5rem, 10vw, 10rem);
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.contact-copy {
  align-self: start;
  position: sticky;
  top: 130px;
}

.contact-copy > p:not(.kicker) {
  max-width: 580px;
  margin: 2rem 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  margin-top: 2.5rem;
  border-top: 2px solid var(--ink);
}

.contact-actions a {
  padding: 1.1rem 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-actions span {
  color: var(--clay);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
}

.hours-list {
  margin-top: 2.6rem;
}

.hours-list div {
  padding: 0.65rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
}

.hours-list dt {
  color: var(--muted);
}

.hours-list dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.form-card {
  color: var(--white);
  background: var(--pine-900);
  border-top: 8px solid var(--leaf);
}

.form-head {
  padding: 1.4rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: var(--leaf-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-card form {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1.15rem;
}

.field label {
  margin-bottom: 0.45rem;
  display: block;
  color: var(--leaf-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 0;
  outline: 0;
}

.field input,
.field select {
  height: 52px;
  padding: 0 0.85rem;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--leaf-light);
  box-shadow: 0 0 0 3px rgba(216,226,167,0.2);
}

.button-form {
  width: 100%;
  margin-top: 0.3rem;
  color: var(--pine-950);
  background: var(--leaf-light);
  cursor: pointer;
}

.button-form:hover {
  background: var(--white);
}

.form-note,
.form-status {
  margin: 1rem 0 0;
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-note {
  color: rgba(255,255,255,0.5);
}

.form-status {
  padding: 0.8rem;
  color: var(--pine-950);
  background: var(--leaf-light);
}

.site-footer {
  padding-block: 5rem 1.5rem;
  color: var(--white);
  background: var(--pine-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
}

.wordmark-footer .wordmark-mark {
  color: var(--pine-950);
  background: var(--leaf-light);
  box-shadow: inset -8px -8px 0 rgba(154,172,88,0.6);
}

.wordmark-footer .wordmark-text small {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  max-width: 390px;
  margin: 1.4rem 0 0;
  color: rgba(255,255,255,0.54);
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-links h2 {
  margin: 0 0 0.5rem;
  color: var(--leaf-light);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: rgba(255,255,255,0.64);
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-cta {
  padding: 1.6rem;
  align-self: start;
  background: var(--leaf-light);
  color: var(--pine-950);
}

.footer-cta > span {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-cta a {
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--pine-950);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

@media (max-width: 1120px) {
  .site-nav {
    gap: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
  }

  .path-card {
    min-height: 720px;
  }

  .hardscape-section {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hardscape-copy {
    padding: 4rem;
  }

  .material-list article {
    grid-template-columns: 42px 150px 1fr;
  }

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

  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .concept-bar p {
    justify-content: space-between;
  }

  .utility-inner p {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .menu-button {
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    cursor: pointer;
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .menu-icon {
    width: 20px;
    display: grid;
    gap: 5px;
  }

  .menu-icon i {
    width: 100%;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 1.5rem 4vw 2rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(19,33,25,0.16);
  }

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

  .site-nav > a:not(.nav-cta) {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }

  .hero-grid,
  .heading-split,
  .commercial-intro,
  .snow-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 4rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(90%, 680px);
    margin-inline: auto;
  }

  .heading-split,
  .commercial-intro {
    gap: 2rem;
  }

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

  .path-card {
    min-height: 640px;
  }

  .hardscape-section {
    grid-template-columns: 1fr;
  }

  .hardscape-visual {
    min-height: 620px;
  }

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

  .commercial-main {
    min-height: 600px;
  }

  .snow-grid {
    gap: 4rem;
  }

  .area-grid {
    gap: 4rem;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(90vw, 620px);
  }

  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-bottom: 68px;
  }

  .concept-bar p {
    padding-block: 0.55rem;
    display: block;
    text-align: center;
    line-height: 1.35;
  }

  .concept-bar span {
    display: none;
  }

  .utility-bar {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .wordmark-mark {
    width: 43px;
    height: 43px;
    font-size: 1.05rem;
  }

  .wordmark-text strong {
    font-size: 0.95rem;
  }

  .wordmark-text small {
    display: none;
  }

  .hero-grid {
    padding-block: 3rem 4.5rem;
    gap: 3rem;
  }

  .eyebrow {
    display: grid;
    gap: 0.25rem;
  }

  .eyebrow span + span::before {
    content: none;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 17vw, 6rem);
  }

  .hero-lead {
    margin-top: 1.5rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.3rem;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-notes {
    margin-top: 2.7rem;
    grid-template-columns: 1fr;
  }

  .hero-notes li,
  .hero-notes li + li {
    padding: 0.65rem 0;
    grid-template-columns: 120px 1fr;
    align-items: center;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    width: calc(100% - 1rem);
    margin-right: 1rem;
    padding: 0.8rem;
    box-shadow: 0.8rem 0.8rem 0 var(--leaf-light);
  }

  .visual-label {
    left: -0.6rem;
    top: 1.2rem;
  }

  .hero-caption {
    grid-template-columns: 1fr 1fr;
  }

  .ribbon-inner {
    min-height: 54px;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .section {
    padding-block: 5.2rem;
  }

  .section-heading h2,
  .index-heading h2,
  .commercial-intro h2,
  .area-copy h2,
  .contact-copy h2,
  .hardscape-copy h2,
  .snow-copy h2 {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .path-grid {
    margin-inline: -5vw;
  }

  .path-card {
    min-height: 720px;
    padding: 2rem 5vw 3rem;
  }

  .path-card h3 {
    font-size: clamp(3.2rem, 14vw, 4.7rem);
  }

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

  .path-card > a {
    left: 5vw;
    right: 5vw;
    bottom: 2.5rem;
  }

  .index-heading > p:last-child {
    margin-left: 0;
  }

  .service-index {
    margin-top: 3rem;
  }

  .service-index article {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }

  .service-index a {
    grid-column: 2;
    width: 110px;
  }

  .hardscape-visual {
    min-height: 430px;
  }

  .hardscape-copy {
    padding: 4.5rem 5vw;
  }

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

  .material-list p {
    grid-column: 2;
  }

  .commercial-main {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .commercial-main h3 {
    margin-top: 3rem;
  }

  .commercial-side {
    grid-template-rows: 320px auto;
  }

  .snow-section {
    padding-top: 5rem;
  }

  .snow-panel {
    padding: 0.7rem;
  }

  .snow-steps {
    grid-template-columns: 1fr;
  }

  .snow-steps article + article {
    border-top: 1px solid rgba(217,237,238,0.2);
    border-left: 0;
  }

  .contract-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .contract-strip ul {
    display: grid;
    gap: 0.7rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .gallery-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .area-map {
    min-height: 500px;
    margin-inline: -2vw;
    padding: 1rem;
  }

  .area-map::before { width: 310px; height: 310px; }
  .area-map::after { width: 210px; height: 210px; }
  .area-center { width: 145px; height: 145px; }

  .area-map li {
    font-size: 0.55rem;
  }

  .area-map li:nth-child(9),
  .area-map li:nth-child(12) {
    display: none;
  }

  .contact-grid {
    gap: 3.5rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1.5rem;
  }

  .footer-brand,
  .footer-cta {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 200;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: var(--white);
    background: var(--pine-950);
    border-top: 1px solid rgba(255,255,255,0.16);
  }

  .mobile-contact-bar a {
    padding: 0.65rem 1rem;
    display: grid;
    align-content: center;
  }

  .mobile-contact-bar a + a {
    background: var(--pine-800);
    border-left: 1px solid rgba(255,255,255,0.16);
  }

  .mobile-contact-bar span {
    color: var(--leaf-light);
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-contact-bar strong {
    font-size: 0.78rem;
  }
}

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