@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/barlow-condensed-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #101315;
  --ink-2: #1b2023;
  --paper: #f1f4f5;
  --surface: #ffffff;
  --muted: #56616a;
  --line: rgba(16, 19, 21, 0.14);
  --brand-blue: #006b9f;
  --brand-blue-bright: #38bdf2;
  --brand-blue-soft: #e5f1f6;
  --brand-red: #c51635;
  --brand-red-dark: #a6112a;
  --accent-panel: #006b9f;
  --on-accent: #ffffff;
  --action-text: #ffffff;
  --focus: #f3b400;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(4, 16, 22, 0.2);
  --shell: min(1180px, calc(100vw - 40px));
}

body[data-theme="safety"] {
  --ink: #171815;
  --ink-2: #24251f;
  --paper: #f4f1e7;
  --surface: #fffdf7;
  --muted: #5d5a50;
  --line: rgba(23, 24, 21, .16);
  --brand-blue: #765400;
  --brand-blue-bright: #ffd326;
  --brand-blue-soft: #fff0ad;
  --brand-red: #f2bd05;
  --brand-red-dark: #d8a600;
  --accent-panel: #f2bd05;
  --on-accent: #171815;
  --action-text: #171815;
  --focus: #0576aa;
}

body[data-theme="copper"] {
  --ink: #10191c;
  --ink-2: #1b292d;
  --paper: #edf1f0;
  --surface: #fbfdfc;
  --muted: #526166;
  --line: rgba(16, 25, 28, .16);
  --brand-blue: #075b6d;
  --brand-blue-bright: #f0ad72;
  --brand-blue-soft: #dcebed;
  --brand-red: #b94722;
  --brand-red-dark: #943718;
  --accent-panel: #134f5c;
  --on-accent: #ffffff;
  --action-text: #ffffff;
  --focus: #e6a163;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .28s ease, color .28s ease;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--brand-blue); color: white; }
* { scrollbar-color: var(--brand-blue) var(--paper); scrollbar-width: thin; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
.shell { width: var(--shell); margin-inline: auto; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 18px; height: 18px; flex: 0 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 16px; background: white; color: var(--ink); border-radius: 8px; font-weight: 800; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 10px 0;
  color: white;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(10, 14, 16, .96); border-color: rgba(255,255,255,.1); }
.nav-wrap { display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-width: max-content; padding: 4px 7px; border-radius: 8px; background: white; }
.brand img { width: 112px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { padding: 12px 0; font-size: 14px; color: rgba(255,255,255,.78); text-underline-offset: 5px; transition: color .2s ease; }
.desktop-nav a:hover { color: white; text-decoration: underline; }
.nav-actions { display: flex; align-items: center; gap: 18px; margin-left: 14px; }
.phone-link { padding: 12px 0; font-weight: 800; font-size: 14px; font-variant-numeric: tabular-nums; }
.menu-button { display: none; margin-left: auto; width: 48px; height: 48px; border-radius: 10px; border: 1px solid rgba(255,255,255,.28); background: var(--ink-2); padding: 12px; color: white; cursor: pointer; }
.menu-button span { display: block; height: 2px; background: currentColor; margin: 4px 0; border-radius: 4px; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 70px 12px auto; background: #14191c; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 10px; box-shadow: var(--shadow); }
.mobile-menu a { display: flex; align-items: center; min-height: 48px; color: white; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu a:last-child { justify-content: center; border: 0; background: var(--brand-red); color: var(--action-text); margin-top: 8px; border-radius: 9px; font-weight: 800; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; border-radius: 10px; padding: 14px 19px; border: 1px solid transparent; font-weight: 800; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 11px 17px; background: var(--brand-red); color: var(--action-text); font-size: 13px; }
.button-small:hover, .button-primary:hover { background: var(--brand-red-dark); }
.button-primary { background: var(--brand-red); color: var(--action-text); }
.button-ghost { color: white; border-color: rgba(255,255,255,.35); background: rgba(16,19,21,.42); }
.button-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(16,19,21,.7); }

.hero { position: relative; min-height: 840px; overflow: hidden; display: flex; align-items: center; padding: 140px 0 116px; background: #0b0f11; color: white; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-overlay { background: linear-gradient(90deg, rgba(6,11,14,.98) 0%, rgba(6,11,14,.91) 38%, rgba(6,11,14,.45) 68%, rgba(6,11,14,.26) 100%), linear-gradient(0deg, rgba(6,11,14,.72), transparent 56%); }
body[data-theme="safety"] .hero-overlay { background: linear-gradient(90deg, rgba(13,14,12,.98) 0%, rgba(20,19,14,.92) 40%, rgba(31,26,10,.46) 72%, rgba(31,26,10,.24) 100%), linear-gradient(0deg, rgba(10,10,8,.72), transparent 56%); }
body[data-theme="copper"] .hero-overlay { background: linear-gradient(90deg, rgba(6,14,17,.98) 0%, rgba(8,21,25,.92) 40%, rgba(24,28,27,.45) 70%, rgba(29,22,18,.28) 100%), linear-gradient(0deg, rgba(6,12,14,.74), transparent 56%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(310px, .58fr); gap: 68px; align-items: end; }
.hero-copy { max-width: 760px; }
.hero h1, .section h2, .hero-card h2, .service-card h3, .process h3, .contact-option strong, .legal-main h1, .legal-main h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}
.hero h1 { margin: 0 0 22px; max-width: 760px; font-size: clamp(64px, 7vw, 96px); line-height: .9; letter-spacing: -.025em; font-weight: 900; text-wrap: balance; }
.hero h1 span { color: var(--brand-blue-bright); }
.hero-lead { max-width: 630px; margin: 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.5; color: rgba(255,255,255,.84); }
.hero-assurance { margin: 20px 0 0; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-ctas .button-primary { display: grid; justify-items: start; gap: 2px; min-width: 190px; }
.hero-ctas .button-primary span { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.hero-ctas .button-primary strong { font-size: 17px; font-variant-numeric: tabular-nums; }
.trust-row { display: flex; gap: 0; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); max-width: 650px; }
.trust-row a { display: grid; gap: 5px; min-width: 150px; padding: 8px 24px 8px 0; margin-right: 24px; border-right: 1px solid rgba(255,255,255,.16); }
.trust-row a:last-child { border: 0; margin: 0; padding-right: 0; }
.trust-row strong { font-size: 22px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.trust-row span { color: rgba(255,255,255,.68); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.trust-row a:hover span { color: white; text-decoration: underline; text-underline-offset: 4px; }
.hero-card { padding: 30px; border-radius: var(--radius); background: rgba(17,24,28,.94); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.hero-card h2 { margin: 0 0 14px; font-size: 40px; line-height: .98; letter-spacing: -.015em; }
.hero-card p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; font-size: 15px; }
.hero-card ul { padding: 0; margin: 22px 0; list-style: none; display: grid; gap: 11px; font-size: 14px; }
.hero-card li { display: flex; gap: 10px; align-items: baseline; }
.hero-card li::before { content: ""; width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--brand-blue-bright); }
.hero-card > a { min-height: 48px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: space-between; font-weight: 800; }
.hero-card > a .icon { color: var(--brand-blue-bright); }
.service-ribbon { position: absolute; z-index: 3; inset: auto 0 0; min-height: 52px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; background: var(--accent-panel); border-top: 1px solid rgba(255,255,255,.18); }
.service-ribbon span { display: grid; place-items: center; padding: 12px; border-right: 1px solid rgba(255,255,255,.2); color: var(--on-accent); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; text-align: center; }
.service-ribbon span:last-child { border: 0; }

.section { padding: 104px 0; scroll-margin-top: 64px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .65fr; gap: 70px; align-items: end; margin-bottom: 46px; }
.section h2 { margin: 0; font-size: clamp(48px, 5.5vw, 76px); line-height: .95; letter-spacing: -.02em; font-weight: 900; text-wrap: balance; }
.section-heading > p { max-width: 66ch; margin: 0 0 5px; color: var(--muted); line-height: 1.7; font-size: 16px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 290px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.42); transition: background-color .2s ease, transform .2s ease; }
.service-card:hover { background: var(--surface); transform: translateY(-3px); }
.service-featured { background: var(--ink); color: white; }
.service-featured:hover { background: var(--ink-2); }
.service-card h3 { margin: 0 0 12px; font-size: 30px; line-height: 1; letter-spacing: -.01em; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }
.service-featured p { color: rgba(255,255,255,.72); }
.service-card a { display: flex; justify-content: space-between; align-items: center; min-height: 48px; margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 800; }
.service-featured a { border-color: rgba(255,255,255,.18); }
.service-card a .icon { color: var(--brand-blue); }
.service-featured a .icon { color: var(--brand-blue-bright); }

.work-scene { position: relative; isolation: isolate; min-height: 340px; margin-top: 40px; padding: 34px; overflow: hidden; display: grid; align-items: end; border-radius: var(--radius); background-image: linear-gradient(90deg, rgba(8,13,16,.96) 0%, rgba(8,13,16,.78) 36%, rgba(8,13,16,.2) 70%), url("assets/electrical-testing-bg.webp"); background-size: cover; background-position: center; box-shadow: 0 26px 60px rgba(4,16,22,.16); }
.work-scene::after { content: ""; position: absolute; inset: 0; z-index: -1; border: 1px solid rgba(255,255,255,.14); border-radius: inherit; pointer-events: none; }
.work-scene > div { max-width: 520px; display: grid; gap: 9px; color: white; }
.work-scene strong { font: 900 clamp(34px, 4vw, 52px)/.95 "Barlow Condensed", "Arial Narrow", sans-serif; letter-spacing: -.02em; text-wrap: balance; }
.work-scene span { max-width: 54ch; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.6; }

.proof { position: relative; background-color: var(--ink); background-image: linear-gradient(90deg, rgba(8,13,15,.99) 0%, rgba(8,13,15,.94) 46%, rgba(8,13,15,.76) 74%, rgba(8,13,15,.66) 100%), url("assets/fire-safety-bg.webp"); background-size: cover; background-position: center; color: white; }
.proof-grid { position: relative; display: grid; grid-template-columns: 1fr .85fr; gap: 90px; }
.proof-intro { max-width: 590px; margin: 26px 0 38px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.65; }
.proof-badges { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid rgba(255,255,255,.16); }
.proof-badges > * { min-height: 96px; display: grid; align-content: center; gap: 5px; padding: 20px; background: var(--ink); border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.proof-badges > *:nth-child(2n) { border-right: 0; }
.proof-badges > *:nth-last-child(-n+2) { border-bottom: 0; }
.proof-badges a:hover { background: var(--ink-2); }
.proof-badges strong { font-size: 18px; }
.proof-badges small { color: rgba(255,255,255,.68); font-size: 13px; }
.process { display: grid; align-content: center; }
.process-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.process-step:first-child { border-top: 1px solid rgba(255,255,255,.15); }
.process-step > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--brand-blue-bright); font-weight: 800; font-variant-numeric: tabular-nums; }
.process-step h3 { margin: 0 0 8px; font-size: 25px; letter-spacing: 0; }
.process-step p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.6; font-size: 14px; }

.reviews { background: var(--brand-blue-soft); }
.reviews-head { display: flex; justify-content: space-between; align-items: end; gap: 36px; }
.reviews-head h2 { max-width: 780px; }
.rating-block { display: flex; align-items: center; gap: 18px; min-height: 72px; padding: 8px; }
.rating-block > strong { font: 900 58px/1 "Barlow Condensed", "Arial Narrow", sans-serif; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.rating-block > strong span { font-size: 24px; color: var(--muted); }
.rating-block div { display: grid; gap: 5px; }
.rating-block div > span { font-size: 14px; font-weight: 800; }
.rating-block small { color: var(--muted); font-size: 12px; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 46px; }
.quote-card { margin: 0; min-height: 265px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--surface); border: 1px solid rgba(16,19,21,.1); border-radius: var(--radius); }
.quote-card p { margin: 0 0 30px; font-size: 20px; line-height: 1.5; letter-spacing: -.01em; }
.quote-card footer { display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote-card footer span { font-weight: 800; font-size: 13px; }
.quote-card footer a { width: fit-content; display: inline-flex; align-items: center; gap: 5px; min-height: 44px; color: var(--brand-blue); font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.quote-card footer .icon { width: 15px; height: 15px; }
.social-proof { margin-top: 20px; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--ink); color: white; border-radius: var(--radius); }
.social-proof p { margin: 0; font-weight: 700; }
.social-proof div { display: flex; flex-wrap: wrap; gap: 10px; }
.social-proof a { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; font-size: 13px; font-weight: 800; }
.social-proof a:hover { border-color: var(--brand-blue-bright); color: var(--brand-blue-bright); }
.social-proof .icon { width: 15px; height: 15px; }

.area-section { background: var(--surface); }
.area-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.area-copy > p { max-width: 66ch; color: var(--muted); line-height: 1.7; font-size: 16px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.area-chips span { padding: 10px 13px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: 13px; font-weight: 750; }
.map-card { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius); background: #d8ddda; box-shadow: 0 28px 65px rgba(4,16,22,.17); }
.map-card iframe { display: block; width: 100%; min-height: 470px; height: 100%; border: 0; filter: saturate(.76) contrast(1.04); }
.map-label, .map-link { position: absolute; z-index: 2; background: var(--surface); color: var(--ink); box-shadow: 0 10px 30px rgba(4,16,22,.16); }
.map-label { top: 16px; left: 16px; display: flex; align-items: center; gap: 11px; padding: 12px 14px; border-radius: 10px; }
.map-label > span { width: 13px; height: 13px; flex: 0 0 13px; border-radius: 50%; background: var(--brand-red); box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand-red) 18%, transparent); }
.map-label div { display: grid; gap: 2px; }
.map-label strong { font-size: 14px; }
.map-label small { color: var(--muted); font-size: 11px; }
.map-link { right: 16px; bottom: 16px; min-height: 44px; display: inline-flex; align-items: center; gap: 7px; padding: 11px 13px; border-radius: 9px; color: var(--brand-blue); font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.map-link .icon { width: 15px; height: 15px; }

.quote-section { background: var(--accent-panel); color: var(--on-accent); }
.quote-shell { display: grid; grid-template-columns: .75fr 1fr; gap: 82px; align-items: center; }
.quote-copy > p { max-width: 540px; margin: 24px 0 0; color: color-mix(in srgb, var(--on-accent) 82%, transparent); font-size: 18px; line-height: 1.65; }
.contact-options { display: grid; gap: 12px; }
.contact-option { display: grid; gap: 6px; min-height: 150px; padding: 24px; border-radius: var(--radius); background: var(--surface); color: var(--ink); border: 1px solid rgba(255,255,255,.24); transition: transform .2s ease, background-color .2s ease; }
.contact-option:hover { transform: translateY(-3px); background: #f7fbfd; }
.contact-option-primary { background: var(--ink); color: white; }
.contact-option-primary:hover { background: var(--ink-2); }
.contact-option > span { color: var(--brand-blue); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.contact-option-primary > span { color: var(--brand-blue-bright); }
.contact-option strong { font-size: 35px; letter-spacing: 0; font-variant-numeric: tabular-nums; }
.contact-option small { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; }
.contact-option-primary small { color: rgba(255,255,255,.7); }
.contact-note { margin: 4px 2px 0; color: color-mix(in srgb, var(--on-accent) 82%, transparent); font-size: 13px; line-height: 1.5; }

.site-footer { background: #0b0f11; color: white; padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .65fr); gap: 50px; }
.footer-brand p { max-width: 310px; margin: 18px 0 0; color: rgba(255,255,255,.68); line-height: 1.65; font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 2px; }
.footer-grid > div:not(.footer-brand) > strong { margin-bottom: 9px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.72); }
.footer-grid a, .footer-grid span { min-height: 32px; display: flex; align-items: center; font-size: 13px; color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }
.legal-details { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.legal-details p { margin: 0 0 6px; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.55; }
.legal-details strong { color: rgba(255,255,255,.82); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.58); font-size: 11px; }
.mobile-callbar { display: none; }

.demo-config { position: fixed; z-index: 120; right: 24px; bottom: 24px; color: #101315; }
.config-toggle { min-height: 58px; display: flex; align-items: center; gap: 12px; padding: 9px 15px 9px 10px; border: 1px solid rgba(16,19,21,.14); border-radius: 13px; background: #fff; color: #101315; box-shadow: 0 16px 38px rgba(4,16,22,.24); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.config-toggle:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(4,16,22,.28); }
.config-toggle > span:last-child { display: grid; gap: 1px; text-align: left; }
.config-toggle small { color: #667078; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.config-toggle strong { font-size: 14px; }
.config-toggle-swatches { width: 38px; height: 38px; display: flex; overflow: hidden; border-radius: 9px; }
.config-toggle-swatches i { flex: 1; }
.config-toggle-swatches i:nth-child(1) { background: #006b9f; }
.config-toggle-swatches i:nth-child(2) { background: #f2bd05; }
.config-toggle-swatches i:nth-child(3) { background: #b94722; }
.config-panel { position: absolute; right: 0; bottom: 70px; width: min(360px, calc(100vw - 32px)); max-height: calc(100vh - 116px); overflow: auto; padding: 20px; border: 1px solid rgba(16,19,21,.14); border-radius: 14px; background: #fff; box-shadow: 0 24px 70px rgba(4,16,22,.28); }
.config-panel[hidden] { display: none; }
.config-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding-bottom: 17px; border-bottom: 1px solid rgba(16,19,21,.12); }
.config-head > div { display: grid; gap: 4px; }
.config-head strong { font-size: 17px; }
.config-head span { color: #667078; font-size: 12px; }
.config-close { position: relative; width: 44px; height: 44px; flex: 0 0 44px; border: 1px solid rgba(16,19,21,.13); border-radius: 9px; background: #f4f6f7; cursor: pointer; }
.config-close span::before, .config-close span::after { content: ""; position: absolute; left: 13px; top: 21px; width: 18px; height: 2px; border-radius: 2px; background: #101315; }
.config-close span::before { transform: rotate(45deg); }
.config-close span::after { transform: rotate(-45deg); }
.config-group { min-width: 0; margin: 19px 0 0; padding: 0; border: 0; }
.config-group legend { margin-bottom: 9px; padding: 0; color: #4f5960; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.theme-options, .layout-options { display: grid; gap: 7px; }
.theme-options button, .layout-options button { width: 100%; min-height: 58px; display: flex; align-items: center; gap: 12px; padding: 8px; border: 1px solid rgba(16,19,21,.12); border-radius: 10px; background: #fff; color: #101315; text-align: left; cursor: pointer; }
.theme-options button:hover, .layout-options button:hover { background: #f6f8f9; }
.theme-options button[aria-pressed="true"], .layout-options button[aria-pressed="true"] { border-color: #006b9f; background: #edf7fb; box-shadow: inset 0 0 0 1px #006b9f; }
.theme-options button > span:last-child, .layout-options button > span:last-child { min-width: 0; display: grid; gap: 2px; }
.theme-options strong, .layout-options strong { font-size: 13px; }
.theme-options small, .layout-options small { color: #667078; font-size: 11px; }
.theme-swatch, .layout-preview { width: 54px; height: 38px; flex: 0 0 54px; overflow: hidden; display: flex; border-radius: 7px; border: 1px solid rgba(16,19,21,.12); background: #eef1f2; }
.theme-swatch i { flex: 1; }
.theme-swatch-efs i:nth-child(1) { background: #101315; }
.theme-swatch-efs i:nth-child(2) { background: #006b9f; }
.theme-swatch-efs i:nth-child(3) { background: #c51635; }
.theme-swatch-safety i:nth-child(1) { background: #171815; }
.theme-swatch-safety i:nth-child(2) { background: #f2bd05; }
.theme-swatch-safety i:nth-child(3) { background: #fff0ad; }
.theme-swatch-copper i:nth-child(1) { background: #10191c; }
.theme-swatch-copper i:nth-child(2) { background: #134f5c; }
.theme-swatch-copper i:nth-child(3) { background: #b94722; }
.layout-preview { position: relative; display: block; padding: 5px; }
.layout-preview i { position: absolute; display: block; border-radius: 2px; background: #1d272b; }
.layout-preview-balanced i:nth-child(1) { left: 5px; top: 5px; width: 26px; height: 12px; }
.layout-preview-balanced i:nth-child(2) { right: 5px; top: 5px; width: 12px; height: 12px; background: #006b9f; }
.layout-preview-balanced i:nth-child(3) { inset: auto 5px 5px; height: 11px; background: #c9d2d6; }
.layout-preview-centered i:nth-child(1) { left: 13px; right: 13px; top: 5px; height: 9px; background: #006b9f; }
.layout-preview-centered i:nth-child(2) { left: 8px; right: 8px; top: 17px; height: 5px; }
.layout-preview-centered i:nth-child(3) { left: 10px; right: 10px; bottom: 5px; height: 8px; background: #c9d2d6; }
.layout-preview-editorial i:nth-child(1) { left: 5px; top: 5px; bottom: 5px; width: 14px; background: #006b9f; }
.layout-preview-editorial i:nth-child(2) { left: 23px; right: 5px; top: 5px; height: 12px; }
.layout-preview-editorial i:nth-child(3) { left: 23px; right: 5px; bottom: 5px; height: 11px; background: #c9d2d6; }
.config-footer { margin-top: 19px; padding-top: 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(16,19,21,.12); }
.config-footer button { min-height: 44px; padding: 8px 0; border: 0; background: transparent; color: #075b80; font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.config-footer span { max-width: 150px; color: #667078; font-size: 10px; line-height: 1.4; text-align: right; }

body[data-layout="centered"] { --shell: min(1060px, calc(100vw - 40px)); }
body[data-layout="centered"] .hero-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
body[data-layout="centered"] .hero-copy { max-width: 820px; }
body[data-layout="centered"] .hero-overlay { background: linear-gradient(90deg, rgba(6,11,14,.79), rgba(6,11,14,.79)), linear-gradient(0deg, rgba(6,11,14,.78), transparent 64%); }
body[data-layout="centered"] .hero-ctas, body[data-layout="centered"] .trust-row { justify-content: center; margin-inline: auto; }
body[data-layout="centered"] .hero-card { display: none; }
body[data-layout="centered"] .section-heading { grid-template-columns: 1fr; max-width: 820px; margin-inline: auto; text-align: center; }
body[data-layout="centered"] .section-heading > p { margin-inline: auto; }
body[data-layout="centered"] .service-grid { grid-template-columns: repeat(2, 1fr); }
body[data-layout="centered"] .proof-grid { grid-template-columns: 1fr; gap: 54px; }
body[data-layout="centered"] .process { grid-template-columns: repeat(3, 1fr); }
body[data-layout="centered"] .process-step { grid-template-columns: 1fr; align-content: start; border-top: 1px solid rgba(255,255,255,.15); border-right: 1px solid rgba(255,255,255,.15); padding: 28px; }
body[data-layout="centered"] .process-step:last-child { border-right: 0; }
body[data-layout="centered"] .area-grid, body[data-layout="centered"] .quote-shell { grid-template-columns: 1fr; }
body[data-layout="centered"] .contact-options { grid-template-columns: repeat(2, 1fr); }
body[data-layout="centered"] .contact-note { grid-column: 1 / -1; }

body[data-layout="editorial"] { --shell: min(1280px, calc(100vw - 48px)); }
body[data-layout="editorial"] .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(330px, .4fr); }
body[data-layout="editorial"] .services > .shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 64px; align-items: start; }
body[data-layout="editorial"] .services .section-heading { position: sticky; top: 110px; display: block; margin-bottom: 0; }
body[data-layout="editorial"] .services .section-heading > p { margin-top: 25px; }
body[data-layout="editorial"] .service-grid { grid-template-columns: repeat(2, 1fr); }
body[data-layout="editorial"] .service-card:first-child { grid-column: 1 / -1; min-height: 238px; }
body[data-layout="editorial"] .work-scene { grid-column: 1 / -1; min-height: 400px; }
body[data-layout="editorial"] .proof-grid { grid-template-columns: .72fr 1.28fr; }
body[data-layout="editorial"] .quote-grid { grid-template-columns: 1.18fr .82fr; grid-template-rows: repeat(2, minmax(0, 1fr)); }
body[data-layout="editorial"] .quote-card:first-child { grid-row: 1 / 3; }
body[data-layout="editorial"] .quote-card:first-child p { font-size: 28px; }
body[data-layout="editorial"] .quote-card:not(:first-child) { min-height: 0; }
body[data-layout="editorial"] .area-grid { grid-template-columns: .68fr 1.32fr; }

.reveal { opacity: 1; transform: none; transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1); }
.reveal-pending { opacity: 0; transform: translateY(16px); }
.reveal-delay { transition-delay: .08s; }

.legal-page { background: var(--surface); }
.legal-page .site-header { background: rgba(10,14,16,.98); }
.legal-main { min-height: 80vh; padding: 138px 0 96px; }
.legal-main article { max-width: 760px; }
.legal-main h1 { margin: 0 0 24px; font-size: clamp(54px, 7vw, 84px); line-height: .95; letter-spacing: -.02em; }
.legal-main h2 { margin: 42px 0 12px; font-size: 32px; }
.legal-main p, .legal-main li { color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-main a { color: var(--brand-blue); font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }
.legal-meta { padding: 16px 18px; background: var(--brand-blue-soft); border-radius: 10px; color: var(--ink) !important; }

@media (max-width: 1000px) {
  .desktop-nav, .phone-link { display: none; }
  .nav-actions { margin-left: auto; }
  .hero { min-height: auto; padding-top: 138px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { max-width: 720px; }
  .hero-card { max-width: 540px; }
  .section-heading, .proof-grid, .area-grid, .quote-shell { grid-template-columns: 1fr; gap: 44px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-card { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  body[data-layout="centered"] .process { grid-template-columns: 1fr; }
  body[data-layout="centered"] .process-step { grid-template-columns: 56px 1fr; border-right: 0; }
  body[data-layout="editorial"] .hero-grid, body[data-layout="editorial"] .proof-grid { grid-template-columns: 1fr; }
  body[data-layout="editorial"] .services > .shell { display: block; }
  body[data-layout="editorial"] .services .section-heading { position: static; display: grid; margin-bottom: 46px; }
  body[data-layout="editorial"] .quote-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  body[data-layout="editorial"] .quote-card:first-child { grid-row: auto; }
  body[data-layout="editorial"] .area-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { padding-bottom: 68px; }
  .site-header { padding: 9px 0; background: rgba(10,14,16,.9); }
  .brand img { width: 104px; }
  .nav-actions { display: none; }
  .menu-button { display: block; }
  .hero { min-height: 760px; padding: 116px 0 100px; align-items: end; }
  .hero-media img { object-position: 64% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(6,11,14,.98) 0%, rgba(6,11,14,.9) 54%, rgba(6,11,14,.48) 100%); }
  .hero-grid { gap: 26px; }
  .hero h1 { font-size: clamp(58px, 17vw, 72px); }
  .hero-lead { font-size: 17px; }
  .hero-assurance { line-height: 1.55; }
  .hero-ctas { display: grid; }
  .hero-ctas .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: repeat(3, 1fr); }
  .trust-row a { min-width: 0; margin: 0; padding: 7px 12px; }
  .trust-row a:first-child { padding-left: 0; }
  .trust-row strong { font-size: 18px; }
  .trust-row span { font-size: 11px; letter-spacing: .04em; }
  .hero-card { display: none; }
  .service-ribbon { min-height: 44px; grid-template-columns: repeat(3, 1fr); }
  .service-ribbon span { padding: 10px 6px; font-size: 11px; }
  .service-ribbon span:nth-child(n+4) { display: none; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 30px; }
  .section h2 { font-size: clamp(46px, 13vw, 58px); }
  .service-grid { grid-template-columns: 1fr; }
  body[data-layout="centered"] .service-grid, body[data-layout="editorial"] .service-grid { grid-template-columns: 1fr; }
  body[data-layout="editorial"] .service-card:first-child { grid-column: auto; min-height: 250px; }
  .service-card { min-height: 250px; padding: 24px; }
  .service-card h3 { font-size: 29px; }
  .work-scene, body[data-layout="editorial"] .work-scene { min-height: 380px; margin-top: 26px; padding: 24px; background-position: 61% center; }
  .proof-badges { grid-template-columns: 1fr; }
  .proof-badges > * { min-height: 82px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16) !important; }
  .proof-badges > *:last-child { border-bottom: 0 !important; }
  .reviews-head { display: grid; align-items: start; }
  .rating-block { width: fit-content; padding-inline: 0; }
  .rating-block > strong { font-size: 50px; }
  .social-proof { align-items: stretch; flex-direction: column; }
  .social-proof div { display: grid; }
  .social-proof a { justify-content: space-between; }
  .map-card { min-height: 350px; }
  .map-card iframe { min-height: 350px; }
  .contact-option { min-height: 142px; padding: 22px; }
  .contact-option strong { font-size: 31px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid a, .footer-grid span { min-height: 44px; }
  .footer-bottom { display: grid; line-height: 1.5; }
  .mobile-callbar { position: fixed; inset: auto 0 0; z-index: 100; height: 68px; display: grid; grid-template-columns: 1.15fr .85fr; background: #0d1113; border-top: 1px solid rgba(255,255,255,.14); box-shadow: 0 -8px 30px rgba(0,0,0,.22); }
  .mobile-callbar a { min-height: 68px; color: white; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 9px 12px; }
  .mobile-callbar a:first-child { flex-direction: column; align-items: flex-start; padding-left: 20px; }
  .mobile-callbar a:first-child span { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.68); }
  .mobile-callbar a:first-child strong { font-size: 16px; font-variant-numeric: tabular-nums; }
  .mobile-callbar a:last-child { background: var(--brand-red); color: var(--action-text); font-weight: 900; text-align: center; }
  body[data-layout="centered"] .hero { align-items: end; }
  body[data-layout="centered"] .hero-grid { text-align: left; justify-items: stretch; }
  body[data-layout="centered"] .hero-ctas, body[data-layout="centered"] .trust-row { justify-content: start; margin-inline: 0; }
  body[data-layout="centered"] .section-heading { text-align: left; }
  body[data-layout="centered"] .section-heading > p { margin-inline: 0; }
  body[data-layout="centered"] .contact-options { grid-template-columns: 1fr; }
  body[data-layout="centered"] .contact-note { grid-column: auto; }
  .demo-config { right: 12px; bottom: 80px; }
  .config-toggle { min-height: 52px; padding: 7px 12px 7px 8px; }
  .config-toggle-swatches { width: 34px; height: 34px; }
  .config-panel { position: fixed; left: 10px; right: 10px; bottom: 142px; width: auto; max-height: calc(100vh - 166px); }
  .legal-main { padding-top: 116px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .service-card, .contact-option, .menu-button span, .reveal, body, .config-toggle { transition: none; }
  .reveal, .reveal-pending { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button, .menu-button, .social-proof a, .proof-badges > *, .contact-option, .config-toggle, .config-panel { border: 1px solid ButtonText; }
}
