@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/noto-serif-latin-400.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: italic;
  font-weight: 400;
  src: url("/assets/fonts/noto-serif-latin-400-italic.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("/assets/fonts/inter-latin-var.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  src: url("/assets/fonts/inter-latin-italic.woff2") format("woff2");
}

:root {
  --forest: #123b34;
  --forest-deep: #0b2926;
  --teal: #1d6656;
  --teal-dark: #13483e;
  --copper: #b85e3a;
  --copper-dark: #8f412d;
  --copper-soft: #e8a07f;
  --brass: #e3b35b;
  --brass-soft: #f0c982;
  --white: #ffffff;
  --paper: #f0f2ec;
  --paper-warm: #fbfaf6;
  --ink: #1b2d29;
  --ink-soft: #5c6c66;
  --line: #d5ddd7;
  --line-dark: rgba(255, 255, 255, 0.18);
  --display: "Noto Serif", Georgia, serif;
  --body: Inter, Arial, sans-serif;
  --utility: var(--body);
  --type-section-title: clamp(2.55rem, 3.65vw, 4.3rem);
  --type-card-title: clamp(1.75rem, 2.2vw, 2.35rem);
  --shell: min(calc(100% - 96px), 1240px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper-warm);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

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

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

button,
a {
  cursor: pointer;
}

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

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

img {
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--brass);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-family: var(--utility);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.text-link-ink {
  color: var(--forest);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 18px 12px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-copper:hover,
.button-copper:focus-visible {
  border-color: #713222;
  background: #713222;
}

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

.button-teal:hover,
.button-teal:focus-visible {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

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

.button-ink:hover,
.button-ink:focus-visible {
  border-color: var(--forest-deep);
  background: var(--forest-deep);
}

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

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest);
}

/* Header */

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-logo-frame {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
}

.brand-logo-frame img {
  width: 48px;
  height: 48px;
}

.brand-name {
  display: grid;
  min-width: 0;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.brand-name strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-name > span {
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 1.6vw, 25px);
  margin-left: auto;
}

.main-nav > a,
.nav-dropdown-toggle {
  border: 0;
  padding: 9px 0;
  background: transparent;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--copper-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 3px 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu {
  display: grid;
  position: absolute;
  top: calc(100% + 10px);
  right: -14px;
  width: 214px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(11, 41, 38, 0.14);
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -7px;
  right: 25px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  content: "";
  transform: rotate(45deg);
}

.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
  padding: 11px 15px;
  background: var(--white);
  color: var(--forest);
  font-size: 0.73rem;
  font-weight: 700;
}

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

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--paper);
  color: var(--copper-dark);
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-actions > * {
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--forest);
  padding: 10px 13px;
  color: var(--forest);
  font-size: 0.82rem;
  white-space: nowrap;
}

.header-phone svg,
.footer-call svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-phone strong {
  font-weight: 800;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: var(--forest);
  color: var(--white);
}

.hero-phone {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero-phone:hover,
.hero-phone:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--forest);
  padding: 10px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--forest);
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-nav {
  display: none;
}

/* Hero */

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

.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 12%, rgba(232, 160, 127, 0.2), transparent 25%), radial-gradient(circle at 80% 86%, rgba(227, 179, 91, 0.12), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: 0;
  right: 4%;
  width: 31%;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent 0 39px, rgba(255, 255, 255, 0.045) 40px 41px), repeating-linear-gradient(0deg, transparent 0 39px, rgba(255, 255, 255, 0.045) 40px 41px);
  content: "";
  opacity: 0.55;
  pointer-events: none;
  transform: skewX(-8deg);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(48px, 5vw, 78px);
  row-gap: clamp(34px, 6vh, 52px);
  min-height: calc(100svh - 80px);
  padding-top: clamp(42px, 7vh, 72px);
}

.hero-copy {
  max-width: 650px;
  align-self: center;
}

.hero-copy h1 {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.15rem, 4.4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.91;
}

.hero-copy h1 em {
  color: var(--copper-soft);
  font-style: normal;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 32px;
  color: #d4e2db;
  font-size: clamp(1rem, 1.24vw, 1.14rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-bottom: 41px;
}

.hero-coverage {
  max-width: 560px;
  margin: 0;
  color: #acc2b8;
  font-size: 0.8rem;
  line-height: 1.75;
}

.hero-form-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  align-self: center;
  justify-self: end;
  scroll-margin-top: 116px;
}

.valuation-form-card {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 20px 46px rgba(4, 25, 21, 0.25);
  color: var(--ink);
}

