:root {
  --ink: #f4f6f8;
  --muted: #aab6c8;
  --paper: #050b18;
  --surface: #ffffff;
  --line: rgba(220, 226, 235, 0.14);
  --brand-blue: #3200f4;
  --brand-blue-dark: #2700c2;
  --brand-blue-soft: #c9c0ff;
  --sky-blue: #4da3ff;
  --sky-blue-dark: #1f66c5;
  --ice: #e8eef8;
  --ice-strong: #d7e2f1;
  --light-ink: #0a1730;
  --light-muted: #52627b;
  --navy-950: #050b18;
  --navy-900: #08152f;
  --navy-800: #0d2450;
  --navy-700: #163b77;
  --steel: #aeb4bd;
  --steel-dark: #26364f;
  --glass: rgba(255, 255, 255, 0.065);
  --glass-strong: rgba(255, 255, 255, 0.105);
  --glass-border: rgba(220, 226, 235, 0.16);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  height: 3px;
  background: var(--brand-blue);
  box-shadow: 0 0 16px rgba(50, 0, 244, 0.72);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

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

a {
  color: inherit;
}

a,
button,
summary {
  touch-action: manipulation;
}

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

button {
  cursor: pointer;
}

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

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 50;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--surface);
  background: var(--navy-900);
  outline: 3px solid var(--sky-blue);
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: clip;
  color: var(--surface);
  background: rgba(5, 11, 24, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  isolation: isolate;
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 42%),
    linear-gradient(90deg, rgba(50, 0, 244, 0.18), rgba(77, 163, 255, 0.08), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(4, 9, 20, 0.68);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.topbar {
  position: relative;
  z-index: 1;
  background: rgba(2, 6, 14, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
}

.topbar__inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  max-width: var(--max);
  min-height: 34px;
  padding: 6px 24px;
  margin: 0 auto;
  color: #eeeeee;
}

.topbar a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  text-decoration: none;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: #c8c2ff;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 76px;
  padding: 10px 24px;
  margin: 0 auto;
}

.brand {
  position: relative;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: #d5d4dc;
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-menu a,
.nav-menu__cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: #f7f7f2;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--glass-strong);
}

.nav-menu .nav-menu__cta {
  color: var(--surface);
  background: var(--brand-blue);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(50, 0, 244, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--surface);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
  color: var(--surface);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero__shade {
  background: rgba(3, 10, 24, 0.64);
}

.hero__content {
  position: relative;
  width: min(900px, calc(100% - 48px));
  padding: 74px 0 58px;
  margin: 0 auto;
  margin-left: max(24px, calc((100% - var(--max)) / 2));
}

.motion-ready .hero__content > .eyebrow,
.motion-ready .hero__content > h1,
.motion-ready .hero__content > .hero__lead,
.motion-ready .hero__content > .hero__actions,
.motion-ready .hero__content > .hero__proof {
  opacity: 0;
  animation: hero-enter 680ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.motion-ready .hero__content > h1 {
  animation-delay: 90ms;
}

.motion-ready .hero__content > .hero__lead {
  animation-delay: 180ms;
}

.motion-ready .hero__content > .hero__actions {
  animation-delay: 270ms;
}

.motion-ready .hero__content > .hero__proof {
  animation-delay: 360ms;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero .eyebrow {
  color: #c8c2ff;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: 4rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.7rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero__lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: #f1f1f4;
  font-size: 1.22rem;
}

.hero__actions,
.form-actions,
.credential-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button--primary {
  color: var(--surface);
  background: var(--brand-blue);
  box-shadow: 0 12px 28px rgba(50, 0, 244, 0.3);
}

.hero .button--primary {
  animation: cta-settle 900ms 1.05s ease-out both;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--brand-blue-dark);
}

.button--ghost {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.button--outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--glass);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin: 38px 0 0;
}

.hero__proof div {
  padding: 16px;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
}

.hero__proof dt {
  font-size: 1.7rem;
  font-weight: 900;
}

.hero__proof dd {
  margin: 0;
  color: #ececf2;
  font-size: 0.9rem;
}

.trust-band {
  background: var(--navy-800);
  color: var(--surface);
  border-top: 2px solid var(--sky-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-band__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
}

.trust-band span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.search-intent {
  padding: 72px 0;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(5, 11, 24, 0.96), rgba(8, 21, 47, 0.94)),
    radial-gradient(circle at 15% 20%, rgba(50, 0, 244, 0.24), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(77, 163, 255, 0.18), transparent 26%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-intent__inner {
  display: grid;
  gap: 30px;
}

.search-intent__copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.62fr);
  gap: 44px;
  align-items: end;
}

.search-intent__copy h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.search-intent__copy p:last-child {
  max-width: 420px;
  margin-bottom: 4px;
  color: #cdd8e8;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.need-card {
  display: grid;
  min-height: 244px;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  backdrop-filter: blur(14px) saturate(118%);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.need-card:hover,
.need-card:focus-visible {
  border-color: rgba(157, 201, 255, 0.52);
  background: rgba(255, 255, 255, 0.105);
  transform: translateY(-3px);
}

.need-card span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 5px;
  color: var(--surface);
  background: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.need-card:nth-child(even) span {
  background: var(--sky-blue-dark);
}

.need-card strong {
  color: var(--surface);
  font-size: 1.08rem;
  line-height: 1.15;
}

.need-card small {
  color: #cdd8e8;
  font-size: 0.88rem;
  line-height: 1.52;
}

.local-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
}

.local-signal strong {
  margin-right: 4px;
  color: #9dc9ff;
}

.local-signal span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(201, 192, 255, 0.2);
  border-radius: 6px;
  color: #e9eff9;
  background: rgba(50, 0, 244, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
}

.project-paths {
  padding: 72px 0;
  color: var(--light-ink);
  background: #dfe8f5;
  border-bottom: 1px solid rgba(8, 21, 47, 0.1);
}

.project-paths__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 30px;
}

