

:root {
  --green: #21b354;
  --green-dark: #1a9445;
  --navy: #013c4f;
  --dark: #222629;
  --darker: #1b1f21;
  --text: #777777;
  --head: #222222;
  --band: #f4f4f4;
  --border: #e8e8e8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--head);
  line-height: 1.3;
}

.brand { text-transform: none; }
p { margin-bottom: 16px; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }

img { -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; user-drag: none;
      -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
      -webkit-touch-callout: none; }
.img-guard { position: relative; }
.img-guard::after { content: ''; position: absolute; inset: 0; z-index: 1; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }

.topbar { background: var(--dark); color: #b8bcbe; font-size: 12px; padding: 9px 0; }
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #e6e8e9; }
.topbar a:hover { color: var(--green); }
.topbar .tb-item { margin-right: 22px; }
.topbar .tb-item i { color: var(--green); margin-right: 7px; }
.tb-social { display: flex; align-items: center; gap: 16px; }
.tb-social a { color: #e6e8e9; font-size: 14px; line-height: 1; }
.tb-social a:hover { color: var(--green); }

.site-header {
  background: #fff; border-bottom: 1px solid var(--border); padding: 22px 0;
  position: sticky; top: 0; z-index: 100;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.shrunk {
  padding: 9px 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.10);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.site-header.shrunk .logo { font-size: 19px; }
.site-header.shrunk .logo small { display: none; }
.site-header.shrunk .btn { padding: 9px 20px; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.logo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 24px; color: var(--navy); text-transform: none; letter-spacing: -0.01em; transition: font-size 0.3s ease; }
.logo span { color: var(--green); }
.logo small { display: block; font-family: 'Open Sans', sans-serif; font-weight: 400; font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; color: #9aa0a3; margin-top: 1px; }
.logo img { display: block; height: 78px; width: auto; transition: height 0.3s ease; }
.site-header.shrunk .logo img { height: 52px; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 42px; }
.main-nav a { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--head); }
.main-nav a:hover, .main-nav a.current { color: var(--green); }

.main-nav > ul > li { position: relative; padding: 14px 0; margin: -14px 0; }
.main-nav .has-sub > a::after {
  content: '\f107'; font-family: FontAwesome; font-weight: 400;
  margin-left: 7px; font-size: 11px; opacity: 0.7;
}
.main-nav .sub-menu {
  position: absolute; top: 100%; left: -20px; min-width: 256px;
  background: #fff; list-style: none; padding: 10px 0;
  border-top: 3px solid var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  display: block; opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 220;
}
.main-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu a {
  display: block; padding: 9px 22px; color: #555;
  font-size: 11px; letter-spacing: 0.03em; white-space: nowrap;
  transition: all 0.18s;
}
.main-nav .sub-menu a:hover { color: var(--green); background: var(--band); padding-left: 27px; }

.float-hdr .main-nav .sub-menu { background: rgba(27, 31, 33, 0.75); }
.float-hdr .main-nav .sub-menu a { color: #fff; }
.float-hdr .main-nav .sub-menu a:hover { color: #fff; background: rgba(33, 179, 84, 0.6); }

.nav-toggle {
  background: none; border: none; cursor: pointer; padding: 6px 2px;
  display: flex; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--head); transition: background 0.25s; }
.nav-toggle:hover span { background: var(--green); }
.float-hdr .site-header:not(.shrunk) .nav-toggle span { background: #fff; }
.float-hdr .site-header:not(.shrunk) .nav-toggle:hover span { background: var(--green); }

.offcanvas {
  position: fixed; top: 0; right: 0; height: 100%; width: 350px; max-width: 88vw;
  background: var(--darker); color: #aeb3b6; z-index: 320;
  padding: 50px 36px 40px; overflow-y: auto; font-size: 13px;
  transform: translateX(100%); transition: transform 0.35s ease; visibility: hidden;
}
body.oc-open .offcanvas { transform: translateX(0); visibility: visible; }
.oc-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s; z-index: 310;
}
body.oc-open .oc-overlay { opacity: 1; visibility: visible; }
.oc-close {
  position: absolute; top: 16px; right: 22px; background: none; border: none;
  color: #fff; font-size: 28px; line-height: 1; cursor: pointer; transition: color 0.2s;
}
.oc-close:hover { color: var(--green); }
.oc-logo { height: 46px; width: auto; margin-bottom: 20px; }
.oc-nav { list-style: none; margin: 26px 0 30px; }
.oc-nav a {
  display: block; padding: 11px 0; color: #d7dadc;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.2s;
}
.oc-nav a:hover { color: var(--green); padding-left: 8px; }
.oc-title {
  color: #fff; font-size: 12.5px; margin: 0 0 12px; padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12); position: relative;
}
.oc-title::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 36px; height: 2px; background: var(--green); }
.oc-broch { list-style: none; margin-bottom: 30px; }
.oc-broch a {
  display: flex; align-items: center; gap: 13px;
  background: rgba(255, 255, 255, 0.06); padding: 12px 15px; margin-bottom: 8px;
  color: #d7dadc; transition: all 0.2s;
}
.oc-broch a:hover { background: var(--green); color: #fff; }
.oc-broch i { font-size: 21px; color: var(--green); flex-shrink: 0; transition: color 0.2s; }
.oc-broch a:hover i { color: #fff; }
.oc-broch strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.03em; }
.oc-broch small { font-size: 11px; opacity: 0.7; }
.oc-contact { list-style: none; margin-bottom: 28px; }
.oc-contact li { display: flex; gap: 11px; padding: 6px 0; }
.oc-contact i { color: var(--green); margin-top: 4px; }
.oc-contact a { color: #d7dadc; }
.oc-contact a:hover { color: var(--green); }
.btn {
  display: inline-block; background: var(--green); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 13px 26px; border: none; cursor: pointer; transition: background 0.25s;
}
.btn:hover { background: var(--green-dark); color: #fff; }
.btn i { margin-left: 9px; }
.btn-outline-white { background: transparent; border: 2px solid #fff; }
.btn-outline-white:hover { background: var(--green); border-color: var(--green); }

.page-title-band { background: var(--band); padding-top: 24px; padding-bottom: 16px; }
.page-title-band h1 { font-size: 26px; }
.breadcrumbs { margin-top: 0; padding: 2px 0 8px; font-size: 13px; color: #999; }
.breadcrumbs a { color: #666; }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs .sep { margin: 0 8px; color: #bbb; }
.breadcrumbs .current { color: var(--green); }

.services-grid-section { padding: 30px 0 30px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
.svc-card .promo {
  position: relative; height: 220px; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; overflow: hidden;
}
.svc-card .promo::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.38); transition: background 0.3s;
}
.svc-card .promo:hover::before { background: rgba(0, 0, 0, 0.58); }
.promo-inner { position: relative; padding: 22px; color: #fff; width: 100%; }
.promo-inner > i { font-size: 26px; color: var(--green); display: block; margin-bottom: 10px; }
.promo-inner h3, .promo-inner h4 { color: #fff; font-size: 16px; margin-bottom: 12px; }
.read-more {
  color: #fff; text-transform: uppercase; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
}
.read-more i { margin-left: 9px; color: var(--green); transition: margin-left 0.25s; }
.read-more:hover { color: #fff; }
.read-more:hover i { margin-left: 16px; }
.svc-card > p { margin-top: 18px; font-size: 13.5px; }
.tile-hover { gap: 30px; }
.tile-hover .promo { height: 230px; }
@media (max-width: 1199px) { .services-grid.tile-hover { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) { .services-grid.tile-hover { grid-template-columns: 1fr; } }
.tile-hover .tile-head { position: relative; }
.tile-hover .tile-head > i {
  position: absolute; left: 0; top: 0; font-size: 26px; line-height: 26px; color: var(--green);
  transition: top 0.35s ease, transform 0.35s ease, color 0.3s ease;
}
.tile-hover .tile-head > h3 { padding-top: 36px; transition: padding 0.35s ease; }
.tile-hover .tile-desc {
  color: #fff; font-size: 14.5px; line-height: 1.45; margin: 0;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}
.tile-hover .promo:hover .tile-desc, .tile-hover .promo:focus-visible .tile-desc { max-height: 130px; opacity: 1; margin-bottom: 12px; }
.tile-hover .promo:hover .tile-head > h3, .tile-hover .promo:focus-visible .tile-head > h3 { padding-top: 0; padding-left: 42px; }
.tile-hover .promo:hover .tile-head > i, .tile-hover .promo:focus-visible .tile-head > i { top: 50%; transform: translateY(-50%); color: #fff; }
.tile-hover .promo:focus-visible::before { background: rgba(0, 0, 0, 0.58); }
@media (hover: none) {
  .tile-hover .promo { height: auto; min-height: 230px; }
  .tile-hover .tile-desc { max-height: none; opacity: 1; margin-bottom: 12px; }
  .tile-hover .tile-head > h3 { padding-top: 0; padding-left: 42px; }
  .tile-hover .tile-head > i { top: 50%; transform: translateY(-50%); color: #fff; }
  .tile-hover .promo::before { background: rgba(0, 0, 0, 0.55); }
}

.cta-band { position: relative; padding: 75px 0; color: #fff; text-align: center; background-size: cover; background-position: center; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: rgba(1, 24, 32, 0.86); }

.about-page .cta-band::before { background: rgba(1, 24, 32, 0.6); }
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; font-size: 30px; margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 640px; margin: 0 auto 28px; }

.page-grid { display: grid; grid-template-columns: 300px 1fr; gap: 45px; padding: 30px 0 65px; align-items: start; }

.widget { margin-bottom: 38px; }
.widget-title { font-size: 15px; margin-bottom: 18px; padding-bottom: 8px; border-bottom: 2px solid var(--border); position: relative; }
.widget-title::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 44px; height: 2px; background: var(--green); }
.svc-nav { list-style: none; background: var(--dark); }
.svc-nav a {
  display: block; background: var(--dark); padding: 13px 18px; margin: 0;
  color: #c4c9cc; font-family: 'Montserrat', sans-serif; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 6px solid transparent; transition: all 0.2s;
}
.svc-nav li:last-child a { border-bottom: none; }
.svc-nav a:hover { border-left-color: var(--green); background: var(--darker); color: #fff; }
.svc-nav a.active { background: var(--green); color: #fff; border-left-color: var(--green-dark); }

.svc-nav a i { width: 18px; margin-right: 9px; text-align: center; color: var(--green); transition: color 0.2s; }
.svc-nav a:hover i { color: var(--green); }
.svc-nav a.active i { color: #fff; }

.market-work {
  display: flex; align-items: center; background: var(--dark); padding: 13px 18px;
  color: #c4c9cc; font-family: 'Montserrat', sans-serif; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  border-left: 6px solid var(--green); transition: all 0.2s;
}
.market-work i { width: 18px; margin-right: 9px; text-align: center; color: var(--green); transition: color 0.2s; }
.market-work .mw-go { width: auto; margin: 0 0 0 auto; }
.market-work:hover { background: var(--green); color: #fff; border-left-color: var(--green-dark); }
.market-work:hover i { color: #fff; }
.widget-dark { background: var(--dark); color: #cfd3d5; padding: 30px 26px; }
.widget-dark h4 { color: #fff; font-size: 16px; margin-bottom: 12px; }
.widget-dark p { font-size: 13px; color: #aeb3b6; }
.widget-dark .btn { margin-top: 6px; }
.fact-list { list-style: none; display: grid; grid-template-columns: max-content 1fr; column-gap: 12px; }
.fact-list li { display: contents; }
.fact-list li > span { font-size: 13px; padding: 4px 0 9px; border-bottom: 1px dotted #d8d8d8; }
.fact-list li > span:first-child { color: #555; font-weight: 600; text-align: right; }
.fact-list li > span:last-child { color: var(--green); font-weight: 600; text-align: left; }

.dose-facts { display: flex; flex-direction: column; gap: 7px; }
.dose-fact { display: flex; align-items: flex-start; gap: 8px; line-height: 1.35; }
.dose-ico { flex: none; color: var(--navy); }
.dose-fact .dose-ico { width: 17px; height: 17px; margin-top: 1px; }
.dose-facts span { border: 0; padding: 0; font-size: inherit; }
.dose-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; margin: 2px 0 24px; }
.dose-card { display: flex; align-items: flex-start; gap: 13px; padding: 14px 16px; background: var(--band); border-left: 3px solid var(--green); }
.dose-card .dose-ico { width: 30px; height: 30px; margin-top: 1px; }
.dose-card strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--head); margin-bottom: 4px; }
.dose-card span { display: block; font-size: 12.5px; line-height: 1.5; color: #666; }
@media (max-width: 760px) { .dose-band { grid-template-columns: 1fr; } }
.why-hook { font-family: 'Montserrat', sans-serif; font-weight: 700; font-style: italic; color: var(--green); font-size: 14px; line-height: 1.35; margin: -4px 0 9px; }
.why-statement { font-size: 12.5px; line-height: 1.6; color: #666; margin-bottom: 14px; }
.widget-promo { background: var(--green); color: #fff; padding: 32px 26px; }
.widget-promo h4 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.widget-promo p { color: rgba(255, 255, 255, 0.92); font-size: 13px; }
.widget-promo .btn { background: #fff; color: var(--head); margin-top: 8px; }
.widget-promo .btn:hover { background: var(--dark); color: #fff; }
.brochure-list { list-style: none; }
.brochure-list a {
  display: flex; align-items: center; gap: 14px; background: var(--band);
  padding: 14px 18px; margin-bottom: 8px; color: #444; transition: all 0.2s;
}
.brochure-list a:hover { background: var(--green); color: #fff; }
.brochure-list i { font-size: 20px; color: var(--green); transition: color 0.2s; }
.brochure-list a:hover i { color: #fff; }
.brochure-list strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 12px; text-transform: uppercase; }
.brochure-list small { font-size: 11px; opacity: 0.75; }

a.link-off { cursor: default; }
.brochure-list a.link-off:hover { background: var(--band); color: #444; }
.brochure-list a.link-off:hover i { color: var(--green); }
.oc-broch a.link-off:hover { background: rgba(255, 255, 255, 0.06); color: #d7dadc; }
.oc-broch a.link-off:hover i { color: var(--green); }

.svc-hero img { width: 100%; height: 400px; object-fit: cover; }

.svc-hero--wide img { height: auto; object-fit: fill; }
.svc-title { font-size: 26px; margin: 34px 0 6px; }
.punchline {
  color: var(--green); font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px;
}

.proj-credit-img {
  position: absolute; right: 12px; bottom: 10px; z-index: 2;
  height: 11px; width: auto; opacity: 0;
  pointer-events: none; user-select: none; -webkit-user-select: none;
  transition: opacity 0.2s;
}

.proj-credit-img.is-on { opacity: 0.82; }
.approach-figure { position: relative; display: block; }

.project-page .approach .proj-credit-img {
  width: auto; height: 9px; object-fit: contain; right: 10px; bottom: 8px;
}

.keep-case { text-transform: none !important; }
.section-heading { font-size: 19px; margin: 44px 0 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); position: relative; }
.section-heading::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 54px; height: 2px; background: var(--green); }

.approach { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: center; margin: 14px 0 10px; }
.approach img { width: 100%; height: 290px; object-fit: cover; }

.approach img.img-fit-width { height: auto; object-fit: contain; }

.project-page .approach img { height: auto; object-fit: contain; }

.project-page .approach img.img-fit-height { height: 100%; object-fit: cover; }
@media (max-width: 700px) { .project-page .approach img.img-fit-height { height: auto; object-fit: contain; } }

.proj-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin: 14px 0 18px; }
.proj-figs figure { margin: 0; }
.proj-figs img { width: 100%; height: auto; display: block; border: 1px solid var(--border); }
.proj-figs figcaption { font-size: 12.5px; line-height: 1.55; color: #777; padding-top: 8px; }
.proj-figs .fig-wide { grid-column: 1 / -1; }
.proj-figs figure.fig-plain img { border: 0; }
.sb-results-img { width: 100%; height: auto; display: block; }
@media (max-width: 700px) { .proj-figs { grid-template-columns: 1fr; } }
.approach h3 { font-size: 17px; margin-bottom: 12px; }
.check-list { list-style: none; margin-top: 6px; }
.check-list li { padding: 6px 0 6px 28px; position: relative; color: #555; font-size: 13.5px; }
.check-list li::before {
  content: '\2022'; color: var(--green);
  position: absolute; left: 3px; top: 0; font-size: 22px; line-height: 1.3;
}

body.float-hdr:not(.careers-page):not(.project-page):not(.about-page) .check-list li::before { top: 6px; font-size: 18px; line-height: 24px; }

.project-page .check-list li { padding-top: 2px; padding-bottom: 2px; padding-left: 19px; line-height: 1.45; font-size: 12.5px; }

.cap-group { margin-bottom: 30px; }
.cap-group h4 { font-size: 14px; margin-bottom: 4px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.cap-group h4 em { font-style: normal; color: var(--green); margin-right: 8px; }
.cap-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; list-style: none; }
.cap-list li { padding: 4px 0 4px 26px; font-size: 13.5px; color: #555; position: relative; }
.cap-list li::before {
  content: '\2022'; color: var(--green);
  position: absolute; left: 3px; top: 4px; font-size: 18px; line-height: 24px;
}

.value-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 10px 0 16px; }
.vbox { background: var(--band); padding: 30px 26px; }
.vbox i { font-size: 30px; color: var(--green); }
.vbox h4 { font-size: 13.5px; margin: 16px 0 8px; }
.vbox p { font-size: 13px; margin: 0; }
.submk-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 16px 0 26px; }
.submk { flex: 0 0 calc((100% - 42px) / 4); background: var(--band); padding: 24px 10px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.submk svg { width: 52px; height: 52px; color: var(--green); }
.submk span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.03em; color: var(--dark); }
@media (max-width: 560px) { .submk { flex-basis: calc((100% - 14px) / 2); } }

.related-section { padding: 10px 0 70px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.site-footer { background: var(--dark); color: #9aa0a3; padding: 65px 0 50px; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: var(--green); font-size: 14px; margin-bottom: 20px; }
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 5px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.site-footer ul a { color: #9aa0a3; }
.site-footer ul a:hover { color: var(--green); }
.site-footer .f-contact li { display: flex; gap: 10px; border-bottom: none; padding: 4px 0; }
.site-footer .f-contact i { color: var(--green); margin-top: 5px; }

.site-footer .f-contact li.f-head i { font-size: 16px; margin-top: 4px; }

.f-about-img { display: block; width: 100%; height: auto; margin-top: 20px; border-radius: 4px; }

.f-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; color: #9aa0a3; }
.f-more:hover { color: var(--green); }
.f-more i { font-size: 11px; transition: transform 0.2s ease; }
.f-more:hover i { transform: translateX(4px); }

.back-to-top {
  position: fixed; right: 26px; bottom: 26px; width: 46px; height: 46px; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 0;
  background: var(--green); color: #fff; border: none; border-radius: 8px; cursor: pointer;
  font-size: 18px; box-shadow: 0 6px 18px rgba(1, 24, 32, 0.28);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, visibility 0.25s;
}
.back-to-top.show { opacity: 0.7; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); opacity: 1; }

.footer-bottom { background: var(--darker); padding: 18px 0; font-size: 12px; color: #7d8285; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { color: var(--green); }

.page-shell {
  position: relative; z-index: 1;
  background: #fff;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.35);
}
.footer-reveal { position: fixed; left: 0; right: 0; bottom: 0; z-index: 0; width: 100%; background: var(--dark); }

.footer-reveal::before { content: ''; position: absolute; left: 0; right: 0; top: -2px; height: 2px; background: var(--dark); }

.footer-reveal.footer-tall .site-footer { padding-top: 93px; }

.float-hdr .topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 110;
  background: rgba(27, 31, 33, 0.55);
  padding: 0; height: 30px;
}
.float-hdr .topbar .container { height: 100%; align-items: center; }

.float-hdr .topbar .tb-right { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.float-hdr .topbar .tb-right .tb-item { margin-right: 0; }
.float-hdr .site-header {
  position: fixed; top: 30px; left: 0; right: 0; z-index: 100;
  background: rgba(27, 31, 33, 0.55);
  border-bottom: none;
  padding: 6px 0;
  transition: top 0.3s ease, padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.float-hdr .site-header .main-nav > ul > li > a { color: #fff; }
.float-hdr .site-header .main-nav > ul > li > a:hover, .float-hdr .site-header .main-nav > ul > li > a.current { color: var(--green); }
.float-hdr .site-header.shrunk {
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.10);
}
.float-hdr .site-header.shrunk .main-nav > ul > li > a { color: var(--head); }
.float-hdr .site-header.shrunk .main-nav > ul > li > a:hover, .float-hdr .site-header.shrunk .main-nav > ul > li > a.current { color: var(--green); }

.logo .logo-light { display: none; }
.float-hdr .site-header:not(.shrunk) .logo .logo-dark { display: none; }
.float-hdr .site-header:not(.shrunk) .logo .logo-light { display: block; }

.float-hdr .site-header:not(.shrunk) { height: 90px; box-sizing: border-box; padding: 0; z-index: 120; }
.float-hdr .site-header:not(.shrunk) .container { height: 90px; align-items: center; overflow: visible; }

.float-hdr .site-header:not(.shrunk) .logo { position: relative; z-index: 120; transform: translateY(-15px); }
.float-hdr .site-header:not(.shrunk) .logo img { height: 84px; display: block; }
.home .hero-slider { height: 100vh; }

.float-hdr .page-title-band {
  background: var(--dark); background-size: cover; background-position: center;
  padding-top: 120px; padding-bottom: 0; position: relative;
}
.float-hdr .page-title-band::before {
  content: ''; position: absolute; inset: 0; background: rgba(1, 30, 40, 0.62); z-index: 0;
}
.float-hdr .page-title-band > * { position: relative; z-index: 1; }
.float-hdr .page-title-band h1 { color: #fff; font-size: 20px; }
.float-hdr .breadcrumbs { color: rgba(255, 255, 255, 0.7); }
.float-hdr .breadcrumbs a { color: rgba(255, 255, 255, 0.85); }
.float-hdr .breadcrumbs a:hover { color: var(--green); }
.float-hdr .breadcrumbs .sep { color: rgba(255, 255, 255, 0.4); }
.float-hdr .breadcrumbs .current { color: var(--green); }

.hero-slider { position: relative; height: calc(100vh - 138px); min-height: 600px; overflow: hidden; background: var(--dark); }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.40); }

.hero-parallax {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; will-change: transform;
  display: flex; align-items: center; justify-content: center;
}

.hero-frame {
  width: min(442px, 88vw, 60vh); height: min(442px, 88vw, 60vh);
  border: 20px solid rgba(255, 255, 255, 0.50);
}
.hero-slide.active .hero-frame { animation: heroFrameIn 1.5s 0.5s cubic-bezier(0.23, 1, 0.32, 1) backwards; }
@keyframes heroFrameIn { from { opacity: 0; transform: translateX(110px); } to { opacity: 1; transform: translateX(0); } }
.hero-content { position: relative; z-index: 2; width: 100%; text-align: left; }

.hero-slide.active .hero-eyebrow { animation: heroFromTop 1.1s 0.3s cubic-bezier(0.23, 1, 0.32, 1) backwards, heroEyebrowFill 6500ms linear forwards; }
.hero-slide.active h1 { animation: heroFromRight 1.2s 0.45s cubic-bezier(0.23, 1, 0.32, 1) backwards; }
.hero-slide.active .hero-subhead { animation: heroFromRight 1.2s 0.6s cubic-bezier(0.23, 1, 0.32, 1) backwards; }
.hero-slide.active p { animation: heroFromBottom 1.2s 0.78s cubic-bezier(0.23, 1, 0.32, 1) backwards; }
.hero-slide.active .hero-btns { animation: heroFromBottom 1.2s 0.9s cubic-bezier(0.23, 1, 0.32, 1) backwards; }
@keyframes heroFromTop { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFromRight { from { opacity: 0; transform: translateX(70px); } to { opacity: 1; transform: translateX(0); } }
@keyframes heroFromBottom { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  display: block; color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 600; line-height: 22px; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 47px;
}
.hero-slide h1 {
  color: #fff; font-size: 50px; line-height: 54px; font-weight: 700;
  text-transform: none; max-width: 660px; margin-bottom: 0;
}
.hero-slide h1 em { font-style: normal; color: #fff; }

.hero-subhead {
  color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 400;
  font-size: 26px; line-height: 48px; white-space: nowrap; margin-bottom: 43px;
}
.hero-slide p { color: rgba(255, 255, 255, 0.85); font-size: 16px; max-width: 520px; margin: 0 0 30px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }

.hero-dots { position: absolute; bottom: 34px; left: 0; right: 0; z-index: 2; display: flex; justify-content: center; gap: 12px; }
.hero-dots button {
  width: 46px; height: 46px; padding: 3px; margin: 0; border: none;
  border-radius: 50%; background: rgba(0, 0, 0, 0.25);
  box-sizing: border-box; cursor: pointer; transition: all 0.3s;
}
.hero-dots button span {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  background-size: cover; background-position: center;
  box-shadow: inset 5px 5px 10px 0 rgba(0, 0, 0, 0.25);
}
.hero-dots button.active, .hero-dots button:hover { background: var(--green); }

.hero-timer { position: absolute; left: 0; right: 0; bottom: 0; height: 10px; background: rgba(0, 0, 0, 0.25); z-index: 4; }
.hero-timer span { display: block; height: 100%; width: 0; background: var(--green); }
.hero-timer.run span { animation: heroTimer 6500ms linear; }
@keyframes heroTimer { from { width: 0; } to { width: 100%; } }

@keyframes heroEyebrowFill {
  0%   { color: #fff; }
  25%  { color: #fff; }
  75%  { color: var(--green); }
  100% { color: var(--green); }
}

.feature-row { position: relative; z-index: 3; margin-top: 70px; }

.feature-row .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background-color: #3a3f42; }
.feature-box { position: relative; overflow: hidden; background-color: var(--dark); background-size: cover; background-position: center; color: #b8bcbe; padding: 38px 34px; }
.feature-box.accent { background-color: var(--green); color: rgba(255, 255, 255, 0.92); }

.feature-box::before { content: ''; position: absolute; inset: 0; background: rgba(34, 38, 41, 0.88); }
.feature-box.accent::before { background: rgba(33, 179, 84, 0.88); }
.feature-box > * { position: relative; z-index: 1; }
.feature-box i { font-size: 34px; color: var(--green); display: block; margin-bottom: 16px; }
.feature-box.accent i { color: #fff; }
.feature-box h3 { color: #fff; font-size: 15px; margin-bottom: 10px; }
.feature-box p { font-size: 13px; margin: 0; }

.home-about { padding: 85px 0 75px; }
.home-about .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 55px; align-items: center; }
.kicker {
  color: var(--green); font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 10px;
}

.home .kicker { font-size: 14px; }
.home-about h2 { font-size: 28px; margin-bottom: 20px; }
.home-about h2 em { font-style: normal; color: var(--green); }

.keep-case { text-transform: none; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 430px; object-fit: cover; }
.exp-badge {
  position: absolute; left: -28px; bottom: -28px; background: var(--green); color: #fff;
  padding: 26px 30px; max-width: 230px;
}
.exp-badge strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 700; line-height: 1; }
.exp-badge span { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.about-points { list-style: none; margin: 22px 0 28px; }
.about-points li { padding: 7px 0 7px 30px; position: relative; color: #555; font-size: 14px; }
.about-points li::before {
  content: '\f00c'; font-family: FontAwesome; color: var(--green);
  position: absolute; left: 0; top: 7px;
}

.stats-band { position: relative; padding: 78px 0; background-size: cover; background-position: center; color: #fff; will-change: background-position; }
.stats-band::before { content: ''; position: absolute; inset: 0; background: rgba(1, 24, 32, 0.75); }
.stats-band .container { position: relative; }
.stats-head { text-align: center; margin-bottom: 46px; }
.stats-head h2 { color: #fff; font-size: 26px; }
.stats-head p { color: rgba(255, 255, 255, 0.75); max-width: 620px; margin: 10px auto 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong {
  display: block; font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 700;
  color: var(--green); line-height: 1.1;
}
.stat strong sup { font-size: 24px; }
.stat strong .count {
  display: inline; font-size: inherit; font-weight: inherit; color: inherit;
  text-transform: none; letter-spacing: normal; margin: 0;
}
.stat span {
  display: block; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-top: 8px;
}
.stat small { display: block; color: rgba(255, 255, 255, 0.6); font-size: 12px; margin-top: 4px; }

.statflip {
  position: relative; height: 100vh; min-height: 520px; color: #fff;
  background-size: auto 100%; background-repeat: no-repeat; background-position: 100% center; overflow: hidden;

}
.statflip::before { content: ''; position: absolute; inset: 0; background: rgba(1, 24, 32, 0.78); }

.statflip::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(1, 24, 32, 0.55) 0%, rgba(1, 24, 32, 0.28) 42%, rgba(1, 24, 32, 0) 72%);
}
.statflip .sf-inner { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; }
.statflip .sf-grid { display: grid; grid-template-columns: 1fr; align-items: center; gap: 50px; width: 100%; }

.statflip .sf-index {
  position: absolute; z-index: 3;
  top: calc(11vh + 5rem);
  right: max(15px, calc(50% - 585px));
  transform: translateX(min(100%, max(0px, calc(50vw - 600px))));
}

.statflip .sf-kicker {
  position: absolute; top: 11vh; left: 0; right: 0; z-index: 3;
  text-align: center; margin: 0; padding: 0 15px;
  font-family: "Franklin Gothic Heavy", "Franklin Gothic Demi", "ITC Franklin Gothic Demi",
               "Franklin Gothic Medium", "Libre Franklin", Arial, sans-serif;
  font-size: clamp(46px, 4.2vw, 60px); font-weight: 600;
  text-transform: none; letter-spacing: 0.02em; line-height: 1.1;
  color: #fff;
}

.statflip .sf-kicker .sf-logo {
  display: inline-block; height: 0.74em; width: auto; vertical-align: baseline;
  margin-right: 0.08em;
}

.statflip .sf-stage { position: relative; min-height: 250px; perspective: 800px; }
.statflip .sf-item { position: absolute; left: 0; right: 0; top: 0; }
.statflip .sf-value {
  font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff;
  font-size: clamp(46px, 8.4vw, 116px); line-height: 1.04; letter-spacing: -0.015em;
  white-space: nowrap;
}

.statflip .sf-label {
  font-family: 'Montserrat', sans-serif; font-size: clamp(21px, 2.25vw, 30px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--green); margin-top: 14px;
}
.statflip .sf-note {
  font-size: 16px; color: rgba(255, 255, 255, 0.72); margin-top: 16px; max-width: 560px; line-height: 1.7;
}

.statflip .ltr { display: inline-block; transform-origin: 50% 50% 0.3em; will-change: transform; }
.statflip .sf-value .ltr { transform-origin: 50% 50% 0.14em; }

.statflip .sf-index { list-style: none; margin: 0; padding: 0; counter-reset: sf; text-align: right; }
.statflip .sf-index li {
  counter-increment: sf; position: relative; padding: 7px 0 7px 46px;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.38);
  transition: color 0.35s;
}
.statflip .sf-index li::before {
  content: counter(sf, decimal-leading-zero); position: absolute; left: 0; top: 7px;
  color: rgba(255, 255, 255, 0.22); transition: color 0.35s;
}
.statflip .sf-index li::after {
  content: ''; position: absolute; left: 26px; top: 50%; width: 12px; height: 2px;
  background: rgba(255, 255, 255, 0.22); transform: scaleX(0.45); transform-origin: left center;
  transition: transform 0.35s, background 0.35s;
}

.statflip .sf-index li.on { color: #fff; }
.statflip .sf-index li.on::before { color: #fff; }
.statflip .sf-index li.on::after { background: #fff; transform: scaleX(1); }

.statflip .sf-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, 0.14); }
.statflip .sf-progress span { display: block; height: 100%; width: 0; background: var(--green); }

.no-anim .statflip { height: auto; padding: 78px 0; }
.no-anim .statflip .sf-stage { min-height: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 30px; }
.no-anim .statflip .sf-item { position: static; }
.no-anim .statflip .sf-value { font-size: 44px; }

.no-anim .statflip .sf-kicker { position: static; margin-bottom: 30px; }
.no-anim .statflip .sf-index { display: none; }

@media (max-width: 900px) {
  .statflip .sf-grid { grid-template-columns: 1fr; }

  .statflip .sf-kicker { top: 88px; }
  .statflip .sf-index {
    position: absolute; top: 162px; right: 18px; z-index: 2;
    display: block; pointer-events: none;
  }
  .statflip .sf-index li { padding: 5px 0 5px 40px; font-size: 10px; letter-spacing: 0.1em; }
  .statflip .sf-index li::before { top: 5px; }
  .statflip .sf-index li::after { left: 22px; width: 10px; }
  .no-anim .statflip .sf-index { display: none; }
}
@media (max-width: 640px) {
  .statflip { height: 88vh; min-height: 460px; }
  .statflip .sf-stage { min-height: 230px; }
  .statflip .sf-value { font-size: clamp(38px, 13vw, 62px); }

  .statflip .sf-kicker { font-size: 36px; top: 84px; }
  .statflip .sf-label { font-size: 17px; letter-spacing: 0.12em; }
  .statflip .sf-note { font-size: 14px; }

  .statflip .sf-inner { align-items: flex-end; }
  .statflip .sf-grid { padding-bottom: 6vh; }
  .statflip .sf-index { top: 138px; right: 12px; }
  .statflip .sf-index li { padding: 3px 0 3px 32px; font-size: 9px; }
  .statflip .sf-index li::before { top: 3px; }
  .statflip .sf-index li::after { left: 17px; width: 8px; }
  .no-anim .statflip .sf-stage { grid-template-columns: 1fr; }
}

.home-section { padding: 80px 0 70px; }
.home-section.band { background: var(--band); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: 26px; }
.section-head .rule { width: 54px; height: 3px; background: var(--green); margin: 14px auto 0; }
.section-head p { max-width: 640px; margin: 16px auto 0; }
.section-foot { text-align: center; margin-top: 44px; }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.proj-card { position: relative; overflow: hidden; height: 270px; display: block; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.proj-card:hover img { transform: scale(1.06); }
.proj-card .proj-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85)); color: #fff; padding: 46px 20px 16px;
}
.proj-info h4 { color: #fff; font-size: 14px; margin-bottom: 3px; }
.proj-info span { font-size: 12px; color: var(--green); font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.news-feature { display: grid; grid-template-columns: 1.1fr 1fr; background: #fff; border: 1px solid var(--border);
                border-left: 4px solid var(--green); margin-bottom: 34px; }
.nf-img { min-height: 290px; overflow: hidden; }
.nf-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nf-rotate { position: relative; background: #fff; }
.nf-rotate .nf-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease;
                      background: #fff center / cover no-repeat; }
.nf-rotate .nf-slide.is-on { opacity: 1; }
.nf-rotate .nf-slide.nf-fit { background-size: contain; background-origin: content-box; padding: 14px; }
.nf-body { padding: 34px 38px; display: flex; flex-direction: column; justify-content: center; }
.nf-kicker { font-family: 'Montserrat', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
             text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.nf-body h3 { font-size: 21px; line-height: 1.3; color: var(--navy); margin: 0 0 12px; text-transform: none; }
.nf-body p { margin: 0 0 22px; }
.nf-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 2px var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
@media (max-width: 768px) { .news-feature { grid-template-columns: 1fr; } .nf-img { min-height: 210px; }
                            .nf-body { padding: 24px 20px; } .nf-body h3 { font-size: 18px; } }

.sector-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.sector-tags a {
  background: #fff; border: 1px solid var(--border); color: #555;
  font-family: 'Montserrat', sans-serif; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 10px 18px; transition: all 0.2s;
}
.sector-tags a:hover { background: var(--green); border-color: var(--green); color: #fff; }

.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.award-card { background: #fff; border: 1px solid var(--border); padding: 34px 30px; text-align: center; }
.home-section.band .award-card { border: none; }
.award-card i { font-size: 34px; color: var(--green); margin-bottom: 16px; }
.award-card img { height: 52px; width: auto; margin: 0 auto 16px; object-fit: contain; }
.award-card h4 { font-size: 14px; margin-bottom: 8px; }
.award-card p { font-size: 13px; margin: 0; }
.award-badge { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 16px; }
.award-badge img { height: 46px; width: auto; margin: 0; }
.award-badge i { font-size: 30px; margin: 0; }
.award-courtesy { font-size: 9px; color: #999; font-style: italic; margin-top: 8px; }
.cert-strip { margin-top: 40px; text-align: center; }
.cert-strip img { max-width: 760px; width: 100%; margin: 0 auto; }
.cert-strip p { font-size: 12.5px; color: #888; margin-top: 12px; }

.safety-bar { position: relative; background: var(--navy); background-size: cover; background-position: center; color: #fff; padding: 34px 0; }
.safety-bar::before { content: ''; position: absolute; inset: 0; background: rgba(1, 24, 32, 0.75); }
.safety-bar .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.safety-icons { display: flex; gap: 34px; justify-content: center; color: var(--green); }
.safety-icons svg { width: 46px; height: 46px; }
.safety-bar .kicker { margin: 4px 0 0; }
.safety-bar h3 { color: #fff; font-size: 26px; letter-spacing: 0.03em; margin: 0; }
.safety-bar .rule { width: 50px; height: 3px; background: var(--green); margin: 0 auto 2px; }
.safety-items { display: flex; gap: 44px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.safety-items div { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.safety-items strong { display: block; color: var(--green); font-size: 22px; }

@media (max-width: 992px) {
  .hero-slider { height: calc(100vh - 138px); min-height: 540px; }
  .hero-slide h1 { font-size: 34px; }
  .hero-subhead { font-size: 22px; line-height: 34px; }
  .hero-frame { border-width: 16px; }
  .feature-row { margin-top: 44px; }
  .feature-row .container { grid-template-columns: 1fr; }
  .home-about .container { grid-template-columns: 1fr; }
  .exp-badge { left: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 20px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-slider { min-height: 520px; }

  .hero-slide .hero-content {
    flex: none;
    width: min(442px, 88vw, 60vh);
    max-width: 100%;
    margin: 0 auto;
    padding-left: 32px; padding-right: 32px;
  }
  .hero-eyebrow { font-size: 13px; line-height: 18px; margin-bottom: 18px; white-space: normal; }
  .hero-slide h1 { font-size: 30px; line-height: 36px; max-width: 100%; }
  .hero-subhead { font-size: 20px; line-height: 28px; white-space: normal; max-width: 100%; margin-bottom: 26px; }
  .hero-frame { border-width: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .safety-bar .container { justify-content: center; text-align: center; }
}

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .page-grid { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
  .approach { grid-template-columns: 1fr; }
  .value-boxes { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .cap-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-title-band h1 { font-size: 24px; }
  .svc-hero img { height: 240px; }
}

@media (max-width: 640px) {
  .tb-hide-mobile { display: none; }
  .topbar { padding: 7px 0; }
  .topbar .container { justify-content: space-between; }
  .topbar .tb-item { margin-right: 0; }
}

.about-intro-grid { display: grid; grid-template-columns: 1fr 300px; gap: 45px; padding: 30px 0 65px; align-items: start; }
.about-intro-grid .lead-img { width: 100%; display: block; margin-bottom: 26px; }
.about-eyebrow { color: var(--green); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.14em; }
.about-page .kicker { font-size: 16px; }
.about-intro-grid h2 { font-size: 28px; margin: 8px 0 16px; }
.about-intro-grid p { margin-bottom: 14px; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 26px 0 6px; }
.mv-card {
  position: relative; overflow: hidden; width: 88%; margin: 0 auto; min-height: 387px; padding: 0; border: none;
  background: #222629 center / cover no-repeat;
}

.mv-mask {
  position: absolute; top: 0; left: 10%; width: 80%; height: calc(80% - 20px);
  background: rgba(27, 31, 33, 0.68); color: #fff;
  padding: 30px 26px; display: flex; flex-direction: column; justify-content: flex-start;
}
.mv-mask h4 { color: #fff; font-size: 22px; letter-spacing: 0.06em; margin: 0; }
.mv-mask h4::after { content: ''; display: block; width: 54px; height: 3px; background: #fff; margin: 16px 0 18px; }
.mv-mask p { color: rgba(255, 255, 255, 0.92); font-size: 15px; line-height: 1.8; margin: 0; }

.js-anim .mv-mask { clip-path: inset(0 0 100% 0); transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1); }
.js-anim .mv-card.in .mv-mask { clip-path: inset(0 0 0 0); }
.js-anim .mv-card--vision .mv-mask { transition-delay: 0.18s; }

.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--head); }
.hours-list li span:last-child { color: var(--green); }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 40px; margin-top: 8px; }
.value-item { display: flex; gap: 18px; }
.value-item .v-ico { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 23px; }
.value-item .ve { color: var(--green); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; }
.value-item h4 { font-size: 15px; margin: 2px 0 6px; }
.value-item p { font-size: 15px; margin: 0; }

.timeline { position: relative; max-width: 980px; margin: 0 auto; }

.section-head p.story-lead { max-width: 860px; }
.tl-start { max-width: 368px; height: 3px; background: var(--dark); margin: -34px auto 37px; transform: scaleX(0); transform-origin: 50% 50%; }
.tl-start.in { transform: scaleX(1); transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
html:not(.js-anim) .tl-start { transform: scaleX(1); }
.tl-item { position: relative; display: grid; grid-template-columns: 1fr 50px 1fr; align-items: center; margin-bottom: 34px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-year { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 30px; line-height: 1; color: var(--c, var(--green)); }
.tl-panel { display: flex; align-items: stretch; }
.tl-photo { flex: 0 0 120px; width: 120px; object-fit: cover; display: block; background: var(--band); border-top: 6px solid var(--c, var(--green)); }
.tl-text { flex: 1; background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--c, var(--green)); padding: 15px 18px; min-height: 104px; }
.tl-text h4 { font-size: 15px; margin: 0 0 6px; color: var(--head); }
.tl-text p { font-size: 14.5px; margin: 0; }
.tl-item .tl-year, .tl-item .tl-panel { grid-row: 1; }
.tl-item.tl-left .tl-year { grid-column: 1; text-align: right; padding-right: 30px; }
.tl-item.tl-left .tl-panel { grid-column: 3; padding-left: 30px; }
.tl-item.tl-right .tl-year { grid-column: 3; text-align: left; padding-left: 30px; }
.tl-item.tl-right .tl-panel { grid-column: 1; padding-right: 30px; flex-direction: row-reverse; }
.tl-item::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; border-radius: 50%; background: var(--c, var(--green)); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--c, var(--green)); z-index: 2; }

.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 6px; }
.cert-card { background: #fff; border: 1px solid var(--border); padding: 30px 22px; text-align: center; }
.cert-card .c-badge { width: 62px; height: 62px; border-radius: 50%; background: var(--navy); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: 0.02em; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.cert-card .c-badge .cert-icon { width: 32px; height: 32px; }
.cert-card .c-badge .cert-logo { width: 56px; height: 56px; object-fit: contain; display: block; }
.cert-card h4 { font-size: 12.5px; margin: 0 0 8px; }
.cert-card p { font-size: 12.5px; margin: 0; }
.affil { text-align: center; margin-top: 34px; }
.affil h4 { font-size: 13px; margin-bottom: 14px; }
.affil span { display: inline-block; margin: 5px 6px; padding: 8px 15px; background: var(--band); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--head); }

.leadership-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.leadership-grid img { width: 100%; display: block; }
.leadership-grid .lead-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--green); font-size: 13px; letter-spacing: 0.04em; margin-top: 16px; }

@media (max-width: 992px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .leadership-grid { grid-template-columns: 1fr; gap: 28px; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { min-height: 317px; }
}
@media (max-width: 600px) {
  .cert-grid { grid-template-columns: 1fr; }
}

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 6px; }
.testi-card { background: #fff; border: 1px solid var(--border); padding: 28px 26px; display: flex; flex-direction: column; }
.testi-card .stars { color: var(--green); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.testi-card .quote { font-size: 15px; font-style: italic; color: #555; margin: 0 0 20px; flex: 1; }
.testi-card .who { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-card .who .av { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; }
.testi-card .who strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 13.5px; color: var(--head); }
.testi-card .who span { font-size: 13px; color: var(--text); }

.cert-card .cert-list { list-style: none; text-align: left; margin: 4px 0 0; }
.cert-card .cert-list li { position: relative; font-size: 13.5px; padding: 6px 0 6px 18px; border-bottom: 1px solid var(--border); }
.cert-card .cert-list li:last-child { border-bottom: 0; }
.cert-card .cert-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.licensure-wrap { max-width: 1140px; margin: 0 auto; text-align: center; }
.licensure-wrap img { width: 100%; max-width: 780px; display: block; margin: 0 auto; }
.lic-legend { display: flex; justify-content: center; gap: 26px; margin: 10px 0 14px; font-size: 13.5px; }
.lic-legend span { display: inline-flex; align-items: center; gap: 8px; }
.lic-legend i { width: 15px; height: 15px; border-radius: 3px; display: inline-block; }
.lic-states { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13.5px; letter-spacing: 0.02em; color: var(--head); }
.lic-note { font-size: 14px; margin-top: 8px; }

.lic-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: center; text-align: left; margin-top: 8px; }
.us-map { position: relative; }
.lic-layout .us-map { max-width: none; margin: 0; }
.us-map svg { width: 100%; height: auto; display: block; overflow: visible; }
.us-map path { fill: #e7e9eb; stroke: #fff; stroke-width: 1.3; cursor: pointer;
  transform-box: fill-box; transform-origin: center;
  transition: transform 0.16s ease, fill 0.16s ease, filter 0.16s ease; }
.us-map path.lic { fill: #7fce9c; }

.us-map path:not(.lic):hover, .us-map path.is-active:not(.lic) { fill: #b3b4b3; }
.us-map path.lic:hover, .us-map path.is-active.lic { fill: var(--green); }
.us-map path.is-active { stroke: #fff; stroke-width: 1.5; transform: scale(1.35);
  filter: drop-shadow(0 3px 6px rgba(1, 24, 32, 0.4)); }

.us-map-tip { position: absolute; left: 0; top: 0; pointer-events: none; z-index: 5;
  background: #d7dadc; color: #1b1f21; font-size: 12.5px; font-weight: 700; white-space: nowrap;
  padding: 5px 11px; border-radius: 5px; box-shadow: 0 4px 12px rgba(1, 24, 32, 0.22);
  opacity: 0; transform: translate(-50%, calc(-100% - 12px)); transition: opacity 0.12s ease; }
.us-map-tip.lic { background: var(--navy); color: #fff; }
.us-map-tip::after { content: ''; position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #d7dadc; }
.us-map-tip.lic::after { border-top-color: var(--navy); }
.us-map-tip.show { opacity: 1; }
.us-map-tip .tip-lic { display: block; font-weight: 400; font-size: 11px; color: #8fe0ab; margin-top: 1px; }

.lic-side-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 8px; }
.lic-list { list-style: none; margin: 0; padding: 0; }
.lic-list li { font-size: 13.5px; line-height: 1.3; color: var(--head); padding: 1px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: color 0.15s ease; }
.lic-list li:last-child { border-bottom: none; }
.lic-list li.is-hot { color: var(--green); font-weight: 700; }
@media (max-width: 760px) { .lic-layout { grid-template-columns: 1fr; gap: 18px; } }

.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; align-items: stretch; margin-top: 6px; }
.logo-cell { background: #fff; border: 1px solid var(--border); height: 116px; display: flex; align-items: center; justify-content: center; padding: 20px; }
.logo-cell img { max-width: 100%; max-height: 100%; object-fit: contain; }

.logo-ticker { overflow: hidden; position: relative; margin-top: 6px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; gap: 20px; width: max-content; animation: logo-scroll 28s linear infinite; }
.logo-ticker:hover .logo-track { animation-play-state: paused; }
.logo-track .logo-cell { flex: 0 0 200px; height: 116px; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.clients-section .logo-ticker { margin-top: 8px; }

.clients-section .logo-cell { background: transparent; border: 0; }

.clients-section .logo-track { animation-duration: 120s; }
.logo-cell.logo-placeholder { border-style: dashed; border-color: #d4d7d9; background: #fafbfb; }
.logo-cell.logo-placeholder span { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #b3b4b3; }

.assemble { position: relative; height: 100vh; overflow: hidden; background: #fff;
  display: flex; align-items: center; justify-content: center; }

.assemble .heading { position: absolute; top: 7vh; left: 0; right: 0; text-align: center;
  z-index: 5; color: #b3b4b3; pointer-events: none; }
.assemble .heading .eyebrow { color: var(--green); letter-spacing: .18em; text-transform: uppercase;
  font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.assemble .heading h2 { color: #b3b4b3; font-size: clamp(19px, 2.8vw, 32px); font-weight: 600; line-height: 1.05; margin: 0; }
.assemble .heading h2 strong { color: var(--navy); font-weight: 700; }

.assemble .factory { position: relative;
  height: min(70vh, 900px); width: calc(min(70vh, 900px) * 1917 / 2200); }
.assemble .factory .layer { position: absolute; top: 0; left: 0;
  height: min(70vh, 900px); width: calc(min(70vh, 900px) * 1917 / 2200);
  object-fit: contain; will-change: transform; filter: drop-shadow(0 24px 36px rgba(1,60,79,.18)); }

.assemble .factory .layer.f_01 { --m: 1;
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(var(--m) * 140% - 40%), transparent calc(var(--m) * 140%));
          mask-image: linear-gradient(to bottom, #000 calc(var(--m) * 140% - 40%), transparent calc(var(--m) * 140%)); }

.assemble .pp { position: absolute; z-index: 6; max-width: 230px; font-size: 14px; line-height: 1.35;
  font-weight: 500; color: var(--navy); will-change: transform, opacity; }

.assemble .pp .tag { display: inline-block;
  text-shadow: 0 1px 2px rgba(255,255,255,0.85), 0 2px 7px rgba(0,0,0,0.38); }
.assemble .pp.left { text-align: right; }
.assemble .pp.centre { transform: translateX(-50%); text-align: center; }
.assemble .pp .tag b { color: var(--green); font-weight: 700; }

.assemble .connectors { position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 4; pointer-events: none; overflow: visible; }
.assemble .conn { stroke: #b3b4b3; stroke-width: 1.6; opacity: 0; marker-end: url(#enddot); }
.assemble .scrollcue { position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%);
  color: var(--navy); opacity: .55; font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase; z-index: 6; }

.assemble .bigtag { --side-gap: calc(50vw - min(70vh, 900px) * 0.436 - 22px);

  position: absolute; top: 50%; right: calc(var(--side-gap) / 4); transform: translateY(-50%); z-index: 5;
  width: var(--side-gap); perspective: 900px; pointer-events: none; text-align: center;
  font-family: "Franklin Gothic Demi", "ITC Franklin Gothic Demi", "Franklin Gothic Medium", "Libre Franklin", Arial, sans-serif;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05;

  font-size: clamp(11px, calc(var(--side-gap) / 10.5), 60px); }
.assemble .bigtag .bt-line { position: relative; display: block; height: 1.15em; }
.assemble .bigtag .bt-from, .assemble .bigtag .bt-to { position: absolute; left: 0; right: 0; top: 0;
  white-space: nowrap; opacity: 0; }
.assemble .bigtag .bt-from { color: #b3b4b3; }
.assemble .bigtag .bt-to   { color: var(--navy); }

.assemble .bigtag .ltr { display: inline-block; transform-origin: 50% 50% 0.4em; will-change: transform; }

.assemble .vision { --side-gap: calc(50vw - min(70vh, 900px) * 0.436 - 22px);
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;

  left: calc(var(--side-gap) * 0.314 + 11px);
  width: calc(var(--side-gap) * 0.5535); pointer-events: none; }

.assemble .vision .vrule { display: flex; align-items: center; gap: 8px; width: 100%; margin: 0 0 20px; }
.assemble .vision .vrule-green { flex: none; width: 46px; height: 4.5px; background: var(--green); border-radius: 0; }
.assemble .vision .vrule-grey { flex: 1 1 auto; height: 1.5px; background: #b3b4b3; border-radius: 0;
  transform: scaleX(0); transform-origin: left center; }
.assemble .vision .vtext { margin: 0; color: var(--navy); font-weight: 500; line-height: 1.5;
  font-family: "Franklin Gothic Medium", "ITC Franklin Gothic Medium", "Libre Franklin", Arial, sans-serif;
  font-size: clamp(15px, calc(var(--side-gap) / 19), 25px); }

.assemble .vision .vtext .vw { display: inline-block; }

.no-anim .assemble .connectors { display: none; }
.no-anim .assemble .pp { opacity: 1 !important; transform: none !important; }
.no-anim .assemble .bigtag .bt-from { display: none; }
.no-anim .assemble .bigtag .bt-to { opacity: 1 !important; }
.no-anim .assemble .vision { opacity: 1 !important; }
.no-anim .assemble .vision .vrule-grey { transform: scaleX(1); }
@media (max-width: 780px) {

  .assemble .pp,
  .assemble .connectors { display: none; }
  .assemble .factory,
  .assemble .factory .layer { width: 92vw; height: calc(92vw * 2200 / 1917); }
}

@media (max-width: 900px) { .assemble .bigtag, .assemble .vision { display: none; } }

@media (max-width: 780px) {
  .assemble .heading { top: calc(7vh + var(--vision-h, 0px)); }

  .assemble .vision { display: block; top: auto; bottom: calc(6vh + var(--vision-lh, 24px));
    left: 5vw; right: 5vw; width: auto; transform: none; }
  .assemble .vision .vrule { justify-content: center; }
  .assemble .vision .vtext { text-align: center; font-size: clamp(15px, 4.3vw, 21px); }
}

@media (max-width: 992px) {
  .testi-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cert-grid { grid-template-columns: 1fr; }
  .lic-legend { flex-direction: column; gap: 8px; align-items: center; }
}

.testi-ticker { overflow: hidden; position: relative; margin-top: 6px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.testi-track { display: flex; gap: 26px; width: max-content; align-items: stretch; animation: testi-scroll 48s linear infinite; }
.testi-ticker:hover .testi-track { animation-play-state: paused; }
.testi-track .testi-card { flex: 0 0 370px; max-width: 86vw; }
@keyframes testi-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.awards-ticker { overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.awards-track { display: flex; gap: 30px; width: max-content; align-items: stretch; animation: awards-scroll 42s linear infinite; }
.awards-ticker:hover .awards-track { animation-play-state: paused; }
.awards-track .award-card { flex: 0 0 360px; max-width: 86vw; }
@keyframes awards-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.accordion { margin-top: 10px; }
.acc-item { border: 1px solid var(--border); margin-bottom: 10px; background: #fff; }
.acc-head { width: 100%; display: flex; align-items: center; gap: 12px; padding: 15px 20px; cursor: pointer;
  background: var(--band); border: none; text-align: left;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--head);
  transition: background 0.25s, color 0.25s; }
.acc-head > span { flex: 1; }
.acc-head i { color: var(--green); transition: color 0.25s, transform 0.3s; }
.acc-head .acc-ico { margin-left: auto; }
.acc-head:hover { background: #ededed; }
.acc-item.open .acc-head { background: var(--green); color: #fff; }
.acc-item.open .acc-head:hover { background: var(--green-dark); }
.acc-item.open .acc-head i { color: #fff; }
.acc-item.open .acc-head .acc-ico { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-item.open .acc-body { max-height: 680px; }
.acc-content { display: flex; gap: 26px; align-items: center; padding: 22px 20px; }
.acc-text { flex: 1; }
.acc-text p { margin: 0; font-size: 15px; }
.acc-img { flex: 0 0 240px; width: 240px; height: 165px; object-fit: cover; }
.acc-img.acc-img-contain { object-fit: contain; height: auto; background: none; align-self: center; }

.acc-img.acc-img-fit { object-fit: contain; }
@media (max-width: 700px) {
  .acc-content { flex-direction: column; align-items: stretch; }
  .acc-img { width: 100%; flex: none; height: 190px; }
  .acc-item.open .acc-body { max-height: 820px; }
}

.careers-page .pt-eyebrow { display: block; color: var(--green); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
.careers-page .page-title-band h1 { font-size: 38px; line-height: 1.12; }
@media (max-width: 700px) { .careers-page .page-title-band h1 { font-size: 27px; } }
.jobs-table { width: 100%; border-collapse: collapse; margin: 10px 0 24px; font-size: 14px; }
.jobs-table th { text-align: left; background: var(--navy); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; padding: 12px 16px; }
.jobs-table td { padding: 15px 16px; border-bottom: 1px solid var(--border); color: #555; }
.jobs-table tbody tr:hover { background: var(--band); }
.jobs-table a { color: var(--navy); font-weight: 600; }
.jobs-table a:hover { color: var(--green); }
.job-detail { background: var(--band); padding: 32px 32px; margin: 6px 0 12px; border-left: 3px solid var(--green); }
.job-detail h3 { font-size: 20px; margin: 0 0 4px; }
.job-detail h4 { font-size: 15px; margin: 22px 0 8px; color: var(--head); }
.job-meta { display: flex; flex-wrap: wrap; gap: 20px; margin: 8px 0 18px; font-size: 13px; color: #666; }
.job-meta i { color: var(--green); margin-right: 7px; }
.careers-evergreen { background: #fff; border: 1px dashed var(--border); padding: 22px 26px; margin-top: 14px; font-size: 14px; color: #555; }
.careers-evergreen strong { font-size: 16px; color: var(--head); }

.about-cta { display: flex; align-items: stretch; background: var(--navy); color: #fff; margin: 22px 0 8px; overflow: hidden; text-decoration: none; transition: box-shadow 0.25s ease; }
.about-cta:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); }
.about-cta-img { flex: 0 0 210px; background-size: cover; background-position: center; }
.about-cta-body { padding: 24px 28px; }
.about-cta-body h4 { color: #fff; font-size: 18px; margin: 0 0 6px; }
.about-cta-body p { color: rgba(255, 255, 255, 0.8); font-size: 14px; margin: 0 0 16px; }
.about-cta-btn { display: inline-block; background: var(--green); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; padding: 11px 22px; }
.about-cta:hover .about-cta-btn { background: var(--green-dark); }
@media (max-width: 600px) { .about-cta { flex-direction: column; } .about-cta-img { flex: none; height: 170px; } }

.benefits-lead { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 22px; color: var(--head); margin: 2px 0 16px; }

.benefits-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 34px; margin: 20px 0 4px; padding: 0; }
.benefits-grid li { display: flex; align-items: center; gap: 13px; font-size: 14px; line-height: 1.4; color: #444; }
.benefits-grid i { flex: 0 0 38px; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(33, 179, 84, 0.12); color: var(--green); border-radius: 9px; font-size: 16px; }
@media (max-width: 640px) { .benefits-grid { grid-template-columns: 1fr; } }

.careers-page .punchline, .careers-page .widget-title { text-transform: none; }

.careers-page main > .svc-title:first-child { margin-top: 0; }

.job-board.js-toggle .job-detail { display: none; }
.job-board.js-toggle .job-detail.active { display: block; }
.jobs-table tbody tr.job-row { cursor: pointer; }
.jobs-table tbody tr.job-row.active { background: var(--band); }
.jobs-table tbody tr.job-row.active td:first-child { box-shadow: inset 3px 0 0 var(--green); }

.job-detail .check-list li::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); left: 4px; top: 8px; }

.contact-page .pt-eyebrow { display: block; color: var(--green); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
.contact-section { padding: 65px 0; }
.contact-intro { display: grid; grid-template-columns: 1.25fr 1fr; gap: 50px; align-items: start; }
.contact-intro h2 { font-size: 26px; margin-bottom: 12px; }
.contact-intro-text p { color: #555; margin-bottom: 0; font-size: 16px; }

.contact-details { background: var(--band); padding: 26px 28px 20px; }
.contact-offices { list-style: none; }
.contact-offices li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px dotted #d8d8d8; font-size: 13.5px; color: #555; line-height: 1.5; }
.contact-offices li:last-child { border-bottom: none; }

.contact-offices i { color: var(--green); font-size: 16px; margin-top: 3px; width: 26px; text-align: center; flex-shrink: 0; }
.contact-offices .co-head i { font-size: 26px; margin-top: 1px; }

.email-img { display: inline-block; vertical-align: middle; height: 1.01em; width: 12.087em;
  background-repeat: no-repeat; background-position: center; background-size: contain;
  background-image: url('images/email-light.png'); }
.site-footer .email-img { background-image: url('images/email-footer.png'); margin-top: 5px; }
.contact-offices .email-img { background-image: url('images/email-contact.png'); margin-top: 4px; }
.topbar .tb-item:hover .email-img { background-image: url('images/email-green.png'); }
.contact-offices li:hover .email-img { background-image: url('images/email-green.png'); }
.contact-offices strong { display: block; color: var(--head); font-family: 'Montserrat', sans-serif; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px; }
.contact-offices a { color: #555; }
.contact-offices a:hover { color: var(--green); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; margin-top: 55px; align-items: stretch; }
.contact-form h3, .contact-map-wrap h3 { font-size: 19px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.contact-form .field { margin-bottom: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; font-size: 12.5px; font-weight: 600; color: var(--head); margin-bottom: 6px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--head); background: #fff; box-sizing: border-box; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-note { font-size: 12px; color: #999; margin-top: 12px; }
.contact-map-wrap { display: flex; flex-direction: column; }
.contact-map { flex: 1; min-height: 430px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 430px; border: 0; display: block; }

.promo-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.promo-trio-wrap { padding-bottom: 50px; }
.promo-box { position: relative; min-height: 300px; display: flex; align-items: flex-end; padding: 34px; background-size: cover; background-position: center; text-decoration: none; overflow: hidden; }
.promo-box::before { content: ''; position: absolute; inset: 0; background: rgba(1, 24, 32, 0.72); transition: background 0.3s ease; }
.promo-box:hover::before { background: rgba(1, 24, 32, 0.82); }
.promo-box > div { position: relative; z-index: 1; }
.promo-box h3 { color: #fff; font-size: 21px; margin: 0 0 8px; }
.promo-box p { color: rgba(255, 255, 255, 0.85); font-size: 13.5px; margin: 0 0 18px; }
@media (max-width: 980px) {
  .promo-trio { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .contact-intro { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

.tl-progress { position: absolute; left: 50%; transform: translateX(-50%); top: -37px; width: 3px; height: 0; background: var(--dark); z-index: 1; }

.js-anim .tl-item .tl-year, .js-anim .tl-item .tl-panel { opacity: 0; transform: translateY(-90px); will-change: transform, opacity; }
.js-anim .tl-item::after { transform: translate(-50%, -50%) scale(0); transition: transform 0.7s ease 0.1s; }
.tl-item.in::after { transform: translate(-50%, -50%) scale(1); }

@media (max-width: 992px) {
  .tl-progress { left: 24px; transform: none; }
  .tl-item { display: block; padding-left: 78px; }
  .tl-item.tl-left .tl-year, .tl-item.tl-right .tl-year { text-align: left; padding: 0; margin: 0 0 10px; }
  .tl-item.tl-left .tl-panel, .tl-item.tl-right .tl-panel { padding: 0; flex-direction: row; }
  .tl-item::after { left: 24px; top: 8px; }
  .js-anim .tl-item.tl-left .tl-year, .js-anim .tl-item.tl-right .tl-year,
  .js-anim .tl-item.tl-left .tl-panel, .js-anim .tl-item.tl-right .tl-panel { transform: translateY(-60px); }
  .js-anim .tl-item::after { transform: translate(-50%, 0) scale(0); }
  .tl-item.in::after { transform: translate(-50%, 0) scale(1); }
}
@media (max-width: 560px) {
  .tl-item.tl-left .tl-panel, .tl-item.tl-right .tl-panel { flex-direction: column; }
  .tl-photo { width: 100%; flex: 0 0 auto; height: 160px; }
  .tl-text { border-top: none; min-height: 0; }
}

.sectors-page .page-title-band { padding-top: 200px; padding-bottom: 64px; text-align: center; }
.sectors-page .page-title-band h1 { font-size: 40px; letter-spacing: 0.4px; }
.sectors-page .pt-eyebrow { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.sectors-page .pt-sub { max-width: 740px; margin: 18px auto 0; font-family: 'Open Sans', sans-serif; font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, 0.82); text-transform: none; }
.sectors-page .page-title-band .breadcrumbs .container { justify-content: center; display: flex; }

.mk-intro { padding: 66px 0 12px; }
.mk-intro-grid { display: grid; grid-template-columns: 0.85fr 1.3fr; gap: 56px; align-items: start; }
.mk-kicker { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.mk-intro h2 { font-size: 27px; color: var(--navy); line-height: 1.25; }
.mk-intro h2 em { color: var(--green); font-style: normal; }
.mk-lead { font-size: 18px; line-height: 1.75; color: #444; }
.mk-lead strong { color: var(--navy); font-weight: 600; }
.mk-lead .pull { color: var(--green-dark); font-style: italic; }
.mk-intro p { margin-bottom: 16px; }

.mk-trust { background: var(--band); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-top: 52px; }
.mk-trust .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-top: 34px; padding-bottom: 34px; }
.mk-trust-item { border-left: 3px solid var(--green); padding-left: 17px; }
.mk-trust-num { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 21px; color: var(--navy); line-height: 1.2; }
.mk-trust-label { font-size: 12px; line-height: 1.55; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 7px; }

.mk-index { background: #fff; border-bottom: 1px solid var(--border); }
.mk-index .container { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 22px; padding-bottom: 22px; align-items: center; }
.mk-index-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-right: 6px; }
.mk-index a { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #555; border: 1px solid var(--border); border-radius: 40px; padding: 7px 15px; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.mk-index a span { color: var(--green); font-weight: 700; font-family: 'Montserrat', sans-serif; }
.mk-index a:hover, .mk-index a.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.mk-index a:hover span, .mk-index a.active span { color: #fff; }

.mk-sector { padding: 84px 0; border-bottom: 1px solid var(--border); scroll-margin-top: 80px; }
.mk-sector:last-of-type { border-bottom: none; }
.mk-sector-head { display: grid; grid-template-columns: 190px 1fr; gap: 50px; align-items: start; }
.mk-meta { position: sticky; top: 100px; }
.mk-num { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 62px; line-height: 1; color: #dfe4e5; letter-spacing: -0.02em; }
.mk-tag { display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); border-top: 2px solid var(--green); padding-top: 12px; margin-top: 14px; }
.mk-title { font-size: 30px; color: var(--navy); margin-bottom: 12px; }
.mk-punch { font-family: 'Open Sans', sans-serif; font-style: italic; font-weight: 400; text-transform: none; color: var(--green-dark); font-size: 20px; line-height: 1.4; margin-bottom: 22px; max-width: 760px; }
.mk-desc { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 16px; max-width: 820px; }

.mk-figure { position: relative; margin: 28px 0 30px; overflow: hidden; background: var(--darker); max-width: 980px; }
.mk-figure img { display: block; width: 100%; height: 370px; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.mk-figure:hover img { transform: scale(1.04); }
.mk-figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(1, 24, 32, 0.82) 0%, rgba(1, 24, 32, 0.12) 46%, transparent 72%); pointer-events: none; }
.mk-figcap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; gap: 14px; padding: 18px 22px; }
.mk-figcap-label { color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; }
.mk-figcap-mark { color: rgba(255, 255, 255, 0.62); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }

.mk-stats { display: flex; flex-wrap: wrap; gap: 18px 40px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 32px; max-width: 820px; }
.mk-stat-num { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); }
.mk-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text); margin-top: 4px; }

.mk-types-title { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); border-bottom: 2px solid var(--green); padding-bottom: 11px; margin: 4px 0 24px; }
.mk-types-title span { color: var(--text); font-weight: 400; font-size: 11px; letter-spacing: 0.05em; white-space: nowrap; }
.mk-group { margin-bottom: 26px; }
.mk-group h4 { font-family: 'Open Sans', sans-serif; font-style: italic; font-weight: 600; text-transform: none; color: var(--navy); font-size: 16px; margin-bottom: 8px; }
.mk-group h4 b { color: var(--green); font-style: normal; margin-right: 9px; }
.mk-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.mk-list li { position: relative; font-size: 14px; line-height: 1.45; color: #555; padding: 8px 0 8px 18px; border-bottom: 1px solid var(--border); transition: padding-left 0.2s, color 0.2s; }
.mk-list li:hover { padding-left: 24px; color: var(--navy); }
.mk-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; background: var(--green); transform: rotate(45deg); }

.mk-exp { margin-top: 28px; background: var(--band); border-left: 3px solid var(--green); padding: 20px 24px; max-width: 980px; }
.mk-exp h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 9px; }
.mk-exp p { font-size: 14px; line-height: 1.7; color: #555; margin: 0; }
.mk-exp strong { color: var(--navy); font-weight: 700; }

.mk-exp--media { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; padding: 0; background: transparent; border-left: 0; align-items: stretch; }
.mk-exp--media .mk-exp-media { overflow: hidden; }
.mk-exp--media .mk-exp-media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; }
.mk-exp--media .mk-exp-text { background: var(--band); border-left: 3px solid var(--green); padding: 22px 26px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 700px) {
  .mk-exp--media { grid-template-columns: 1fr; }
  .mk-exp--media .mk-exp-media img { min-height: 200px; }
}

.mk-agencies { background: var(--navy); color: #fff; padding: 76px 0; }
.mk-agencies .container { display: grid; grid-template-columns: 0.9fr 1.6fr; gap: 54px; align-items: start; }
.mk-agencies .mk-kicker { color: var(--green); }
.mk-agencies h2 { color: #fff; font-size: 28px; line-height: 1.25; }
.mk-agencies h2 em { color: var(--green); font-style: normal; }
.mk-ag-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
.mk-ag-list li { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: #fff; text-transform: none; line-height: 1.3; }
.mk-ag-list li em { display: block; font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: 400; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-top: 5px; }

.js-anim .sectors-page .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.sectors-page .reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .sectors-page .page-title-band { padding-top: 150px; padding-bottom: 44px; }
  .sectors-page .page-title-band h1 { font-size: 32px; }
  .mk-intro-grid { grid-template-columns: 1fr; gap: 26px; }
  .mk-trust .container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mk-sector { padding: 60px 0; }
  .mk-sector-head { grid-template-columns: 1fr; gap: 22px; }
  .mk-meta { position: static; display: flex; align-items: center; gap: 18px; }
  .mk-num { font-size: 46px; }
  .mk-tag { margin-top: 0; border-top: none; padding-top: 0; }
  .mk-title { font-size: 25px; }
  .mk-punch { font-size: 18px; }
  .mk-figure img { height: 250px; }
  .mk-list { grid-template-columns: 1fr; }
  .mk-agencies .container { grid-template-columns: 1fr; gap: 30px; }
  .mk-ag-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .mk-trust .container { grid-template-columns: 1fr; }
  .sectors-page .page-title-band h1 { font-size: 27px; }
  .mk-index .container { gap: 8px; }
}

.markets-intro { padding: 30px 0 4px; }
.markets-lead { max-width: 900px; font-size: 18px; line-height: 1.75; color: #444; margin: 0 auto; text-align: center; }
.markets-intro + .services-grid-section { padding-top: 30px; }

.markets-split { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 0; align-items: center;
  min-height: 23vh; padding: 10px 0 17px; }
.markets-split .ms-side { overflow: hidden; }
.markets-split .ms-left { text-align: right; }
.markets-split .ms-q { margin: 0;
  font-family: "Franklin Gothic Demi", "ITC Franklin Gothic Demi", "Franklin Gothic Medium", "Libre Franklin", Arial, sans-serif;
  font-weight: 600; letter-spacing: 0.01em; line-height: 1.3; font-size: clamp(18px, 2vw, 28px); }

.markets-split .ms-q .ms-l { display: block; white-space: nowrap; }
.markets-split .ms-left .ms-q { padding-right: 14px; }
.markets-split .ms-right .ms-q { padding-left: 14px; }
.markets-split .ms-left .ms-q { color: #9a9b9a; }
.markets-split .ms-right .ms-q { color: var(--navy); }
.markets-split .ms-line { align-self: stretch; position: relative; }

.markets-split .ms-line::before {
  content: ''; position: absolute; left: 50%; top: 0; width: 2px; height: 100%; margin-left: -1px;
  background: var(--green); border-radius: 2px; transform-origin: 50% 0;
}

.markets-split .ms-tip {
  position: absolute; left: 50%; top: 0; width: 24px; height: 24px; margin: -26px 0 0 -12px;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: scaleX(0.69) rotate(45deg); transform-origin: 50% 50%; box-sizing: border-box;
}
.markets-split.ms-armed .ms-line::before { transform: scaleY(0); transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.markets-split.ms-armed .ms-tip { top: 0; transition: top 1s cubic-bezier(0.22, 1, 0.36, 1); }
.markets-split.ms-armed .ms-q { opacity: 0; transition: transform 1.8s cubic-bezier(.2,.7,.2,1) 0.6s, opacity 1.2s ease 0.6s; }
.markets-split.ms-armed .ms-left .ms-q { transform: translateX(60%); }
.markets-split.ms-armed .ms-right .ms-q { transform: translateX(-60%); }
.markets-split.ms-in .ms-line::before { transform: scaleY(1); }
.markets-split.ms-in .ms-tip { top: 100%; }
.markets-split.ms-in .ms-q { opacity: 1; }
.markets-split.ms-in .ms-left .ms-q, .markets-split.ms-in .ms-right .ms-q { transform: translateX(0); }
@media (max-width: 960px) {
  .markets-split { grid-template-columns: 1fr; gap: 22px 0; min-height: 0; padding: 10px 0 24px; }
  .markets-split .ms-left { text-align: left; }
  .markets-split .ms-line { width: 70px; height: 2px; justify-self: start; }
  .markets-split .ms-line::before { left: 0; top: 50%; width: 100%; height: 2px; margin: -1px 0 0 0; transform-origin: 0 50%; }
  .markets-split .ms-tip { top: 50%; left: 0; margin: -12px 0 0 -26px;
    transform: scaleY(0.69) rotate(-45deg); }
  .markets-split.ms-armed .ms-line::before { transform: scaleX(0); }
  .markets-split.ms-armed .ms-tip { top: 50%; left: 0; transition: left 1s cubic-bezier(0.22, 1, 0.36, 1); }
  .markets-split.ms-in .ms-line::before { transform: scaleX(1); }
  .markets-split.ms-in .ms-tip { left: 100%; }
  .markets-split .ms-q { font-size: 17px; padding: 0 !important; }
  .markets-split .ms-q .ms-l { white-space: normal; }
}

.work-section { padding: 15px 0 70px; scroll-margin-top: 90px; }

.work-filterbar {
  background: #fff;
  padding: 15px 0 21px; margin: 0 0 30px; text-align: center;
}
.wf-label { display: block; line-height: 1.15; margin: 0 0 16px; text-transform: none; }
.wf-title {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 30px; letter-spacing: 0.08em; color: #111;
}
.wf-btns button i { margin-right: 6px; font-size: 13.5px; color: inherit; }
.wf-break { flex-basis: 100%; height: 0; }

.wf-btns { display: flex; flex-wrap: wrap; justify-content: center; column-gap: 30px; row-gap: 3px; }
.wf-btns button {
  position: relative;
  font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 15px; line-height: 1.2; letter-spacing: 0.04em; white-space: nowrap;
  color: #55595c; background: none; border: none; border-radius: 0;
  padding: 2px 0; cursor: pointer; transition: color 0.22s ease;
}
.wf-btns button::after {
  content: '|'; position: absolute; right: -17px; top: 50%; transform: translateY(-50%);
  font-weight: 400; color: rgba(0, 0, 0, 0.22); pointer-events: none;
}
.wf-btns button:last-child::after, .wf-btns button.wf-endline::after { content: none; }
.wf-btns button:hover { color: var(--green); }
.wf-btns button.active { color: var(--green); }
.wf-btns button:hover::after, .wf-btns button.active::after { color: rgba(0, 0, 0, 0.22); }

.work-grid { column-count: 3; column-gap: 8px; }

.work-grid.is-masonry { column-count: auto; display: flex; align-items: flex-start; gap: 8px; }
.work-col { flex: 1 1 0; min-width: 0; }
.work-item { break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 8px; transition: opacity 0.45s ease, transform 0.45s ease; }
.work-item.hide { display: none; }
.work-item.fade { opacity: 0; transform: translateY(14px); }

.work-card { display: block; position: relative; overflow: hidden; background: var(--dark); }
.work-card img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.work-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(1,30,40,0.82) 0%, rgba(1,30,40,0.05) 52%, rgba(1,30,40,0) 100%);
}
.work-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(1,30,40,0.62); opacity: 0; transition: opacity 0.4s ease;
}
.work-card:hover img { transform: scale(1.07); }
.work-card:hover::after { opacity: 1; }

.work-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px 22px 22px; color: #fff; }
.work-cap .work-cat { font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: 0.07em; color: var(--green); }
.work-cap h3 { color: #fff; font-size: 16px; line-height: 1.35; text-transform: none; margin: 6px 0 0; }
.work-view {
  display: inline-block; margin-top: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700;
  text-transform: uppercase; font-size: 11px; letter-spacing: 0.06em; color: #fff;
  opacity: 0; transform: translateY(8px); transition: opacity 0.35s ease, transform 0.35s ease;
}
.work-view i { margin-left: 7px; color: var(--green); }
.work-card:hover .work-view { opacity: 1; transform: translateY(0); }

.work-empty { text-align: center; font-size: 16px; color: #555; padding: 40px 0 20px; }

@media (max-width: 992px) { .work-grid { column-count: 2; } }

@media (max-width: 900px) {
  .work-section { padding: 18px 0 60px; }
  .work-filterbar { padding: 12px 0 18px; }
  .wf-title { font-size: 25px; }
  .wf-btns { column-gap: 24px; }
  .wf-btns button { font-size: 13.5px; }
  .wf-btns button i { font-size: 12.5px; margin-right: 6px; }
  .wf-btns button::after { right: -14px; }
}
@media (max-width: 600px) {
  .work-grid { column-count: 1; }
  .work-filterbar { padding: 10px 0 16px; }
  .wf-label { margin-bottom: 12px; }
  .wf-title { font-size: 21px; letter-spacing: 0.06em; }
  .wf-btns { column-gap: 18px; }
  .wf-btns button { font-size: 11.5px; letter-spacing: 0.03em; padding: 2px 0; }
  .wf-btns button i { font-size: 11px; margin-right: 5px; }
  .wf-btns button::after { right: -11px; }
}

.proj-award { display: flex; gap: 18px; align-items: flex-start; background: var(--band); border-left: 4px solid var(--green); padding: 22px 24px; margin: 14px 0 6px; }
.proj-award i { color: var(--green); font-size: 30px; margin-top: 3px; flex-shrink: 0; }
.proj-award h4 { font-size: 15px; text-transform: none; margin-bottom: 6px; }
.proj-award p { font-size: 13.5px; margin: 0; }
.proj-award .award-courtesy { display: block; font-style: italic; color: #888; font-size: 12px; margin-top: 4px; }

.proj-award--hero {
  align-items: center; gap: 24px; margin: 0 0 22px; padding: 20px 26px;
  background: linear-gradient(90deg, rgba(33,179,84,0.09) 0%, var(--band) 55%);
  border-left-width: 5px; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.proj-award--hero .pa-mark { flex: none; display: flex; align-items: center; justify-content: center; width: 148px; padding: 10px 12px; background: #fff; border: 1px solid #e6e6e6; }
.proj-award--hero .pa-mark img { display: block; width: 100%; height: auto; }
.proj-award--hero .pa-mark i { color: var(--green); font-size: 34px; }
.proj-award--hero .pa-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-family: 'Montserrat', sans-serif; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; background: var(--navy); padding: 4px 10px; margin-bottom: 9px; }
.proj-award--hero .pa-eyebrow i { font-size: 12px; color: #fff; }
.proj-award--hero h4 { font-family: 'Montserrat', sans-serif; font-size: 19px; line-height: 1.25; color: var(--head); margin: 0 0 6px; text-transform: none; }
.proj-award--hero p { font-size: 13px; line-height: 1.55; color: #555; }
@media (max-width: 700px) {
  .proj-award--hero { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px; }
  .proj-award--hero .pa-mark { width: 132px; }
  .proj-award--hero h4 { font-size: 17px; }
}

.sb-award > .img-guard, .sb-award > .sb-award-logo { flex: 0 0 74px; width: 74px; margin-top: 2px; }
.sb-award-logo { width: 74px; height: auto; }

.proj-stage .ps-main-video { width: 100%; height: 430px; object-fit: cover; display: block; background: #000; }

.proj-stage .ps-main-img[hidden], .proj-stage .ps-main-video[hidden] { display: none; }
.ps-thumb--video { position: relative; }
.ps-thumb--video .ps-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(1, 60, 79, 0.42); color: #fff; font-size: 15px; pointer-events: none;
}
.ps-thumb--video .ps-play i { margin-left: 2px; }
.ps-thumb--video:hover .ps-play, .ps-thumb--video.is-active .ps-play { background: rgba(1, 60, 79, 0.2); }
.proj-video-cap { font-size: 12px; color: #888; font-style: italic; margin: 8px 0 0; }

.sb-award { display: flex; gap: 12px; align-items: flex-start; }
.sb-award + .sb-award { margin-top: 14px; padding-top: 14px; border-top: 1px dotted #d8d8d8; }
.sb-award > i { color: var(--green); font-size: 22px; line-height: 1; margin-top: 2px; flex-shrink: 0; }
.sb-award strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 12.5px; color: var(--head); line-height: 1.3; margin-bottom: 5px; }
.sb-award-org { display: block; font-size: 11.5px; color: #555; line-height: 1.45; }
.sb-award .award-courtesy { display: inline; font-style: italic; color: #888; font-size: 10.5px; }

.project-page .page-grid { padding-top: 0; }

.project-page main { padding-top: 33px; }

@media (max-width: 992px) {
  .project-page .sidebar { display: contents; }
  .project-page .page-grid { row-gap: 0; }
  .project-page .sidebar .widget { order: 4; }
  .project-page .sidebar .widget:first-child { order: 1; }
  .project-page .sidebar .widget-awards { order: 2; }
  .project-page main { order: 3; padding-top: 0; }
}

.proj-slider { margin-bottom: 4px; }
.proj-stage { position: relative; overflow: hidden; background: var(--dark); }
.proj-stage .ps-main-img { width: 100%; height: 430px; object-fit: cover; display: block; }

.proj-stage.ps-fit .ps-main-img { object-fit: contain; height: 560px; background: #fff; }
@media (max-width: 767px) { .proj-stage.ps-fit .ps-main-img { height: 340px; } }
.proj-stage.ps-fit .ps-thumb img, .ps-thumbs .ps-thumb img { object-fit: cover; }

.proj-stage .ps-main-img.ps-contain { object-fit: contain; background: #fff; }

.proj-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin: 17px 0 12px;
}

.proj-header .ps-title { margin: 0; flex: 1 1 0; min-width: 0; }

.proj-quicknav {
  display: flex; flex-direction: column; align-items: stretch; gap: 10px;
  flex: 0 0 auto;
}
.pqn-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 6px 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pqn-btn i { font-size: 12px; }

.pqn-back { color: var(--head); background: #fff; border: 1.5px solid var(--border); }
.pqn-back i { color: var(--green); transition: transform 0.18s ease; }
.pqn-back:hover { color: var(--navy); border-color: var(--green); box-shadow: 0 6px 16px rgba(1, 60, 79, 0.10); transform: translateY(-2px); }
.pqn-back:hover i { transform: translateX(-3px); }

.pqn-sector { color: #fff; background: var(--green); border: 1.5px solid var(--green); }
.pqn-sector:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; box-shadow: 0 8px 20px rgba(33, 179, 84, 0.32); transform: translateY(-2px); }
.pqn-label {
  font-size: 8.5px; letter-spacing: 0.08em; padding: 2px 5px;
  background: rgba(255, 255, 255, 0.22); color: #fff;
}

.ps-title {
  margin: 0 0 14px; color: #6e6e6e;
  font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 30px; letter-spacing: 0.02em; line-height: 1.2;
}

.ps-conf-badge {
  display: flex; width: -moz-fit-content; width: fit-content; align-items: center; gap: 7px;
  margin-bottom: 13px; padding: 5px 11px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.09em; line-height: 1;
  color: #fff; background: var(--navy); border-radius: 2px;
}
.ps-conf-badge i { font-size: 11px; color: var(--green); }

.ps-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 56px; border: none; cursor: pointer; padding: 0;
  background: rgba(220, 220, 220, 0.32); color: #fff; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.ps-arrow:hover { background: rgba(220, 220, 220, 0.6); color: #fff; }
.ps-prev { left: 0; }
.ps-next { right: 0; }

.proj-stage:has(.ps-main-img.ps-contain:not([hidden])) .ps-arrow,
.proj-stage.ps-fit .ps-arrow { background: rgba(1, 60, 79, 0.55); }
.proj-stage:has(.ps-main-img.ps-contain:not([hidden])) .ps-arrow:hover,
.proj-stage.ps-fit .ps-arrow:hover { background: rgba(1, 60, 79, 0.8); }

.ps-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.ps-thumb { flex: 1; padding: 0; border: 2px solid transparent; background: none; cursor: pointer; overflow: hidden; line-height: 0; }
.ps-thumb img { width: 100%; height: 72px; object-fit: cover; opacity: 0.6; transition: opacity 0.2s ease; }
.ps-thumb:hover img { opacity: 1; }
.ps-thumb.is-active { border-color: var(--green); }
.ps-thumb.is-active img { opacity: 1; }

.proj-fab-tab {
  position: fixed; top: 75%; transform: translateY(-50%); z-index: 80;
  display: flex; align-items: center; justify-content: center;
  writing-mode: vertical-rl; white-space: nowrap;
  width: 28px; box-sizing: border-box;
  background: rgba(27, 31, 33, 0.3); color: #fff;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  padding: 16px 0;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; line-height: 1;
  box-shadow: 0 6px 18px rgba(1, 30, 40, 0.18);
  transition: background 0.2s ease;
}
.proj-fab-tab:hover { background: rgba(27, 31, 33, 0.8); }
.proj-fab-tab i { font-size: 13px; }
.proj-fab-tab > *:not(.proj-fab-name) + *:not(.proj-fab-name) { margin-top: 9px; }

.proj-fab-name {
  max-height: 0; overflow: hidden; opacity: 0;
  font-weight: 400; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.9);
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.proj-fab-tab:hover .proj-fab-name { max-height: 280px; opacity: 1; margin-top: 9px; }
.proj-fab-short { display: none; }
.proj-fab-prev { left: 0; border-radius: 0 8px 8px 0; }
.proj-fab-next { right: 0; border-radius: 8px 0 0 8px; }

@media (max-width: 600px) {
  .proj-fab-tab {
    writing-mode: vertical-rl; white-space: nowrap;
    width: 26px; box-sizing: border-box; padding: 12px 0; background: rgba(27, 31, 33, 0.5);
  }
  .proj-fab-tab > *:not(.proj-fab-name) + *:not(.proj-fab-name) { margin-top: 6px; }
  .proj-fab-label, .proj-fab-name { display: none; }
  .proj-fab-short { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; }
  .proj-fab-tab i { font-size: 13px; }
}

.ph { background: #fff3cd; color: #8a6d00; font-style: italic; font-size: 0.92em; padding: 0 4px; border-radius: 2px; }

@media (max-width: 600px) {
  .proj-stage .ps-main-img, .proj-stage .ps-main-video { height: 260px; }
  .ps-title { font-size: 19px; }
  .proj-header { flex-direction: column-reverse; align-items: stretch; gap: 14px; margin: 11px 0 20px; }
  .proj-quicknav { width: 100%; flex-direction: row; gap: 8px; }
  .pqn-btn { flex: 1; padding: 8px 10px; font-size: 11px; }
  .ps-thumb img { height: 54px; }

  .project-page .sb-award-org,
  .project-page .sb-award .award-courtesy { display: none; }
}

.energy-saved { margin: 38px 0 44px; padding: 34px 36px; background: linear-gradient(180deg, #f5faf6, #eef5f0); border: 1px solid #e1ece5; border-radius: 14px; }
.es-eyebrow { color: var(--green); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.es-grid { display: grid; grid-template-columns: 210px 1fr; gap: 34px; align-items: center; }
.es-gauge { width: 210px; }
.es-leaf { width: 100%; height: auto; display: block; overflow: visible; filter: drop-shadow(0 8px 16px rgba(17, 131, 58, 0.18)); }
.es-leaf-empty { fill: #e7efe9; }
.es-leaf-outline { fill: none; stroke: #13863c; stroke-width: 2.2; }
.es-leaf-vein { fill: none; stroke: rgba(255, 255, 255, 0.62); stroke-width: 3.2; stroke-linecap: round; }
.es-liquid-body { fill: url(#esLiquid); }
.es-wave { fill: url(#esLiquid); }
.es-wave-back { opacity: 0.45; animation: es-wave-move 5.2s linear infinite reverse; }
.es-wave-front { opacity: 0.9; animation: es-wave-move 3.4s linear infinite; }
@keyframes es-wave-move { from { transform: translateX(0); } to { transform: translateX(220px); } }
.es-figure { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--head); line-height: 1; font-size: 46px; letter-spacing: -0.01em; }
.es-unit { font-size: 22px; color: var(--green); }
.es-label { margin: 12px 0 22px; color: #56606a; font-size: 14.5px; line-height: 1.6; max-width: 60ch; }
.es-label .brand { color: inherit; }
.es-equiv { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 14px; padding: 0; }
.es-equiv li { flex: 1 1 150px; background: #fff; border: 1px solid #e3ece6; border-radius: 10px; padding: 14px 16px; display: flex; flex-direction: column; gap: 2px; }
.es-equiv i { color: var(--green); font-size: 18px; margin-bottom: 6px; }
.es-eq-val { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 22px; color: var(--head); }
.es-eq-approx { color: #9aa7ae; margin-right: 1px; }
.es-equiv small { color: #6b757d; font-size: 12.5px; line-height: 1.35; }
.es-foot { color: #9aa7ae; font-size: 11.5px; margin: 0; }
@media (max-width: 680px) {
  .energy-saved { padding: 26px 22px; }
  .es-grid { grid-template-columns: 1fr; gap: 22px; justify-items: center; }
  .es-gauge { width: 170px; }
  .es-equiv { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .es-wave-front, .es-wave-back { animation: none; }
}

@media print {
  @page { size: letter portrait; margin: 0.4in; }

  body.project-page {
    background: #fff !important;
    font-size: 8.5pt !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .project-page .topbar,
  .project-page .site-header,
  .project-page .offcanvas,
  .project-page .oc-overlay,
  .project-page .nav-toggle,
  .project-page .page-title-band,
  .project-page .proj-quicknav,
  .project-page .punchline,
  .project-page .ps-thumbs,
  .project-page .ps-arrow,
  .project-page .approach img,
  .project-page .proj-fab-tab,
  .project-page .cta-band,
  .project-page footer.site-footer,
  .project-page .footer-bottom,
  .project-page .back-to-top,
  .project-page #site-footer,
  .project-page .sidebar > .widget + .widget {
    display: none !important;
  }

  .project-page .container { max-width: none !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }
  .project-page .page-grid { display: block !important; }
  .project-page .sidebar,
  .project-page main { width: 100% !important; float: none !important; margin: 0 !important; padding: 0 !important; }

  .project-page .proj-header { display: block !important; margin: 0 0 0.12in !important; padding: 0 !important; border: 0 !important; }
  .project-page .ps-title { font-size: 15pt !important; margin: 0 !important; }

  .project-page .sidebar > .widget:first-child { margin: 0 0 0.12in !important; padding: 0 !important; background: none !important; border: 0 !important; box-shadow: none !important; }
  .project-page .sidebar > .widget:first-child .widget-title { font-size: 10pt !important; margin: 0 0 4pt !important; }
  .project-page .fact-list { display: flex !important; flex-wrap: wrap !important; gap: 2pt 16pt !important; margin: 0 !important; padding: 0 !important; }
  .project-page .fact-list li { border: 0 !important; padding: 0 !important; margin: 0 !important; display: inline-flex !important; gap: 4pt; }
  .project-page .fact-list li > span:first-child { font-weight: 700; }
  .project-page .fact-list li > span:first-child::after { content: ":"; }

  .project-page .proj-slider { margin: 0 0 0.12in !important; }
  .project-page .proj-stage { margin: 0 !important; }
  .project-page .ps-main-img { width: 100% !important; max-height: 1.5in !important; object-fit: cover !important; display: block !important; }

  .project-page main p { margin: 0 0 4pt !important; line-height: 1.26 !important; }
  .project-page .section-heading,
  .project-page main h3,
  .project-page main h4.widget-title { margin: 5pt 0 2pt !important; font-size: 10.5pt !important; }
  .project-page .approach { display: block !important; }
  .project-page .approach h3 { margin: 0 0 3pt !important; }

  .project-page .check-list { columns: 2; column-gap: 24pt; margin: 3pt 0 0 !important; }
  .project-page .check-list li { break-inside: avoid; margin: 0 0 2pt !important; line-height: 1.22 !important; }
}

.eq-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 26px 0 34px; }
.eq-card { border: 1px solid var(--border); border-top: 3px solid var(--green); background: #fff;
           padding: 20px 13px 17px; text-align: center; }
.eq-icon { width: 56px; height: 56px; display: block; margin: 0 auto 13px; }
.eq-num { font-family: 'Montserrat', sans-serif; font-size: 25px; font-weight: 700; line-height: 1;
          color: var(--navy); }
.eq-label { font-family: 'Montserrat', sans-serif; font-size: 11.5px; font-weight: 600; letter-spacing: .5px;
            text-transform: uppercase; color: var(--head); margin-top: 9px; }
.eq-sub { font-size: 11.5px; line-height: 1.55; color: var(--text); margin-top: 6px; }
.mta-lines { display: flex; flex-wrap: wrap; gap: 10px; }
.mta-bullet { width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center;
              justify-content: center; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
              font-size: 27px; font-weight: 700; line-height: 1; }
.mta-table-wrap { overflow-x: auto; margin: 6px 0 8px; }
.mta-table { width: 100%; min-width: 600px; border-collapse: collapse; font-size: 13.5px; }
.mta-table th { background: var(--navy); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 11px;
                letter-spacing: .05em; text-transform: uppercase; padding: 11px 12px; text-align: left; }
.mta-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: #555; vertical-align: middle; }
.mta-table td.mta-st { color: var(--head); font-weight: 600; }
.mta-table .mta-lines { gap: 5px; flex-wrap: nowrap; }
.mta-table .mta-bullet { width: 26px; height: 26px; font-size: 15px; flex: 0 0 26px; }
.mta-table td.mta-hv-yes { color: var(--green); font-weight: 700; }
.mta-table tfoot td { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy);
                     border-bottom: 0; border-top: 2px solid var(--navy); }
.sb-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sb-tile { border: 1px solid var(--border); border-top: 3px solid var(--green); background: #fff;
           padding: 14px 8px 12px; text-align: center; }
.sb-tile svg { width: 40px; height: 40px; display: block; margin: 0 auto 9px; }
.sb-tile-num { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; line-height: 1.1;
               color: var(--navy); }
.sb-news { display: block; background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--green);
           padding: 14px 16px; }
.sb-news-logo { display: block; height: 30px; width: auto; margin-bottom: 10px; }
.sb-news-title { display: block; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
                 line-height: 1.4; color: var(--navy); }
.sb-news-cta { display: block; font-size: 12px; color: var(--text); margin-top: 8px; transition: color .2s; }
.sb-news:hover .sb-news-cta { color: var(--green); }
.sb-tile-label { font-family: 'Montserrat', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: .4px;
                 line-height: 1.35; text-transform: uppercase; color: var(--head); margin-top: 6px; }

.eq-note { font-size: 12.5px; line-height: 1.7; color: var(--text); opacity: .82;
           margin: -18px 0 30px; padding-left: 12px; border-left: 3px solid var(--border); }
@media (max-width: 992px) { .eq-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .eq-strip { grid-template-columns: repeat(2, 1fr); gap: 11px; }
                            .eq-num { font-size: 21px; } }