.valuation-form-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--brass);
  content: "";
}

.valuation-form {
  display: grid;
  gap: 8px;
  padding: 25px 28px 17px;
}

.form-heading {
  margin-bottom: 2px;
}

.form-heading .eyebrow {
  margin-bottom: 10px;
  color: var(--copper-dark);
  font-size: 0.6rem;
}

.form-heading h2 {
  max-width: 370px;
  margin-bottom: 7px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(1.95rem, 2.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.form-heading > p:last-child {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.45;
}

.valuation-form label {
  display: grid;
  gap: 4px;
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.valuation-form input,
.valuation-form select {
  width: 100%;
  min-height: 43px;
  border: 1px solid #c7d3cc;
  border-radius: 2px;
  outline: 0;
  padding: 10px 12px;
  background: var(--paper-warm);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.valuation-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%), linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position: calc(100% - 16px) 18px, calc(100% - 12px) 18px;
  background-repeat: no-repeat;
  background-size: 4px 4px, 4px 4px;
  padding-right: 32px;
}

.valuation-form input::placeholder {
  color: #899a91;
  opacity: 1;
}

.valuation-form input:hover,
.valuation-form select:hover {
  border-color: #89a095;
}

.valuation-form input:focus,
.valuation-form select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29, 102, 86, 0.14);
}

.form-submit {
  width: 100%;
  min-height: 44px;
  margin-top: 3px;
  padding: 11px 14px 10px;
  font-size: 0.82rem;
}

.form-note {
  max-width: 390px;
  margin: 0;
  color: #77877f;
  font-size: 0.63rem;
  line-height: 1.4;
}

/* Proof strip */

.proof-strip {
  grid-column: 1 / -1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

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

.proof-card {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
}

.proof-card:first-child {
  border-left: 1px solid var(--line-dark);
}

.proof-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--brass-soft);
  border-radius: 50%;
  color: var(--brass-soft);
}

.proof-icon-copper {
  border-color: var(--copper-soft);
  color: var(--copper-soft);
}

.proof-icon-brass {
  border-color: var(--brass);
  color: var(--brass);
}