.project-paths__heading > div {
  max-width: 720px;
}

.project-paths__heading h2 {
  margin-bottom: 0;
}

.project-paths__heading > p {
  max-width: 420px;
  margin-bottom: 4px;
  color: var(--light-muted);
}

.project-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-path {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(8, 21, 47, 0.12);
  border-radius: 8px;
  color: var(--surface);
  background: var(--navy-900);
  box-shadow: 0 18px 38px rgba(8, 21, 47, 0.18);
  text-decoration: none;
  isolation: isolate;
}

.project-path img,
.project-path__shade,
.project-path__content {
  grid-area: 1 / 1;
}

.project-path img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 300ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-path:first-child img {
  object-position: center 38%;
}

.project-path__shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 11, 24, 0.12) 18%, rgba(5, 11, 24, 0.94) 88%);
}

.project-path__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: end;
  flex-direction: column;
  gap: 8px;
  padding: 26px;
}

.project-path__content small {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--surface);
  background: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-path__content strong {
  max-width: 320px;
  font-size: 1.42rem;
  line-height: 1.08;
}

.project-path__content > span {
  color: #d8e1ee;
  font-size: 0.92rem;
}

.project-path__content b {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-top: 5px;
  color: #d7d2ff;
  font-size: 0.86rem;
  text-decoration: underline;
  text-decoration-color: rgba(215, 210, 255, 0.46);
  text-underline-offset: 5px;
}

.project-path:hover img,
.project-path:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.project-path:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 4px;
}

.project-paths__direct {
  margin: 24px 0 0;
  color: var(--light-muted);
  text-align: center;
}

.project-paths__direct a {
  color: #2815a5;
  font-weight: 900;
  text-underline-offset: 4px;
}

.section {
  padding: 86px 0;
}

.section-inner {
  max-width: var(--max);
  padding: 0 24px;
  margin: 0 auto;
}

.section--intro,
.section--faq {
  color: var(--light-ink);
  background: var(--ice);
}

.section--work {
  background: var(--navy-800);
}

.section--intro .intro-copy,
.section--faq .faq-list p {
  color: var(--light-muted);
}

.intro-grid,
.work-grid,
.credential-grid,
.quote-grid,
.contact-grid,
.faq-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.work-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}

.intro-copy p:last-child,
.work-copy p:last-child,
.quote-copy p:last-child,
.contact-grid p:last-child {
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading__copy {
  max-width: 350px;
  color: var(--muted);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--glass);
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  color: var(--surface);
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--glass);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 22px;
  width: 48px;
  height: 2px;
  content: "";
  background: var(--brand-blue);
}

.service-card:hover {
  border-color: rgba(201, 192, 255, 0.42);
  background: var(--glass-strong);
  transform: translateY(-3px);
}

.service-card[hidden] {
  display: none;
}

