:root {
  --navy-950: #030303;
  --navy-900: #080808;
  --navy-800: #191919;
  --cream: #f2f0ea;
  --paper: #f5f3ee;
  --white: #ffffff;
  --copper: #f15a0a;
  --copper-dark: #c84500;
  --slate: #5b6065;
  --line: #d6d2ca;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy-900);
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 4px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(10, 19, 32, 0.94);
  box-shadow: 0 12px 32px rgba(4, 12, 22, 0.15);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--copper);
  color: var(--copper);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1;
}

.brand-name strong {
  font-size: 0.96rem;
  letter-spacing: 0.015em;
}

.brand-name small {
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 176px 0 104px;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: 80px;
  border: 1px solid rgba(226, 138, 59, 0.34);
  transform: rotate(25deg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 48%, black);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 90px;
  align-items: end;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--copper);
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 790px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 7.4vw, 7.25rem);
}

h1 em,
h2 em {
  color: var(--copper);
  font-weight: 400;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 750;
  text-underline-offset: 5px;
  text-decoration-color: rgba(255, 255, 255, 0.32);
}

.text-link span {
  color: var(--copper);
}

.availability-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(7, 15, 26, 0.45);
  backdrop-filter: blur(8px);
}

.availability-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 72px;
  height: 4px;
  background: var(--copper);
}

.availability-top {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(226, 138, 59, 0.12);
}

.availability-card > p {
  margin: 28px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.3;
}

.service-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-index span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-rule {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-rule span {
  display: block;
  width: var(--shell);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading h2,
.area-copy h2,
.contact-copy h2,
.approach-title h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.6vw, 5.3rem);
}

.section-heading > p,
.area-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--slate);
  line-height: 1.75;
}

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

.service-card {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 156px;
  padding: 28px 18px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.service-card:hover {
  padding-inline: 30px;
  background: var(--white);
}

.service-number {
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
}

.service-card h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
}

.service-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--slate);
  line-height: 1.6;
}

.service-tag {
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approach {
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.approach-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.approach-title {
  position: relative;
}

.approach-title::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: 120px;
  left: -190px;
  border: 1px solid rgba(226, 138, 59, 0.25);
  transform: rotate(45deg);
}

.principles {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.principles article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.principles article > span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.principles h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.principles p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.area-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.area-copy > p {
  max-width: 500px;
  margin: 28px 0;
}

.dark-link {
  color: var(--navy-900);
  text-decoration-color: rgba(16, 28, 44, 0.3);
}

.area-graphic {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 1;
  margin-left: auto;
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 31%;
  height: 31%;
  border-color: var(--copper);
  border-style: dashed;
}

.orbit-two {
  width: 62%;
  height: 62%;
}

.orbit-three {
  width: 92%;
  height: 92%;
  border-style: dashed;
}

.map-center {
  position: absolute;
  inset: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.map-center span {
  width: 13px;
  height: 13px;
  margin-bottom: 10px;
  background: var(--copper);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--copper);
}

.map-center strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.09em;
}

.map-center small,
.map-label {
  color: var(--slate);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-label {
  position: absolute;
  padding: 6px 9px;
  background: var(--paper);
}

.map-label::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  background: var(--navy-900);
  border-radius: 50%;
  vertical-align: middle;
}

.north { top: 2%; left: 51%; }
.east { right: 0; top: 48%; }
.south { bottom: 6%; left: 50%; }
.west { left: 0; top: 44%; }

.contact {
  background: var(--navy-950);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.08fr;
  gap: 100px;
  align-items: start;
}

.contact-copy > p {
  max-width: 470px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, 0.65);
}

.response-note {
  display: flex;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
}

.response-note > span {
  color: var(--copper);
  font-size: 1.5rem;
}

.response-note p {
  margin: 0;
  font-size: 0.9rem;
}

.response-note strong {
  color: var(--white);
}

.contact-form {
  padding: 42px;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9cbd0;
  border-radius: 0;
  background: #fdfdfc;
  color: var(--navy-900);
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #858b94;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--copper-dark);
}