.proof-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.proof-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.proof-kicker {
  color: var(--brass-soft);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-copy strong {
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.1;
}

.proof-copy > span:last-child {
  color: #b6cbc0;
  font-size: 0.66rem;
  line-height: 1.35;
}

/* Shared sections */

.section {
  padding-block: clamp(92px, 10vw, 150px);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 57px;
}

.section-heading h2,
.area-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.section-heading h2 em,
.area-copy h2 em,
.contact-copy h2 em {
  color: var(--copper-dark);
  font-style: normal;
}

.section-intro {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 28px 27px 31px;
}

.service-card:last-child {
  border-right: 0;
}

.service-card-copper {
  background: var(--copper);
  color: var(--white);
}

.service-card-forest {
  background: var(--forest);
  color: var(--white);
}

.service-card-paper {
  background: var(--white);
  color: var(--forest);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 73px;
  font-family: var(--utility);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.card-topline span:first-child {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
}

.card-topline span:last-child {
  opacity: 0.74;
  text-align: right;
}

.service-card h3 {
  max-width: 280px;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: var(--type-card-title);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.service-card p {
  max-width: 330px;
  margin-bottom: 22px;
  font-size: 0.84rem;
  line-height: 1.7;
  opacity: 0.86;
}

.service-card-paper p {
  color: var(--ink-soft);
}

.card-link {
  position: absolute;
  bottom: 30px;
  left: 27px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.scope-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  padding-top: 28px;
}

.scope-label {
  margin: 0;
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.scope-list span {
  border: 1px solid var(--line);
  padding: 8px 12px 7px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}

.service-photo {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.service-photo-feature,
.service-photo:nth-child(2) {
  grid-column: span 3;
}

.service-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  transition: transform 400ms ease;
}

.service-photo:hover img {
  transform: scale(1.035);
}

.service-photo figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 6px 8px 5px;
  background: rgba(11, 41, 38, 0.88);
  color: var(--white);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

/* Process */

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.process-section::before {
  position: absolute;
  right: -8%;
  bottom: -30%;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(227, 179, 91, 0.16);
  border-radius: 50%;
  content: "";
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(420px, 1fr);
  gap: clamp(70px, 10vw, 160px);
  padding-block: clamp(96px, 11vw, 150px);
}

.process-aside h2 {
  max-width: 570px;
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.process-aside h2 em {
  color: var(--copper-soft);
  font-style: normal;
}

.process-aside > p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 32px;
  color: #bdd0c6;
  font-size: 0.9rem;
  line-height: 1.75;
}

.process-photo {
  max-width: 430px;
  margin: 48px 0 0;
}

.process-photo img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.process-photo figcaption {
  margin-top: 10px;
  color: #a9bfb4;
  font-size: 0.66rem;
  line-height: 1.4;
}

.process-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 31px 0 35px;
  border-top: 1px solid var(--line-dark);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.step-number {
  color: var(--brass);
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 0.9;
}

.process-steps h3 {
  margin-bottom: 9px;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.process-steps p {
  max-width: 370px;
  margin: 0;
  color: #a9bfb4;
  font-size: 0.84rem;
  line-height: 1.65;
}

/* Approach */

.confidence-section {
  overflow: hidden;
  background: var(--paper-warm);
  padding-block: clamp(92px, 10vw, 150px);
}

.confidence-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 50px;
}

.confidence-heading-copy {
  max-width: 710px;
}

.confidence-heading h2 {
  max-width: 680px;
  margin-bottom: 23px;
  color: var(--forest);
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.confidence-heading h2 em {
  color: var(--copper-dark);
  font-style: normal;
}

.confidence-heading-copy > p:last-child {
  max-width: 575px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.confidence-signature {
  display: grid;
  width: 148px;
  height: 148px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper-dark);
  transform: rotate(9deg);
}

.confidence-signature::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184, 94, 58, 0.45);
  border-radius: inherit;
  content: "";
}

.confidence-signature span,
.confidence-signature small {
  position: relative;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
}

.confidence-signature strong {
  position: relative;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

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

.confidence-grid article {
  min-height: 228px;
  padding: 24px 28px 28px 0;
}

.confidence-grid article + article {
  padding-left: 28px;
}

.confidence-grid article:last-child {
  border-right: 0;
}

.confidence-index {
  display: block;
  margin-bottom: 51px;
  color: var(--copper-dark);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 0.9;
}

.confidence-grid h3 {
  margin-bottom: 11px;
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.confidence-grid p {
  max-width: 310px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.65;
}

/* FAQ */

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(50px, 10vw, 150px);
}

.faq-intro h2 {
  max-width: 510px;
  margin-bottom: 25px;
  color: var(--forest);
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 380px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  line-height: 1.75;
}

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

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
}

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

.faq-item summary::after {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: linear-gradient(var(--copper), var(--copper)) center / 100% 1px no-repeat, linear-gradient(var(--copper), var(--copper)) center / 1px 100% no-repeat;
  content: "";
}

.faq-item[open] summary::after {
  background-size: 100% 1px, 0 0;
}

.faq-item summary:focus-visible {
  outline-color: var(--teal);
}

.faq-item p {
  max-width: 68ch;
  margin: 0;
  padding: 0 44px 24px 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.7;
}

/* Coverage */

.area-section {
  background: var(--white);
}

.area-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(50px, 10vw, 150px);
}

.area-copy h2 {
  margin-bottom: 26px;
}

.area-copy > p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.area-map-embed {
  height: clamp(370px, 32vw, 460px);
  overflow: hidden;
  background: #e9eee8;
}

.area-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 50px auto 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.area-cities li {
  list-style: none;
  border: 1px solid var(--line);
  padding: 8px 13px 7px;
  color: var(--ink-soft);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.area-cities a:hover,
.area-cities a:focus-visible {
  color: var(--copper-dark);
}

/* About */

.about-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(32px, 3.5vw, 56px);
  padding-block: clamp(90px, 11vw, 150px);
}

.about-stamp {
  position: relative;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper-dark);
  transform: rotate(-11deg);
}

.about-stamp::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 94, 58, 0.48);
  border-radius: inherit;
  content: "";
}

.about-stamp img {
  position: relative;
  width: 68px;
  height: 68px;
}