.service-card span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 8px;
  border-radius: 5px;
  color: var(--surface);
  background: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-card:nth-child(3n) span {
  background: var(--sky-blue-dark);
}

.service-card:nth-child(4n) span {
  color: var(--light-ink);
  background: var(--steel);
}

.service-card:nth-child(3n)::before {
  background: var(--sky-blue);
}

.service-card p,
.area-card p,
.process-step p,
.work-copy p,
.credential-grid p,
.quote-copy p,
.contact-grid p,
.faq-list p {
  color: var(--muted);
}

.service-card__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: #c9c0ff;
  font-size: 0.86rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.service-card__link:hover,
.service-card__link:focus-visible {
  color: var(--surface);
}

.section--areas {
  color: var(--light-ink);
  background: var(--ice-strong);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.area-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 32px rgba(21, 35, 58, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.area-card--featured {
  color: var(--surface);
  border-color: rgba(77, 163, 255, 0.48);
  background: var(--navy-900);
  box-shadow: inset 3px 0 0 var(--brand-blue), 0 14px 32px rgba(0, 0, 0, 0.2);
}

.section--areas .area-card:not(.area-card--featured) p,
.section--areas .section-heading__copy {
  color: var(--light-muted);
}

.area-card > span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--surface);
  background: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.area-card--featured > span {
  color: var(--light-ink);
  background: var(--steel);
}

.area-card--featured p {
  color: #e7e5eb;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.city-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(201, 192, 255, 0.22);
  border-radius: 8px;
  background: rgba(50, 0, 244, 0.18);
  color: #d8d1ff;
  font-size: 0.84rem;
  font-weight: 800;
}

.section--areas .area-card:not(.area-card--featured) .city-list span {
  color: #2815a5;
  border-color: rgba(50, 0, 244, 0.16);
  background: rgba(50, 0, 244, 0.08);
}

.area-card--featured .city-list span {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(50, 0, 244, 0.55);
}

.area-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-top: auto;
  color: #d8d1ff;
  text-decoration-color: rgba(216, 209, 255, 0.48);
  text-underline-offset: 4px;
  font-weight: 850;
}

.area-link:hover,
.area-link:focus-visible {
  color: var(--surface);
  text-decoration-color: var(--surface);
}

.area-card:not(.area-card--featured) .area-link {
  color: #2815a5;
  text-decoration-color: rgba(40, 21, 165, 0.35);
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.project-photo {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 11, 24, 0.48);
  box-shadow: var(--shadow);
}

.project-photo img {
  width: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 300ms ease;
}

.project-photo {
  overflow: hidden;
  border-radius: 8px;
}

.project-photo:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.project-photo--wide {
  grid-column: 1 / -1;
}

.project-photo--wide img {
  aspect-ratio: 16 / 9;
}

.project-photo--jobsite img {
  aspect-ratio: 4 / 3;
  object-position: center 40%;
}

.project-photo--bathroom img {
  aspect-ratio: 4 / 3;
  object-position: center 58%;
}

.project-photo figcaption {
  display: grid;
  gap: 3px;
  padding: 14px 16px 16px;
  margin: 0;
}

.project-photo figcaption strong {
  color: var(--surface);
  font-size: 0.95rem;
}

.project-photo figcaption span {
  color: #bdc9da;
  font-size: 0.8rem;
}

