:root {
  --navy-950: #06101f;
  --navy-900: #09182b;
  --navy-800: #10253e;
  --blue-600: #1768d4;
  --blue-500: #2581ef;
  --orange-600: #c74312;
  --orange-500: #ff642f;
  --orange-100: #fff0ea;
  --ink: #102033;
  --muted: #566477;
  --line: #dfe5ec;
  --soft: #f4f7fa;
  --white: #fff;
  --success: #12633b;
  --danger: #a82d23;
  --shadow-sm: 0 8px 28px rgb(6 16 31 / 8%);
  --shadow-lg: 0 22px 70px rgb(6 16 31 / 18%);
  --radius: 18px;
  --radius-sm: 10px;
  --shell: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

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

a {
  color: var(--blue-600);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover { color: var(--orange-600); }

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

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

:focus-visible {
  outline: 3px solid #ffb79f;
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0 0 .65em;
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(2.55rem, 5.4vw, 5.25rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.35rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.2em; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
}

.skip-link:focus { transform: none; }

.utility-bar {
  color: #e7edf6;
  background: var(--navy-950);
  font-size: .78rem;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 34px;
  align-items: center;
}

.site-header {
  position: relative;
  z-index: 50;
  color: var(--white);
  background: var(--navy-900);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 10px 40px rgb(2 8 18 / 22%);
}

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

.brand {
  display: flex;
  flex: 0 0 245px;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 43px;
  height: 51px;
  object-fit: contain;
}

.brand span,
.footer-wordmark span { display: grid; line-height: 1; }
.brand strong,
.footer-wordmark strong {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.brand small,
.footer-wordmark small {
  margin-top: 5px;
  color: #bfcbd8;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 25px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #eef4fb;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange-500);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav > a:hover { color: var(--white); }

.primary-nav .nav-phone {
  display: none;
  gap: 8px;
  align-items: center;
}

.nav-phone svg { width: 20px; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 8px;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 21px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: var(--orange-600);
  border: 2px solid var(--orange-600);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgb(232 78 24 / 22%);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button svg,
.text-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.button:hover {
  color: var(--white);
  background: #a9340e;
  border-color: #a9340e;
  transform: translateY(-1px);
}
.button-small { min-height: 42px; padding: 9px 15px; font-size: .85rem; }
.button-ghost {
  color: var(--white);
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 55%);
  box-shadow: none;
}
.button-ghost:hover { background: rgb(255 255 255 / 16%); border-color: var(--white); }
.button-outline {
  color: var(--navy-900);
  background: transparent;
  border-color: #aeb8c6;
  box-shadow: none;
}
.button-outline:hover { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); }
.button-light { color: var(--navy-950); background: var(--white); border-color: var(--white); box-shadow: none; }
.button-light:hover { color: var(--white); background: transparent; }
.button-block { width: 100%; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange-600);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow-light { color: #ff9c79; }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(5 15 29 / 98%) 0%, rgb(5 15 29 / 82%) 42%, rgb(5 15 29 / 12%) 73%, rgb(5 15 29 / 8%) 100%),
    url("/assets/hero-microsoldering.webp") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding-block: 80px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.hero-lead {
  max-width: 650px;
  color: #dce7f4;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.trust-row {
  display: flex;
  padding: 0;
  margin: 34px 0 0;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #dce7f4;
  font-size: .9rem;
  font-weight: 700;
  list-style: none;
}

.trust-row li { display: flex; gap: 8px; align-items: center; }
.trust-row svg { width: 18px; height: 18px; fill: none; stroke: #68db9e; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; }

.proof-strip {
  color: var(--white);
  background: var(--navy-800);
}

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

.proof-grid div {
  min-height: 108px;
  padding: 25px 30px;
  border-right: 1px solid rgb(255 255 255 / 12%);
}

.proof-grid div:first-child { border-left: 1px solid rgb(255 255 255 / 12%); }
.proof-grid strong { display: block; color: var(--white); font-size: 1.05rem; }
.proof-grid span { color: #c1ccda; font-size: .84rem; }

.section { padding-block: clamp(72px, 8vw, 116px); }
.section-soft { background: var(--soft); }
.section-dark { color: #dce7f4; background: var(--navy-950); }
.section-dark h2 { color: var(--white); }

.section-heading {
  max-width: 750px;
  margin-bottom: 48px;
}

.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: end;
  gap: 70px;
}

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

.service-card {
  display: flex;
  min-height: 350px;
  padding: 31px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card h3 { margin-top: 25px; font-size: 1.45rem; }
.service-card p { color: var(--muted); }
.service-card .text-link { margin-top: auto; }

.icon-tile {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--orange-600);
  background: var(--orange-100);
  border-radius: 14px;
}

.icon-tile.large { width: 68px; height: 68px; }
.icon-tile svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-weight: 800;
  text-decoration: none;
}
.text-link.light { color: #ffb89e; }
.text-link:hover { color: var(--orange-600); }

.process-section { background: linear-gradient(135deg, #fff 0 46%, var(--soft) 46% 100%); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.process-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }

.steps,
.mail-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li,
.mail-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child,
.mail-steps li:last-child { border-bottom: 0; }
.steps li > span,
.mail-steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-weight: 900;
}
.steps h3,
.mail-steps h3 { margin-bottom: 5px; }
.steps p,
.mail-steps p { margin: 0; color: var(--muted); }

.local-band {
  padding-block: 66px;
  color: #dce7f4;
  background: var(--blue-600);
}

.local-grid {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 35px;
  align-items: center;
}

.local-grid h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.local-grid p:not(.eyebrow) { max-width: 740px; margin: 0; color: var(--white); }
.local-band .eyebrow-light,
.local-band .text-link.light { color: var(--white); }
.local-icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  color: var(--white);
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
}
.local-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.local-actions { display: flex; min-width: 190px; flex-direction: column; gap: 18px; align-items: flex-start; }

.inner-hero {
  padding-block: clamp(70px, 9vw, 125px);
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 30%, rgb(37 129 239 / 16%), transparent 24rem),
    linear-gradient(135deg, #f7f9fc, #eef3f8);
  border-bottom: 1px solid var(--line);
}

.inner-hero h1 { max-width: 920px; font-size: clamp(2.6rem, 5.3vw, 5rem); }
.inner-lead { max-width: 780px; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.breadcrumbs {
  display: flex;
  margin-bottom: 42px;
  gap: 9px;
  color: var(--muted);
  font-size: .83rem;
}
.breadcrumbs a { color: var(--blue-600); }

.two-column { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.feature-list { display: grid; gap: 26px; }
.feature-list > div { display: grid; grid-template-columns: 30px 1fr; gap: 15px; }
.feature-list svg { width: 25px; fill: none; stroke: #68db9e; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; }
.feature-list p { margin: 0; }
.feature-list strong { color: var(--white); font-size: 1.1rem; }

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 90px;
  align-items: start;
}
.service-detail-grid > div > p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.check-list {
  display: grid;
  padding: 0;
  margin: 36px 0 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  list-style: none;
}
.check-list li { display: grid; grid-template-columns: 25px 1fr; gap: 11px; align-items: start; font-weight: 700; }
.check-list svg { width: 22px; fill: none; stroke: var(--orange-600); stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; }

.quote-card,
.address-card {
  position: sticky;
  top: 110px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange-600);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.quote-card h2,
.address-card h2 { font-size: 1.8rem; }
.quote-card > p:not(.eyebrow) { color: var(--muted); }
.quote-card .eyebrow { margin-top: 25px; }
.card-phone,
.aside-phone {
  display: flex;
  margin-top: 23px;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
}
.card-phone svg,
.aside-phone svg { width: 28px; fill: none; stroke: var(--orange-600); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.card-phone small,
.aside-phone small { display: block; color: var(--muted); font-size: .72rem; font-weight: 700; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-grid a {
  display: flex;
  min-height: 90px;
  padding: 22px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
}
.related-grid svg { width: 22px; fill: none; stroke: var(--orange-600); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.related-grid a:hover { border-color: var(--orange-500); transform: translateY(-2px); }

.faq-list { border-top: 1px solid #cdd5df; }
.faq-list details { border-bottom: 1px solid #cdd5df; }
.faq-list summary {
  display: flex;
  padding: 24px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--navy-950);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange-600); font-size: 1.6rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { padding: 0 50px 22px 4px; color: var(--muted); }

.mail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 90px;
  align-items: start;
}
.mail-grid > div > p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.address-card address { margin: 24px 0; color: var(--navy-950); font-size: 1.2rem; font-style: normal; font-weight: 800; }
.address-card p:not(.eyebrow) { color: var(--muted); }
.notice-section { padding-block: 32px; background: #fff6e5; }
.notice { display: grid; grid-template-columns: 220px 1fr; gap: 25px; }
.notice strong { color: #713b00; }
.notice p { margin: 0; }

.catalogue-intro { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; }
.catalogue-intro > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.catalogue-placeholder {
  display: grid;
  min-height: 330px;
  place-items: center;
  align-content: center;
  gap: 22px;
  color: var(--blue-600);
  background: linear-gradient(145deg, #eef6ff, #fff);
  border: 2px dashed #a8c9ef;
  border-radius: var(--radius);
  font-weight: 800;
}
.catalogue-placeholder svg { width: 80px; height: 80px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mini-grid > div { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.mini-grid p { margin: 0; color: var(--muted); }

.quote-section { padding-top: 60px; }
.quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 56px; align-items: start; }
.quote-form {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-section { padding: 38px; border-bottom: 1px solid var(--line); }
.form-section:last-child { border-bottom: 0; }
.form-section.compact { padding-top: 30px; }
.form-section-heading { display: grid; grid-template-columns: 45px 1fr; gap: 15px; margin-bottom: 28px; }
.form-section-heading > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-weight: 900;
}
.form-section-heading h2 { margin-bottom: 4px; font-size: 1.55rem; }
.form-section-heading p { margin: 0; color: var(--muted); font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 21px; }
.field { display: grid; gap: 7px; align-content: start; color: var(--navy-950); font-size: .9rem; font-weight: 800; }
.field.full { grid-column: 1 / -1; }
.field b,
.consent b { color: var(--danger); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #aeb9c7;
  border-radius: 8px;
  outline: 0;
  font-weight: 500;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgb(23 104 212 / 14%); }
.field [aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgb(168 45 35 / 12%); }
.field small { justify-self: end; color: var(--muted); font-weight: 500; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; cursor: pointer; font-size: .91rem; }
.consent input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--blue-600); }
.form-warning { padding: 12px 15px; margin: 21px 0; color: #693b00; background: #fff6e5; border-radius: 8px; font-size: .88rem; }
.captcha-wrap { min-height: 80px; margin: 22px 0; }
.submit-button { min-width: 240px; }
.submit-button[disabled] { cursor: wait; opacity: .65; transform: none; }
.form-footnote { margin: 16px 0 0; color: var(--muted); font-size: .84rem; }
.form-status { padding: 15px 18px; margin: 20px 38px 0; border-radius: 8px; font-weight: 700; }
.form-status.success { color: var(--success); background: #e8f7ee; border: 1px solid #9ad8b4; }
.form-status.error { color: var(--danger); background: #fff0ef; border: 1px solid #efaaa4; }
.honeypot { position: absolute !important; left: -9999px !important; }
.quote-aside { position: sticky; top: 110px; display: grid; gap: 20px; }
.aside-block { padding: 27px; background: var(--soft); border-radius: var(--radius); }
.aside-block h2 { font-size: 1.45rem; }
.aside-block ol { padding: 0; margin: 0; list-style: none; }
.aside-block ol li { display: grid; grid-template-columns: 29px 1fr; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.aside-block ol li:last-child { border: 0; }
.aside-block ol span { display: grid; width: 25px; height: 25px; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 50%; font-size: .74rem; font-weight: 900; }
.aside-block > p:last-child { margin: 16px 0 0; color: var(--muted); font-size: .85rem; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-card > svg { width: 34px; height: 34px; margin-bottom: 24px; fill: none; stroke: var(--orange-600); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.contact-card h2 { font-size: 1.55rem; }
.contact-card address { margin-bottom: 22px; font-style: normal; }
.contact-link { color: var(--navy-950); font-size: 1.25rem; font-weight: 900; text-decoration: none; }
.contact-hours { margin: 0; }
.contact-hours div,
.footer-hours div { display: flex; justify-content: space-between; gap: 10px; }
.contact-hours dt,
.contact-hours dd,
.footer-hours dt,
.footer-hours dd { margin: 0; }
.contact-hours dd,
.footer-hours dd { text-align: right; }
.cta-panel { padding: 33px; background: var(--soft); border-left: 5px solid var(--orange-600); border-radius: var(--radius-sm); }
.cta-panel h2 { font-size: 1.65rem; }
.cta-panel p { color: var(--muted); }

.prose { max-width: 800px; }
.prose h2 { margin-top: 1.6em; font-size: 1.7rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); }

.site-footer {
  padding: 76px 0 28px;
  color: #c4cfdb;
  background: var(--navy-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1.15fr;
  gap: 55px;
}
.site-footer h2 { color: var(--white); font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a { color: #dbe5f0; }
.site-footer a:hover { color: #ffad90; }
.footer-wordmark {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.footer-wordmark img { width: 52px; height: 61px; object-fit: contain; }
.footer-wordmark strong { font-size: 1.28rem; }
.footer-brand p { max-width: 340px; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin: 6px 0; }
.site-footer address { font-style: normal; }
.footer-hours { margin: 0; font-size: .88rem; }
.footer-hours div { padding: 6px 0; border-bottom: 1px solid rgb(255 255 255 / 10%); }
.footer-bottom {
  display: flex;
  padding-top: 25px;
  margin-top: 55px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: .8rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { margin-left: 16px; }
.mobile-actions { display: none; }

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  place-items: center;
  color: #dce7f4;
  background: var(--navy-950);
}
.error-page main { width: min(100%, 760px); }
.error-page img { width: 110px; height: auto; margin-bottom: 50px; }
.error-page h1 { color: var(--white); }

@media (max-width: 1080px) {
  .utility-hours { display: none; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 118px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 24px 20px 120px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: var(--navy-950);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) {
    padding: 16px 3px;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-size: 1.05rem;
  }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .nav-phone { display: flex; margin-top: 16px; border: 0; }
  .primary-nav .button { margin-top: 14px; }
  .nav-open .nav-toggle > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle > span:nth-child(3) { opacity: 0; }
  .nav-open .nav-toggle > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .local-grid { grid-template-columns: 80px 1fr; }
  .local-actions { grid-column: 2; flex-direction: row; align-items: center; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
  .footer-hours { max-width: 500px; }
}

@media (max-width: 780px) {
  body { padding-bottom: 65px; }
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .utility-inner { justify-content: center; text-align: center; }
  .header-inner { min-height: 76px; }
  .brand { flex-basis: 230px; }
  .brand img { width: 40px; height: 47px; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .49rem; }
  .primary-nav { top: 110px; }
  .hero,
  .hero-grid { min-height: 670px; }
  .hero-media {
    background:
      linear-gradient(0deg, rgb(5 15 29 / 98%) 0%, rgb(5 15 29 / 82%) 62%, rgb(5 15 29 / 42%) 100%),
      url("/assets/hero-microsoldering.webp") 68% center / cover no-repeat;
  }
  .hero-grid { align-items: end; }
  .hero-copy { padding: 210px 0 55px; }
  .hero h1 { font-size: clamp(2.7rem, 12.5vw, 4.2rem); }
  .hero-lead { font-size: 1.04rem; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button-row .button { width: 100%; }
  .trust-row { display: grid; gap: 8px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div,
  .proof-grid div:first-child { min-height: auto; padding: 19px 20px; border-right: 0; border-left: 0; border-bottom: 1px solid rgb(255 255 255 / 12%); }
  .section { padding-block: 68px; }
  .split-heading,
  .process-grid,
  .two-column,
  .service-detail-grid,
  .mail-grid,
  .catalogue-intro,
  .quote-layout { grid-template-columns: 1fr; gap: 42px; }
  .service-grid,
  .related-grid,
  .mini-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 305px; }
  .process-section { background: var(--soft); }
  .local-grid { grid-template-columns: 1fr; text-align: left; }
  .local-actions { grid-column: 1; flex-direction: column; align-items: stretch; }
  .local-icon { width: 65px; height: 65px; }
  .inner-hero { padding-block: 60px 75px; }
  .inner-hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .breadcrumbs { margin-bottom: 32px; overflow: hidden; }
  .check-list { grid-template-columns: 1fr; }
  .quote-card,
  .address-card,
  .quote-aside { position: static; }
  .notice { grid-template-columns: 1fr; gap: 4px; }
  .catalogue-placeholder { min-height: 250px; }
  .form-section { padding: 25px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-status { margin: 15px 20px 0; }
  .g-recaptcha { transform-origin: 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { margin: 0 16px 0 0; }
  .mobile-actions {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 65px;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -8px 28px rgb(5 15 29 / 25%);
  }
  .mobile-actions a {
    display: flex;
    padding: 12px 8px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--white);
    background: var(--navy-800);
    font-size: .88rem;
    font-weight: 900;
    text-decoration: none;
  }
  .mobile-actions a:last-child { background: var(--orange-600); }
  .mobile-actions svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
}

@media (max-width: 370px) {
  .g-recaptcha { transform: scale(.88); }
}

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