.about-stamp small {
  position: relative;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-photo {
  min-width: 0;
  margin: 0;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 42%;
}

.about-photo figcaption {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 740px;
  margin-bottom: 28px;
  color: var(--forest);
  font-family: var(--display);
  font-size: var(--type-section-title);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.about-copy h2 em {
  color: var(--copper-dark);
  font-style: normal;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 42px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.about-facts {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.about-facts div {
  display: grid;
  min-width: 0;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 12px;
  padding-top: 16px;
}

.about-facts strong {
  white-space: nowrap;
  color: var(--copper-dark);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.about-facts span {
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Contact */

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 12vw, 190px);
  padding-block: clamp(90px, 12vw, 160px);
}

.contact-copy h2 {
  margin-bottom: 26px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 400px;
  margin-bottom: 27px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.contact-card {
  position: relative;
  border-bottom: 1px solid var(--forest);
  border-left: 1px solid var(--forest);
  padding: 10px 28px 22px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(11, 41, 38, 0.12);
}

.contact-card-row {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card-row:last-child {
  border-bottom: 0;
}

.contact-label,
.footer-heading {
  color: var(--copper-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card-row a,
.contact-card-row strong {
  color: var(--forest);
  font-size: 1.13rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.contact-card-row a {
  display: inline-flex;
  align-items: center;
}

.contact-card-row a:hover,
.contact-card-row a:focus-visible {
  color: var(--copper-dark);
}

.contact-card-row > span:last-child {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--forest-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(118px, 0.68fr) minmax(190px, 0.95fr) minmax(230px, 1.1fr);
  gap: clamp(28px, 4vw, 68px);
  padding-block: 58px 54px;
}

.footer-main > * {
  min-width: 0;
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-name > span {
  color: var(--copper-soft);
}

.footer-brand > p,
.footer-note > p {
  max-width: 320px;
  margin: 20px 0 0;
  color: #b8ccc2;
  font-size: 0.79rem;
  line-height: 1.6;
}

.footer-call {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer-links,
.footer-connect,
.footer-note {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 11px;
}

.footer-heading {
  margin-bottom: 7px;
}

.footer-links a,
.footer-connect a,
.footer-connect span {
  color: #d1e0d8;
  font-size: 0.76rem;
  line-height: 1.4;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-connect a:hover,
.footer-connect a:focus-visible {
  color: var(--brass);
}

.footer-connect span {
  color: #a9c0b5;
}

.footer-note > p {
  margin-top: 0;
}

.footer-note-link {
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-note-link:hover,
.footer-note-link:focus-visible {
  color: var(--white);
}

.footer-service-areas {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 2fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line-dark);
  padding-block: 32px 36px;
}

.footer-service-areas-intro {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
}

.footer-service-areas-intro h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.footer-service-areas-intro p {
  max-width: 260px;
  margin: 0;
  color: #b8ccc2;
  font-size: 0.75rem;
  line-height: 1.55;
}

.footer-service-areas-all {
  margin-top: 2px;
  color: var(--brass);
  font-size: 0.73rem;
  font-weight: 800;
}

.footer-service-areas-all:hover,
.footer-service-areas-all:focus-visible {
  color: var(--white);
}

.footer-service-area-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-service-area-links a {
  display: block;
  color: #d1e0d8;
  font-size: 0.75rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer-service-area-links a:hover,
.footer-service-area-links a:focus-visible {
  color: var(--brass);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  padding-block: 17px 20px;
  color: #93afa2;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

/* Service-area pages */

.subpage-main {
  background: var(--paper-warm);
}

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

.subpage-hero::before {
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50vw;
  height: 80%;
  border: 1px solid rgba(227, 179, 91, 0.16);
  border-radius: 50%;
  content: "";
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.52fr);
  align-items: end;
  gap: 60px;
  padding-block: 70px 76px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #b8ccc2;
  font-size: 0.68rem;
  font-weight: 700;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--brass-soft);
}

.subpage-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.subpage-hero h1 em {
  color: var(--copper-soft);
  font-style: normal;
}

.subpage-hero-lede {
  max-width: 650px;
  color: #d4e2db;
  font-size: 1rem;
  line-height: 1.7;
}

.subpage-hero-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 5px solid var(--brass);
  padding: 24px 25px 27px;
  background: rgba(7, 32, 29, 0.3);
}

.subpage-hero-card .eyebrow {
  color: var(--brass-soft);
}

.subpage-hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.subpage-hero-card p:last-child {
  color: #b8ccc2;
  font-size: 0.77rem;
  line-height: 1.55;
}

.subpage-content {
  padding-block: clamp(76px, 9vw, 120px);
}

.subpage-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 9vw, 130px);
  margin-bottom: 80px;
}

.subpage-intro h2,
.subpage-section h2,
.related-section h2 {
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.6vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.subpage-intro-copy {
  max-width: 680px;
}

.subpage-intro-copy p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.subpage-section {
  border-top: 1px solid var(--forest);
  padding-top: 27px;
}

.subpage-section + .subpage-section {
  margin-top: 82px;
}

.subpage-section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(35px, 8vw, 120px);
  margin-bottom: 38px;
}

.subpage-section-heading h2 {
  margin: 0;
}

.subpage-section-heading > p {
  max-width: 620px;
  margin: 4px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

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

.local-detail {
  min-height: 195px;
  padding: 22px 24px 25px 0;
}

.local-detail + .local-detail {
  padding-left: 24px;
}

.local-detail:last-child {
  border-right: 0;
}

.local-detail small {
  display: block;
  margin-bottom: 42px;
  color: var(--copper-dark);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.local-detail h3 {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.local-detail p {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.subpage-faq-list {
  max-width: 930px;
  border-top: 1px solid var(--forest);
}

.subpage-faq-list .faq-item p {
  max-width: 78ch;
}

.related-section {
  margin-top: 84px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.related-section h2 {
  margin-bottom: 28px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.related-links a {
  display: block;
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
}

.related-links a:hover,
.related-links a:focus-visible {
  border-color: var(--copper);
  color: var(--copper-dark);
}

.subpage-cta {
  margin-top: 84px;
  padding: 42px 46px;
  background: var(--copper);
  color: var(--white);
}

.subpage-cta h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.2vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.subpage-cta p {
  max-width: 590px;
  margin-bottom: 24px;
  color: #fff0e9;
  line-height: 1.7;
}

.subpage-cta .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--copper-dark);
}

.subpage-cta .button:hover,
.subpage-cta .button:focus-visible {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.service-area-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-area-hub-card {
  display: grid;
  min-height: 215px;
  align-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--forest);
  padding: 24px 28px 28px 0;
}

.service-area-hub-card:nth-child(2n) {
  border-right: 0;
  padding-right: 0;
  padding-left: 28px;
}

.service-area-hub-card small {
  color: var(--copper-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-area-hub-card h2 {
  margin: 34px 0 8px;
  color: var(--forest);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.service-area-hub-card p {
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.service-area-hub-card a {
  width: fit-content;
  border-bottom: 1px solid var(--copper-dark);
  padding-bottom: 5px;
  color: var(--copper-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --shell: min(calc(100% - 64px), 1080px);
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .header-actions .header-schedule {
    display: inline-flex;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    column-gap: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5.2vw, 4.2rem);
  }

  .header-phone-label {
    display: none;
  }

  .header-phone {
    padding-inline: 12px;
  }

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

  .footer-note {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: min(calc(100% - 48px), 760px);
  }

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

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-block: 8px 14px;
  }

  .mobile-nav > a,
  .mobile-nav .nav-dropdown-toggle {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    color: var(--forest);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: left;
  }

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

  .mobile-nav .nav-dropdown-toggle:hover,
  .mobile-nav .nav-dropdown-toggle:focus-visible,
  .mobile-nav .nav-dropdown.is-open .nav-dropdown-toggle {
    color: var(--copper-dark);
  }

  .mobile-nav .nav-dropdown-menu {
    display: grid;
    position: static;
    width: auto;
    border: 0;
    box-shadow: none;
  }

  .mobile-nav .nav-dropdown-menu::before {
    display: none;
  }

  .mobile-nav .nav-dropdown-menu a {
    border-bottom: 1px solid var(--line);
    padding: 10px 0 10px 15px;
    font-size: 0.77rem;
  }

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

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    column-gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 6.7vw, 4rem);
  }

  .proof-card {
    padding-inline: 15px;
  }

  .proof-copy strong {
    font-size: 0.84rem;
  }

  .section-heading,
  .faq-layout,
  .area-layout,
  .contact-layout,
  .subpage-hero-inner,
  .subpage-intro,
  .subpage-section-heading {
    gap: 38px;
  }

  .process-layout {
    gap: 52px;
  }

  .about-layout {
    grid-template-columns: 140px minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 25px;
  }

  .about-stamp {
    width: 140px;
    height: 140px;
  }

  .about-stamp img {
    width: 56px;
    height: 56px;
  }

  .about-stamp small {
    font-size: 0.53rem;
  }

  .footer-service-area-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  :root {
    --shell: min(calc(100% - 40px), 620px);
  }

  .header-actions .header-phone {
    display: none;
  }

  .hero-layout {
    display: block;
    min-height: 0;
    padding-block: 60px 0;
  }

  .hero-copy {
    max-width: 600px;
    padding-bottom: 55px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .hero-form-wrap {
    max-width: 520px;
    margin-bottom: 55px;
  }

  .proof-strip {
    margin-left: calc(50% - 50vw);
  }

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

  .proof-card,
  .proof-card:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .proof-card:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .faq-layout,
  .area-layout,
  .contact-layout,
  .subpage-hero-inner,
  .subpage-intro,
  .subpage-section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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

  .service-card,
  .service-card:last-child {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 59, 52, 0.35);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .scope-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .service-photo,
  .service-photo-feature,
  .service-photo:nth-child(2) {
    grid-column: span 1;
  }

  .service-photo-feature {
    grid-column: span 2;
  }

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

  .process-photo {
    max-width: 100%;
  }

  .confidence-heading {
    grid-template-columns: 1fr;
  }

  .confidence-signature {
    justify-self: start;
  }

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

  .confidence-grid article,
  .confidence-grid article + article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0 25px;
  }

  .confidence-grid article:last-child {
    border-bottom: 0;
  }

  .confidence-index {
    margin-bottom: 25px;
  }

  .area-map-embed {
    height: 350px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stamp {
    justify-self: start;
  }

  .about-photo {
    max-width: 430px;
  }

  .about-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-facts div {
    grid-template-columns: 100px 1fr;
  }

  .contact-card {
    border-right: 0;
  }

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

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

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

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

  .subpage-hero-inner {
    padding-block: 52px 58px;
  }

  .subpage-hero-card {
    max-width: 520px;
  }

  .subpage-intro {
    margin-bottom: 62px;
  }

  .local-detail-grid {
    grid-template-columns: 1fr;
  }

  .local-detail,
  .local-detail + .local-detail {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0 25px;
  }

  .local-detail:last-child {
    border-bottom: 0;
  }

  .local-detail small {
    margin-bottom: 22px;
  }

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

  .service-area-hub-card,
  .service-area-hub-card:nth-child(2n) {
    min-height: 190px;
    border-right: 0;
    padding: 22px 0 25px;
  }

  .service-area-hub-card:last-child {
    border-bottom: 0;
  }

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

  .subpage-cta {
    padding: 32px 27px;
  }
}

@media (max-width: 480px) {
  :root {
    --shell: min(calc(100% - 32px), 420px);
  }

  .brand-name strong {
    font-size: 0.93rem;
  }

  .brand-logo-frame,
  .brand-logo-frame img {
    width: 42px;
    height: 42px;
  }

  .header-schedule {
    display: none !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 14vw, 3.6rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: fit-content;
  }

  .hero-phone {
    width: fit-content;
  }

  .valuation-form {
    padding-inline: 19px;
  }

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

  .service-photo,
  .service-photo-feature,
  .service-photo:nth-child(2) {
    grid-column: span 1;
  }

  .service-photo img {
    aspect-ratio: 1.45;
  }

  .footer-main,
  .footer-service-area-links {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-note {
    grid-column: auto;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 10px 15px;
  }

  .map-node {
    font-size: 0.57rem;
  }

  .map-node-cypress,
  .map-node-friendswood {
    display: none;
  }

  .map-label {
    right: 14px;
    bottom: 14px;
    font-size: 0.48rem;
  }

  .related-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Tablet navigation and legal pages */

@media (min-width: 921px) and (max-width: 1180px) {
  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-block: 8px 14px;
  }

  .mobile-nav > a,
  .mobile-nav .nav-dropdown-toggle {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    color: var(--forest);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: left;
  }

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

  .mobile-nav .nav-dropdown-menu {
    display: grid;
    position: static;
    width: auto;
    border: 0;
    box-shadow: none;
  }

  .mobile-nav .nav-dropdown-menu::before {
    display: none;
  }

  .mobile-nav .nav-dropdown-menu a {
    border-bottom: 1px solid var(--line);
    padding: 10px 0 10px 15px;
    font-size: 0.77rem;
  }
}

.legal-content {
  max-width: 800px;
  padding-block: clamp(72px, 9vw, 120px);
}

.legal-content h1 {
  margin-bottom: 13px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.legal-updated {
  margin-bottom: 60px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.legal-content section {
  border-top: 1px solid var(--line);
  padding-block: 26px 29px;
}

.legal-content section h2 {
  margin-bottom: 11px;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}

.legal-content section p {
  max-width: 70ch;
  color: var(--ink-soft);
  line-height: 1.78;
}

.legal-content a {
  color: var(--copper-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  background: var(--forest-deep);
  color: #b8ccc2;
  font-size: 0.72rem;
}

.legal-footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
}

.legal-footer a:hover,
.legal-footer a:focus-visible {
  color: var(--white);
}
