:root {
  --ink: #111820;
  --ink-2: #17212a;
  --steel: #44515c;
  --line: #d7d2c6;
  --paper: #f7f4ec;
  --white: #ffffff;
  --amber: #f2b705;
  --orange: #d97706;
  --max: 1180px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section: clamp(4.75rem, 9vw, 8.5rem);
  --heading: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

.preview-strip {
  position: relative;
  z-index: 90;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.46rem var(--gutter);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: #090d11;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.preview-strip::before {
  width: 0.48rem;
  height: 0.48rem;
  margin-top: 0.22rem;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(17,24,32,.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  min-height: 5.2rem;
  margin-inline: auto;
  padding: 0.75rem var(--gutter);
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--white);
  gap: 0.72rem;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 2.15rem;
  height: 2.15rem;
}

.brand-text {
  display: grid;
  gap: 0.22rem;
}

.brand-name {
  font-family: var(--heading);
  font-size: 1.08rem;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.brand-loc {
  color: #bcc4ca;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.5rem);
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
  color: #e4e8eb;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--amber);
  content: "";
  transition: transform .2s ease;
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  background: var(--amber);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
  content: "";
}

.container {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-steel {
  background: var(--ink-2);
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 1.15rem;
  color: var(--orange);
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 3px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.section-steel .eyebrow,
.home-hero .eyebrow,
.page-hero .eyebrow {
  color: var(--amber);
}

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

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.1rem, 8.2vw, 7.3rem);
  letter-spacing: -0.025em;
}

h2 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  letter-spacing: -0.018em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  letter-spacing: 0.005em;
}

.lede {
  max-width: 63ch;
  color: var(--steel);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.section-dark .lede,
.section-steel .lede,
.page-hero .lede {
  color: #c8cfd4;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.85rem 1.35rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  border: 0;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

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

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

.button-dark:hover {
  background: #27343e;
}

.button-outline {
  box-shadow: inset 0 0 0 2px currentColor;
  background: transparent;
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--amber);
  color: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  margin-left: 0.55rem;
  content: "\2192";
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 750px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,14,18,.98) 0%, rgba(10,14,18,.91) 38%, rgba(10,14,18,.33) 69%, rgba(10,14,18,.2) 100%),
    linear-gradient(0deg, rgba(10,14,18,.74) 0%, transparent 42%);
  content: "";
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  align-self: center;
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin-inline: auto;
  padding: 6rem var(--gutter) 8rem;
}

.hero-content-inner {
  max-width: 730px;
}

.home-hero .lede {
  max-width: 56ch;
  color: #e5e8e9;
}

.hero-rail {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  color: var(--white);
  gap: 0.75rem;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-rail::before {
  width: 5.5rem;
  height: 1px;
  background: var(--amber);
  content: "";
}

.trust-line {
  background: var(--amber);
  color: var(--ink);
}

.trust-line-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.trust-item {
  padding: 1.25rem 1.5rem;
  border-left: 1px solid rgba(17,24,32,.24);
}

.trust-item:last-child {
  border-right: 1px solid rgba(17,24,32,.24);
}

.trust-item small {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-item strong {
  font-family: var(--heading);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .6fr);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  gap: 2rem;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  overflow: hidden;
  background: var(--paper);
}

.service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-card::after {
  position: absolute;
  right: -3.2rem;
  bottom: -3.2rem;
  width: 8rem;
  height: 8rem;
  transform: rotate(45deg);
  border: 1px solid var(--line);
  content: "";
}

.service-index {
  display: flex;
  align-items: center;
  margin-bottom: auto;
  color: var(--orange);
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-index::after {
  width: 3.5rem;
  height: 1px;
  background: var(--orange);
  content: "";
}

.service-card h3 {
  max-width: 11ch;
  margin-top: 2.5rem;
}

.service-card p {
  color: var(--steel);
  font-size: 0.95rem;
}

.service-card .text-link {
  align-self: flex-start;
  margin-top: 1rem;
}

.service-card:hover {
  z-index: 2;
  box-shadow: inset 0 -5px 0 var(--amber);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 2vw, 1.5rem);
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  color: var(--white);
  text-decoration: none;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

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

.project-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.6rem 1.1rem 1.1rem;
  background: linear-gradient(transparent, rgba(8,12,16,.94));
}

.project-label small {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--amber);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-label strong {
  font-family: var(--heading);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7.5rem);
}

.circuit-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    var(--ink-2);
  background-size: 42px 42px;
}

.circuit-panel::before,
.circuit-panel::after {
  position: absolute;
  border: 10px solid var(--amber);
  content: "";
}

.circuit-panel::before {
  top: 14%;
  right: 19%;
  bottom: 14%;
  left: 19%;
}

.circuit-panel::after {
  top: 35%;
  right: 6%;
  bottom: 35%;
  left: 6%;
  border-right: 0;
  border-left: 0;
}

.circuit-bolt {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 6.8rem;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 1rem 2rem rgba(0,0,0,.4));
}

.coverage-list {
  display: grid;
  margin: 2.4rem 0 0;
  padding: 0;
  border-top: 1px solid #c8c3b8;
  list-style: none;
}

.coverage-list li {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #c8c3b8;
  font-weight: 800;
}

.coverage-list span {
  color: var(--orange);
  font-family: var(--heading);
  font-size: 1.25rem;
}

.questions {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.faq-list {
  border-top: 1px solid #65717a;
}

.faq-list details {
  border-bottom: 1px solid #65717a;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 2rem;
  align-items: center;
  padding: 1.35rem 0;
  font-family: var(--heading);
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--amber);
  content: "+";
  font-family: var(--body);
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}

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

