:root {
  --ink: #10283a;
  --ink-2: #18384d;
  --ink-3: #23495d;
  --accent: #A3BD38;
  --accent-dark: #6F842D;
  --signal: #A3BD38;
  --paper: #ffffff;
  --mist: #eef3f5;
  --line: #d8e1e5;
  --muted: #587080;
  --success: #bde260;
  --shadow: 0 18px 48px rgba(8, 29, 43, .16);
  --radius: 4px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(var(--wrap), calc(100% - 44px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 99; background: white; padding: 10px; }

.utility {
  background: var(--ink);
  color: #dce8ed;
  font-size: .875rem;
  font-weight: 650;
}
.utility .wrap { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-list { display: flex; align-items: center; gap: 24px; }
.utility a { text-decoration: none; }
.status-dot { width: 8px; height: 8px; border-radius: 99px; background: var(--success); display: inline-block; margin-right: 8px; box-shadow: 0 0 0 3px rgba(189,226,96,.16); }

.site-header { position: relative; z-index: 20; background: #fff; border-bottom: 1px solid var(--line); }
.header-main { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; width: 315px; }
.brand img { width: 100%; height: auto; }
.header-contact { display: flex; align-items: center; gap: 26px; }
.header-contact small { display: block; color: var(--muted); font-weight: 650; font-size: .875rem; }
.header-contact strong { display: block; color: var(--ink); font-size: 1.22rem; line-height: 1.2; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 2px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.button:hover { background: var(--accent-dark); transform: translateY(-1px); }
.button-dark { background: var(--ink); }
.button-dark:hover { background: var(--ink-3); }
.button-light { background: #fff; color: var(--ink); }
.button-light:hover { color: #fff; }
.button-block { width: 100%; }
.button-arrow::after { content: "→"; font-size: 1.2em; }
.menu-toggle { display: none; border: 0; background: var(--ink); color: white; width: 46px; height: 42px; font-size: 1.4rem; }

.primary-nav { background: var(--ink-2); color: #fff; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: stretch; }
.primary-nav a { min-height: 54px; display: flex; align-items: center; padding: 0 18px; font-size: .9rem; font-weight: 760; text-decoration: none; border-right: 1px solid rgba(255,255,255,.08); }
.primary-nav a:hover, .primary-nav .active { background: var(--accent); }

.hero {
  position: relative;
  min-height: 690px;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28,49,95,.93) 0%, rgba(28,49,95,.76) 42%, rgba(28,49,95,.28) 74%, rgba(28,49,95,.4) 100%),
    var(--nx-hero) center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--accent) 0 38%, var(--signal) 38% 54%, var(--ink-3) 54%);
}
.hero-grid { position: relative; z-index: 2; min-height: 690px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(390px, .72fr); gap: 58px; align-items: center; padding-block: 54px; }
.hero-copy { max-width: 680px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: .875rem; font-weight: 700; color: #d5e1e6; margin-bottom: 18px; }
.breadcrumb a { text-decoration: none; }
.hero h1, .service-hero h1 {
  margin: 0 0 20px;
  max-width: 760px;
  font-size: clamp(2.55rem, 5vw, 4.6rem);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-lead { max-width: 640px; margin: 0 0 26px; color: #e9f0f3; font-size: 1.17rem; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 630px; border-top: 1px solid rgba(255,255,255,.24); }
.hero-proof div { padding: 18px 18px 0 0; }
.hero-proof strong { display: block; color: var(--signal); font-size: 1.05rem; }
.hero-proof span { color: #d6e2e7; font-size: .875rem; }

.hero-form { background: #fff; color: var(--ink); border-top: 7px solid var(--accent); padding: 28px; box-shadow: var(--shadow); }
.hero-form-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.hero-form h2 { margin: 0 0 2px; font-size: 1.45rem; line-height: 1.15; }
.hero-form p { margin: 0; color: var(--muted); font-size: .88rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 5px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 750; font-size: .875rem; color: #344e5f; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #c9d5db;
  border-radius: 2px;
  min-height: 46px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 76px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(163,189,56,.12); }
.form-note { margin-top: 10px !important; font-size: .875rem !important; }

.proof-strip { background: #fff; border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-block: 22px; }
.proof-item { position: relative; min-height: 164px; display: block; padding: 24px 22px 22px; background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--accent); box-shadow: 0 12px 28px rgba(28,49,95,.08); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.proof-item::after { content: ""; position: absolute; right: 18px; bottom: 18px; width: 42px; height: 3px; background: var(--accent); opacity: .85; }
.proof-item:hover { transform: translateY(-3px); border-color: rgba(163,189,56,.72); box-shadow: 0 18px 38px rgba(28,49,95,.13); }
.proof-item strong { display: block; color: var(--ink); font-size: 1.08rem; line-height: 1.18; }
.proof-item span { display: block; margin-top: 10px; color: var(--muted); font-size: 1rem; line-height: 1.45; }

.section { padding: 84px 0; }
.section-tight { padding: 62px 0; }
.section-grey { background: #f4f7f8; }
.section-dark { background: var(--ink); color: #fff; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-head > div { max-width: 720px; }
.section-kicker { display: block; margin-bottom: 9px; color: var(--accent); font-size: .875rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.section h2 { margin: 0; font-size: clamp(2rem, 3.2vw, 3.15rem); line-height: 1.08; letter-spacing: 0; }
.section-head p { margin: 12px 0 0; color: var(--muted); font-size: 1.04rem; }
.section-dark .section-head p { color: #c8d7dd; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 388px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); overflow: hidden; text-decoration: none; box-shadow: 0 12px 30px rgba(28,49,95,.08); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(163,189,56,.7); box-shadow: 0 20px 46px rgba(28,49,95,.15); }
.service-card-image { height: 190px; background: linear-gradient(135deg, #1b4055, #0b1f2d); position: relative; overflow: hidden; }
.service-card-image::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 56px; background: linear-gradient(90deg, rgba(163,189,56,.95), rgba(163,189,56,.74)); transform: translateY(20px); transition: transform .2s ease, opacity .2s ease; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .25s ease, opacity .25s ease; }
.service-card:hover .service-card-image::after { transform: translateY(10px); }
.service-card:hover img { transform: scale(1.035); opacity: .9; }
.service-card-body { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; margin: -30px 18px 0; padding: 24px; background: #fff; border-top: 5px solid var(--accent); box-shadow: 0 12px 24px rgba(28,49,95,.1); }
.service-card h3 { margin: 0 0 9px; font-size: 1.35rem; line-height: 1.15; }
.service-card p { margin: 0 0 20px; color: var(--muted); font-size: 1rem; line-height: 1.5; }
.text-link { margin-top: auto; color: var(--accent-dark); font-weight: 850; font-size: .88rem; text-transform: uppercase; letter-spacing: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 610px; }
.split-media { min-height: 520px; background: var(--ink); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { display: grid; align-content: center; padding: 70px max(44px, calc((100vw - var(--wrap))/2)); padding-left: 65px; background: var(--ink); color: #fff; }
.split-copy h2 { margin: 0 0 18px; max-width: 580px; font-size: clamp(2.2rem, 3.4vw, 3.35rem); line-height: 1.05; letter-spacing: 0; }
.split-copy p { max-width: 570px; color: #d1dde2; }
.check-list { list-style: none; padding: 0; margin: 23px 0 30px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 690; }
.check-list li::before { content: "✓"; flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; background: var(--accent); color: #fff; font-weight: 900; }

.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.sector-card { min-height: 190px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; text-decoration: none; }
.sector-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 26px; color: var(--accent); background: #EDF2F3; font-weight: 900; font-size: 1.2rem; }
.sector-card h3 { margin: 0 0 5px; font-size: 1.08rem; }
.sector-card span { color: var(--muted); font-size: 1rem; line-height: 1.5; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); }
.process-step { min-height: 240px; padding: 30px; background: var(--ink-2); border-top: 5px solid var(--accent); }
.process-step b { display: none; }
.process-step h3 { margin: 0 0 10px; font-size: 1.12rem; }
.process-step p { margin: 0; color: #c9d8de; font-size: 1rem; line-height: 1.5; }

.evidence { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; }
.case-card { min-height: 450px; position: relative; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--ink); }
.case-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.case-card::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(28,49,95,.95),rgba(28,49,95,.05) 70%); }
.case-content { position: relative; z-index: 2; padding: 36px; }
.case-content h3 { margin: 0 0 8px; font-size: 1.8rem; }
.case-content p { margin: 0; max-width: 610px; color: #dce7eb; }
.resource-stack { display: grid; gap: 16px; }
.resource-card { min-height: 134px; display: grid; grid-template-columns: 66px 1fr 28px; gap: 16px; align-items: center; padding: 22px; background: #fff; border: 1px solid var(--line); text-decoration: none; }
.resource-card .resource-tag { width: 58px; height: 58px; display: grid; place-items: center; background: var(--accent); color: #fff; font-weight: 900; font-size: .875rem; }
.resource-card span { color: var(--muted); font-size: 1rem; line-height: 1.5; }
.resource-card strong { display: block; color: var(--ink); font-size: 1.06rem; line-height: 1.25; }
.resource-card small { display: block; margin-top: 6px; font-size: 1rem; line-height: 1.5; }
.resource-card b { font-size: 1.25rem; }

.cta-band { position: relative; overflow: hidden; background: var(--accent); color: #fff; }
.cta-band::after { content: ""; position: absolute; width: 240px; height: 240px; right: 5%; top: -80px; border: 38px solid rgba(255,255,255,.1); border-radius: 50%; }
.cta-grid { position: relative; z-index: 2; min-height: 220px; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-grid h2 { margin: 0 0 9px; font-size: clamp(2rem, 3.2vw, 3.1rem); line-height: 1.05; letter-spacing: 0; }
.cta-grid p { margin: 0; color: #fff1ec; }
.cta-actions { display: flex; gap: 12px; white-space: nowrap; }

.site-footer { background: #1C315F; color: #d2dfe4; }
.footer-main { padding: 64px 0 46px; display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 45px; }
.footer-logo { width: 260px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-main h3 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: 0; margin: 0 0 17px; }
.footer-main p { color: #afc1ca; font-size: 1rem; line-height: 1.5; }
.footer-main ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-main a { color: #c7d5dc; text-decoration: none; font-size: .875rem; }
.footer-main a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: .875rem; color: #93aab5; }

/* Service-page pattern */
.service-hero { position: relative; background: var(--ink); color: white; overflow: hidden; }
.service-hero::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(28,49,95,.94),rgba(28,49,95,.7) 54%,rgba(28,49,95,.3)),var(--nx-hero) center/cover; }
.service-hero .hero-grid { min-height: 610px; padding-block: 44px; }
.service-hero .hero-copy p { max-width: 650px; color: #dce7eb; font-size: 1.1rem; }
.service-hero h1 { font-size: clamp(2.5rem,4.6vw,4.25rem); }
.subnav { background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 8px 20px rgba(16,40,58,.06); position: sticky; top: 0; z-index: 15; }
.subnav .wrap { min-height: 62px; display: flex; align-items: center; gap: 26px; overflow-x: auto; }
.subnav a { flex: 0 0 auto; text-decoration: none; font-size: .875rem; font-weight: 780; }
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 58px; align-items: start; }
.article h2 { margin: 48px 0 15px; font-size: 2rem; line-height: 1.15; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 30px 0 10px; }
.article p, .article li { color: #415968; }
.article ul { padding-left: 20px; }
.side-panel { border-top: 6px solid var(--accent); background: var(--mist); padding: 25px; position: sticky; top: 86px; }
.side-panel h3 { margin: 0 0 8px; font-size: 1.25rem; }
.side-panel ul { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 10px; }
.side-panel li { border-bottom: 1px solid var(--line); padding-bottom: 10px; font-size: .875rem; font-weight: 700; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 4px; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin-bottom: 0; }

@media (max-width: 980px) {
  .brand { width: 260px; }
  .header-contact > div { display: none; }
  .primary-nav a { padding-inline: 12px; font-size: .875rem; }
  .hero-grid, .service-hero .hero-grid { grid-template-columns: 1fr 360px; gap: 30px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid, .sector-grid, .process { grid-template-columns: repeat(2,1fr); }
  .split-copy { padding-left: 42px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }
  .utility .wrap { justify-content: center; min-height: 32px; }
  .utility-list { display: none; }
  .header-main { min-height: 72px; }
  .brand { width: 225px; }
  .header-contact { display: none; }
  .menu-toggle { display: block; }
  .primary-nav { display: none; }
  .primary-nav.open { display: block; }
  .primary-nav ul { display: block; padding: 8px 14px 14px; }
  .primary-nav a { min-height: 45px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero, .hero-grid, .service-hero .hero-grid { min-height: auto; }
  .hero::before { background: linear-gradient(rgba(28,49,95,.65),rgba(28,49,95,.95)),var(--nx-hero) 66% center/cover; }
  .service-hero::before { background: linear-gradient(rgba(28,49,95,.7),rgba(28,49,95,.97)),var(--nx-hero) center/cover; }
  .hero-grid, .service-hero .hero-grid { grid-template-columns: 1fr; padding-block: 38px; }
  .hero h1, .service-hero h1 { font-size: 2.75rem; }
  .hero-lead, .service-hero .hero-copy p { font-size: 1rem; }
  .hero-proof { grid-template-columns: 1fr; border-top: 0; gap: 0; }
  .hero-proof div { padding: 8px 0; border-top: 1px solid rgba(255,255,255,.18); }
  .hero-form { padding: 22px 18px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .proof-grid, .service-grid, .sector-grid, .process, .evidence, .content-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 58px 0; }
  .section-head { display: block; }
  .section-head .button { margin-top: 20px; }
  .service-card { min-height: 330px; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 310px; }
  .split-copy { padding: 48px 22px; }
  .process-step { min-height: 190px; }
  .cta-grid { min-height: 310px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .cta-actions { width: 100%; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-main > :first-child, .footer-main > :last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .subnav { position: static; }
  .side-panel { position: static; }
}

/* WordPress integration */
body { --nx-hero: none; }
.screen-reader-text { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.primary-nav .menu { list-style:none;margin:0;padding:0;display:flex;align-items:stretch; }
.primary-nav .menu-item { position:relative; }
.primary-nav .sub-menu {
  position:absolute;
  z-index:30;
  top:54px;
  left:0;
  display:none;
  width:310px;
  margin:0;
  padding:12px 20px;
  border-top:5px solid var(--accent);
  background:#fff;
  box-shadow:var(--shadow);
  list-style:none;
}
.primary-nav .sub-menu a { min-height:42px;padding:7px 0;border-right:0;border-bottom:1px solid var(--line);color:var(--ink); }
.primary-nav .sub-menu a:hover { color:var(--accent);background:transparent; }
.primary-nav .menu-item:hover > .sub-menu,.primary-nav .menu-item:focus-within > .sub-menu { display:block; }
.nx-honeypot { position:absolute!important;left:-9999px!important; }
.form-grid { display:grid;grid-template-columns:1fr 1fr;gap:12px; }
.consent { display:grid!important;grid-template-columns:16px 1fr;gap:8px;align-items:start;color:var(--muted);font-size: .875rem!important;line-height:1.35; }
.consent input { min-height:0!important;margin-top:2px; }
.consent span { margin:0; }
.form-notice { margin:0 0 12px;padding:10px 12px;font-size:.8rem;font-weight:750; }
.form-notice-success { color:#173b30;background:#eaf4df; }
.form-notice-error { color:#7a2410;background:#fff0ec; }
.article { min-width:0; }
.article > :first-child { margin-top:0; }
.article .nx-callout { margin:34px 0;padding:25px;border-left:5px solid var(--accent);background:var(--mist); }
.article .nx-steps { display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:28px 0; }
.article .nx-step { padding:22px;border:1px solid var(--line); }
.article .nx-step b { display:block;margin-bottom:20px;color:var(--accent);font-size: .875rem; }
.related-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.related-card { padding:25px;border:1px solid var(--line);background:#fff; }
.related-card h3 { margin:0 0 8px; }
.related-card p { color:var(--muted);font-size:1rem;line-height:1.5; }
.post-meta { color:var(--muted);font-size: .875rem;font-weight:700; }
.legal-note { font-size: .875rem;color:var(--muted); }
.mobile-cta { display:none; }
section#enquiry .content-grid { grid-template-columns:minmax(0,.82fr) minmax(520px,1.18fr);align-items:center; }
@media (max-width:760px) {
  .primary-nav .menu { display:block;padding:8px 14px 14px; }
  .primary-nav .sub-menu { position:static;display:block;width:auto;padding:0 0 0 16px;border:0;background:transparent;box-shadow:none; }
  .primary-nav .sub-menu a { color:#d8e4e8;border-color:rgba(255,255,255,.1); }
  .form-grid,.article .nx-steps,.related-grid { grid-template-columns:1fr; }
  .mobile-cta { position:fixed;right:0;bottom:0;left:0;z-index:80;display:grid;grid-template-columns:.8fr 1.2fr;min-height:56px;box-shadow:0 -5px 20px rgba(28,49,95,.2); }
  .mobile-cta a { display:grid;place-items:center;color:#fff;background:var(--ink);font-size: .875rem;font-weight:850;text-decoration:none; }
  .mobile-cta a:last-child { color:#fff;background:var(--accent); }
  body { padding-bottom:56px; }
  section#enquiry .content-grid { grid-template-columns:1fr; }
}


/* Environmental Services adjustments */
:root { --wrap: 1360px; }
.wrap { width: min(var(--wrap), calc(100% - 32px)); }
.brand { width: 330px; max-width: 52vw; }
.utility .wrap.utility-contact-bar { min-height: 38px; justify-content: flex-end; gap: 26px; }
.utility-contact { display: inline-flex; align-items: center; gap: 8px; color: #edf8f2; text-decoration: none; white-space: nowrap; }
.utility-contact svg { width: 15px; height: 15px; color: var(--signal); flex: 0 0 auto; }
.utility-contact strong { color: #fff; font-weight: 850; }
.header-contact-list { display: flex; align-items: center; gap: 18px; }
.header-detail { display: flex; align-items: center; gap: 10px; min-width: 0; text-decoration: none; }
.contact-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--line); background: var(--mist); color: var(--accent-dark); flex: 0 0 38px; }
.contact-icon svg { width: 18px; height: 18px; }
.header-detail strong { font-size: 1rem; white-space: nowrap; }
.header-detail:hover strong { color: var(--accent-dark); }
.hero-proof, .section-kicker { display: none !important; }
.footer-logo-wrap { display: inline-flex; align-items: center; justify-content: center; background: #fff; padding: 10px 12px; margin-bottom: 20px; }
.footer-logo { width: 240px; margin: 0; filter: none; }
.hero-form form { display: grid; gap: 12px; }
.hero-form textarea::placeholder,
.hero-form input::placeholder { color: #83949b; }
.article details.faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.article details.faq-item summary { cursor: pointer; font-weight: 850; color: var(--ink); }
.article details.faq-item p { margin: 10px 0 0; }
.nx-service-index { display: grid; gap: 18px; margin-top: 20px; }
.nx-service-index h2 { margin: 30px 0 6px; }
.nx-service-index ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; padding: 0; }
.nx-service-index li { border: 1px solid var(--line); padding: 15px; background: #fff; }
.nx-service-index a { display: block; font-weight: 850; color: var(--accent-dark); text-decoration: none; }
.nx-service-index span { display: block; margin-top: 5px; color: var(--muted); font-size: 1rem; line-height: 1.5; }
@media (max-width: 1180px) {
  .brand { width: 300px; }
  .header-contact { gap: 16px; }
  .header-contact-list { gap: 12px; }
  .header-detail strong { font-size: .92rem; }
}
@media (max-width: 760px) {
  .wrap { width: calc(100% - 20px); }
  .utility .wrap.utility-contact-bar { width: 100%; min-height: auto; justify-content: center; align-items: stretch; gap: 8px; padding-block: 7px; flex-wrap: wrap; }
  .utility-contact { flex: 0 1 auto; justify-content: center; max-width: 100%; min-width: 0; min-height: 30px; font-size: .875rem; }
  .utility-contact > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .utility-label { display: none; }
  .brand { width: 250px; max-width: calc(100vw - 92px); }
  .mobile-cta { grid-template-columns: repeat(3, 1fr); }
  .nx-service-index ul { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .utility-contact { flex-basis: 100%; }
}

/* Approved Environmental Services identity — 8 September 2026.
   Preserve existing component dimensions and responsive layout. */
:root { --mist: #EDF2F3; --muted: #4E5E6B; --line: #d7e0e4; --shadow: 0 18px 48px rgba(28,49,95,.14); }
.brand img { aspect-ratio: 329 / 92; object-fit: contain; }
.footer-logo { aspect-ratio: 329 / 92; object-fit: contain; }
.footer-logo-wrap { background: transparent; }
.button, .resource-tag, .check-list li::before { color: #fff; }
.button:hover { background: #6F842D; color: #fff; }
.button-dark { background: #1C315F; color: #fff; }
.button-dark:hover { background: #2F6F91; color: #fff; }
.button-light { background: #fff; color: #1C315F; }
.button-light:hover { background: #EDF2F3; color: #1C315F; }
.primary-nav a:hover, .primary-nav .active { color: #fff; }
.primary-nav .sub-menu a:hover { color: #1C315F; }
.cta-band, .cta-grid p { color: #1C315F; }
.cta-band::after { border: 0; border-radius: 0; background: url('../images/es-icon.svg') center / contain no-repeat; opacity: .09; pointer-events: none; }
.sector-icon { color: #1C315F; }
.article p, .article li { color: #4E5E6B; }
.lgxe-active .lgxe-icon { color: #1C315F; }
.lgxe-active .lgxe-light, .lgxe-active .lgxe-highlight { background: #EDF2F3; }
.lgxe-active .lgxe-article p, .lgxe-active .lgxe-middle-copy > p { color: #4E5E6B; }
.footer-main p, .footer-main a { color: #e1e6ef; }
.footer-bottom { color: #c4ccda; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid #2F6F91; outline-offset: 4px; }
@media (max-width: 760px) { .mobile-cta a:last-child { color: #fff; } }

.lgx-footer-trust { margin-top: 22px; display: grid; gap: 16px; }
.lgx-footer-socials { display: flex; align-items: center; gap: 12px; }
.lgx-footer-socials a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; color: #fff; background: rgba(255,255,255,.06); text-decoration: none; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.lgx-footer-socials a:hover { background: #A3BD38; border-color: #A3BD38; color: #fff; }
.lgx-footer-socials svg { width: 17px; height: 17px; }
.lgx-footer-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lgx-footer-badges a, .lgx-footer-badges img { display: block; }
.lgx-footer-badges img { width: auto; max-width: 132px; height: 34px; object-fit: contain; }
.lgx-footer-badges a:first-child img { max-width: 70px; }

/* Header, navigation and brand-system polish — 9 September 2026 */
:root {
  --wrap: 1560px;
  --accent: #A3BD38;
  --accent-dark: #6F842D;
  --signal: #A3BD38;
  --success: #A3BD38;
}

.wrap { width: min(var(--wrap), calc(100% - 40px)); }
.site-header { background: #fff; border-bottom: 0; box-shadow: 0 10px 28px rgba(28,49,95,.08); }
.utility { background: #1C315F; color: #eaf0f4; }
.utility .wrap.utility-contact-bar {
  min-height: 44px;
  justify-content: space-between;
  gap: 28px;
}
.utility-note {
  color: #f5f8fa;
  font-size: .875rem;
  font-weight: 760;
  white-space: nowrap;
}
.utility-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}
.utility-contact,
.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  color: #eef4f7;
  text-decoration: none;
  font-size: .875rem;
  font-weight: 760;
  white-space: nowrap;
}
.utility-contact svg {
  width: 15px;
  height: 15px;
  color: #A3BD38;
}
.utility-contact strong,
.utility-link { color: #fff; }
.utility-link {
  padding: 0 10px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.utility-link-accent {
  color: #fff;
  background: #A3BD38;
  border: 0;
  border-radius: 3px;
  padding: 0 12px;
}
.utility-link-accent:hover { background: #6F842D; color: #fff; }
.utility-supplier-account {
  align-items: center;
  gap: 9px;
  padding: 4px 12px;
}
.utility-supplier-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #13a786;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}
.utility-supplier-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}
.utility-supplier-copy span {
  color: #dbe7ef;
  font-size: .78rem;
  font-weight: 700;
}
.utility-supplier-copy strong {
  color: #fff;
  font-size: .875rem;
  font-weight: 850;
}

.header-main {
  min-height: 126px;
  padding-block: 24px;
  gap: 42px;
}
.brand { width: 360px; max-width: 42vw; }
.header-contact {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.header-promise {
  max-width: 420px;
  margin: 0;
  color: #4E5E6B;
  font-size: .92rem;
  font-weight: 720;
  line-height: 1.35;
  text-align: right;
}

.primary-nav {
  position: relative;
  z-index: 40;
  background: #1C315F;
  color: #fff;
  border-top: 1px solid rgba(28,49,95,.08);
}
.primary-nav > .wrap {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: none;
  padding-inline: clamp(16px, 2.8vw, 42px);
}
.primary-nav .menu,
.primary-nav .nx-main-menu {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}
.primary-nav .menu-item { position: relative; list-style: none; }
.primary-nav a,
.nav-category-trigger {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-right: 0;
  color: #fff;
  font-size: .875rem;
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
}
.nav-category-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.primary-nav a:hover,
.primary-nav .menu-item:focus-within > a,
.nav-category-trigger:hover,
.nav-category:focus-within > .nav-category-trigger {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.nav-chevron { color: #A3BD38; font-size: .875rem; line-height: 1; }
.services-mega {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: min(1120px, calc(100vw - 40px));
  padding: 26px;
  background: #fff;
  color: #1C315F;
  border-top: 5px solid #A3BD38;
  box-shadow: 0 24px 54px rgba(28,49,95,.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.category-menu {
  width: min(360px, calc(100vw - 32px));
  max-height: calc(100vh - 160px);
  overflow: auto;
  padding: 16px;
}
.nav-category:hover .services-mega,
.nav-category:focus-within .services-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.services-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.services-mega-col {
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid #d7e0e4;
}
.services-mega-col:last-child { border-right: 0; padding-right: 0; }
.services-mega h3 {
  margin: 0 0 14px;
  color: #6F842D;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.services-mega ul {
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-mega li { list-style: none; }
.services-mega li a {
  min-height: 34px;
  width: 100%;
  padding: 7px 8px;
  color: #1C315F;
  border-radius: 3px;
  font-size: .875rem;
  font-weight: 770;
  line-height: 1.18;
}
.services-mega li a:hover {
  background: #EDF2F3;
  color: #1C315F;
}
.services-mega-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #d7e0e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.services-mega-footer strong,
.services-mega-footer span { display: block; }
.services-mega-footer span {
  margin-top: 3px;
  color: #4E5E6B;
  font-size: .875rem;
}
.services-mega-footer a {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 16px;
  background: #A3BD38;
  color: #fff;
  border-radius: 3px;
}

.button,
.resource-tag,
.check-list li::before {
  background: #A3BD38;
  color: #fff;
}
.button:hover,
.services-mega-footer a:hover {
  background: #6F842D;
  color: #fff;
}
.button-dark { background: #1C315F; color: #fff; }
.button-dark:hover { background: #2F6F91; color: #fff; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #A3BD38;
  box-shadow: 0 0 0 3px rgba(163,189,56,.18);
}

.cta-band {
  border-top: 8px solid #A3BD38;
  background: #EDF2F3;
  color: #1C315F;
}
.cta-grid p { color: #4E5E6B; }
.cta-band::after {
  width: 320px;
  height: 320px;
  right: 4%;
  top: -92px;
  background: url('../images/es-icon.svg') center / contain no-repeat;
  opacity: .08;
}
.site-footer { background: #1C315F; }
.footer-logo-wrap { background: transparent; padding: 0; }
.footer-logo { filter: none; }

@media (min-width: 1181px) {
  .service-grid { gap: 24px; }
  .sector-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1180px) {
  .wrap { width: min(100% - 32px, var(--wrap)); }
  .brand { width: 320px; max-width: 48vw; }
  .header-main { min-height: 112px; gap: 24px; }
  .header-promise { display: none; }
  .primary-nav a,
  .nav-category-trigger { padding-inline: 9px; font-size: .875rem; }
  .services-mega { left: 0; width: min(360px, calc(100vw - 32px)); }
}

@media (max-width: 760px) {
  .wrap { width: calc(100% - 20px); }
  .utility .wrap.utility-contact-bar {
    width: 100%;
    min-height: auto;
    padding-block: 8px;
    justify-content: center;
    gap: 8px;
  }
  .utility-note { display: none; }
  .utility-links {
    width: 100%;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .utility-contact,
  .utility-link {
    min-height: 28px;
    font-size: .875rem;
  }
  .utility-link { border-left: 0; padding-inline: 8px; }
  .utility-supplier-account {
    flex: 1 1 100%;
    justify-content: center;
    order: 5;
  }
  .utility-supplier-avatar {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 12px;
  }
  .header-main { min-height: 116px; padding-block: 18px; }
  .brand { width: 272px; max-width: calc(100vw - 108px); }
  .header-contact { display: none; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    background: #1C315F;
    color: #fff;
    border-radius: 3px;
  }
  .primary-nav { display: none; }
  .primary-nav.open { display: block; }
  body:has(.primary-nav.open) .mobile-cta { display: none; }
  .primary-nav > .wrap {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 8px 10px 16px;
  }
  .primary-nav .menu,
  .primary-nav .nx-main-menu {
    display: block;
    padding: 0;
  }
  .primary-nav a,
  .nav-category-trigger {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .services-mega {
    position: static;
    width: 100%;
    padding: 18px 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }
  .services-mega-grid { grid-template-columns: 1fr; gap: 18px; }
  .services-mega-col {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid #d7e0e4;
    padding-bottom: 16px;
  }
  .services-mega-col:last-child { border-bottom: 0; padding-bottom: 0; }
  .services-mega-footer { display: block; }
  .services-mega-footer a {
    width: 100%;
    margin-top: 14px;
    justify-content: center;
  }
  .cta-band::after { right: -80px; top: -70px; opacity: .06; }
}

/* LeadGenX font floor: start */
body { font-size: 16px; }
body :is(a,span,small,b,strong,em,label,button,summary,p,li,td,th,input,select,textarea) { font-size: max(14px, 1em); }
:is(.service-card p,.sector-card span,.process-step p,.case-content p,.resource-card span,.resource-card small,.related-card p,.nx-service-index span,.hero-form p,.proof-item span,.hero-proof span,.section-head p,.split-copy p,.cta-grid p,.article p,.article li) { font-size: 1rem; line-height: 1.5; }
:is(.utility,.header-contact small,.breadcrumb,.field label,.form-note,.section-kicker,.text-link,.footer-main a,.footer-bottom,.subnav a,.side-panel li,.form-notice,.article .nx-step b,.post-meta,.legal-note,.mobile-cta a,.services-mega li a,.services-mega-footer span,.nav-chevron,.h-top-note,.mobile-header-quote,.ck,.mainnav>li>a,.mainnav2>li>a,.sub li a,.f-menu a,.hc .tx small,.hdr-lang,.crumbs,.map-pin b,.map-pin small,.lgx-office-pin small,.btn-sm .t,.vmore) { font-size: .875rem !important; }
.resource-card .resource-tag { font-size: .875rem !important; }
.resource-card strong { font-size: 1.06rem; line-height: 1.25; }
.resource-card b { font-size: 1.25rem; }
/* LeadGenX font floor: end */

/* Sidebar benefits are descriptive copy, rather than small interface labels. */
:root .side-panel > ul > li { font-size: 16px !important; }

/* LeadGenX logo layout correction 2026-09-11: start */
.brand { width: 230px !important; max-width: 34vw !important; }
.brand img { aspect-ratio: auto !important; width: 100% !important; height: auto !important; object-fit: contain !important; }
body:not(.home) .brand { width: 360px !important; max-width: 42vw !important; }
body:not(.home) .site-header { background: #fff !important; }
.header-contact,
.header-contact a,
.header-contact small,
.header-contact strong { color: #202326 !important; }
.footer-logo { width: auto !important; height: 78px !important; max-width: 290px !important; aspect-ratio: auto !important; object-fit: contain !important; }
@media (max-width: 900px) {
  .brand { width: 180px !important; max-width: calc(100vw - 128px) !important; }
  body:not(.home) .brand { width: 270px !important; max-width: calc(100vw - 128px) !important; }
  .footer-logo { height: 66px !important; max-width: 240px !important; }
}
@media (max-width: 760px) {
  .brand { width: 150px !important; }
  body:not(.home) .brand { width: 220px !important; }
  .footer-logo { height: 58px !important; max-width: 210px !important; }
}
/* LeadGenX logo layout correction 2026-09-11: end */

/* LeadGenX footer badge size correction 2026-09-11: start */
@layer legacy {
  .lgx-footer-badges img,
  .home-page .f-logo .lgx-footer-badges img,
  .inner-page .f-logo .lgx-footer-badges img {
    display: block !important;
    width: 130px !important;
    max-width: 130px !important;
    height: auto !important;
    max-height: none !important;
    margin-bottom: 0 !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
  }
  .lgx-footer-badges a:first-child img,
  .home-page .f-logo .lgx-footer-badges a:first-child img,
  .inner-page .f-logo .lgx-footer-badges a:first-child img {
    width: 75px !important;
    max-width: 75px !important;
    height: auto !important;
  }
}
/* LeadGenX footer badge size correction 2026-09-11: end */

/* LeadGenX visual logo and mobile dock correction 2026-09-11: start */
.brand { width: 220px !important; max-width: 32vw !important; }
body:not(.home) .brand { width: 285px !important; max-width: 36vw !important; }
.footer-logo { width: auto !important; height: 60px !important; max-width: 220px !important; object-fit: contain !important; }
.lgx-mobile-dock { display: none; }
@media (max-width: 900px) {
  .brand { width: 178px !important; }
  body:not(.home) .brand { width: 235px !important; max-width: calc(100vw - 136px) !important; }
  .footer-logo { height: 52px !important; max-width: 190px !important; }
}
@media (max-width: 760px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)) !important; }
  .brand { width: 176px !important; max-width: calc(100vw - 118px) !important; }
  body:not(.home) .brand { width: 214px !important; max-width: calc(100vw - 118px) !important; }
  .footer-logo { height: 48px !important; max-width: 176px !important; }
  .mobile-cta { display: none !important; }
  .lgx-mobile-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483001;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: #1C315F;
    border-top: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 -10px 24px rgba(0,0,0,.24);
  }
  .lgx-mobile-dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 64px;
    color: #fff;
    font-family: var(--font-head);
    font-size: 14px !important;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.12);
  }
  .lgx-mobile-dock a:first-child { background: #A3BD38; color: #1C315F; }
  .lgx-mobile-dock a:last-child { border-right: 0; }
  .lgx-mobile-dock svg { width: 18px; height: 18px; display: block; }
}
/* LeadGenX visual logo and mobile dock correction 2026-09-11: end */

/* LeadGenX final logo refinement 2026-09-11: start */
.footer-logo { height: 54px !important; max-width: 205px !important; object-fit: contain !important; }
@media (max-width: 900px) { .footer-logo { height: 48px !important; max-width: 178px !important; } }
@media (max-width: 760px) { .footer-logo { height: 42px !important; max-width: 160px !important; } }
/* LeadGenX final logo refinement 2026-09-11: end */

/* LeadGenX public header logo size correction 2026-09-12: start */
.brand { width: 285px !important; max-width: 38vw !important; }
.brand img { aspect-ratio: auto !important; width: 100% !important; height: auto !important; object-fit: contain !important; }
@media (max-width: 900px) {
  .brand { width: 220px !important; max-width: calc(100vw - 136px) !important; }
}
@media (max-width: 760px) {
  .brand { width: 214px !important; max-width: calc(100vw - 118px) !important; }
}
/* LeadGenX public header logo size correction 2026-09-12: end */


/* Contact quote intake */
.lgx-contact-section{background:#f7f8fb}
.lgx-contact-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,520px);gap:34px;align-items:start}
.lgx-contact-info .article{max-width:780px}
.lgx-contact-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:24px}
.lgx-contact-card{display:flex;gap:12px;align-items:flex-start;padding:17px;border:1px solid rgba(15,23,42,.12);border-radius:18px;background:#fff;color:#111827;text-decoration:none;box-shadow:0 12px 28px rgba(15,23,42,.07)}
.lgx-contact-card:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(15,23,42,.1)}
.lgx-contact-card small{display:block;margin:0 0 4px;color:#4b5563;font-size:14px!important;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.lgx-contact-card strong{display:block;color:#111827;font-size:17px!important;line-height:1.25}
.lgx-contact-card em{display:block;margin-top:5px;color:#4b5563;font-size:15px!important;font-style:normal;line-height:1.35}
.lgx-contact-icon{flex:0 0 38px;width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#A6CE39;color:#102036}
.lgx-contact-icon svg{width:21px;height:21px}
.lgx-contact-form{position:sticky;top:24px}
.lgx-contact-form .hero-form{margin:0}
@media (max-width:980px){.lgx-contact-layout{grid-template-columns:1fr}.lgx-contact-form{position:static}.lgx-contact-cards{grid-template-columns:1fr}}
@media (max-width:560px){.lgx-contact-section{padding-top:34px}.lgx-contact-layout{gap:24px}.lgx-contact-card{padding:15px}.lgx-contact-icon{width:34px;height:34px;flex-basis:34px}}

/* Homepage services drawer and concise contact cards. */
html.lgx-services-open { overflow: hidden; }
dialog.lgx-services-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  margin: 0;
  padding: 0;
  width: min(440px, calc(100vw - 24px));
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  border: 0;
  background: #fff;
  color: #182332;
  box-shadow: -12px 0 40px rgba(0,0,0,.18);
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 240ms ease;
}
dialog.lgx-services-drawer[open] { display: flex; flex-direction: column; }
dialog.lgx-services-drawer.is-visible { transform: translateX(0); }
dialog.lgx-services-drawer::backdrop { background: rgba(10,18,30,.58); }
.lgx-services-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-top: 6px solid var(--orange, var(--accent, #1c315f));
  border-bottom: 1px solid #e0e5eb;
  flex: 0 0 auto;
}
.lgx-services-drawer-head p { margin: 0 0 5px; font-size: 14px; line-height: 1.4; color: #4b5563; }
.lgx-services-drawer-head h2 { margin: 0; font-size: 28px; line-height: 1.2; color: #182332; letter-spacing: 0; }
.lgx-services-drawer-close {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #d5dce4;
  border-radius: 50%;
  background: #fff;
  color: #182332;
  cursor: pointer;
}
.lgx-services-drawer-close svg { display: block; width: 22px; height: 22px; }
.lgx-services-drawer-body { flex: 1; min-height: 0; padding: 8px 24px 24px; overflow-y: auto; overscroll-behavior: contain; }
.lgx-services-drawer-group h3 { margin: 24px 0 4px; color: #4b5563; font-size: 16px; line-height: 1.5; }
.lgx-services-drawer ul { list-style: none; margin: 0; padding: 0; }
.lgx-services-drawer li { margin: 0; padding: 0; }
.lgx-services-drawer .lgx-services-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 14px 4px;
  border-bottom: 1px solid #e0e5eb;
  color: #182332;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.lgx-services-list a svg { flex: 0 0 18px; width: 18px; height: 18px; }
.lgx-services-drawer .lgx-services-list a:hover { color: #182332; background: #f3f5f8; }
.lgx-services-drawer-foot { flex: 0 0 auto; padding: 20px 24px max(20px, env(safe-area-inset-bottom)); border-top: 1px solid #e0e5eb; background: #f7f8fb; }
.lgx-services-drawer .lgx-services-quote { display: block; padding: 15px; background: var(--black, var(--ink, #1c315f)); color: #fff; font-size: 16px; font-weight: 700; line-height: 1.5; text-align: center; text-decoration: none; }
.lgx-services-utility { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 16px; }
.lgx-services-drawer .lgx-services-utility a { color: #334155; font-size: 14px; line-height: 1.5; text-decoration: underline; text-underline-offset: 3px; }
.lgx-services-drawer a:focus-visible, .lgx-services-drawer button:focus-visible { outline: 3px solid #1c315f; outline-offset: 2px; }
.lgx-services-drawer-close:hover { background: #edf0f4; }
.lgx-contact-info, .lgx-contact-form { min-width: 0; }
.lgx-contact-card > span:last-child { min-width: 0; overflow-wrap: anywhere; }
@media (prefers-reduced-motion: reduce) { dialog.lgx-services-drawer { transition: none; } }
@layer legacy {
  @media (max-width: 360px) {
    .home-page .h-logo-sq { width: 92px !important; min-width: 92px !important; flex-basis: 92px !important; }
  }
}

.nx-services-toggle { display: grid; place-items: center; flex: 0 0 62px; width: 62px; height: 62px; margin-left: 12px; margin-right: calc(-1 * clamp(16px, 2.8vw, 42px)); border: 0; background: #fff; color: #1c315f; cursor: pointer; }
.nx-services-toggle svg { width: 26px; height: 26px; }
.nx-services-toggle:hover { background: #eef1f5; }
.nx-services-toggle:focus-visible { outline: 3px solid #1c315f; outline-offset: -5px; }
@media (max-width: 760px) { .nx-services-toggle { display: none; } }
@media (min-width: 761px) and (max-width: 900px) {
  .home .primary-nav, .home .header-contact, .home .utility-note { display: none; }
  .home .menu-toggle { display: grid; place-items: center; width: 56px; height: 56px; background: #1c315f; color: #fff; border-radius: 3px; flex: 0 0 56px; }
  .home .utility-links { width: 100%; justify-content: center; flex-wrap: wrap; gap: 8px 18px; padding: 8px 0; }
}
