:root {
  --ink: #1f2c27;
  --forest: #274238;
  --forest-deep: #172b24;
  --moss: #486556;
  --gold: #bd8c34;
  --gold-light: #d8bd82;
  --clay: #a55232;
  --paper: #fbf8f1;
  --oat: #eee5d3;
  --mist: #dce5de;
  --white: #fffefa;
  --line: rgba(31, 44, 39, 0.18);
  --shadow: 0 18px 50px rgba(23, 43, 36, 0.1);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a:hover {
  text-decoration-thickness: 2px;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7.3vw, 6.9rem);
}

h2 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--clay);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-180%);
}

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

.preview-bar {
  position: relative;
  z-index: 30;
  padding: 0.52rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-bar p {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin: 0;
  text-align: center;
}

.preview-bar span {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.5rem;
  width: min(100% - 2rem, 1180px);
  min-height: 86px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  color: var(--forest-deep);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 4px solid var(--gold);
}

.brand-mark::after {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 17px;
  height: 17px;
  border-top: 4px solid var(--forest);
  border-left: 4px solid var(--forest);
  content: '';
}

.brand-text {
  max-width: 245px;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 0.75rem 0;
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.48rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  color: var(--forest-deep);
  background: transparent;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: '';
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -7px;
}

.menu-lines::after {
  position: absolute;
  top: 7px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--forest);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta:hover {
  color: var(--forest-deep);
  background: var(--gold-light);
}

.shell {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.75rem, 9vw, 8.5rem);
}

.section-compact {
  padding-block: clamp(3.5rem, 6vw, 5.75rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  flex: 0 0 38px;
  width: 38px;
  height: 2px;
  background: currentColor;
  content: '';
}

.eyebrow-light {
  color: var(--gold-light);
}

.lede {
  max-width: 62ch;
  color: #52605a;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.lede-light {
  color: #dce5de;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.3rem;
  border: 2px solid var(--forest-deep);
  color: var(--white);
  background: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--forest-deep);
  background: var(--gold-light);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--forest-deep);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--forest-deep);
}

.button-light {
  border-color: var(--white);
  color: var(--forest-deep);
  background: var(--white);
}

.button-light:hover {
  border-color: var(--gold-light);
  color: var(--forest-deep);
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  font-size: 1.1rem;
  content: '→';
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.hero {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7.8rem) 3rem;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -8rem;
  right: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(189, 140, 52, 0.32);
  border-radius: 50%;
  content: '';
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.76fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}

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

.hero h1 span {
  color: var(--clay);
  font-style: italic;
}

.hero-visual {
  position: relative;
  padding: 1.15rem;
  border: 1px solid rgba(31, 44, 39, 0.28);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-color: var(--gold);
  content: '';
  pointer-events: none;
}

.hero-visual::before {
  top: -12px;
  left: -12px;
  border-top: 7px solid var(--gold);
  border-left: 7px solid var(--gold);
}

.hero-visual::after {
  right: -12px;
  bottom: -12px;
  border-right: 7px solid var(--gold);
  border-bottom: 7px solid var(--gold);
}

.hero-note {
  position: absolute;
  right: -1.25rem;
  bottom: 2.35rem;
  z-index: 2;
  width: 175px;
  padding: 1rem 1.1rem;
  color: var(--white);
  background: var(--forest-deep);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.25;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3.8rem, 7vw, 6.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
}

.fact + .fact {
  border-left: 1px solid var(--line);
}

.fact strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
}

.fact span {
  max-width: 13ch;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3.25rem;
}

.section-heading-row h2,
.section-heading-row p {
  margin-bottom: 0;
}

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

.service-path {
  position: relative;
  min-height: 330px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.service-path:nth-child(2),
.service-path:nth-child(3) {
  background: var(--oat);
}

.service-path::after {
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 145px;
  height: 145px;
  border: 24px solid rgba(189, 140, 52, 0.14);
  border-radius: 50%;
  content: '';
}

.path-number {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-path p {
  max-width: 44ch;
  color: #53615b;
}

.project-section {
  color: var(--white);
  background: var(--forest-deep);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.project-item {
  display: flex;
  align-items: flex-end;
  min-height: 150px;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.25;
}

.project-item:nth-child(3n + 2) {
  color: var(--forest-deep);
  background: var(--gold-light);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--white);
  box-shadow: var(--shadow);
}

.split-feature-copy {
  padding: clamp(2.5rem, 6vw, 5.5rem);
}

.value-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--white);
  background: var(--clay);
  overflow: hidden;
}

.value-panel::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: '';
}