.button-submit {
  width: 100%;
  justify-content: space-between;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--copper-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.58);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
  font-size: 0.82rem;
}

.footer-layout p {
  margin: 0;
  font-size: 0.78rem;
}

.copyright {
  text-align: right;
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }

  .site-header { height: 74px; }

  .nav-toggle {
    display: block;
    cursor: pointer;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px;
    background: var(--navy-950);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

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

  .site-nav > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .site-nav .button { margin-top: 24px; }

  .hero { min-height: auto; padding: 144px 0 118px; }

  .hero-layout,
  .section-heading,
  .approach-layout,
  .area-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout { gap: 56px; }
  .section-heading { gap: 28px; }
  .approach-layout,
  .area-layout,
  .contact-layout { gap: 64px; }

  .availability-card { max-width: 520px; min-height: auto; }
  .section { padding: 90px 0; }
  .area-graphic { margin-inline: auto; }

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

  .footer-layout > p:first-of-type { display: none; }
}

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

  .brand-name strong { font-size: 0.84rem; }
  .brand-name small { display: none; }

  .hero { padding-top: 126px; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .text-link { justify-content: center; }
  .section { padding: 74px 0; }

  .service-card {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding-inline: 4px;
  }

  .service-card:hover { padding-inline: 4px; }
  .service-tag { display: none; }

  .area-graphic { width: 105%; margin-left: -2.5%; }
  .map-label { font-size: 0.58rem; }

  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-layout { grid-template-columns: 1fr; }
  .copyright { text-align: left; }
}

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

/* Logo-led visual system */
.site-header {
  height: 96px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  background: rgba(3, 3, 3, 0.97);
}

.brand {
  height: 100%;
}

.brand img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.site-nav > a:not(.button) {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  border-color: var(--copper);
  background: var(--copper);
  color: #050505;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

.button:hover {
  background: #ff6a19;
  border-color: #ff6a19;
}

.hero {
  min-height: 830px;
  padding-top: 172px;
  background: #030303;
}

.hero::before {
  width: 600px;
  height: 600px;
  right: -120px;
  top: 96px;
  border-color: rgba(241, 90, 10, 0.38);
  transform: rotate(45deg);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -12%;
  bottom: 78px;
  width: 70%;
  height: 11px;
  background: var(--copper);
  transform: rotate(-4deg);
  transform-origin: right center;
  opacity: 0.9;
}

.hero-grid {
  opacity: 0.13;
  background-size: 56px 56px;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 54px;
  align-items: center;
}

h1,
h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  font-size: clamp(4.2rem, 7.1vw, 7.15rem);
}

h1 em,
h2 em {
  color: var(--copper);
  font-weight: 800;
  font-style: normal;
}

.hero-lede {
  max-width: 620px;
  font-size: 1.08rem;
}

