:root {
  --ink: #17252f;
  --navy: #0c3b60;
  --navy-deep: #082b46;
  --blue: #1f6e8c;
  --sky: #8ac7d5;
  --cream: #f5f2ea;
  --paper: #fffdf8;
  --copper: #c8782b;
  --copper-dark: #a95d18;
  --line: #d7d9d3;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(8, 43, 70, 0.13);
  --radius: 1.25rem;
  --page: min(1160px, calc(100% - 2rem));
}

* {
  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: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 20%, rgba(138, 199, 213, 0.15), transparent 22rem),
    linear-gradient(90deg, rgba(12, 59, 96, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(12, 59, 96, 0.026) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

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

a:hover {
  text-decoration-thickness: 0.15em;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.4rem;
  transform: translateY(-150%);
}

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

.concept-strip {
  padding: 0.42rem 1rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.utility-bar {
  color: var(--white);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.utility-inner {
  width: var(--page);
  min-height: 3rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.82rem;
}

.utility-cluster {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.utility-cluster span,
.utility-cluster a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.utility-cluster span::before,
.utility-cluster a::before {
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  flex: 0 0 auto;
  border: 2px solid var(--sky);
  border-radius: 50%;
}

.utility-bar a {
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 30;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(8, 43, 70, 0.12);
}

.header-inner {
  width: var(--page);
  min-height: 5.7rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-grid;
  grid-template-columns: 2.7rem auto;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  top: -0.35rem;
  left: 0.74rem;
  width: 0.95rem;
  height: 2.4rem;
  content: "";
  background: var(--sky);
  border-radius: 0 0 1rem 1rem;
  transform: rotate(42deg);
}

.brand-mark::after {
  position: absolute;
  right: 0.37rem;
  bottom: 0.4rem;
  width: 0.68rem;
  height: 0.68rem;
  content: "";
  background: var(--copper);
  border-radius: 50%;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand-sub {
  margin-top: 0.18rem;
  color: var(--sky);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  padding: 0.6rem 0.78rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0.55rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 2.1rem 0 1.95rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1.42rem;
  left: 0;
  height: 3px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

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

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
}

.button::after,
.text-link::after {
  content: "\2192";
  font-size: 1.12em;
}

.button {
  padding: 0.9rem 1.25rem;
  color: var(--white);
  background: var(--copper-dark);
  border: 2px solid var(--copper-dark);
  border-radius: 0.55rem;
  box-shadow: 0 8px 20px rgba(111, 56, 11, 0.18);
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: #914a10;
  transform: translateY(-2px);
}

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

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

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
  box-shadow: none;
}

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

.header-cta {
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  font-size: 0.83rem;
}

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

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

.hero::after {
  position: absolute;
  top: 8%;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(138, 199, 213, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(138, 199, 213, 0.035), 0 0 0 9rem rgba(138, 199, 213, 0.025);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 37rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.hero-copy {
  max-width: 43rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0a65d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.35rem;
  color: var(--white);
  font-size: clamp(2.7rem, 6.1vw, 5.65rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2.4vw, 1.62rem);
}

.hero-lead {
  max-width: 39rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-art {
  position: relative;
  min-width: 0;
  padding: 1rem;
}

.hero-art::before {
  position: absolute;
  inset: 7% 4% -7% 10%;
  content: "";
  background: var(--copper);
  border-radius: 55% 45% 34% 66% / 45% 38% 62% 55%;
  opacity: 0.92;
  transform: rotate(-3deg);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 24px 32px rgba(3, 24, 40, 0.25));
}

.art-note {
  position: absolute;
  right: -0.5rem;
  bottom: -1.3rem;
  z-index: 2;
  max-width: 12.5rem;
  padding: 1rem 1.15rem;
  color: var(--ink);
  background: var(--cream);
  border-left: 4px solid var(--sky);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.art-note strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.trust-rail {
  color: var(--ink);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  min-height: 7.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  min-width: 0;
  padding: 1.25rem 1.75rem;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-value {
  display: block;
  color: var(--navy-deep);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.4;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

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

.section-blue {
  color: var(--white);
  background: var(--navy);
}

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.section-head {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head p:last-child {
  max-width: 43rem;
  margin-bottom: 0;
  color: #465762;
  font-size: 1.05rem;
}

.section-blue .section-head p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

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

.service-card {
  position: relative;
  min-height: 20rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(8, 43, 70, 0.07);
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: var(--sky);
  transform: translateY(-5px);
}

.service-number {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 2.4rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card p {
  margin: 0 0 1.6rem;
  color: #52616a;
}

.service-card .text-link {
  min-height: auto;
  margin-top: auto;
  justify-content: flex-start;
  color: var(--copper-dark);
  font-size: 0.88rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.split-top {
  align-items: start;
}

.feature-art {
  position: relative;
  min-width: 0;
  padding: clamp(1.3rem, 4vw, 3rem);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-art::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4.5rem;
  height: 4.5rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.feature-copy > p:not(.eyebrow) {
  color: #4c5c65;
  font-size: 1.05rem;
}

.check-list,
.plain-list,
.contact-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 0.53em;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  content: "";
  background: var(--copper);
  border-radius: 0.12rem 0.45rem 0.45rem;
  transform: rotate(45deg);
}

.feature-copy .button {
  margin-top: 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.process-intro,
.process-step {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--navy-deep);
}

.process-intro p,
.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.process-step strong {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--sky);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step h3 {
  font-size: 1.28rem;
}

.process-step p:last-child,
.process-intro p:last-child {
  margin-bottom: 0;
}

.credential-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.credential-primary,
.credential-card {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
}

.credential-primary {
  color: var(--white);
  background: var(--navy);
}

.credential-primary h2 {
  color: var(--white);
}

.credential-primary p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.credential-card {
  background: var(--cream);
  border: 1px solid var(--line);
}

.credential-card dl {
  margin: 0;
  display: grid;
  gap: 1.3rem;
}

.credential-card dt {
  margin-bottom: 0.18rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.credential-card dd {
  margin: 0;
  color: var(--navy-deep);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.faq-list summary {
  position: relative;
  padding: 1.35rem 3.4rem 1.35rem 1.4rem;
  color: var(--navy-deep);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.35rem;
  content: "+";
  color: var(--copper-dark);
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-answer {
  max-width: 48rem;
  padding: 0 1.4rem 1.35rem;
  color: #4a5a64;
}

.faq-answer p {
  margin: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  color: var(--white);
  background: var(--copper-dark);
}

.cta-band::before {
  position: absolute;
  top: -8rem;
  left: 9%;
  width: 22rem;
  height: 22rem;
  content: "";
  border: 4rem solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.cta-grid h2 {
  margin-bottom: 0.6rem;
  color: var(--white);
}

.cta-grid p {
  max-width: 43rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.page-hero .hero-grid {
  min-height: 29rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.7fr);
  padding: clamp(3.8rem, 7vw, 6rem) 0;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.7vw, 5rem);
}

.page-hero .hero-art {
  max-width: 28rem;
  justify-self: end;
}

.breadcrumb {
  margin: 0 0 0.7rem;
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--white);
}

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

.detail-card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.detail-card::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.2rem;
  height: 0.35rem;
  content: "";
  background: var(--copper);
  border-radius: 999px;
}

.detail-card h3 {
  margin-top: 1rem;
}

.detail-card p {
  color: #50606a;
}

.detail-card .plain-list {
  display: grid;
  gap: 0.45rem;
}

.plain-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.plain-list li:last-child {
  border-bottom: 0;
}

.service-index {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.service-index aside {
  align-self: start;
  padding: 1.75rem;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.service-index aside h2 {
  color: var(--white);
  font-size: 1.7rem;
}

.service-index aside p {
  color: rgba(255, 255, 255, 0.75);
}

.service-index aside a {
  width: 100%;
  margin-top: 0.8rem;
}

.stacked-services {
  display: grid;
  gap: 2.2rem;
}

.stacked-item {
  padding-bottom: 2.2rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.stacked-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stacked-item .service-number {
  margin: 0;
}

.stacked-item p {
  margin-bottom: 0;
  color: #4b5c66;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.65fr);
  gap: 1.2rem;
}

.area-card,
.hours-card {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
}

.area-card {
  color: var(--white);
  background: var(--navy);
}

.area-card h2 {
  color: var(--white);
}

.county-list {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.county {
  padding: 1.2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.hours-card {
  background: var(--cream);
  border: 1px solid var(--line);
}

.hours-card h2 {
  font-size: 2rem;
}

.hours-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

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

.hours-row strong,
.hours-row span {
  display: block;
}

.hours-row strong {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.history-item {
  min-height: 12rem;
  padding: 2rem;
  background: var(--white);
}

.history-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.history-item span {
  color: #4e5e67;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-panel,
.estimate-panel {
  border-radius: var(--radius);
}

.contact-panel {
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  background: var(--navy);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-panel > p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-list {
  margin: 2rem 0;
  display: grid;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-list span,
.contact-list a {
  display: block;
}

.contact-list span {
  margin-bottom: 0.2rem;
  color: var(--sky);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-list a {
  font-weight: 900;
  overflow-wrap: anywhere;
}

.estimate-panel {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--cream);
  border: 1px solid var(--line);
}

.concept-notice {
  margin: 0 0 2rem;
  padding: 1rem 1.15rem;
  color: var(--navy-deep);
  background: #e4f2f5;
  border-left: 4px solid var(--blue);
  border-radius: 0.4rem;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.field {
  min-width: 0;
}

fieldset.field {
  margin: 0;
  padding: 0;
  border: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--navy-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #aeb8bd;
  border-radius: 0.45rem;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(31, 110, 140, 0.2);
}

.time-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.time-options label {
  position: relative;
  margin: 0;
}

.time-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-options span {
  display: block;
  padding: 0.65rem 0.9rem;
  background: var(--white);
  border: 1px solid #aeb8bd;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.time-options input:checked + span {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.time-options input:focus-visible + span {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

.preview-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.preview-actions button {
  cursor: pointer;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--navy-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #071f32;
}

.footer-grid {
  padding: 4.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.site-footer .brand {
  margin-bottom: 1.3rem;
}

.footer-summary {
  max-width: 29rem;
  margin: 0;
}

.footer-heading {
  margin: 0 0 1rem;
  color: var(--sky);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 0.55rem;
}

.footer-list a {
  color: var(--white);
  overflow-wrap: anywhere;
}

.footer-bottom {
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.76rem;
}

.footer-bottom strong {
  color: var(--white);
}

.mobile-call {
  display: none;
}

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

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 5;
  }

  .js-ready .site-nav {
    display: none;
  }

  .js-ready .site-header.nav-open .site-nav {
    display: block;
  }

  .site-nav ul {
    padding: 0 0 1.25rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.2rem 1.2rem;
  }

  .site-nav a {
    padding: 0.65rem 0;
  }

  .site-nav a::after {
    bottom: 0.35rem;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    padding-left: 0;
  }

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

  .process-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --page: min(100% - 1.25rem, 42rem);
  }

  body {
    padding-bottom: 4.25rem;
  }

  .utility-inner {
    min-height: 3.65rem;
    justify-content: center;
  }

  .utility-cluster:first-child {
    display: none;
  }

  .utility-cluster {
    gap: 0.75rem;
  }

  .utility-cluster a:last-child {
    display: none;
  }

  .header-inner {
    min-height: 4.9rem;
    grid-template-columns: 1fr auto;
  }

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

  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .header-cta {
    display: none;
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-nav a {
    width: 100%;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-nav a::after {
    right: auto;
    bottom: 0.45rem;
    width: 3rem;
  }

  .hero-grid,
  .page-hero .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4.2rem 0 5rem;
  }

  .hero-art,
  .page-hero .hero-art {
    width: min(100%, 27rem);
    max-width: none;
    justify-self: center;
  }

  .art-note {
    right: 0.15rem;
    bottom: -1.1rem;
  }

  .hero-actions .button {
    flex: 1 1 13rem;
  }

  .services-grid,
  .split,
  .credential-grid,
  .cta-grid,
  .service-index,
  .area-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 1.4rem;
  }

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

  .process-intro {
    grid-column: auto;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    padding-top: 3.5rem;
  }

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

  .mobile-call {
    position: fixed;
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    z-index: 80;
    min-height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--copper-dark);
    border: 2px solid var(--white);
    border-radius: 0.7rem;
    box-shadow: 0 12px 30px rgba(8, 43, 70, 0.3);
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
  }
}

@media (max-width: 560px) {
  .concept-strip {
    font-size: 0.64rem;
  }

  .utility-cluster a:first-child {
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-detail-grid,
  .county-list,
  .history-strip,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .history-strip {
    gap: 1px;
  }

  .history-item {
    min-height: 0;
  }

  .preview-actions,
  .preview-actions .button {
    width: 100%;
  }
}

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

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