.faq-list details p {
  max-width: 62ch;
  padding: 0 2.8rem 1.5rem 0;
  color: #c8cfd4;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: var(--amber);
}

.contact-band::before {
  position: absolute;
  top: -15rem;
  right: -5rem;
  width: 31rem;
  height: 31rem;
  transform: rotate(45deg);
  border: 3rem solid rgba(17,24,32,.07);
  content: "";
}

.contact-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-block: clamp(3.75rem, 7vw, 6.5rem);
  gap: 2rem;
}

.contact-band h2 {
  max-width: 15ch;
  margin: 0;
}

.contact-band .eyebrow {
  color: var(--ink);
}

.contact-actions {
  display: grid;
  min-width: min(100%, 350px);
  gap: 0.8rem;
}

.contact-actions a {
  display: grid;
  padding: 1rem 1.15rem;
  border: 2px solid var(--ink);
  color: var(--ink);
  line-height: 1.25;
  text-decoration: none;
}

.contact-actions small {
  margin-bottom: 0.2rem;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.contact-actions a:hover {
  background: var(--ink);
  color: var(--white);
}

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

.page-hero::before {
  position: absolute;
  top: -45%;
  right: -8%;
  width: 48vw;
  height: 48vw;
  min-width: 460px;
  min-height: 460px;
  transform: rotate(45deg);
  border: clamp(2rem, 5vw, 5rem) solid rgba(242,183,5,.12);
  content: "";
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 5px;
  background: var(--amber);
  content: "";
}

.page-hero-inner {
  position: relative;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.page-hero .lede {
  max-width: 57ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
  padding: 0;
  gap: 0.45rem;
  color: #aab3ba;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: var(--amber);
  content: "/";
}

.breadcrumb a {
  color: inherit;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.detail-copy h2 {
  max-width: 14ch;
}

.detail-copy p {
  max-width: 66ch;
  color: var(--steel);
  font-size: 1.08rem;
}

.detail-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-left: 5px solid var(--amber);
  background: #ece8de;
}

.detail-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--heading);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.detail-note p {
  margin: 0;
  font-size: 0.95rem;
}

.service-menu {
  position: sticky;
  top: 7.5rem;
  margin: 0;
  padding: 0;
  border-top: 5px solid var(--amber);
  background: var(--ink-2);
  color: var(--white);
  list-style: none;
}

.service-menu li {
  border-bottom: 1px solid #3e4b55;
}

.service-menu a {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  gap: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-menu a::after {
  color: var(--amber);
  content: "\2192";
}

.service-menu a:hover,
.service-menu a[aria-current="page"] {
  background: #27343e;
}

.service-menu-title {
  padding: 1rem 1.1rem;
  color: var(--amber);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3rem;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card {
  min-height: 240px;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  background: var(--paper);
}

.contact-card small {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card a {
  overflow-wrap: anywhere;
  font-family: var(--heading);
  font-size: clamp(1.55rem, 3.4vw, 2.75rem);
  line-height: 1.05;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--amber);
  text-underline-offset: 0.2em;
  text-transform: uppercase;
}

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

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

.step-list li + li {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.step-list span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 1.2rem;
}

.step-list strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer {
  background: #090d11;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) .8fr 1fr;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: 3rem;
  gap: 3rem;
}

.footer-brand p {
  max-width: 42ch;
  margin: 1.25rem 0 0;
  color: #aeb7bd;
  font-size: 0.9rem;
}

.footer-title {
  display: block;
  margin-bottom: 1rem;
  color: var(--amber);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  list-style: none;
}

.footer-links a {
  color: #d7dce0;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-contact a {
  display: block;
  margin-bottom: 0.7rem;
  overflow-wrap: anywhere;
  color: var(--white);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 1.1rem;
  border-top: 1px solid #2b353d;
  color: #9fa9b0;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.private-copy {
  color: var(--amber);
}

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr 1fr;
    padding: 1rem var(--gutter) 1.25rem;
    border-top: 1px solid #35414a;
    border-bottom: 1px solid #35414a;
    background: var(--ink);
    gap: 0;
  }

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

  .site-nav a {
    padding: 0.9rem;
    border-bottom: 1px solid #35414a;
  }

  .service-card {
    grid-column: span 3;
  }

  .service-card:nth-child(4) {
    grid-column: span 3;
  }

  .service-card:last-child {
    grid-column: 2 / span 4;
  }

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

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

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 6.5rem;
  }

  .preview-strip {
    font-size: 0.6rem;
  }

  .header-inner {
    min-height: 4.65rem;
    gap: 0.6rem;
  }

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

  .brand-loc {
    display: none;
  }

  .header-call {
    min-height: 2.5rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.66rem;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(10,14,18,.97) 0%, rgba(10,14,18,.9) 54%, rgba(10,14,18,.25) 100%);
  }

  .hero-media {
    position: relative;
    min-height: 340px;
    order: 2;
  }

  .hero-content {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  .hero-rail {
    display: none;
  }

  .trust-line-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .trust-item,
  .trust-item:last-child {
    padding-inline: var(--gutter);
    border-right: 0;
    border-bottom: 1px solid rgba(17,24,32,.24);
    border-left: 0;
  }

  .section-heading,
  .split,
  .questions,
  .detail-layout,
  .contact-band-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:last-child {
    grid-column: auto;
    min-height: 280px;
  }

  .circuit-panel {
    min-height: 390px;
  }

  .contact-actions {
    width: 100%;
  }

  .service-menu {
    position: static;
  }

  .contact-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .step-list li + li {
    padding-left: 0;
    border-left: 0;
  }

  .contact-card {
    min-height: 200px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 1.8rem;
    height: 1.8rem;
  }

  .header-call {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

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