.profile-gallery {
  grid-column: 1 / -1;
  padding-top: 34px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.profile-gallery__header {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.profile-gallery__header .eyebrow {
  color: #c8c2ff;
}

.profile-gallery__header h3 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.55rem;
}

.profile-gallery__header > a {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  color: #c6ddff;
  font-weight: 850;
  text-underline-offset: 5px;
}

.profile-gallery__header > a:hover,
.profile-gallery__header > a:focus-visible {
  color: var(--surface);
}

.profile-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.profile-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(5, 11, 24, 0.5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.profile-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: filter 300ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.profile-shot--crew img {
  object-position: center 38%;
}

.profile-shot--van img {
  object-position: center;
}

.profile-shot:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.profile-shot figcaption {
  min-height: 58px;
  padding: 13px 14px;
  color: #d9e3f0;
  font-size: 0.82rem;
  font-weight: 800;
}

.section--field-notes {
  color: var(--surface);
  background:
    linear-gradient(180deg, rgba(5, 11, 24, 0.98), rgba(8, 21, 47, 0.96)),
    radial-gradient(circle at 10% 10%, rgba(50, 0, 244, 0.18), transparent 30%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.field-notes {
  display: grid;
  gap: 34px;
}

.field-notes__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.58fr);
  gap: 44px;
  align-items: end;
}

.field-notes__intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.field-notes__intro > p:last-child {
  max-width: 390px;
  margin-bottom: 4px;
  color: #cdd8e8;
}

.section--field-notes .eyebrow {
  color: #9dc9ff;
}

.field-note-grid {
  display: grid;
  gap: 14px;
}

.field-note {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
  backdrop-filter: blur(12px) saturate(118%);
}

.field-note:nth-child(even) {
  grid-template-columns: minmax(0, 0.58fr) minmax(240px, 0.42fr);
}

.field-note:nth-child(even) img {
  order: 2;
}

.field-note img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.field-note:first-child img {
  object-position: center 42%;
}

.field-note:nth-child(2) img {
  object-position: center 56%;
}

.field-note:nth-child(3) img {
  object-position: center 38%;
}

.field-note > div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
}

.field-note span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--surface);
  background: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-note:nth-child(even) span {
  background: var(--sky-blue-dark);
}

.field-note h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 1.62rem;
}

.field-note p {
  max-width: 620px;
  margin: 0;
  color: #d6e1f1;
}

.field-note dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
}

.field-note dl div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(5, 11, 24, 0.38);
}

.field-note dt {
  margin-bottom: 6px;
  color: #9dc9ff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-note dd {
  margin: 0;
  color: var(--surface);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 24px;
  color: #c6ddff;
  font-weight: 850;
  text-underline-offset: 5px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--surface);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--brand-blue);
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.section--process {
  color: var(--light-ink);
  background: #e4ebf6;
}

.section--process .section-heading__copy,
.section--process .process-step p {
  color: var(--light-muted);
}