.value-panel p {
  position: relative;
  z-index: 1;
  max-width: 25ch;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.value-list-inline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.value-list-inline li {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.area-section {
  position: relative;
  background: var(--mist);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.community-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.community-list li {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(31, 44, 39, 0.24);
  background: rgba(255, 254, 250, 0.5);
  font-size: 0.82rem;
  font-weight: 800;
}

.area-diagram {
  position: relative;
  min-height: 430px;
}

.region-shape {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--forest-deep);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 1.2rem;
  text-align: center;
  box-shadow: 10px 10px 0 var(--gold-light);
}

.region-butler {
  top: 0;
  right: 0;
  width: 67%;
  height: 45%;
}

.region-beaver {
  top: 27%;
  left: 0;
  width: 50%;
  height: 41%;
}

.region-allegheny {
  right: 8%;
  bottom: 0;
  width: 62%;
  height: 39%;
  color: var(--white);
  background: var(--forest);
}

.closing-section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  color: var(--white);
  background: var(--forest);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
}

.closing-grid h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.contact-links {
  display: grid;
  gap: 0.85rem;
  min-width: min(100%, 330px);
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  text-decoration: none;
}

.contact-links a::after {
  color: var(--gold-light);
  content: '↗';
}

.page-hero {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: -7rem;
  bottom: -11rem;
  width: 28rem;
  height: 28rem;
  border: 70px solid rgba(189, 140, 52, 0.13);
  border-radius: 50%;
  content: '';
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 3rem;
}

.page-hero h1 {
  max-width: 10ch;
  margin-bottom: 0;
}

.page-hero-side {
  padding-left: 1.5rem;
  border-left: 5px solid var(--gold);
}

.page-hero-side p {
  color: #4f5d57;
  font-size: 1.05rem;
}

.service-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-toolbar p {
  margin: 0;
  color: #5a6761;
  font-size: 0.9rem;
}

.service-toggle {
  flex: 0 0 auto;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--forest-deep);
  color: var(--forest-deep);
  background: transparent;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  cursor: pointer;
  text-transform: uppercase;
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-group {
  border: 1px solid var(--line);
  background: var(--white);
}

.service-group[open] {
  box-shadow: var(--shadow);
}

.service-group summary {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 104px;
  padding: 1.45rem;
  cursor: pointer;
  list-style: none;
}

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

.service-group summary::after {
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--forest);
  font-size: 1.35rem;
  line-height: 30px;
  text-align: center;
  content: '+';
}

.service-group[open] summary::after {
  content: '−';
}

.group-index {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.group-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.group-count {
  display: block;
  margin-top: 0.35rem;
  color: #65716c;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0 1.45rem 1.6rem;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 0.8rem 0.8rem 0.8rem 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.35;
}

.service-list li::before {
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  content: '';
}

.service-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  color: var(--white);
  background: var(--forest);
}

.service-note h2 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.about-statement {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-statement blockquote {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.1;
}

.about-copy p {
  color: #4e5c56;
  font-size: 1.06rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 180px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.value-card span {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.value-card strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.work-bands {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.work-band {
  min-height: 240px;
  padding: 2rem;
  color: var(--white);
  background: var(--forest);
}

.work-band:nth-child(2),
.work-band:nth-child(3) {
  color: var(--forest-deep);
  background: var(--gold-light);
}

.work-band p {
  max-width: 44ch;
}

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

.counties-list li {
  min-height: 220px;
  padding: 1.75rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.counties-list span {
  display: block;
  margin-bottom: 3.25rem;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.counties-list strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.coverage-note {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 1.2rem 1.35rem;
  border-left: 5px solid var(--gold);
  background: var(--oat);
  text-align: center;
}

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

.contact-method {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.contact-method:nth-child(2) {
  background: var(--oat);
}

.method-index {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.contact-method p {
  color: #58655f;
}

.contact-method .text-link {
  margin-top: auto;
  overflow-wrap: anywhere;
}

.project-prep {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.prep-list {
  margin: 0;
  padding: 0;
  counter-reset: prep;
  list-style: none;
}

.prep-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  counter-increment: prep;
}

.prep-list li::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.72rem;
  font-weight: 850;
  content: counter(prep, decimal-leading-zero);
}

.privacy-note {
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.86rem;
}

.site-footer {
  color: #dce5de;
  background: var(--forest-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(150px, 0.45fr));
  gap: 3rem;
  padding-block: 4.5rem;
}

.footer-brand {
  display: inline-block;
  max-width: 330px;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.15;
}

.footer-main h2 {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li + li {
  margin-top: 0.6rem;
}

.footer-main a {
  color: #dce5de;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav ul {
    gap: 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    gap: 3rem;
  }

  .hero-note {
    right: -0.5rem;
  }

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

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

@media (max-width: 820px) {
  .header-inner {
    min-height: 76px;
  }

  .brand-text {
    max-width: 205px;
    font-size: 0.9rem;
  }

  .js .menu-button {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .js .site-nav[data-open='true'] {
    display: block;
  }

  .js .site-nav ul {
    display: grid;
    gap: 0;
  }

  .js .site-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-grid,
  .page-hero-grid,
  .section-heading-row,
  .split-feature,
  .area-grid,
  .closing-grid,
  .about-statement,
  .project-prep {
    grid-template-columns: 1fr;
  }

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

  .hero-note {
    right: 1.2rem;
    bottom: 2.7rem;
  }

  .section-heading-row {
    align-items: start;
    gap: 1rem;
  }

  .service-paths,
  .service-groups {
    grid-template-columns: 1fr;
  }

  .area-grid {
    gap: 3.5rem;
  }

  .area-diagram {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .closing-grid {
    align-items: start;
  }

  .page-hero-side {
    max-width: 580px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-method {
    min-height: 270px;
  }

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

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

@media (max-width: 640px) {
  .preview-bar p {
    gap: 0.4rem;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .preview-bar span::after {
    content: ' /';
  }

  .header-inner,
  .shell {
    width: min(100% - 1.25rem, 1180px);
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-width: 3px;
  }

  .brand-mark::after {
    right: -3px;
    bottom: -3px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-grid {
    gap: 2.5rem;
  }

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

  .hero-visual {
    padding: 0.65rem;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.65rem;
  }

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

  .fact + .fact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fact {
    padding-inline: 0.6rem;
  }

  .service-path {
    min-height: 300px;
  }

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

  .project-item {
    min-height: 125px;
    padding: 1rem;
    font-size: 1.08rem;
  }

  .value-panel {
    min-height: 440px;
  }

  .area-diagram {
    min-height: 360px;
  }

  .region-shape {
    font-size: 1rem;
  }

  .service-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .values-grid,
  .counties-list,
  .work-bands {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 150px;
  }

  .value-card span {
    margin-bottom: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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