.eyebrow {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.text-link {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.logo-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  padding: 10px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  border-color: var(--copper);
  pointer-events: none;
}

.logo-stage::before {
  top: -1px;
  left: -1px;
  border-top: 4px solid var(--copper);
  border-left: 4px solid var(--copper);
}

.logo-stage::after {
  right: -1px;
  bottom: -1px;
  border-right: 4px solid var(--copper);
  border-bottom: 4px solid var(--copper);
}

.logo-stage > img {
  display: block;
  width: min(100%, 480px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.logo-stage .service-index {
  width: 100%;
  padding: 16px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.logo-stage .service-index span {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.14em;
}

.hero-rule span,
.service-number,
.principles article > span {
  color: var(--copper);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-heading h2,
.area-copy h2,
.contact-copy h2,
.approach-title h2 {
  font-size: clamp(3.3rem, 5.6vw, 5.6rem);
}

.service-card {
  min-height: 150px;
  border-bottom-color: #c9c5bd;
}

.service-card:hover {
  border-left: 5px solid var(--copper);
  background: #fff;
}

.service-card h3,
.principles h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.service-tag {
  border-color: #bdb9b0;
  color: #484c50;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.approach {
  position: relative;
  background: #070707;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: var(--copper);
}

.approach-title::after {
  border-color: rgba(241, 90, 10, 0.3);
}

.map-center strong,
.principles h3 {
  font-size: 1.75rem;
}

.map-center strong,
.map-center small,
.map-label,
.contact-form label > span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}

.contact {
  position: relative;
  background: #050505;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--copper);
}

.contact-form {
  border-top: 7px solid var(--copper);
  background: var(--paper);
}

input,
select,
textarea {
  border-color: #bdbab3;
  background: #fff;
}

.footer-layout {
  min-height: 76px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
}

.area-graphic {
  isolation: isolate;
  width: min(100%, 620px);
  aspect-ratio: 600 / 520;
}

.area-graphic::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% 4% 2% 10%;
  background: radial-gradient(circle at 48% 48%, rgba(241, 90, 10, 0.13), transparent 64%);
  filter: blur(22px);
}

.county-map {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.county-hatch-line {
  stroke: rgba(241, 90, 10, 0.11);
  stroke-width: 1;
}

.county-boundary-glow,
.county-boundary {
  vector-effect: non-scaling-stroke;
}

.county-boundary-glow {
  fill: rgba(241, 90, 10, 0.055);
  stroke: rgba(241, 90, 10, 0.16);
  stroke-width: 10;
  filter: blur(5px);
}

.county-boundary {
  fill: url(#county-hatch);
  stroke: rgba(241, 90, 10, 0.78);
  stroke-width: 2.25;
  stroke-linejoin: round;
}

.service-reach {
  fill: none;
  stroke: rgba(241, 90, 10, 0.55);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
  vector-effect: non-scaling-stroke;
}

.county-caption,
.town text {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.09em;
  paint-order: stroke;
  stroke: var(--paper);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.county-caption {
  fill: rgba(8, 8, 8, 0.28);
  font-size: 14px;
  letter-spacing: 0.34em;
}

.town circle {
  fill: var(--navy-900);
  stroke: var(--paper);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.town text {
  fill: var(--navy-900);
  font-size: 14px;
}

.town .town-note {
  fill: var(--copper-dark);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.town-primary circle:first-of-type {
  fill: var(--copper);
  stroke: rgba(241, 90, 10, 0.22);
  stroke-width: 8;
}

.town-primary .town-core {
  fill: var(--paper);
  stroke: none;
}

.town-primary text {
  fill: var(--navy-950);
  font-size: 19px;
  letter-spacing: 0.12em;
}

.town-outside circle {
  fill: var(--copper);
}

@media (max-width: 900px) {
  .site-header { height: 82px; }
  .brand img { width: 74px; height: 74px; }
  .site-nav { inset: 82px 0 0; }
  .hero { padding-top: 132px; }
  .hero-layout { grid-template-columns: 1fr; }
  .logo-stage { min-height: auto; max-width: 590px; }
  .logo-stage > img { width: min(100%, 500px); }
  .logo-stage .service-index { grid-template-columns: repeat(4, 1fr); }
  .area-graphic { width: min(100%, 610px); }
}

@media (max-width: 600px) {
  .site-header { height: 74px; }
  .brand img { width: 66px; height: 66px; }
  .site-nav { inset: 74px 0 0; }
  .hero { padding-top: 116px; }
  h1 { font-size: clamp(3.5rem, 18vw, 5.4rem); }
  .logo-stage { padding: 8px 10px 16px; }
  .logo-stage .service-index { grid-template-columns: 1fr 1fr; gap: 7px 4px; }
  .footer-brand img { width: 68px; height: 68px; }
  .town text { font-size: 22px; }
  .town .town-note { font-size: 15px; }
  .town-primary text { font-size: 28px; }
  .county-caption { font-size: 20px; }
}


.direct-email {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.direct-email a {
  font-weight: 600;
  text-underline-offset: 0.15em;
}