.process-grid::before {
  position: absolute;
  top: 44px;
  right: 6%;
  left: 6%;
  z-index: 0;
  height: 2px;
  content: "";
  background: rgba(77, 163, 255, 0.38);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.process-grid.is-visible::before {
  transform: scaleX(1);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  border-color: rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 32px rgba(21, 35, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 6px;
  color: var(--surface);
  background: var(--brand-blue);
  box-shadow: 0 8px 22px rgba(50, 0, 244, 0.28);
  font-weight: 900;
}

.process-step:nth-child(even) span {
  background: var(--sky-blue-dark);
  box-shadow: 0 8px 22px rgba(31, 102, 197, 0.25);
}

.section--credentials {
  color: var(--surface);
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 3px 0 var(--brand-blue);
}

.section--credentials .eyebrow,
.section--credentials p {
  color: #e7e5eb;
}

.section--credentials .button--outline {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.section--credentials .button--outline:hover,
.section--credentials .button--outline:focus-visible {
  color: #c8c2ff;
  border-color: #c8c2ff;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.credential-list > div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.credential-list strong,
.credential-list span {
  display: block;
}

.credential-list span {
  margin-top: 8px;
  color: #d7d4dc;
}

.bbb-seal {
  display: grid;
  place-items: center;
  background: var(--surface) !important;
}

.bbb-seal img {
  width: 220px;
  height: auto;
}

.section--quote {
  position: relative;
  overflow: hidden;
  color: var(--surface);
  background: var(--navy-900);
}

.quote-background,
.quote-background__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.quote-background {
  object-fit: cover;
  object-position: center;
}

.quote-background__shade {
  background: rgba(3, 10, 24, 0.64);
}

.section--quote > .section-inner {
  position: relative;
  z-index: 1;
}

.quote-form {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  gap: 16px;
  padding: 28px;
  color: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: rgba(5, 11, 24, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px) saturate(115%);
  backdrop-filter: blur(6px) saturate(115%);
}

.form-required {
  margin: 0;
  color: #b9cbe3;
  font-size: 0.78rem;
  font-weight: 750;
  text-align: right;
}

.form-submit-note {
  margin: -2px 0 0;
  color: #c4d2e5;
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-submit-note strong {
  color: var(--surface);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #c4d2e5;
  font-size: 0.88rem;
  font-weight: 750;
}

.form-status:empty {
  min-height: 0;
}

.form-status.is-success {
  color: #c9f7dc;
}

.form-status.is-error {
  color: #ffd0d0;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-section {
  display: grid;
  min-width: 0;
  gap: 16px;
  padding: 0;
  margin: 0;
  border: 0;
}

.form-section + .form-section {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.form-section legend {
  width: 100%;
  padding: 0 0 14px;
  color: var(--surface);
  font-size: 1.08rem;
  font-weight: 900;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row--split {
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
}

.form-row--equal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row--split > div,
.form-row--equal > div {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.section--quote input,
.section--quote select,
.section--quote textarea {
  color: var(--surface);
  color-scheme: dark;
  border-color: var(--glass-border);
  background: rgba(5, 11, 24, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(4px) saturate(110%);
  backdrop-filter: blur(4px) saturate(110%);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.section--quote .quote-copy p {
  color: #d6e1f1;
}

.section--quote .quote-copy .eyebrow {
  color: #9dc9ff;
}

.section--quote .button--outline {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.section--quote input::placeholder,
.section--quote textarea::placeholder {
  color: #aab9cd;
}

.section--quote select option {
  color: var(--surface);
  background: var(--navy-900);
}

.section--quote input:focus,
.section--quote select:focus,
.section--quote textarea:focus {
  outline-color: rgba(77, 163, 255, 0.22);
  border-color: var(--sky-blue);
  background: rgba(11, 33, 72, 0.58);
  box-shadow:
    0 0 0 1px rgba(77, 163, 255, 0.36),
    0 0 24px rgba(50, 0, 244, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.section--quote .quote-form .button--primary {
  border: 1px solid rgba(177, 198, 255, 0.34);
  box-shadow:
    0 14px 30px rgba(24, 0, 136, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.section--quote output,
.section--quote .form-status {
  color: #9dc9ff;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8f8997;
}

select option {
  color: var(--light-ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(50, 0, 244, 0.18);
  border-color: var(--brand-blue);
}

input[type="range"] {
  padding: 0;
  accent-color: var(--brand-blue);
}

output {
  color: var(--brand-blue);
  font-weight: 900;
}

.quote-contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.quote-contact a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  text-decoration: none;
  font-weight: 900;
}

.section--quote .quote-contact a {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(8, 21, 47, 0.58);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.quote-contact a:hover,
.quote-contact a:focus-visible {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--brand-blue);
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.section--faq details {
  border-color: rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 22px rgba(21, 35, 58, 0.07);
}

summary {
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 18px 18px;
  margin-bottom: 0;
}

.section--contact {
  position: relative;
  overflow: hidden;
  color: var(--surface);
  background: var(--navy-950);
  border-top: 1px solid rgba(77, 163, 255, 0.48);
}

.contact-background,
.contact-background__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-background {
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.3;
  filter: saturate(0.82) contrast(1.04);
}

.contact-background__shade {
  background: rgba(3, 10, 24, 0.72);
}

.section--contact .contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
}

.section--contact .eyebrow {
  color: #9dc9ff;
}

.section--contact p {
  color: #d9e6f8;
}

.contact-copy {
  max-width: 560px;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-panel {
  display: grid;
  min-width: 0;
  padding: 26px 0 26px 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-style: normal;
}

.contact-panel__label {
  margin-bottom: 8px;
  color: #9dc9ff !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel__name {
  color: var(--surface);
  font-size: 1.35rem;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-detail {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(8, 21, 47, 0.36);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.contact-detail > span {
  display: block;
  margin-bottom: 8px;
  color: #9dc9ff;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail p {
  margin: 0;
}

.contact-detail a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--surface);
  overflow-wrap: anywhere;
  font-weight: 850;
  text-underline-offset: 4px;
}

.contact-phone {
  display: grid !important;
  align-content: center;
  justify-items: start;
  gap: 1px;
  text-decoration: none;
}

.contact-phone strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-phone small {
  color: #9dc9ff;
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal-item.service-card.is-visible:hover {
  transform: translateY(-4px);
}

.motion-ready .reveal-item.project-showcase {
  transform: translateY(30px) scale(0.985);
}

.motion-ready .reveal-item.project-showcase.is-visible {
  transform: translateY(0) scale(1);
}

.footer {
  padding: 60px 0 28px;
  color: #e1dfe8;
  background: #020611;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__inner {
  display: grid;
  gap: 18px;
}

.footer__inner--premium {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.58fr);
  gap: 52px 76px;
}

.footer__identity p {
  max-width: 340px;
  margin-top: 18px;
}

.footer__brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  color: var(--surface);
  text-decoration: none;
  font-weight: 900;
}

.footer__brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #e1dfe8;
}

.footer__navigation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.footer__column {
  display: grid;
  align-content: start;
  gap: 5px;
}

.footer__column strong {
  margin-bottom: 10px;
  color: var(--surface);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer__column a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  width: fit-content;
  color: #bfc9d8;
  text-decoration: none;
}

.footer__column a:hover,
.footer__column a:focus-visible {
  color: var(--sky-blue);
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer p {
  margin: 0;
  color: #bcb8c2;
}

.mobile-action-bar {
  display: none;
}

.area-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(68vh, 680px);
  overflow: hidden;
  color: var(--surface);
}

.area-hero__media,
.area-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.area-hero__media {
  object-fit: cover;
  object-position: center;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.area-hero__shade {
  background: rgba(3, 10, 24, 0.68);
}

.area-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  padding: 70px 24px 64px;
  margin: 0 auto;
}

.area-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.area-hero__lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: #e4e7ec;
  font-size: 1.17rem;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
  color: #d2d6df;
  font-size: 0.84rem;
  font-weight: 750;
}

.breadcrumb a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-underline-offset: 4px;
}

.area-facts {
  background: var(--navy-800);
  border-top: 2px solid var(--sky-blue);
  border-bottom: 1px solid var(--line);
}

.area-facts .section-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
  padding-bottom: 0;
}

.area-facts span {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 850;
}

.area-facts span:first-child {
  border-left: 1px solid var(--line);
}

.local-intro {
  color: var(--light-ink);
  background: var(--ice);
}

.local-intro__grid,
.local-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.local-copy {
  color: var(--light-muted);
  font-size: 1.05rem;
}

.local-copy p:last-child {
  margin-bottom: 0;
}

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

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

.local-service-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--glass);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.17), inset 0 2px 0 var(--brand-blue);
}

.local-service-grid article:nth-child(2) {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.17), inset 0 2px 0 var(--sky-blue);
}

.local-service-grid article > span {
  display: inline-flex;
  margin-bottom: 42px;
  color: #c9c0ff;
  font-size: 0.8rem;
  font-weight: 900;
}

.local-service-grid article:nth-child(2) > span {
  color: #9dc9ff;
}

.local-service-grid p,
.local-proof p,
.local-communities p {
  color: var(--muted);
}

.local-proof {
  color: var(--light-ink);
  background: var(--ice-strong);
}

.local-proof__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.local-proof figure {
  display: grid;
  justify-items: center;
  margin: 0;
}

.local-proof figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.local-proof figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.local-proof p {
  color: var(--light-muted);
}

.local-proof .check-list li {
  color: var(--light-ink);
  background: rgba(255, 255, 255, 0.64);
}

.local-communities {
  color: var(--surface);
  background: var(--navy-700);
}

.local-communities .section-inner {
  max-width: 920px;
  margin-left: max(0px, calc((100% - var(--max)) / 2));
}

.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
}

.local-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #c6ddff;
  text-underline-offset: 4px;
  font-weight: 850;
}

.local-communities p {
  color: #d9e6f8;
}

.confirmation-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
  background:
    linear-gradient(rgba(5, 11, 24, 0.78), rgba(5, 11, 24, 0.9)),
    url("assets/hero-restoration.webp") center / cover no-repeat;
}

.confirmation-panel {
  width: min(720px, 100%);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(8, 21, 47, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.confirmation-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 38px;
  text-decoration: none;
  font-weight: 900;
}

.confirmation-brand img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
}

.confirmation-panel h1 {
  max-width: 620px;
  font-size: 3rem;
}

.confirmation-panel > p:not(.eyebrow, .confirmation-contact) {
  max-width: 610px;
  color: #d8e1ee;
  font-size: 1.08rem;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.confirmation-contact {
  padding-top: 24px;
  margin: 32px 0 0;
  color: #b9c9df;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-0.8%, -0.6%, 0);
  }
}

@keyframes cta-settle {
  0% {
    box-shadow: 0 12px 28px rgba(50, 0, 244, 0.3);
  }

  45% {
    box-shadow: 0 12px 38px rgba(50, 0, 244, 0.65);
  }

  100% {
    box-shadow: 0 12px 28px rgba(50, 0, 244, 0.3);
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .search-intent__copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .search-intent__copy p:last-child {
    max-width: 680px;
  }

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

  .field-notes__intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .field-notes__intro > p:last-child {
    max-width: 680px;
  }

  .field-note,
  .field-note:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .field-note:nth-child(even) img {
    order: 0;
  }

  .field-note img {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .topbar__inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .nav-menu {
    position: fixed;
    inset: 110px 16px auto;
    display: none;
    max-height: calc(100dvh - 126px);
    padding: 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(8, 21, 47, 0.72);
    box-shadow:
      0 22px 48px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    backdrop-filter: blur(24px) saturate(145%);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .hero {
    min-height: 72vh;
  }

  .hero__content {
    width: min(680px, calc(100% - 36px));
    margin-left: 18px;
  }

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

  .intro-grid,
  .work-grid,
  .credential-grid,
  .quote-grid,
  .contact-grid,
  .faq-grid,
  .local-intro__grid,
  .local-proof__grid {
    grid-template-columns: 1fr;
  }

  .project-paths__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-paths__heading > p {
    margin-bottom: 0;
  }

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

  .project-path:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

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

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

  .section-heading {
    display: grid;
  }

  .area-facts .section-inner,
  .local-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
    gap: 10px;
    padding: 9px 14px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .brand span {
    min-width: 0;
    max-width: calc(100vw - 134px);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-menu {
    inset: 80px 10px auto;
    max-height: calc(100dvh - 94px);
    padding: 10px;
  }

  .hero {
    min-height: 72vh;
  }

  .hero__media {
    object-position: 35% center;
    animation: none;
    transform: scale(1.02);
  }

  .hero__content {
    width: calc(100% - 32px);
    padding-top: 46px;
    padding-bottom: 36px;
    margin-left: 16px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 2.28rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.78rem;
    line-height: 1.1;
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero__actions,
  .form-actions,
  .credential-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .service-grid,
  .area-grid,
  .form-row--split,
  .form-row--equal,
  .local-service-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-band__inner,
  .area-facts .section-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero__proof div {
    padding: 10px 8px;
  }

  .hero__proof dt {
    font-size: 1.35rem;
  }

  .hero__proof dd {
    font-size: 0.74rem;
  }

  .trust-band span {
    min-height: 62px;
    padding: 10px;
    font-size: 0.82rem;
  }

  .section {
    padding: 56px 0;
  }

  .project-paths {
    padding: 52px 0;
  }

  .project-paths__heading {
    margin-bottom: 24px;
  }

  .project-paths__grid {
    grid-template-columns: 1fr;
  }

  .project-path,
  .project-path:last-child {
    grid-column: auto;
    min-height: 340px;
  }

  .project-path__content {
    padding: 22px;
  }

  .project-path__content strong {
    font-size: 1.28rem;
  }

  .section-inner {
    padding: 0 16px;
  }

  .intro-grid,
  .work-grid,
  .credential-grid,
  .quote-grid,
  .contact-grid,
  .faq-grid,
  .local-intro__grid,
  .local-proof__grid {
    gap: 30px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 26px;
  }

  .section-heading__copy {
    margin-bottom: 0;
  }

  .filter-group {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .filter-group::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 10px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .area-card,
  .process-step {
    padding: 20px;
  }

  .process-step {
    min-height: 100%;
  }

  .process-step span {
    margin-bottom: 16px;
  }

  .credential-list > div {
    min-height: 132px;
    padding: 15px;
  }

  .credential-list strong {
    overflow-wrap: anywhere;
    font-size: 0.9rem;
  }

  .credential-list span {
    font-size: 0.78rem;
  }

  .project-showcase {
    gap: 10px;
  }

  .project-photo figcaption {
    min-height: 88px;
    padding: 11px 12px 13px;
  }

  .project-photo figcaption strong {
    font-size: 0.86rem;
  }

  .project-photo figcaption span {
    font-size: 0.72rem;
  }

  .profile-gallery {
    padding-top: 26px;
    margin-top: 0;
  }

  .profile-gallery__header {
    display: grid;
    gap: 12px;
  }

  .profile-gallery__header h3 {
    font-size: 1.25rem;
  }

  .profile-shot figcaption {
    min-height: 64px;
    font-size: 0.78rem;
  }

  .city-list {
    gap: 6px;
  }

  .city-list span {
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .area-hero {
    min-height: 72vh;
  }

  .area-hero__media {
    animation: none;
    transform: scale(1.02);
  }

  .area-hero__content {
    padding: 56px 18px 44px;
  }

  .area-hero__lead {
    font-size: 1rem;
  }

  .area-facts span {
    min-height: 60px;
    padding: 10px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    font-size: 0.82rem;
  }

  .local-service-grid article {
    min-height: auto;
  }

  .local-service-grid article > span {
    margin-bottom: 26px;
  }

  .local-communities .section-inner {
    margin-left: auto;
  }

  .quote-form,
  .contact-card {
    padding: 18px;
  }

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

  .contact-panel {
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .contact-detail {
    padding: 16px;
  }

  .contact-detail a {
    font-size: 0.9rem;
  }

  .footer {
    padding-top: 48px;
  }

  .footer__inner--premium {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .footer__column:last-child {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer__bottom {
    display: grid;
    justify-content: start;
  }

  .quote-form {
    gap: 14px;
  }

  .form-section,
  .form-row {
    gap: 12px;
  }

  .form-section legend {
    padding-bottom: 10px;
  }

  input,
  select,
  textarea {
    min-height: 52px;
    font-size: 1rem;
  }

  input[type="range"] {
    min-height: 44px;
  }

  summary {
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 16px;
  }

  details p {
    padding: 0 16px 16px;
  }

  .footer__links {
    gap: 4px 16px;
  }

  .footer__links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(4, 12, 28, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 52px;
    place-items: center;
    border-radius: 8px;
    color: var(--surface);
    background: var(--brand-blue);
    text-decoration: none;
    font-weight: 900;
  }

  .confirmation-page {
    padding: 18px;
  }

  .confirmation-panel {
    padding: 28px 22px;
  }

  .confirmation-brand {
    margin-bottom: 28px;
  }

  .confirmation-panel h1 {
    font-size: 2.12rem;
  }

  .confirmation-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .search-intent {
    padding: 46px 0;
  }

  .search-intent__inner {
    gap: 22px;
  }

  .search-intent__copy h2 {
    font-size: 1.72rem;
    line-height: 1.12;
  }

  .search-intent__copy p:last-child {
    font-size: 0.94rem;
    line-height: 1.58;
  }

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

  .need-card {
    min-height: 0;
    padding: 18px;
  }

  .local-signal {
    gap: 7px;
    padding: 12px;
  }

  .local-signal strong {
    width: 100%;
  }

  .local-signal span {
    min-height: 30px;
    font-size: 0.78rem;
  }

  .section--field-notes {
    padding: 50px 0;
  }

  .field-notes {
    gap: 22px;
  }

  .field-notes__intro h2 {
    font-size: 1.74rem;
    line-height: 1.12;
  }

  .field-notes__intro > p:last-child {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .field-note {
    min-height: 0;
  }

  .field-note img {
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

  .field-note > div {
    gap: 12px;
    padding: 20px;
  }

  .field-note h3 {
    font-size: 1.24rem;
    line-height: 1.14;
  }

  .field-note p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

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

  .process-grid,
  .credential-list,
  .profile-gallery__grid,
  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .credential-list > div {
    min-height: 112px;
  }

  .profile-shot figcaption {
    min-height: 58px;
  }

  .contact-detail {
    min-height: auto;
  }

  .project-paths__direct {
    max-width: 330px;
    margin-top: 22px;
    font-size: 0.88rem;
    line-height: 1.65;
    text-align: left;
  }

  .project-paths__direct a {
    white-space: nowrap;
  }

  .work-copy h2 {
    max-width: 19ch;
    margin-bottom: 14px;
    font-size: 1.62rem;
    line-height: 1.12;
  }

  .work-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .footer {
    padding-top: 40px;
  }

  .footer__inner--premium {
    gap: 28px;
  }

  .footer__identity p {
    max-width: none;
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .footer__navigation {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__column,
  .footer__column:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer__column:last-child strong {
    grid-column: auto;
  }

  .footer__column strong {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .footer__column a {
    width: 100%;
    min-height: 40px;
    font-size: 0.9rem;
  }

  .footer__bottom {
    gap: 12px;
    padding-top: 20px;
  }

  .footer__bottom p {
    font-size: 0.78rem;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.12rem;
  }

  .hero__proof dd {
    font-size: 0.7rem;
  }

}

@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .project-photo:hover img,
  .project-path:hover img,
  .profile-shot:hover img {
    filter: none;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .motion-ready .reveal-item,
  .motion-ready .reveal-item.project-showcase {
    opacity: 1;
    transform: none;
  }
}
