:root {
  --ink: #111a1f;
  --slate: #1d2b31;
  --slate-2: #2b3d43;
  --copper: #c86f3d;
  --copper-deep: #984622;
  --paper: #f3efe7;
  --paper-deep: #e4ddd2;
  --white: #ffffff;
  --muted: #657176;
  --sage: #3b5a52;
  --line: rgba(17, 26, 31, 0.18);
  --shadow: 0 22px 60px rgba(13, 22, 27, 0.16);
  --radius: 2px;
  --wrap: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #f0a379;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

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

.preview-bar {
  position: relative;
  z-index: 20;
  padding: 8px 20px;
  background: var(--copper);
  color: #170b05;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 15;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: var(--white);
}

.header-inner {
  width: var(--wrap);
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

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

.brand-text {
  display: grid;
  gap: 1px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text small {
  color: #b9c1c3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 21px;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  color: #dfe4e3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call {
  padding: 12px 16px;
  border: 1px solid var(--copper);
  color: var(--white) !important;
}

.header-call:hover {
  background: var(--copper);
  color: var(--ink) !important;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 2px);
  width: 1px;
  background: rgba(255, 255, 255, 0.11);
  content: "";
}

.hero-grid {
  width: var(--wrap);
  min-height: 695px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 72px;
  padding: 72px 0 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.card-kicker,
.number-label {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading,
.contact-band h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 6.9vw, 6.7rem);
}

.hero-lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: #cbd2d2;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 20px;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: #170b05;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button::after {
  content: "↗";
  font-size: 1rem;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #e18a58;
  background: #e18a58;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--slate-2);
  background: var(--slate-2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  font-size: 1.1rem;
}

.hero-art {
  position: relative;
  z-index: 1;
}

.hero-art::before {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 42%;
  height: 13px;
  background: var(--copper);
  content: "";
}

.hero-art img {
  width: 100%;
  box-shadow: 24px 24px 0 rgba(200, 111, 61, 0.18);
}

.art-caption {
  position: absolute;
  right: -18px;
  bottom: -34px;
  max-width: 255px;
  padding: 15px 18px;
  border-left: 4px solid var(--copper);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.signal-strip {
  background: var(--paper-deep);
}

.signal-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 34px;
  border-left: 1px solid var(--line);
}

.signal:last-child {
  border-right: 1px solid var(--line);
}

.signal strong {
  color: var(--copper-deep);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.signal span {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section {
  padding: 105px 0;
}

.section-tight {
  padding: 78px 0;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.section-intro {
  max-width: 770px;
  margin-bottom: 48px;
}

.section-heading {
  max-width: 900px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.section-heading.small {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.section-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-number {
  width: 46px;
  height: 46px;
  margin-bottom: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  color: var(--copper-deep);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
}

.service-card h3,
.project-card h3,
.approach-card h3,
.county-card h3,
.contact-option h2,
.service-detail h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card p {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card .text-link {
  margin-top: auto;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  color: var(--white);
}

.dark-section::after {
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(200, 111, 61, 0.5);
  border-radius: 50%;
  content: "";
}

.dark-section .section-lead {
  color: #c6cecd;
}

.approach-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
  align-items: start;
}

.owner-block {
  padding: 40px;
  border-top: 8px solid var(--copper);
  background: #f0e8dc;
  color: var(--ink);
}

.owner-initials {
  width: 92px;
  height: 92px;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--copper);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
}

.owner-block h3 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.owner-block p {
  margin: 14px 0 0;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.approach-card {
  min-height: 205px;
  padding: 30px;
  background: var(--slate);
}

.approach-card p {
  margin: 15px 0 0;
  color: #bfc9c7;
  font-size: 0.94rem;
}

.approach-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--slate);
  color: var(--white);
}

.project-card:first-child {
  grid-row: 1 / 3;
  min-height: 700px;
}

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

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

.project-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 26px 25px;
  background: linear-gradient(transparent, rgba(10, 17, 21, 0.94));
}

.project-label p {
  margin: 7px 0 0;
  color: #d8dfdd;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.framework-note {
  margin-top: 18px;
  padding: 17px 20px;
  border-left: 4px solid var(--copper);
  background: var(--paper-deep);
  color: #475155;
  font-size: 0.85rem;
}

.area-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.area-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #152328;
}

.area-map::before,
.area-map::after {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(200, 111, 61, 0.35);
  border-radius: 50%;
  content: "";
}

.area-map::before {
  top: -85px;
  left: -80px;
}

.area-map::after {
  right: -65px;
  bottom: -100px;
}

.county-shape {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--slate-2);
  color: #d9dfde;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.county-shape.one {
  top: 63px;
  left: 43px;
  width: 43%;
  height: 150px;
  transform: rotate(-4deg);
}

.county-shape.two {
  top: 54px;
  right: 38px;
  width: 37%;
  height: 185px;
  transform: rotate(5deg);
}

.county-shape.three {
  bottom: 55px;
  left: 55px;
  width: 39%;
  height: 178px;
  transform: rotate(5deg);
}

.county-shape.four {
  right: 42px;
  bottom: 47px;
  width: 41%;
  height: 151px;
  transform: rotate(-4deg);
}

.map-pin {
  position: absolute;
  z-index: 4;
  top: 47%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--copper);
}

.map-pin span {
  transform: rotate(-45deg);
  color: #1a0b05;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.area-copy .section-heading {
  font-size: clamp(2.6rem, 4.7vw, 4.8rem);
}

.county-tags {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.county-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #d6dddc;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 62px 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 8px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  color: var(--copper-deep);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

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

.faq-list details p {
  max-width: 800px;
  margin: -5px 62px 26px 0;
  color: var(--muted);
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: var(--copper);
  color: #170b05;
}

.contact-band::after {
  position: absolute;
  right: -70px;
  bottom: -155px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(255, 255, 255, 0.12);
  transform: rotate(45deg);
  content: "";
}

.contact-band-inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  min-height: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  padding: 65px 0;
}

.contact-band h2 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.contact-band-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-action {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(23, 11, 5, 0.38);
  color: #170b05;
  text-decoration: none;
}

.contact-action:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-action span {
  display: grid;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.contact-action small {
  margin-bottom: 5px;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-action b {
  font-size: 1.4rem;
}

.site-footer {
  background: #0c1418;
  color: #c3cbca;
}

.footer-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 70px;
  padding: 72px 0 54px;
}

.footer-brand {
  margin-bottom: 25px;
}

.footer-note {
  max-width: 430px;
  margin: 0;
  color: #899695;
  font-size: 0.85rem;
}

.footer-column h2 {
  margin: 0 0 17px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #c3cbca;
  overflow-wrap: anywhere;
  text-decoration-color: #61706f;
  text-underline-offset: 4px;
}

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

.footer-bottom {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #71807f;
  font-size: 0.74rem;
}

.footer-bottom strong {
  color: var(--copper);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(200, 111, 61, 0.14);
  transform: rotate(45deg);
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  min-height: 460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 65px;
  padding: 90px 0 75px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.page-hero-lead {
  align-self: end;
  margin: 0 0 10px;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--copper);
  color: #c7d0cf;
  font-size: 1.05rem;
}

.service-details {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-detail {
  scroll-margin-top: 20px;
  display: grid;
  grid-template-columns: 0.26fr 0.74fr 1fr;
  gap: 38px;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail-number {
  color: var(--copper-deep);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 0.9;
}

.service-detail-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.service-detail-copy ul,
.plain-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-detail-copy li,
.plain-list li {
  position: relative;
  padding-left: 19px;
}

.service-detail-copy li::before,
.plain-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--copper);
  content: "";
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: start;
}

.about-graphic {
  position: sticky;
  top: 25px;
  padding: 40px;
  border-top: 9px solid var(--copper);
  background: var(--slate);
  color: var(--white);
}

.about-graphic .owner-initials {
  width: 124px;
  height: 124px;
  font-size: 3rem;
}

.about-graphic h2 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-graphic p {
  color: #c7cfce;
}

.about-copy h2 {
  margin: 0 0 20px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.about-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-copy hr {
  margin: 42px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.fact-row {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fact {
  min-height: 170px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.fact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.projects-page-grid .project-card {
  min-height: 520px;
}

.projects-page-grid .project-card:first-child {
  grid-row: auto;
  min-height: 520px;
}

.story-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 65px;
  background: var(--line);
}

.story-spec article {
  min-height: 230px;
  padding: 30px;
  background: var(--paper);
}

.story-spec strong {
  display: block;
  margin-bottom: 17px;
  color: var(--copper-deep);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-spec h2 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.story-spec p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.counties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.county-card {
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.county-card ul {
  margin: 23px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.county-card li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  font-size: 0.85rem;
}

.area-caveat {
  margin-top: 25px;
  padding: 18px 20px;
  border-left: 4px solid var(--copper);
  background: var(--white);
  color: #3f4b4f;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-option {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 38px;
  border-top: 8px solid var(--copper);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(13, 22, 27, 0.08);
}

.contact-option p {
  color: var(--muted);
}

.contact-option .button,
.contact-option .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.contact-option .text-link {
  max-width: 100%;
  display: block;
  overflow-wrap: anywhere;
}

.contact-option .text-link::after {
  margin-left: 10px;
}

.hours-panel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid var(--line);
}

.hours-panel > div {
  min-height: 210px;
  padding: 34px;
}

.hours-panel > div:first-child {
  border-right: 1px solid var(--line);
}

.hours-panel h2 {
  margin: 0 0 12px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hours-panel p {
  margin: 0;
  color: var(--muted);
}

.planning-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.planning-list article {
  min-height: 210px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.planning-list span {
  color: var(--copper-deep);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.planning-list h3 {
  margin: 22px 0 10px;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.planning-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  :root {
    --wrap: min(100% - 32px, 850px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    list-style: none;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

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

  .mobile-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(310px, calc(100vw - 32px));
    padding: 10px;
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--slate);
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 64px;
  }

  .hero h1 {
    max-width: 850px;
  }

  .hero-art {
    width: min(100%, 650px);
  }

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

  .projects-page-grid .project-card:last-child {
    grid-column: 1 / -1;
  }

  .approach-grid,
  .area-layout,
  .about-split {
    grid-template-columns: 1fr;
  }

  .owner-block {
    max-width: 540px;
  }

  .area-map {
    order: 2;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .page-hero-lead {
    max-width: 650px;
  }

  .service-detail {
    grid-template-columns: 90px 0.65fr 1.35fr;
  }

  .about-graphic {
    position: static;
  }

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

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --wrap: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .preview-bar {
    padding: 8px 12px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

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

  .brand {
    min-width: 0;
  }

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

  .brand-text {
    font-size: 0.84rem;
  }

  .brand-text small {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    gap: 52px;
    padding: 54px 0 75px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-lead {
    margin-top: 22px;
  }

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

  .hero-art::before {
    top: -12px;
    right: -8px;
  }

  .hero-art img {
    box-shadow: 12px 12px 0 rgba(200, 111, 61, 0.18);
  }

  .art-caption {
    right: -4px;
    bottom: -35px;
    max-width: 230px;
  }

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

  .signal {
    min-height: 88px;
    padding: 16px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 75px 0;
  }

  .section-tight {
    padding: 58px 0;
  }

  .section-heading {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .services-grid,
  .projects-page-grid,
  .counties-grid,
  .contact-grid,
  .planning-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
    padding: 28px;
  }

  .service-number {
    margin-bottom: 32px;
  }

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

  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-card,
  .project-card:first-child,
  .projects-page-grid .project-card,
  .projects-page-grid .project-card:first-child {
    grid-row: auto;
    min-height: 390px;
  }

  .projects-page-grid .project-card:last-child {
    grid-column: auto;
  }

  .area-map {
    min-height: 390px;
  }

  .county-shape.one {
    top: 45px;
    left: 25px;
  }

  .county-shape.two {
    top: 40px;
    right: 24px;
  }

  .county-shape.three {
    bottom: 42px;
    left: 30px;
  }

  .county-shape.four {
    right: 26px;
    bottom: 35px;
  }

  .contact-band-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-band h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .contact-action {
    align-items: flex-start;
  }

  .contact-action span {
    max-width: calc(100% - 34px);
    overflow-wrap: anywhere;
    font-size: 0.92rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 55px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .page-hero-inner {
    min-height: 400px;
    padding: 65px 0 58px;
  }

  .page-hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.1rem);
  }

  .service-detail {
    grid-template-columns: 65px 1fr;
    gap: 23px;
  }

  .service-detail-copy {
    grid-column: 1 / -1;
    padding-left: 88px;
  }

  .fact-row,
  .story-spec {
    grid-template-columns: 1fr;
  }

  .about-graphic,
  .owner-block,
  .contact-option {
    padding: 28px;
  }

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

  .hours-panel > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

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

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