@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');
:root {
  --navy:#08245d;
  --blue:#0769df;
  --purple:#32137d;
  --ink:#102653;
  --muted:#647293;
  --line:#d9e4f2;
  --pale:#f5f9ff;
  --white:#fff
}
html {
  scroll-behavior:smooth
}
body {
  width:100%;
  margin:0;
  overflow-x:hidden;
  font-family:'DM Sans',Arial,sans-serif;
  color:var(--ink);
  background:#fff
}
a {
  color:inherit;
  text-decoration:none
}
img {
  width:100%;
  height:100%;
  object-fit:cover
}
/* Shared full-width navigation */
.site-header {
  position:relative;
  z-index:20;
  width:100%;
  background:#fff;
  border-bottom:1px solid #edf1f7
}
.nav-shell {
  height:76px;
  display:flex;
  align-items:center;
  gap:28px;
  padding:0;
  background:transparent
}
.logo {
  width:121px;
  height:auto;
  object-fit:contain
}
.main-nav {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:27px;
  flex:1
}
.main-nav a {
  font-size:14px;
  font-weight:600;
  color:#263c68;
  padding:27px 0 24px;
  position:relative;
  white-space:nowrap
}
.main-nav a.active,.main-nav a:hover {
  color:var(--blue)
}
.main-nav a.active:after {
  content:'';
  position:absolute;
  left:50%;
  bottom:16px;
  width:22px;
  height:2px;
  transform:translateX(-50%);
  border-radius:2px;
  background:var(--blue)
}
.main-nav .button {
  padding:11px 20px;
  margin-left:4px
}
.main-nav .button:after {
  display:none
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1.5px solid var(--blue);
  border-radius:8px;
  padding:12px 21px;
  font-size:14px;
  font-weight:700;
  line-height:1.15;
  transition:transform .25s,box-shadow .25s,background .25s;
  background:#fff;
  color:var(--blue)
}
.button:hover {
  transform:translateY(-2px);
  box-shadow:0 9px 20px rgba(7,105,223,.16)
}
.button.primary {
  background:var(--blue);
  color:#fff
}
.button.dark {
  background:linear-gradient(100deg,#086cde,#3728c9);
  border-color:transparent;
  color:#fff
}
.menu-toggle {
  display:none;
  border:0;
  background:#edf4ff;
  color:var(--blue);
  border-radius:8px;
  width:43px;
  height:43px;
  font-size:22px
}
/* Homepage */
.hero {
  position:relative;
  min-height:680px;
  width:100%;
  max-width:none;
  background:#e5effb;
  overflow:hidden;
  display:flex;
  align-items:center
}
.hero .hero-bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .5s ease
}
.hero:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.91) 33%,rgba(255,255,255,.3) 58%,rgba(7,52,121,.08) 100%)
}
.hero-content {
  position:relative;
  z-index:2;
  padding:12px 0;
  max-width:610px
}
.eyebrow {
  color:var(--blue);
  font-weight:700;
  font-size:11px;
  letter-spacing:2.6px;
  text-transform:uppercase
}
.hero-title,.section-title {
  font-family:Manrope,Arial,sans-serif;
  letter-spacing:-1.6px;
  line-height:1.11;
  margin:13px 0;
  color:var(--navy)
}
.hero-title {
  font-size:56px;
  max-width:610px
}
.hero-title .accent {
  color:var(--blue)
}
.hero-copy {
  color:#4c5e82;
  line-height:1.6;
  font-size:16px;
  max-width:515px;
  margin:0 0 27px
}
.hero-actions {
  display:flex;
  gap:13px;
  flex-wrap:wrap
}
.assurance {
  width:100%;
  max-width:none;
  background:#fff;
  padding:30px 0
}
.assurance-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0
}
.assurance-item {
  display:flex;
  align-items:center;
  gap:15px;
  padding:0 40px;
  border-right:1px solid var(--line)
}
.assurance-item:first-child {
  padding-left:0
}
.assurance-item:last-child {
  padding-right:0;
  border:0
}
.round-icon {
  width:53px;
  height:53px;
  flex:none;
  border-radius:50%;
  background:#edf5ff;
  display:grid;
  place-items:center;
  color:var(--blue);
  font-size:23px
}
.assurance-item strong {
  font-size:14px
}
.assurance-item span {
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:2px
}
.section {
  width:100%;
  max-width:none;
  padding:82px 0
}
.section.pale {
  background:linear-gradient(180deg,#f7fbff 0%,#fff 100%)
}
.section-title {
  font-size:36px;
  max-width:760px
}
.section-copy {
  font-size:15px;
  line-height:1.65;
  color:var(--muted);
  max-width:640px
}
.section-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:32px;
  margin-bottom:31px
}
.service-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px
}
.service-card {
  min-height:196px;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:#fff;
  position:relative;
  transition:transform .3s,box-shadow .3s
}
.service-card:hover {
  transform:translateY(-5px);
  box-shadow:0 16px 30px rgba(10,38,92,.12)
}
.service-card.featured {
  color:#fff;
  border:0
}
.service-card img {
  height:100%;
  width:100%;
  object-fit:cover;
  position:absolute;
  inset:0
}
.service-card.featured:after,.services-page-grid .service-card:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(0,24,72,.88),rgba(0,24,72,.05) 74%)
}
.service-content {
  height:100%;
  position:relative;
  z-index:1;
  padding:19px;
  display:flex;
  flex-direction:column;
  justify-content:end
}
.service-card h3 {
  font-family:Manrope;
  margin:0;
  font-size:16px;
  line-height:1.25
}
.service-card p {
  font-size:12px;
  margin:4px 34px 0 0;
  color:inherit;
  opacity:.92
}
.service-card .arrow {
  position:absolute;
  right:14px;
  bottom:14px;
  border-radius:50%;
  display:grid;
  place-items:center;
  width:27px;
  height:27px;
  background:#fff;
  color:var(--blue)
}
.service-card:not(.featured) {
  min-height:126px
}
.service-card:not(.featured) .service-content {
  justify-content:center;
  padding-left:20px
}
.about-grid {
  display:grid;
  grid-template-columns:1.04fr 1fr 1fr;
  gap:16px;
  align-items:stretch
}
.about-image {
  min-height:380px;
  overflow:hidden;
  border-radius:8px;
  position:relative
}
.about-image:after {
  content:'COMMITMENT\A IN EVERY OPERATION';
  white-space:pre;
  position:absolute;
  bottom:25px;
  left:25px;
  color:#fff;
  letter-spacing:4px;
  font-size:10px;
  font-weight:bold
}
.stack-cards {
  display:grid;
  gap:14px
}
.info-card {
  background:#fff;
  border-radius:8px;
  padding:23px 22px 20px;
  box-shadow:0 8px 25px rgba(20,45,90,.07);
  display:flex;
  gap:15px;
  align-items:flex-start
}
.info-card i {
  font-style:normal;
  color:var(--blue);
  font-size:25px
}
.info-card h3 {
  font-family:Manrope;
  font-size:14px;
  margin:0 0 3px
}
.info-card p {
  font-size:12px;
  color:var(--muted);
  margin:0;
  line-height:1.45
}
/* Full-width supporting page heroes */
.page-hero {
  position:relative;
  isolation:isolate;
  min-height:355px;
  width:100%;
  max-width:none;
  padding:88px 0 60px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.98) 39%,rgba(255,255,255,.18) 70%,rgba(255,255,255,.1)),url('../images/placeholders/image2.png') right center/62% 100% no-repeat,#eff7ff
}
.page-hero:after {
  content:'';
  position:absolute;
  z-index:-1;
  width:620px;
  height:620px;
  border:92px solid rgba(11,105,223,.07);
  border-radius:50%;
  right:-285px;
  top:-350px
}
.page-hero .container {
  position:relative;
  z-index:1
}
.page-hero h1 {
  font:700 48px/1.12 Manrope;
  margin:14px 0;
  color:var(--navy);
  letter-spacing:-1.5px;
  max-width:720px
}
.breadcrumbs {
  font-size:13px;
  color:var(--muted)
}
.breadcrumbs a {
  color:var(--blue)
}
.page-hero--about {
  background-image:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 36%,rgba(255,255,255,.22) 66%,rgba(255,255,255,.04)),url('../images/placeholders/image3.jpeg')
}
.page-hero--services {
  background-image:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 38%,rgba(255,255,255,.18) 66%,rgba(255,255,255,.05)),url('../images/placeholders/image12.jpeg')
}
.page-hero--projects {
  background-image:linear-gradient(90deg,rgba(255,255,255,.97) 0%,rgba(255,255,255,.78) 38%,rgba(255,255,255,.05) 77%),url('../images/placeholders/hero-offshore-01.png')
}
.page-hero--faq {
  background-image:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 44%,rgba(255,255,255,.2) 72%,rgba(255,255,255,.08)),url('../images/placeholders/image2.png')
}
.page-hero--contact {
  background-image:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.98) 39%,rgba(255,255,255,.15) 66%,rgba(255,255,255,.05)),url('../images/placeholders/image2.png')
}
/* About, services and detail layouts */
.about-intro {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center
}
.framed-image {
  height:440px;
  border-radius:9px;
  overflow:hidden
}
.values-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px
}
.value-card {
  padding:29px;
  background:#fff;
  border-radius:9px;
  border:1px solid var(--line)
}
.value-card .round-icon {
  margin-bottom:18px
}
.value-card h3 {
  font:700 18px Manrope;
  margin:0 0 10px
}
.value-card p,.prose {
  font-size:15px;
  line-height:1.7;
  color:var(--muted)
}
.services-page-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px
}
.services-page-grid .service-card {
  min-height:300px
}
.services-page-grid .service-card .service-content {
  justify-content:end;
  color:#fff;
  padding:21px
}
.detail-hero {
  min-height:560px
}
.detail-hero .hero-content {
  padding-top:10px
}
.detail-body {
  display:grid;
  grid-template-columns:minmax(0,1.65fr) minmax(300px,.65fr);
  gap:70px
}
.detail-body h2 {
  font:700 34px/1.15 Manrope;
  margin-top:0
}
.detail-body h3 {
  font:700 21px Manrope;
  margin:32px 0 10px
}
.detail-side {
  background:#f6f9fe;
  border-radius:9px;
  padding:30px;
  height:max-content
}
.detail-side h3 {
  margin-top:0
}
.detail-side a {
  display:block;
  padding:13px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
  color:#526080
}
.detail-side a.active {
  color:var(--blue);
  font-weight:bold
}
.detail-feature {
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px
}
.detail-feature img {
  width:100%;
  height:245px;
  object-fit:cover;
  border-radius:8px
}
.detail-feature img:first-child {
  grid-column:span 2;
  height:350px
}
.bullet-list {
  padding-left:20px;
  color:var(--muted);
  font-size:15px;
  line-height:1.8
}
/* Project gallery, FAQ and contact */
.project {
  display:grid;
  grid-template-columns:1fr 1.12fr;
  gap:58px;
  align-items:center;
  padding:62px 0;
  border-bottom:1px solid var(--line)
}
.project:nth-child(even) .project-images {
  order:2
}
.project-number {
  font:700 12px Manrope;
  letter-spacing:2px;
  color:var(--blue)
}
.project h2 {
  font:700 32px/1.17 Manrope;
  margin:10px 0
}
.project-meta {
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
  margin:15px 0
}
.project-meta b {
  color:var(--ink)
}
.project-images {
  display:grid;
  grid-template-columns:1.7fr repeat(2,1fr);
  grid-template-rows:160px 160px;
  gap:10px
}
.project-images a:first-child {
  grid-row:span 2
}
.project-images a:last-child {
  grid-column:span 2
}
.project-images img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:7px
}
.faq-layout {
  display:grid;
  grid-template-columns:minmax(0,1.7fr) 350px;
  gap:65px
}
.accordion-item {
  border:1px solid var(--line);
  border-radius:9px;
  margin-bottom:11px;
  padding:0 20px
}
.accordion-button {
  width:100%;
  text-align:left;
  border:0;
  background:none;
  padding:21px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--ink);
  font:700 16px Manrope;
  cursor:pointer
}
.accordion-button span {
  color:var(--blue);
  font-size:24px
}
.accordion-content {
  display:none;
  padding:0 45px 20px 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7
}
.accordion-item.open .accordion-content {
  display:block
}
.help-panel {
  border:1px solid #d4e1f2;
  border-radius:12px;
  padding:34px;
  background:#f4f8fe;
  color:var(--ink);
  height:max-content
}
.help-panel h2 {
  font:700 28px Manrope;
  margin-top:0
}
.help-panel p {
  font-size:15px;
  line-height:1.65;
  color:var(--muted)
}
.contact-cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:-46px;
  position:relative;
  z-index:2
}
.contact-card {
  background:#fff;
  border-radius:10px;
  padding:27px;
  box-shadow:0 10px 28px rgba(20,45,90,.1);
  border:1px solid #e2eaf5
}
.contact-card h3 {
  font:700 17px Manrope;
  margin:12px 0 7px
}
.contact-card p {
  font-size:14px;
  color:var(--muted);
  margin:0;
  line-height:1.5
}
.enquiry-grid {
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:72px;
  align-items:start
}
.enquiry-form {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff
}
.enquiry-form label {
  font-size:13px;
  font-weight:700
}
.enquiry-form input,.enquiry-form textarea,.enquiry-form select {
  margin-top:7px;
  width:100%;
  border:1px solid #d6e0ef;
  border-radius:6px;
  padding:12px;
  background:#fff;
  color:var(--ink)
}
.enquiry-form textarea {
  min-height:150px
}
.enquiry-form .full {
  grid-column:1/-1
}
.industrial-strip {
  width:100%;
  max-width:none;
  height:345px;
  overflow:hidden
}
.industrial-strip img {
  width:100%;
  height:100%;
  object-fit:cover
}
/* Shared full-width CTA and footer */
.cta-strip {
  width:100%;
  max-width:none;
  color:#fff;
  background:#0c64bb;
  position:relative;
  overflow:hidden
}
.cta-strip img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.48
}
.cta-strip:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(6,69,140,.9),rgba(8,101,190,.6))
}
.cta-content {
  position:relative;
  z-index:1;
  display:flex;
  min-height:155px;
  align-items:center;
  justify-content:center;
  gap:76px
}
.cta-content h2 {
  font-family:Manrope;
  font-size:29px;
  line-height:1.15;
  margin:0
}
.cta-content p {
  margin:4px 0 0;
  font-size:15px
}
.cta-content .button {
  border-color:#fff;
  color:var(--blue);
  min-width:150px
}
.site-footer {
  width:100%;
  max-width:none;
  background:#fff;
  padding:31px 0;
  border-top:1px solid #edf1f7
}
.footer-inner {
  display:grid;
  grid-template-columns:1.55fr 1.3fr auto;
  gap:30px;
  align-items:center
}
.footer-copy {
  display:flex;
  align-items:center;
  gap:24px;
  font-size:12px;
  color:var(--muted)
}
.footer-links {
  display:flex;
  gap:18px;
  justify-content:center;
  font-size:12px;
  color:#4d5d7d
}
.socials {
  display:flex;
  gap:11px
}
.socials a {
  width:27px;
  height:27px;
  border-radius:50%;
  background:#eef4fb;
  display:grid;
  place-items:center;
  font-size:12px;
  color:var(--navy)
}
@media(max-width:1100px) {
  .main-nav {
    gap:18px
  }
  .main-nav a {
    font-size:13px
  }
  .hero {
    min-height:610px
  }
  .hero-title {
    font-size:50px
  }
  .service-grid,.services-page-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .about-grid {
    grid-template-columns:1fr 1fr
  }
  .about-grid>.stack-cards {
    grid-column:span 2;
    grid-template-columns:repeat(3,1fr)
  }
  .about-intro,.detail-body,.faq-layout,.enquiry-grid {
    grid-template-columns:1fr;
    gap:42px
  }
  .detail-side {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0
  }
  .detail-side h3 {
    grid-column:1/-1
  }
  .values-grid {
    grid-template-columns:1fr
  }
  .footer-inner {
    grid-template-columns:1fr;
    justify-items:center
  }
  .footer-copy {
    flex-direction:column;
    text-align:center;
    gap:10px
  }
  .project {
    gap:34px
  }
  .project-images {
    grid-template-rows:145px 145px
  }
  .page-hero h1 {
    font-size:44px
  }
}
@media(max-width:760px) {
  .container {
    width:min(100% - 32px,1320px)
  }
  .site-header {
    position:relative
  }
  .nav-shell {
    height:67px;
    padding:0
  }
  .logo {
    width:103px
  }
  .menu-toggle {
    display:block;
    margin-left:auto
  }
  .main-nav {
    display:none;
    position:absolute;
    top:62px;
    left:16px;
    right:16px;
    background:#fff;
    border-radius:12px;
    padding:9px 18px;
    box-shadow:0 13px 25px rgba(10,40,90,.15);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  .main-nav.open {
    display:flex
  }
  .main-nav a {
    padding:11px 2px
  }
  .main-nav a.active:after {
    left:0;
    right:auto;
    bottom:5px;
    transform:none
  }
  .main-nav .button {
    margin:7px 0 4px
  }
  .hero {
    min-height:575px
  }
  .hero:after {
    background:linear-gradient(90deg,rgba(255,255,255,.97),rgba(255,255,255,.75))
  }
  .hero-content {
    padding:34px 0
  }
  .hero-title {
    font-size:38px;
    letter-spacing:-1.2px
  }
  .hero-copy {
    font-size:15px
  }
  .assurance-grid {
    grid-template-columns:1fr
  }
  .assurance-item,.assurance-item:first-child {
    border-right:0;
    border-bottom:1px solid var(--line);
    padding:0 0 16px;
    margin-bottom:16px
  }
  .assurance-item:last-child {
    border-bottom:0;
    margin:0
  }
  .section {
    padding:58px 0
  }
  .section-title {
    font-size:30px
  }
  .section-head {
    display:block
  }
  .section-head .section-copy {
    margin-top:15px
  }
  .service-grid,.services-page-grid {
    grid-template-columns:1fr
  }
  .service-card,.services-page-grid .service-card {
    min-height:225px
  }
  .service-card:not(.featured) {
    min-height:180px
  }
  .about-grid {
    grid-template-columns:1fr
  }
  .about-grid>.stack-cards {
    grid-column:auto;
    grid-template-columns:1fr
  }
  .about-image {
    min-height:310px
  }
  .page-hero {
    min-height:310px;
    padding:55px 0 42px;
    background-size:auto 100%;
    background-position:74% center
  }
  .page-hero h1 {
    font-size:35px;
    max-width:80%
  }
  .about-intro {
    gap:28px
  }
  .framed-image {
    height:315px
  }
  .detail-hero {
    min-height:465px
  }
  .detail-body h2 {
    font-size:30px
  }
  .detail-side {
    display:block
  }
  .detail-feature {
    grid-template-columns:1fr
  }
  .detail-feature img,.detail-feature img:first-child {
    grid-column:auto;
    height:250px
  }
  .project {
    grid-template-columns:1fr;
    padding:46px 0
  }
  .project:nth-child(even) .project-images {
    order:0
  }
  .project-images {
    grid-template-rows:130px 130px
  }
  .faq-layout {
    gap:30px
  }
  .accordion-item {
    padding:0 16px
  }
  .contact-cards {
    grid-template-columns:1fr;
    margin-top:0;
    padding-top:26px
  }
  .enquiry-form {
    grid-template-columns:1fr;
    padding:20px
  }
  .enquiry-form .full {
    grid-column:auto
  }
  .industrial-strip {
    height:240px
  }
  .cta-content {
    min-height:190px;
    display:block;
    padding:35px 0
  }
  .cta-content h2 {
    font-size:25px
  }
  .cta-content .button {
    margin-top:19px
  }
  .footer-links {
    flex-wrap:wrap;
    justify-content:center
  }
  .hero-actions .button {
    padding:11px 16px
  }
}
@media(prefers-reduced-motion:reduce) {
  *,*:before,*:after {
    scroll-behavior:auto!important;
    transition:none!important;
    animation:none!important
  }
}
.lightbox {
  position:fixed;
  z-index:100;
  inset:0;
  background:rgba(4,17,47,.92);
  display:grid;
  place-items:center;
  padding:35px
}
.lightbox.hidden {
  display:none
}
.lightbox img {
  max-width:min(100%,1050px);
  max-height:88vh;
  object-fit:contain
}
.lightbox button {
  position:absolute;
  right:20px;
  top:15px;
  border:0;
  background:transparent;
  color:#fff;
  font-size:38px;
  cursor:pointer
}
/* Local-image completion for the compact homepage cards and gallery support. */
.service-grid .service-card:nth-child(5) {
  background:url('../images/placeholders/image22.jpeg') center/cover
}
.service-grid .service-card:nth-child(6) {
  background:url('../images/placeholders/image23.jpg') center/cover
}
.service-grid .service-card:nth-child(7) {
  background:url('../images/placeholders/image24.jpg') center/cover
}
.service-grid .service-card:nth-child(8) {
  background:url('../images/placeholders/image25.jpg') center/cover
}
.service-grid .service-card:not(.featured) {
  color:#fff;
  border:0
}
.service-grid .service-card:not(.featured):after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(0,24,72,.88),rgba(0,24,72,.08))
}
.service-grid .service-card:not(.featured) .service-content {
  justify-content:end
}
.service-grid .service-card:not(.featured) .arrow {
  background:#fff
}
.detail-feature:before,.detail-feature:after {
  content:'';
  display:block;
  min-height:245px;
  border-radius:8px;
  background:center/cover no-repeat
}
.detail-feature:before {
  background-image:url('../images/placeholders/image9.jpg')
}
.detail-feature:after {
  background-image:url('../images/placeholders/image12.jpeg')
}
.project-images:before,.project-images:after {
  content:'';
  display:block;
  border-radius:7px;
  background:center/cover no-repeat
}
.project-images:before {
  background-image:url('../images/placeholders/image18.png')
}
.project-images:after {
  background-image:url('../images/placeholders/image19.png')
}
.project:nth-child(2) .project-images:before {
  background-image:url('../images/placeholders/image26.jpeg')
}
.project:nth-child(2) .project-images:after {
  background-image:url('../images/placeholders/image27.jpeg')
}
.project:nth-child(3) .project-images:before {
  background-image:url('../images/placeholders/image28.jpeg')
}
.project:nth-child(3) .project-images:after {
  background-image:url('../images/placeholders/image29.jpeg')
}
.project-images a:last-child {
  grid-column:auto
}
.hero-carousel-controls {
  position:absolute;
  z-index:3;
  right:max(32px,calc((100% - 1320px)/2));
  bottom:34px;
  display:flex;
  align-items:center;
  gap:12px
}
.hero-arrow {
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.85);
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--blue);
  font-size:18px;
  cursor:pointer;
  transition:transform .2s,background .2s
}
.hero-arrow:hover {
  transform:translateY(-2px);
  background:#fff
}
.hero-dots {
  display:flex;
  gap:7px
}
.hero-dot {
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(8,36,93,.28);
  cursor:pointer
}
.hero-dot.active {
  width:25px;
  border-radius:8px;
  background:var(--blue)
}
body:has(.main-nav a.active[href="about.html"]) .page-hero {
  background-image:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 36%,rgba(255,255,255,.22) 66%,rgba(255,255,255,.04)),url('../images/placeholders/image3.jpeg')
}
body:has(.main-nav a.active[href="services.html"]) .page-hero {
  background-image:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 38%,rgba(255,255,255,.18) 66%,rgba(255,255,255,.05)),url('../images/placeholders/image12.jpeg')
}
body:has(.main-nav a.active[href="projects.html"]) .page-hero {
  background-image:linear-gradient(90deg,rgba(255,255,255,.97) 0%,rgba(255,255,255,.78) 38%,rgba(255,255,255,.05) 77%),url('../images/placeholders/hero-offshore-01.png')
}
body:has(.main-nav a.active[href="faqs.html"]) .page-hero,body:has(.main-nav a.active[href="contact.html"]) .page-hero {
  background-image:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 42%,rgba(255,255,255,.18) 70%,rgba(255,255,255,.06)),url('../images/placeholders/hero-offshore-01.png')
}
@media(max-width:760px) {
  .container {
    width:min(1320px,calc(100% - 32px))
  }
  .hero-carousel-controls {
    right:16px;
    bottom:20px
  }
  .hero-arrow {
    width:38px;
    height:38px
  }
}
@media(max-width:760px) {
  .nav-shell {
    position:relative
  }
  .menu-toggle {
    position:absolute;
    right:0;
    top:12px
  }
  .contact-cards,.contact-card {
    min-width:0
  }
  .contact-card p {
    overflow-wrap:anywhere
  }
}
.cta-strip {
  background:#0c64bb url('../images/placeholders/hero-offshore-01.png') center/cover no-repeat
}
.cta-strip>img {
  display:none
}
/* Homepage-only approved composition. Shared page styles remain untouched. */
body.home-page {
  font-size:16px
}
body.home-page .container {
  width:min(100% - 112px,1600px)
}
body.home-page .site-header {
  border:0
}
body.home-page .nav-shell {
  height:78px
}
body.home-page .main-nav {
  gap:28px
}
body.home-page .main-nav a {
  font-size:14px
}
body.home-page .home-hero {
  min-height:615px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(112deg,#f8fbff 0%,#fff 47%,#e8f5ff 100%)
}
body.home-page .home-hero:before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(125deg,transparent 0 35%,rgba(16,117,226,.055) 35% 38%,transparent 38% 100%);
  pointer-events:none
}
body.home-page .home-hero__inner {
  min-height:615px;
  display:grid;
  grid-template-columns:50% 50%;
  align-items:stretch;
  position:relative
}
body.home-page .home-hero__copy {
  display:flex;
  position:relative;
  z-index:2;
  flex-direction:column;
  justify-content:center;
  padding:59px 30px 53px 16px
}
body.home-page .home-hero__copy h1 {
  font:700 54px/1.08 Manrope,Arial,sans-serif;
  letter-spacing:-2.3px;
  color:var(--navy);
  margin:14px 0
}
body.home-page .home-hero__copy h1 span {
  color:var(--blue)
}
body.home-page .home-hero__copy p {
  max-width:540px;
  margin:0;
  color:#53658a;
  font-size:17px;
  line-height:1.55
}
body.home-page .hero-actions {
  margin-top:24px
}
body.home-page .hero-actions .button {
  min-height:40px;
  padding:12px 23px
}
body.home-page .hero-values {
  display:flex;
  align-items:center;
  gap:18px;
  margin-top:34px;
  color:#7a87a1;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:2.2px;
  font-weight:700
}
body.home-page .hero-values i {
  width:1px;
  height:14px;
  background:#aab6c9
}
body.home-page .home-hero__visual {
  position:relative;
  min-width:0;
  padding:31px 0 0 12px
}
body.home-page .hero-photo-frame {
  position:absolute;
  inset:0 0 0 12px;
  overflow:hidden;
  clip-path:polygon(10% 0,100% 0,100% 100%,0 100%)
}
body.home-page .hero-photo-frame:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.21),transparent 32%,rgba(8,58,130,.06))
}
body.home-page .hero-slide {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:0;
  transition:opacity .55s ease
}
body.home-page .hero-slide.active {
  opacity:1
}
body.home-page .hero-statement {
  position:absolute;
  z-index:2;
  right:-2px;
  top:174px;
  color:#23477e;
  font:600 25px/1.15 cursive;
  transform:rotate(-7deg);
  text-align:center
}
body.home-page .hero-statement i {
  display:block;
  width:38px;
  height:3px;
  border-radius:2px;
  background:var(--blue);
  margin:6px 0 0 auto
}
body.home-page .hero-carousel-controls {
  position:absolute;
  z-index:3;
  right:0;
  bottom:25px;
  display:flex;
  align-items:center;
  gap:15px
}
body.home-page .hero-count {
  font-size:13px;
  color:#55709d;
  white-space:nowrap
}
.hero-count b {
  color:var(--blue)
}
body.home-page .hero-arrow {
  border-color:#dae7f5;
  background:#fff;
  width:40px;
  height:40px
}
.hero-arrow--next {
  background:var(--blue);
  border-color:var(--blue);
  color:#fff
}
body.home-page .assurance {
  padding:28px 0 27px;
  box-shadow:0 10px 25px rgba(16,61,125,.04)
}
body.home-page .assurance-item {
  padding:0 47px;
  gap:16px
}
body.home-page .assurance-item:first-child {
  padding-left:16px
}
body.home-page .assurance-item:last-child {
  padding-right:16px
}
body.home-page .assurance-item strong {
  font-size:15px
}
body.home-page .home-services {
  padding:67px 0 42px;
  background:linear-gradient(180deg,#f7fbff,#fff)
}
body.home-page .section-head {
  margin-bottom:25px
}
body.home-page .section-title {
  font-size:34px;
  letter-spacing:-1.65px;
  margin:9px 0
}
.services-side-note {
  display:flex;
  gap:20px;
  align-items:center;
  padding-bottom:5px
}
.services-side-note i {
  height:2px;
  width:35px;
  background:var(--blue)
}
.services-side-note p {
  font-size:13px;
  line-height:1.38;
  color:var(--muted);
  margin:0
}
body.home-page .service-grid {
  gap:12px
}
body.home-page .service-card {
  border-radius:6px;
  min-height:205px
}
body.home-page .service-card:not(.featured) {
  min-height:123px;
  color:var(--navy);
  border:1px solid #dbe6f2;
  background:#fff
}
body.home-page .service-card:not(.featured):after {
  display:none
}
body.home-page .service-card:not(.featured) .service-content {
  padding:17px 16px;
  display:grid;
  grid-template-columns:44px 1fr;
  gap:10px;
  align-items:center;
  justify-content:normal
}
body.home-page .service-card:not(.featured) em {
  font-style:normal;
  font-size:33px;
  color:var(--blue);
  line-height:1
}
body.home-page .service-card:nth-child(5) em {
  color:#d61c1c
}
body.home-page .service-card h3 {
  font-size:16px
}
.service-card p {
  font-size:12px;
  line-height:1.25
}
.service-card:not(.featured) .arrow {
  right:12px;
  bottom:auto;
  top:50%;
  transform:translateY(-50%);
  background:#edf4ff
}
body.home-page .home-about {
  padding:46px 0 29px;
  background:#fff
}
.home-page .about-grid {
  grid-template-columns:1.02fr .93fr 1.05fr;
  gap:12px
}
.home-page .about-copy {
  padding:17px 18px 0 0
}
.home-page .about-copy .section-title {
  font-size:33px;
  line-height:1.12
}
.title-rule {
  display:block;
  width:34px;
  height:2px;
  background:var(--blue);
  margin:13px 0
}
.home-page .about-copy .section-copy {
  font-size:14px;
  line-height:1.48;
  margin:0 0 18px
}
.home-page .about-image {
  min-height:340px;
  border-radius:5px
}
.home-page .about-image img {
  object-position:center
}
.home-page .stack-cards {
  gap:10px
}
.home-page .info-card {
  min-height:100px;
  padding:17px 18px;
  gap:14px;
  align-items:flex-start;
  box-shadow:0 6px 22px rgba(20,45,90,.08)
}
.home-page .info-card i {
  font-size:26px;
  line-height:1
}
.home-page .info-card h3 {
  font-size:13px;
  margin:0 0 4px
}
.home-page .info-card p {
  font-size:11px;
  line-height:1.32
}
.home-page .info-card>b {
  margin-left:auto;
  align-self:center;
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#edf3fb;
  color:var(--blue);
  font-size:12px
}
body.home-page .cta-strip {
  height:126px;
  background:#0b69c5 url('../images/placeholders/hero-offshore-01.png') center 55%/cover no-repeat
}
body.home-page .cta-strip:after {
  background:rgba(7,83,160,.76)
}
body.home-page .cta-content {
  height:126px;
  min-height:0;
  justify-content:center;
  gap:80px
}
.home-page .cta-content h2 {
  font-size:29px
}
.home-page .cta-content p {
  font-size:15px
}
.home-page .cta-content .button {
  min-width:148px;
  background:#fff
}
.cta-tag {
  font-size:11px;
  line-height:1.55;
  text-transform:uppercase;
  letter-spacing:2.6px;
  font-weight:700;
  opacity:.92
}
body.home-page .site-footer {
  padding:27px 0
}
.home-page .footer-inner {
  grid-template-columns:1.5fr 1.15fr auto;
  gap:24px
}
.home-page .footer-copy {
  gap:20px
}
.home-page .footer-copy .logo {
  width:92px
}
.home-page .footer-links {
  gap:20px
}
.home-page .socials a {
  background:transparent;
  font-size:15px;
  width:21px
}
@media(max-width:1100px) {
  body.home-page .container {
    width:min(100% - 48px,1600px)
  }
  body.home-page .home-hero__copy h1 {
    font-size:47px
  }
  body.home-page .home-hero__inner,body.home-page .home-hero {
    min-height:580px
  }
  body.home-page .home-hero__visual {
    padding-left:0
  }
  body.home-page .hero-photo-frame {
    left:0
  }
  .home-page .about-grid {
    grid-template-columns:1fr 1fr
  }
  .home-page .stack-cards {
    grid-column:span 2;
    grid-template-columns:repeat(3,1fr)
  }
}
@media(max-width:760px) {
  body.home-page .container {
    width:calc(100% - 32px)
  }
  body.home-page .home-hero__inner {
    display:block;
    min-height:620px
  }
  .home-page .home-hero__visual {
    position:absolute;
    inset:0;
    padding:0;
    opacity:.32
  }
  .home-page .hero-photo-frame {
    inset:0;
    clip-path:none
  }
  .home-page .home-hero__copy {
    min-height:620px;
    padding:60px 0;
    justify-content:center
  }
  .home-page .home-hero__copy h1 {
    font-size:39px
  }
  .home-page .hero-statement {
    display:none
  }
  .home-page .hero-carousel-controls {
    right:0
  }
  .home-page .assurance-item,.home-page .assurance-item:first-child,.home-page .assurance-item:last-child {
    padding-left:0;
    padding-right:0
  }
  .home-page .services-side-note {
    margin-top:16px
  }
  .home-page .service-card:not(.featured) {
    min-height:140px
  }
  .home-page .about-grid {
    grid-template-columns:1fr
  }
  .home-page .stack-cards {
    grid-column:auto;
    grid-template-columns:1fr
  }
  .home-page .cta-strip,.home-page .cta-content {
    height:auto
  }
  .home-page .cta-content {
    padding:25px 0;
    display:block
  }
  .home-page .cta-content .button {
    margin-top:14px
  }
  .cta-tag {
    display:none
  }
}
/* Locked homepage match: intentionally scoped so other pages retain their existing layouts. */
@media(min-width:761px) {
  body.home-page .site-header {
    position:absolute;
    top:0;
    left:0;
    background:transparent;
    z-index:30
  }
  body.home-page .nav-shell {
    width:min(calc(100% - 80px),1510px);
    height:68px;
    margin:10px auto 0;
    padding:0 18px 0 25px;
    background:rgba(255,255,255,.98);
    border-radius:18px;
    box-shadow:0 10px 25px rgba(13,49,101,.10)
  }
  body.home-page .logo {
    width:132px
  }
  .home-page .main-nav {
    gap:25px
  }
  .home-page .main-nav a {
    padding:23px 0 20px;
    font-size:14px
  }
  .home-page .main-nav a.active:after {
    bottom:13px
  }
  .home-page .main-nav .button {
    margin-left:10px;
    padding:12px 24px;
    border-radius:8px;
    font-size:14px
  }
  body.home-page .home-hero,body.home-page .home-hero__inner {
    min-height:555px
  }
  body.home-page .home-hero__copy {
    padding:88px 34px 45px 18px
  }
  body.home-page .home-hero__copy h1 {
    font-size:58px;
    line-height:1.06;
    margin:13px 0 16px
  }
  body.home-page .home-hero__copy p {
    font-size:19px;
    line-height:1.48;
    max-width:555px
  }
  body.home-page .hero-actions {
    margin-top:27px
  }
  .home-page .hero-actions .button {
    min-height:46px;
    padding:13px 25px;
    font-size:15px
  }
  body.home-page .hero-values {
    font-size:11px;
    margin-top:35px;
    gap:19px
  }
  body.home-page .home-hero__visual {
    padding-top:0;
    padding-left:0
  }
  .home-page .hero-photo-frame {
    inset:0 0 0 2px;
    clip-path:polygon(9% 0,100% 0,100% 100%,0 100%)
  }
  body.home-page .hero-slide:first-child {
    object-position:62% center
  }
  .home-page .hero-statement {
    right:15px;
    top:215px;
    font-size:28px;
    color:#244576
  }
  .home-page .hero-carousel-controls {
    right:12px;
    bottom:26px
  }
  body.home-page .assurance {
    padding:28px 0
  }
  .home-page .assurance-item {
    padding:0 45px
  }
  .home-page .assurance-item strong {
    font-size:18px
  }
  .home-page .assurance-item span {
    font-size:14px;
    margin-top:4px
  }
  .home-page .round-icon {
    width:58px;
    height:58px;
    font-size:25px
  }
  body.home-page .home-services {
    padding:67px 0 48px
  }
  .home-page .section-title {
    font-size:40px;
    line-height:1.1
  }
  .home-page .services-side-note p {
    font-size:15px
  }
  .home-page .service-grid {
    gap:14px
  }
  .home-page .service-card {
    min-height:230px;
    border-radius:7px
  }
  .home-page .service-card h3 {
    font-size:20px
  }
  .home-page .service-card p {
    font-size:15px;
    line-height:1.3;
    margin-top:5px
  }
  .home-page .service-card .arrow {
    width:32px;
    height:32px;
    right:16px;
    bottom:16px
  }
  body.home-page .home-about {
    padding:58px 0 44px
  }
  .home-page .about-grid {
    gap:17px
  }
  .home-page .about-copy {
    padding:17px 25px 0 0
  }
  .home-page .about-copy .section-title {
    font-size:39px
  }
  .home-page .about-copy .section-copy {
    font-size:16px;
    line-height:1.56;
    max-width:500px;
    margin-bottom:23px
  }
  .home-page .about-copy .button {
    font-size:15px;
    padding:13px 25px
  }
  .home-page .about-image {
    min-height:390px
  }
  .home-page .stack-cards {
    gap:13px
  }
  .home-page .info-card {
    min-height:112px;
    padding:20px 21px;
    gap:16px
  }
  .home-page .info-card h3 {
    font-size:18px;
    margin-bottom:6px
  }
  .home-page .info-card p {
    font-size:15px;
    line-height:1.42
  }
  .home-page .info-card i {
    font-size:29px
  }
  .home-page .info-card>b {
    width:30px;
    height:30px
  }
  body.home-page .cta-strip {
    height:150px;
    background-position:center 54%
  }
  .home-page .cta-content {
    height:150px;
    gap:88px;
    justify-content:center
  }
  .home-page .cta-content h2 {
    font-size:38px
  }
  .home-page .cta-content p {
    font-size:17px;
    margin-top:6px
  }
  .home-page .cta-content .button {
    font-size:15px;
    padding:13px 27px
  }
  .home-page .cta-tag {
    font-size:12px;
    letter-spacing:3px
  }
  body.home-page .site-footer {
    padding:31px 0
  }
  .home-page .footer-copy {
    font-size:14px
  }
  .home-page .footer-copy .logo {
    width:112px
  }
  .home-page .footer-links {
    gap:22px;
    font-size:15px
  }
  .home-page .socials {
    gap:13px
  }
  .home-page .socials a {
    font-size:17px;
    width:23px
  }
}
@media(max-width:1100px) and (min-width:761px) {
  body.home-page .nav-shell {
    width:calc(100% - 48px)
  }
  body.home-page .main-nav {
    gap:15px
  }
  .home-page .main-nav a {
    font-size:13px
  }
  .home-page .home-hero__copy h1 {
    font-size:49px
  }
  .home-page .home-hero__copy p {
    font-size:17px
  }
  .home-page .service-card h3 {
    font-size:18px
  }
  .home-page .service-card p {
    font-size:14px
  }
  .home-page .about-copy .section-title {
    font-size:34px
  }
  .home-page .info-card h3 {
    font-size:16px
  }
  .home-page .info-card p {
    font-size:13px
  }
  .home-page .cta-content {
    gap:48px
  }
  .home-page .cta-content h2 {
    font-size:33px
  }
}
/* Homepage final fix: retain the approved floating header while keeping it fixed. */
body.home-page {
  --home-header-offset:88px;
  padding-top:var(--home-header-offset)
}
body.home-page .site-header {
  position:fixed;
  inset:0 0 auto;
  width:100%;
  z-index:9999;
  background:transparent
}
@media(max-width:820px) {
  body.home-page {
    --home-header-offset:83px
  }
  body.home-page .site-header {
    height:var(--home-header-offset)
  }
  body.home-page .nav-shell {
    position:relative;
    width:calc(100% - 32px);
    height:67px;
    margin:8px auto 0;
    padding:0 14px;
    background:rgba(255,255,255,.98);
    border-radius:14px;
    box-shadow:0 8px 22px rgba(13,49,101,.10)
  }
  body.home-page .logo {
    width:103px
  }
  body.home-page .menu-toggle {
    display:block;
    margin-left:auto;
    position:static
  }
  body.home-page .main-nav {
    display:none;
    position:absolute;
    z-index:1;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border-radius:12px;
    padding:9px 18px;
    box-shadow:0 13px 25px rgba(10,40,90,.15);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  body.home-page .main-nav.open {
    display:flex
  }
  body.home-page .main-nav a {
    padding:11px 2px;
    font-size:14px
  }
  body.home-page .main-nav a.active:after {
    left:0;
    right:auto;
    bottom:5px;
    transform:none
  }
  body.home-page .main-nav .button {
    margin:7px 0 4px
  }
  /* A genuine mobile stack keeps the carousel visible instead of using it as a faded backdrop. */
  body.home-page .home-hero,body.home-page .home-hero__inner {
    min-height:0
  }
  body.home-page .home-hero__inner {
    display:flex;
    flex-direction:column
  }
  body.home-page .home-hero__copy {
    min-height:0;
    padding:48px 0 30px;
    justify-content:flex-start
  }
  body.home-page .home-hero__copy h1 {
    font-size:39px
  }
  body.home-page .home-hero__copy p {
    font-size:17px
  }
  body.home-page .home-hero__visual {
    position:relative;
    inset:auto;
    order:2;
    width:100%;
    height:330px;
    min-width:0;
    padding:0;
    opacity:1
  }
  body.home-page .hero-photo-frame {
    position:relative;
    inset:auto;
    width:100%;
    height:100%;
    overflow:hidden;
    clip-path:none
  }
  body.home-page .hero-slide {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center
  }
  body.home-page .hero-carousel-controls {
    right:14px;
    bottom:14px;
    z-index:4
  }
  body.home-page .hero-statement {
    display:none
  }
}
@media(max-width:420px) {
  body.home-page .home-hero__visual {
    height:280px
  }
}
@media(max-width:370px) {
  body.home-page .home-hero__visual {
    height:260px
  }
  body.home-page .home-hero__copy {
    padding-top:42px
  }
}
/* About page only — mirrors the locked homepage components without affecting them. */
body.about-page {
  --about-header-offset:88px;
  padding-top:var(--about-header-offset);
  font-size:16px
}
body.about-page .container {
  width:min(calc(100% - 112px),1600px)
}
body.about-page .site-header {
  position:fixed;
  inset:0 0 auto;
  width:100%;
  z-index:9999;
  background:transparent;
  border:0
}
body.about-page .nav-shell {
  position:relative;
  width:min(calc(100% - 80px),1510px);
  height:68px;
  margin:10px auto 0;
  padding:0 18px 0 25px;
  background:linear-gradient(90deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.99) 62%,rgba(222,239,255,.78) 100%);
  border-radius:18px;
  box-shadow:0 10px 25px rgba(13,49,101,.10)
}
body.about-page .logo {
  width:132px
}
.about-page .main-nav {
  gap:25px
}
.about-page .main-nav a {
  padding:23px 0 20px;
  font-size:14px
}
.about-page .main-nav a.active:after {
  bottom:13px
}
.about-page .main-nav .button {
  margin-left:10px;
  padding:12px 24px;
  border-radius:8px;
  font-size:14px
}
.about-hero {
  height:460px;
  position:relative;
  overflow:hidden;
  background:#fff
}
.about-hero-media {
  position:absolute;
  inset:0 0 0 34%;
  z-index:0
}
.about-hero-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center
}
.about-hero:after {
  content:'';
  position:absolute;
  z-index:1;
  inset:0;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.98) 21%,rgba(255,255,255,.74) 38%,rgba(255,255,255,.13) 61%,transparent 76%)
}
.about-hero-content {
  height:100%;
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center
}
.about-kicker {
  display:flex;
  align-items:center;
  gap:13px;
  color:var(--blue);
  font-size:12px;
  letter-spacing:2.4px;
  font-weight:700;
  text-transform:uppercase
}
.about-kicker i {
  width:36px;
  height:2px;
  background:var(--blue)
}
.about-hero h1 {
  font:700 58px/1.05 Manrope;
  margin:14px 0 11px;
  letter-spacing:-2.4px;
  color:var(--navy)
}
.about-hero h1 span,.about-company h2 span,.about-hse h2 span {
  color:var(--blue)
}
.about-hero p {
  font-size:19px;
  line-height:1.42;
  color:#52658a;
  margin:0
}
.about-hero-tag {
  position:absolute;
  z-index:2;
  right:max(52px,calc((100% - 1500px)/2));
  bottom:82px;
  color:#fff;
  font-size:12px;
  line-height:1.45;
  letter-spacing:2.8px;
  text-transform:uppercase;
  font-weight:700
}
.about-hero-tag i {
  display:block;
  width:42px;
  height:3px;
  background:#fff;
  margin-top:11px
}
.about-company {
  padding:51px 0 41px
}
.about-company-grid {
  display:grid;
  grid-template-columns:40% 60%;
  align-items:center
}
.about-company-copy {
  padding:0 42px 0 16px
}
.about-company h2,.about-purpose h2,.about-hse h2 {
  font:700 38px/1.04 Manrope;
  margin:10px 0 12px;
  letter-spacing:-1.7px;
  color:var(--navy)
}
.about-company-copy p,.about-hse p {
  font-size:16px;
  line-height:1.45;
  color:#596987;
  margin:0 0 12px
}
.about-company-copy .button {
  margin-top:4px;
  padding:13px 24px;
  font-size:15px
}
.about-video-panel {
  height:342px;
  border-radius:10px;
  overflow:hidden;
  position:relative;
  color:#fff
}
.about-video-panel img {
  width:100%;
  height:100%;
  object-fit:cover
}
.about-video-panel:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(0,37,87,.72),transparent 52%)
}
.video-play {
  position:absolute;
  z-index:2;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  padding-left:4px;
  border:3px solid #fff;
  border-radius:50%;
  background:rgba(9,31,68,.65);
  color:#fff;
  font-size:24px;
  box-shadow:0 4px 20px rgba(0,0,0,.22)
}
.about-video-panel p {
  position:absolute;
  z-index:2;
  left:22px;
  bottom:17px;
  margin:0;
  font-size:16px;
  font-weight:700;
  line-height:1.18
}
.about-purpose {
  padding:0 0 28px
}
.about-purpose-heading {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:16px
}
.about-purpose-heading h2 {
  margin-bottom:0
}
.about-purpose-heading>p {
  font-size:14px;
  line-height:1.38;
  text-align:right;
  color:#617393;
  margin:0
}
.about-mission-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px
}
.about-mission-card {
  min-height:262px;
  border:1px solid #dce7f5;
  border-radius:7px;
  padding:24px 22px;
  background:#fff;
  box-shadow:0 5px 18px rgba(20,45,90,.035);
  position:relative
}
.about-icon {
  width:54px;
  height:54px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#f0eaff;
  color:#4016ac;
  font-size:28px;
  font-weight:700
}
.about-mission-card h3 {
  position:absolute;
  left:88px;
  top:31px;
  margin:0;
  font:700 20px Manrope;
  color:var(--navy)
}
.about-mission-card>i {
  display:block;
  width:28px;
  height:2px;
  background:var(--blue);
  margin:13px 0 16px 10px
}
.about-mission-card p {
  margin:0;
  font-size:15px;
  line-height:1.52;
  color:#596987
}
.about-profile-extra {
  padding:0 0 36px
}
.about-hse {
  display:grid;
  grid-template-columns:48% 52%;
  gap:40px;
  align-items:center;
  padding:18px 0 17px
}
.about-hse-image {
  height:276px;
  position:relative;
  overflow:hidden;
  border-radius:8px
}
.about-hse-image:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(8,38,93,.62),transparent)
}
.about-hse-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 28%
}
.about-hse-image span {
  position:absolute;
  z-index:1;
  left:25px;
  bottom:31px;
  color:#fff;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:2.5px;
  line-height:1.45;
  font-weight:700
}
.about-hse-image span i {
  display:block;
  width:38px;
  height:2px;
  background:#fff;
  margin-top:13px
}
.about-hse h2 {
  font-size:37px
}
.about-profile-cards {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px
}
.about-profile-cards article {
  display:flex;
  align-items:flex-start;
  gap:17px;
  border:1px solid #dce7f5;
  border-radius:8px;
  padding:21px;
  background:#fff
}
.about-profile-cards h3 {
  font:700 19px Manrope;
  margin:2px 0 6px;
  color:var(--navy)
}
.about-profile-cards p {
  font-size:15px;
  line-height:1.42;
  color:#596987;
  margin:0
}
body.about-page .about-cta {
  height:150px;
  background:#0b69c5 url('../images/placeholders/hero-offshore-01.png') center 54%/cover no-repeat
}
body.about-page .about-cta:after {
  background:rgba(7,83,160,.76)
}
body.about-page .cta-content {
  height:150px;
  min-height:0;
  justify-content:center;
  gap:88px
}
.about-page .cta-content h2 {
  font-size:38px
}
.about-page .cta-content p {
  font-size:17px;
  margin-top:6px
}
.about-page .cta-content .button {
  min-width:148px;
  background:#fff;
  font-size:15px;
  padding:13px 27px
}
.about-page .cta-tag {
  font-size:12px;
  line-height:1.55;
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:700;
  opacity:.92
}
.about-page .about-footer {
  padding:31px 0
}
.about-page .footer-inner {
  grid-template-columns:1.5fr 1.15fr auto;
  gap:24px
}
.about-page .footer-copy {
  gap:20px;
  font-size:14px
}
.about-page .footer-copy .logo {
  width:112px
}
.about-page .footer-links {
  gap:22px;
  font-size:15px
}
.about-page .socials {
  gap:13px
}
.about-page .socials a {
  background:transparent;
  font-size:17px;
  width:23px
}
@media(max-width:1100px) and (min-width:821px) {
  body.about-page .container {
    width:calc(100% - 48px)
  }
  body.about-page .nav-shell {
    width:calc(100% - 48px)
  }
  body.about-page .main-nav {
    gap:15px
  }
  .about-page .main-nav a {
    font-size:13px
  }
  .about-hero h1 {
    font-size:50px
  }
  .about-company-copy {
    padding-right:30px
  }
  .about-company h2 {
    font-size:34px
  }
  .about-mission-card {
    padding:20px
  }
  .about-mission-card h3 {
    font-size:18px;
    left:79px
  }
  .about-mission-card p {
    font-size:14px
  }
  .about-hse {
    gap:28px
  }
}
@media(max-width:820px) {
  body.about-page {
    --about-header-offset:83px
  }
  body.about-page .container {
    width:calc(100% - 32px)
  }
  body.about-page .site-header {
    height:var(--about-header-offset)
  }
  body.about-page .nav-shell {
    position:relative;
    width:calc(100% - 32px);
    height:67px;
    margin:8px auto 0;
    padding:0 14px;
    background:linear-gradient(90deg,#fff,rgba(222,239,255,.78));
    border-radius:14px;
    box-shadow:0 8px 22px rgba(13,49,101,.10)
  }
  body.about-page .logo {
    width:103px
  }
  .about-page .menu-toggle {
    display:block;
    margin-left:auto;
    position:static
  }
  .about-page .main-nav {
    display:none;
    position:absolute;
    z-index:1;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border-radius:12px;
    padding:9px 18px;
    box-shadow:0 13px 25px rgba(10,40,90,.15);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  .about-page .main-nav.open {
    display:flex
  }
  .about-page .main-nav a {
    padding:11px 2px;
    font-size:14px
  }
  .about-page .main-nav a.active:after {
    left:0;
    right:auto;
    bottom:5px;
    transform:none
  }
  .about-page .main-nav .button {
    margin:7px 0 4px
  }
  .about-hero {
    height:auto;
    display:flex;
    flex-direction:column
  }
  .about-hero-media {
    position:relative;
    inset:auto;
    order:2;
    height:315px;
    width:100%
  }
  .about-hero:after {
    background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.16) 58%,transparent 100%)
  }
  .about-hero-content {
    height:auto;
    min-height:265px;
    padding:48px 0 30px;
    justify-content:flex-start
  }
  .about-hero h1 {
    font-size:39px
  }
  .about-hero p {
    font-size:17px
  }
  .about-hero-tag {
    right:20px;
    bottom:30px;
    font-size:10px
  }
  .about-company {
    padding:44px 0
  }
  .about-company-grid {
    grid-template-columns:1fr;
    gap:28px
  }
  .about-company-copy {
    padding:0
  }
  .about-company h2,.about-purpose h2,.about-hse h2 {
    font-size:34px
  }
  .about-video-panel {
    height:320px
  }
  .about-purpose-heading {
    display:block
  }
  .about-purpose-heading>p {
    text-align:left;
    margin-top:13px
  }
  .about-mission-grid,.about-profile-cards {
    grid-template-columns:1fr
  }
  .about-mission-card {
    min-height:0;
    padding:23px
  }
  .about-mission-card h3 {
    font-size:20px
  }
  .about-hse {
    grid-template-columns:1fr;
    gap:26px
  }
  .about-hse-image {
    height:300px
  }
  .about-profile-extra {
    padding-bottom:36px
  }
  .about-page .about-cta,.about-page .cta-content {
    height:auto
  }
  .about-page .cta-content {
    padding:29px 0;
    display:block
  }
  .about-page .cta-content h2 {
    font-size:31px
  }
  .about-page .cta-content .button {
    margin-top:16px
  }
  .about-page .cta-tag {
    display:none
  }
  .about-page .footer-inner {
    grid-template-columns:1fr;
    justify-items:center
  }
  .about-page .footer-copy {
    flex-direction:column;
    text-align:center;
    gap:10px
  }
  .about-page .footer-links {
    flex-wrap:wrap;
    justify-content:center
  }
  .about-page .socials a {
    width:25px
  }
}
@media(max-width:370px) {
  .about-hero-media {
    height:270px
  }
  .about-hero-content {
    padding-top:42px
  }
  .about-hero h1 {
    font-size:35px
  }
  .about-company h2,.about-purpose h2,.about-hse h2 {
    font-size:31px
  }
  .about-video-panel {
    height:255px
  }
}
/* Services page only — locked component styling without changing Home or About. */
body.services-page {
  --services-header-offset:88px;
  padding-top:var(--services-header-offset);
  font-size:16px
}
body.services-page .container {
  width:min(calc(100% - 112px),1600px)
}
body.services-page .site-header {
  position:fixed;
  inset:0 0 auto;
  width:100%;
  z-index:9999;
  background:transparent;
  border:0
}
body.services-page .nav-shell {
  position:relative;
  width:min(calc(100% - 80px),1510px);
  height:68px;
  margin:10px auto 0;
  padding:0 18px 0 25px;
  background:linear-gradient(90deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.99) 62%,rgba(222,239,255,.78) 100%);
  border-radius:18px;
  box-shadow:0 10px 25px rgba(13,49,101,.10)
}
body.services-page .logo {
  width:132px
}
.services-page .main-nav {
  gap:25px
}
.services-page .main-nav a {
  padding:23px 0 20px;
  font-size:14px
}
.services-page .main-nav a.active:after {
  bottom:13px
}
.services-page .main-nav .button {
  margin-left:10px;
  padding:12px 24px;
  border-radius:8px;
  font-size:14px
}
.services-hero {
  height:460px;
  position:relative;
  overflow:hidden;
  background:#fff
}
.services-hero-media {
  position:absolute;
  inset:0 0 0 31%;
  z-index:0
}
.services-hero-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center
}
.services-hero:after {
  content:'';
  position:absolute;
  z-index:1;
  inset:0;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.98) 20%,rgba(255,255,255,.68) 39%,rgba(255,255,255,.12) 60%,transparent 77%)
}
.services-hero-content {
  height:100%;
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center
}
.services-kicker {
  color:var(--blue);
  font-size:12px;
  letter-spacing:2.4px;
  font-weight:700;
  text-transform:uppercase
}
.services-hero h1 {
  font:700 56px/1.04 Manrope;
  margin:13px 0 15px;
  letter-spacing:-2.4px;
  color:var(--navy)
}
.services-hero h1 span,.services-overview h2 span {
  color:var(--blue)
}
.services-hero p {
  font-size:18px;
  line-height:1.45;
  color:#53658a;
  margin:0
}
.services-hero-actions {
  display:flex;
  gap:14px;
  margin-top:22px
}
.services-hero-actions .button {
  padding:13px 24px;
  font-size:15px
}
.services-hero-values {
  margin-top:20px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:11px;
  font-weight:700;
  color:#3963a8
}
.services-hero-values:before {
  content:'';
  display:block;
  width:43px;
  height:2px;
  background:var(--blue);
  margin-bottom:10px
}
.services-hero-tag {
  position:absolute;
  z-index:2;
  right:max(52px,calc((100% - 1500px)/2));
  top:70px;
  color:#144c9e;
  font-size:12px;
  line-height:1.45;
  letter-spacing:2.8px;
  text-transform:uppercase;
  font-weight:700
}
.services-hero-tag i {
  display:block;
  width:42px;
  height:3px;
  background:#215ff0;
  margin-top:11px
}
.services-overview {
  padding:38px 0 42px;
  background:#fff
}
.services-overview-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:38px;
  margin-bottom:21px
}
.services-overview h2 {
  font:700 42px/1 Manrope;
  color:var(--navy);
  letter-spacing:-1.9px;
  margin:7px 0 0
}
.services-overview-copy {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:46px;
  flex:1;
  max-width:780px;
  padding:0 0 4px 28px;
  border-left:2px solid #b7d6ff
}
.services-overview-copy p {
  margin:0;
  font-size:15px;
  line-height:1.45;
  color:#5a6b8e
}
.services-overview-copy a {
  color:var(--blue);
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  display:flex;
  align-items:center;
  gap:9px
}
.services-overview-copy svg {
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round
}
.services-mosaic {
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  grid-template-rows:repeat(5,88px);
  gap:12px
}
.service-feature-card,.service-compact-card {
  border-radius:8px;
  overflow:hidden;
  position:relative;
  text-decoration:none
}
.service-feature-card {
  color:#fff;
  background:#123
}
.service-feature-card>img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease
}
.service-card-shade {
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(1,18,44,.91),rgba(5,28,67,.1) 73%);
  transition:background .35s
}
.service-card-icon {
  width:54px;
  height:54px;
  border-radius:10px;
  background:rgba(255,255,255,.93);
  display:grid;
  place-items:center
}
.service-card-icon svg {
  width:33px;
  height:33px;
  fill:none;
  stroke:#1e2389;
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round
}
.service-feature-card .service-card-icon {
  position:absolute;
  z-index:2;
  left:19px;
  top:18px
}
.service-card-copy {
  position:absolute;
  z-index:2;
  left:19px;
  right:55px;
  bottom:17px
}
.service-card-copy h3,.service-compact-card h3 {
  font:700 19px/1.17 Manrope;
  margin:0
}
.service-card-copy p,.service-compact-card p {
  font-size:14px;
  line-height:1.32;
  margin:6px 0 0
}
.service-arrow {
  position:absolute;
  z-index:3;
  right:17px;
  bottom:17px;
  width:43px;
  height:43px;
  border:1.8px solid currentColor;
  border-radius:50%;
  display:grid;
  place-items:center;
  transition:transform .25s,background .25s,color .25s
}
.service-arrow svg {
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .25s
}
.service-feature-card:hover>img {
  transform:scale(1.05)
}
.service-feature-card:hover .service-card-shade {
  background:linear-gradient(0deg,rgba(1,18,44,.95),rgba(5,28,67,.24) 73%)
}
.service-feature-card:hover .service-arrow {
  background:#fff;
  color:var(--blue);
  transform:scale(1.08)
}
.service-feature-card:hover .service-arrow svg,.service-compact-card:hover .service-arrow svg {
  transform:translateX(2px)
}
.service-compact-card {
  background:#fff;
  border:1px solid #dce7f5;
  color:var(--navy);
  padding:21px 65px 17px 87px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:0 5px 16px rgba(13,49,101,.035);
  transition:transform .25s,box-shadow .25s,border-color .25s
}
.service-compact-card .service-card-icon {
  position:absolute;
  left:20px;
  top:50%;
  transform:translateY(-50%);
  border-radius:50%;
  background:#f0eaff
}
.service-compact-card p {
  color:#556789
}
.service-compact-card .service-arrow {
  color:var(--blue);
  right:18px;
  bottom:50%;
  transform:translateY(50%)
}
.service-compact-card:hover {
  transform:translateY(-3px);
  border-color:#9fc5ff;
  box-shadow:0 11px 24px rgba(13,49,101,.09)
}
.service-compact-card:hover .service-arrow {
  background:var(--blue);
  color:#fff;
  transform:translateY(50%) scale(1.08)
}
.well-kill {
  grid-column:1/3;
  grid-row:1/3
}
.intervention {
  grid-column:3/5;
  grid-row:1/2
}
.pump {
  grid-column:5/7;
  grid-row:1/3
}
.cooling {
  grid-column:1/3;
  grid-row:3/4
}
.fire {
  grid-column:3/5;
  grid-row:2/4
}
.pigging {
  grid-column:5/7;
  grid-row:3/4
}
.equipment {
  grid-column:1/4;
  grid-row:4/6
}
.welding {
  grid-column:4/7;
  grid-row:4/6
}
body.services-page .services-cta {
  height:150px;
  background:#0b69c5 url('../images/placeholders/hero-offshore-01.png') center 54%/cover no-repeat
}
body.services-page .services-cta:after {
  background:rgba(7,83,160,.76)
}
body.services-page .cta-content {
  height:150px;
  min-height:0;
  justify-content:center;
  gap:88px
}
.services-page .cta-content h2 {
  font-size:38px
}
.services-page .cta-content p {
  font-size:17px;
  margin-top:6px
}
.services-page .cta-content .button {
  min-width:148px;
  background:#fff;
  font-size:15px;
  padding:13px 27px
}
.services-page .cta-tag {
  font-size:12px;
  line-height:1.55;
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:700;
  opacity:.92
}
.services-page .services-footer {
  padding:31px 0
}
.services-page .footer-inner {
  grid-template-columns:1.5fr 1.15fr auto;
  gap:24px
}
.services-page .footer-copy {
  gap:20px;
  font-size:14px
}
.services-page .footer-copy .logo {
  width:112px
}
.services-page .footer-links {
  gap:22px;
  font-size:15px
}
.services-page .socials {
  gap:13px
}
.services-page .socials a {
  background:transparent;
  font-size:17px;
  width:23px
}
@media(max-width:1100px) and (min-width:821px) {
  body.services-page .container {
    width:calc(100% - 48px)
  }
  body.services-page .nav-shell {
    width:calc(100% - 48px)
  }
  body.services-page .main-nav {
    gap:15px
  }
  .services-page .main-nav a {
    font-size:13px
  }
  .services-hero h1 {
    font-size:48px
  }
  .services-overview h2 {
    font-size:38px
  }
  .services-overview-copy {
    gap:25px
  }
  .service-card-copy h3,.service-compact-card h3 {
    font-size:17px
  }
  .service-card-copy p,.service-compact-card p {
    font-size:13px
  }
  .services-mosaic {
    grid-template-rows:repeat(5,78px)
  }
}
@media(max-width:820px) {
  body.services-page {
    --services-header-offset:83px
  }
  body.services-page .container {
    width:calc(100% - 32px)
  }
  body.services-page .site-header {
    height:var(--services-header-offset)
  }
  body.services-page .nav-shell {
    position:relative;
    width:calc(100% - 32px);
    height:67px;
    margin:8px auto 0;
    padding:0 14px;
    background:linear-gradient(90deg,#fff,rgba(222,239,255,.78));
    border-radius:14px;
    box-shadow:0 8px 22px rgba(13,49,101,.10)
  }
  body.services-page .logo {
    width:103px
  }
  .services-page .menu-toggle {
    display:block;
    margin-left:auto;
    position:static
  }
  .services-page .main-nav {
    display:none;
    position:absolute;
    z-index:1;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border-radius:12px;
    padding:9px 18px;
    box-shadow:0 13px 25px rgba(10,40,90,.15);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  .services-page .main-nav.open {
    display:flex
  }
  .services-page .main-nav a {
    padding:11px 2px;
    font-size:14px
  }
  .services-page .main-nav a.active:after {
    left:0;
    right:auto;
    bottom:5px;
    transform:none
  }
  .services-page .main-nav .button {
    margin:7px 0 4px
  }
  .services-hero {
    height:auto;
    display:flex;
    flex-direction:column
  }
  .services-hero-media {
    position:relative;
    inset:auto;
    order:2;
    width:100%;
    height:315px
  }
  .services-hero:after {
    background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.14) 58%,transparent 100%)
  }
  .services-hero-content {
    height:auto;
    min-height:315px;
    padding:48px 0 30px;
    justify-content:flex-start
  }
  .services-hero h1 {
    font-size:39px
  }
  .services-hero p {
    font-size:17px
  }
  .services-hero-actions {
    margin-top:20px;
    flex-wrap:wrap
  }
  .services-hero-tag {
    right:20px;
    top:auto;
    bottom:30px;
    font-size:10px
  }
  .services-overview {
    padding:43px 0
  }
  .services-overview-head {
    display:block
  }
  .services-overview h2 {
    font-size:38px
  }
  .services-overview-copy {
    max-width:none;
    margin-top:21px;
    padding:0 0 0 20px;
    gap:20px
  }
  .services-overview-copy p {
    font-size:14px
  }
  .services-mosaic {
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:none;
    gap:14px
  }
  .service-feature-card,.service-compact-card {
    grid-column:auto;
    grid-row:auto;
    min-height:235px
  }
  .service-compact-card {
    min-height:190px
  }
  .services-page .services-cta,.services-page .cta-content {
    height:auto
  }
  .services-page .cta-content {
    padding:29px 0;
    display:block
  }
  .services-page .cta-content h2 {
    font-size:31px
  }
  .services-page .cta-content .button {
    margin-top:16px
  }
  .services-page .cta-tag {
    display:none
  }
  .services-page .footer-inner {
    grid-template-columns:1fr;
    justify-items:center
  }
  .services-page .footer-copy {
    flex-direction:column;
    text-align:center;
    gap:10px
  }
  .services-page .footer-links {
    flex-wrap:wrap;
    justify-content:center
  }
  .services-page .socials a {
    width:25px
  }
}
@media(max-width:540px) {
  .services-mosaic {
    grid-template-columns:1fr
  }
  .services-overview-copy {
    display:block
  }
  .services-overview-copy a {
    margin-top:16px
  }
  .services-hero-actions .button {
    width:100%
  }
  .service-feature-card {
    min-height:275px
  }
  .service-compact-card {
    min-height:190px
  }
  .services-hero h1 {
    font-size:37px
  }
  .services-hero p br,.services-overview-copy p br {
    display:none
  }
}
@media(max-width:370px) {
  .services-hero-media {
    height:270px
  }
  .services-hero-content {
    padding-top:42px
  }
  .services-hero h1 {
    font-size:34px
  }
  .services-overview h2 {
    font-size:34px
  }
}
/* Services image-completeness: retain the compact-card geometry while adding a photographic layer. */
.services-page .service-compact-card.has-photo {
  isolation:isolate;
  color:#fff;
  border-color:transparent;
  background:#143263
}
.services-page .service-compact-card.has-photo>img {
  position:absolute;
  z-index:-2;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .45s ease
}
.services-page .service-compact-card.has-photo:before {
  content:'';
  position:absolute;
  z-index:-1;
  inset:0;
  background:linear-gradient(90deg,rgba(2,21,56,.88),rgba(2,21,56,.58));
  transition:background .35s
}
.services-page .service-compact-card.has-photo p {
  color:#fff
}
.services-page .service-compact-card.has-photo .service-card-icon {
  background:rgba(255,255,255,.93)
}
.services-page .service-compact-card.has-photo .service-arrow {
  color:#fff;
  border-color:#fff
}
.services-page .service-compact-card.has-photo:hover>img {
  transform:scale(1.05)
}
.services-page .service-compact-card.has-photo:hover:before {
  background:linear-gradient(90deg,rgba(2,21,56,.93),rgba(2,21,56,.45))
}
.services-page .service-compact-card.has-photo:hover .service-arrow {
  background:#fff;
  color:var(--blue)
}
/* Well Kill detail page only: approved navigation system and an intentional image gallery. */
body.well-kill-page {
  --well-kill-header-offset:88px;
  padding-top:var(--well-kill-header-offset)
}
body.well-kill-page .container {
  width:min(calc(100% - 112px),1600px)
}
body.well-kill-page .site-header {
  position:fixed;
  inset:0 0 auto;
  width:100%;
  z-index:9999;
  background:transparent;
  border:0
}
body.well-kill-page .nav-shell {
  position:relative;
  width:min(calc(100% - 80px),1510px);
  height:68px;
  margin:10px auto 0;
  padding:0 18px 0 25px;
  background:linear-gradient(90deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.99) 62%,rgba(222,239,255,.78) 100%);
  border-radius:18px;
  box-shadow:0 10px 25px rgba(13,49,101,.10)
}
body.well-kill-page .logo {
  width:132px
}
.well-kill-page .main-nav {
  gap:25px
}
.well-kill-page .main-nav a {
  padding:23px 0 20px;
  font-size:14px
}
.well-kill-page .main-nav a.active:after {
  bottom:13px
}
.well-kill-page .main-nav .button {
  margin-left:10px;
  padding:12px 24px;
  border-radius:8px;
  font-size:14px
}
body.well-kill-page .detail-feature {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  grid-template-rows:330px 155px;
  gap:14px;
  margin-top:48px
}
body.well-kill-page .detail-feature img,body.well-kill-page .detail-feature:before,body.well-kill-page .detail-feature:after {
  display:block;
  min-height:0;
  width:100%;
  height:100%;
  border-radius:8px;
  object-fit:cover;
  overflow:hidden
}
body.well-kill-page .detail-feature img:first-of-type {
  grid-column:1/-1;
  grid-row:1;
  object-position:center
}
body.well-kill-page .detail-feature img:last-of-type {
  grid-column:1;
  grid-row:2;
  object-position:center
}
body.well-kill-page .detail-feature:before {
  grid-column:2;
  grid-row:2;
  background-position:center;
  background-size:cover
}
body.well-kill-page .detail-feature:after {
  grid-column:3;
  grid-row:2;
  background-position:center;
  background-size:cover
}
@media(max-width:1100px) and (min-width:821px) {
  body.well-kill-page .container {
    width:calc(100% - 48px)
  }
  body.well-kill-page .nav-shell {
    width:calc(100% - 48px)
  }
  body.well-kill-page .main-nav {
    gap:15px
  }
  .well-kill-page .main-nav a {
    font-size:13px
  }
  body.well-kill-page .detail-feature {
    grid-template-rows:290px 140px
  }
}
@media(max-width:820px) {
  body.well-kill-page {
    --well-kill-header-offset:83px
  }
  body.well-kill-page .container {
    width:calc(100% - 32px)
  }
  body.well-kill-page .site-header {
    height:var(--well-kill-header-offset)
  }
  body.well-kill-page .nav-shell {
    position:relative;
    width:calc(100% - 32px);
    height:67px;
    margin:8px auto 0;
    padding:0 14px;
    background:linear-gradient(90deg,#fff,rgba(222,239,255,.78));
    border-radius:14px;
    box-shadow:0 8px 22px rgba(13,49,101,.10)
  }
  body.well-kill-page .logo {
    width:103px
  }
  .well-kill-page .menu-toggle {
    display:block;
    margin-left:auto;
    position:static
  }
  .well-kill-page .main-nav {
    display:none;
    position:absolute;
    z-index:1;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border-radius:12px;
    padding:9px 18px;
    box-shadow:0 13px 25px rgba(10,40,90,.15);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  .well-kill-page .main-nav.open {
    display:flex
  }
  .well-kill-page .main-nav a {
    padding:11px 2px;
    font-size:14px
  }
  .well-kill-page .main-nav a.active:after {
    left:0;
    right:auto;
    bottom:5px;
    transform:none
  }
  .well-kill-page .main-nav .button {
    margin:7px 0 4px
  }
  body.well-kill-page .detail-feature {
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:280px 155px 155px;
    gap:12px
  }
  body.well-kill-page .detail-feature img:first-of-type {
    grid-column:1/-1;
    grid-row:1
  }
  body.well-kill-page .detail-feature img:last-of-type {
    grid-column:1;
    grid-row:2
  }
  body.well-kill-page .detail-feature:before {
    grid-column:2;
    grid-row:2
  }
  body.well-kill-page .detail-feature:after {
    grid-column:1/-1;
    grid-row:3
  }
}
@media(max-width:540px) {
  body.well-kill-page .detail-feature {
    grid-template-columns:1fr;
    grid-template-rows:250px repeat(3,180px)
  }
  body.well-kill-page .detail-feature img:first-of-type,body.well-kill-page .detail-feature img:last-of-type,body.well-kill-page .detail-feature:before,body.well-kill-page .detail-feature:after {
    grid-column:1
  }
  body.well-kill-page .detail-feature img:first-of-type {
    grid-row:1
  }
  body.well-kill-page .detail-feature img:last-of-type {
    grid-row:2
  }
  body.well-kill-page .detail-feature:before {
    grid-row:3
  }
  body.well-kill-page .detail-feature:after {
    grid-row:4
  }
}
/* Remaining service-detail pages: reuse the approved Well Kill structural shell only. */
body:not(.well-kill-page):has(.detail-hero) {
  --service-detail-header-offset:88px;
  padding-top:var(--service-detail-header-offset)
}
body:not(.well-kill-page):has(.detail-hero) .container {
  width:min(calc(100% - 112px),1600px)
}
body:not(.well-kill-page):has(.detail-hero) .site-header {
  position:fixed;
  inset:0 0 auto;
  width:100%;
  z-index:9999;
  background:transparent;
  border:0
}
body:not(.well-kill-page):has(.detail-hero) .nav-shell {
  position:relative;
  width:min(calc(100% - 80px),1510px);
  height:68px;
  margin:10px auto 0;
  padding:0 18px 0 25px;
  background:linear-gradient(90deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.99) 62%,rgba(222,239,255,.78) 100%);
  border-radius:18px;
  box-shadow:0 10px 25px rgba(13,49,101,.10)
}
body:not(.well-kill-page):has(.detail-hero) .logo {
  width:132px
}
body:not(.well-kill-page):has(.detail-hero) .main-nav {
  gap:25px
}
body:not(.well-kill-page):has(.detail-hero) .main-nav a {
  padding:23px 0 20px;
  font-size:14px
}
body:not(.well-kill-page):has(.detail-hero) .main-nav a.active:after {
  bottom:13px
}
body:not(.well-kill-page):has(.detail-hero) .main-nav .button {
  margin-left:10px;
  padding:12px 24px;
  border-radius:8px;
  font-size:14px
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature {
  display:grid;
  grid-template-columns:1fr;
  grid-template-rows:330px 180px;
  gap:14px;
  margin-top:48px
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature:before,body:not(.well-kill-page):has(.detail-hero) .detail-feature:after {
  display:none
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature img {
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  border-radius:8px;
  object-fit:cover;
  overflow:hidden
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature img:first-of-type {
  grid-row:1;
  grid-column:1;
  object-position:center
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature img:last-of-type {
  grid-row:2;
  grid-column:1;
  object-position:center
}
@media(max-width:1100px) and (min-width:821px) {
  body:not(.well-kill-page):has(.detail-hero) .container {
    width:calc(100% - 48px)
  }
  body:not(.well-kill-page):has(.detail-hero) .nav-shell {
    width:calc(100% - 48px)
  }
  body:not(.well-kill-page):has(.detail-hero) .main-nav {
    gap:15px
  }
  body:not(.well-kill-page):has(.detail-hero) .main-nav a {
    font-size:13px
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature {
    grid-template-rows:290px 165px
  }
}
@media(max-width:820px) {
  body:not(.well-kill-page):has(.detail-hero) {
    --service-detail-header-offset:83px
  }
  body:not(.well-kill-page):has(.detail-hero) .container {
    width:calc(100% - 32px)
  }
  body:not(.well-kill-page):has(.detail-hero) .site-header {
    height:var(--service-detail-header-offset)
  }
  body:not(.well-kill-page):has(.detail-hero) .nav-shell {
    position:relative;
    width:calc(100% - 32px);
    height:67px;
    margin:8px auto 0;
    padding:0 14px;
    background:linear-gradient(90deg,#fff,rgba(222,239,255,.78));
    border-radius:14px;
    box-shadow:0 8px 22px rgba(13,49,101,.10)
  }
  body:not(.well-kill-page):has(.detail-hero) .logo {
    width:103px
  }
  body:not(.well-kill-page):has(.detail-hero) .menu-toggle {
    display:block;
    margin-left:auto;
    position:static
  }
  body:not(.well-kill-page):has(.detail-hero) .main-nav {
    display:none;
    position:absolute;
    z-index:1;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border-radius:12px;
    padding:9px 18px;
    box-shadow:0 13px 25px rgba(10,40,90,.15);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  body:not(.well-kill-page):has(.detail-hero) .main-nav.open {
    display:flex
  }
  body:not(.well-kill-page):has(.detail-hero) .main-nav a {
    padding:11px 2px;
    font-size:14px
  }
  body:not(.well-kill-page):has(.detail-hero) .main-nav a.active:after {
    left:0;
    right:auto;
    bottom:5px;
    transform:none
  }
  body:not(.well-kill-page):has(.detail-hero) .main-nav .button {
    margin:7px 0 4px
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature {
    grid-template-rows:280px 170px;
    gap:12px
  }
}
@media(max-width:540px) {
  body:not(.well-kill-page):has(.detail-hero) .detail-feature {
    grid-template-rows:250px 185px
  }
}
/* Final service-detail gallery correction: one lead image with three equal supporting images. */
body.well-kill-page .detail-feature {
  grid-template-rows:330px 217px
}
@media(max-width:1100px) and (min-width:821px) {
  body.well-kill-page .detail-feature {
    grid-template-rows:290px 196px
  }
}
@media(max-width:820px) {
  body.well-kill-page .detail-feature {
    grid-template-rows:280px 217px 217px
  }
}
@media(max-width:540px) {
  body.well-kill-page .detail-feature {
    grid-template-rows:250px repeat(3,252px)
  }
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature {
  grid-template-columns:repeat(3,minmax(0,1fr));
  grid-template-rows:330px 217px
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature:before,body:not(.well-kill-page):has(.detail-hero) .detail-feature:after {
  display:block;
  content:'';
  width:100%;
  height:100%;
  border-radius:8px;
  background:center/cover no-repeat;
  min-height:0
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature img:first-of-type {
  grid-column:1/-1;
  grid-row:1
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature img:last-of-type {
  grid-column:1;
  grid-row:2
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature:before {
  grid-column:2;
  grid-row:2
}
body:not(.well-kill-page):has(.detail-hero) .detail-feature:after {
  grid-column:3;
  grid-row:2
}
body:has(.detail-side a.active[href="well-intervention.html"]) .detail-feature:before {
  background-image:url('../images/placeholders/image16.jpeg')
}
body:has(.detail-side a.active[href="well-intervention.html"]) .detail-feature:after {
  background-image:url('../images/placeholders/image13.jpg')
}
body:has(.detail-side a.active[href="pump-services.html"]) .detail-feature:before {
  background-image:url('../images/placeholders/image43.jpg')
}
body:has(.detail-side a.active[href="pump-services.html"]) .detail-feature:after {
  background-image:url('../images/placeholders/image45.jpeg')
}
body:has(.detail-side a.active[href="rig-cooling.html"]) .detail-feature:before {
  background-image:url('../images/placeholders/image22.jpeg')
}
body:has(.detail-side a.active[href="rig-cooling.html"]) .detail-feature:after {
  background-image:url('../images/placeholders/image19.png')
}
body:has(.detail-side a.active[href="fire-fighting-fire-cover.html"]) .detail-feature:before {
  background-image:url('../images/placeholders/image28.jpeg')
}
body:has(.detail-side a.active[href="fire-fighting-fire-cover.html"]) .detail-feature:after {
  background-image:url('../images/placeholders/image29.jpeg')
}
body:has(.detail-side a.active[href="pigging.html"]) .detail-feature:before {
  background-image:url('../images/placeholders/image41.png')
}
body:has(.detail-side a.active[href="pigging.html"]) .detail-feature:after {
  background-image:url('../images/placeholders/image38.jpg')
}
body:has(.detail-side a.active[href="equipment-procurement-rentals.html"]) .detail-feature:before {
  background-image:url('../images/placeholders/image74.jpg')
}
body:has(.detail-side a.active[href="equipment-procurement-rentals.html"]) .detail-feature:after {
  background-image:url('../images/placeholders/image73.jpg')
}
body:has(.detail-side a.active[href="welding-fabrication.html"]) .detail-feature:before {
  background-image:url('../images/services/welding-fabrication.jpg')
}
body:has(.detail-side a.active[href="welding-fabrication.html"]) .detail-feature:after {
  background-image:url('../images/placeholders/image52.png')
}
@media(max-width:1100px) and (min-width:821px) {
  body:not(.well-kill-page):has(.detail-hero) .detail-feature {
    grid-template-rows:290px 196px
  }
}
@media(max-width:820px) {
  body:not(.well-kill-page):has(.detail-hero) .detail-feature {
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:280px 217px 217px
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature img:first-of-type {
    grid-column:1/-1;
    grid-row:1
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature img:last-of-type {
    grid-column:1;
    grid-row:2
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature:before {
    grid-column:2;
    grid-row:2
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature:after {
    grid-column:1/-1;
    grid-row:3
  }
}
@media(max-width:540px) {
  body:not(.well-kill-page):has(.detail-hero) .detail-feature {
    grid-template-columns:1fr;
    grid-template-rows:250px repeat(3,252px)
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature img:first-of-type,body:not(.well-kill-page):has(.detail-hero) .detail-feature img:last-of-type,body:not(.well-kill-page):has(.detail-hero) .detail-feature:before,body:not(.well-kill-page):has(.detail-hero) .detail-feature:after {
    grid-column:1
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature img:first-of-type {
    grid-row:1
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature img:last-of-type {
    grid-row:2
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature:before {
    grid-row:3
  }
  body:not(.well-kill-page):has(.detail-hero) .detail-feature:after {
    grid-row:4
  }
}
/* Projects page only: retained project story layout with larger, fully clickable image groups. */
body.projects-page {
  --projects-header-offset:88px;
  padding-top:var(--projects-header-offset);
  font-size:16px
}
body.projects-page .container {
  width:min(calc(100% - 112px),1600px)
}
body.projects-page .site-header {
  position:fixed;
  inset:0 0 auto;
  width:100%;
  z-index:9999;
  background:transparent;
  border:0
}
body.projects-page .nav-shell {
  position:relative;
  width:min(calc(100% - 80px),1510px);
  height:68px;
  margin:10px auto 0;
  padding:0 18px 0 25px;
  background:linear-gradient(90deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.99) 62%,rgba(222,239,255,.78) 100%);
  border-radius:18px;
  box-shadow:0 10px 25px rgba(13,49,101,.10)
}
body.projects-page .logo {
  width:132px
}
.projects-page .main-nav {
  gap:25px
}
.projects-page .main-nav a {
  padding:23px 0 20px;
  font-size:14px
}
.projects-page .main-nav a.active:after {
  bottom:13px
}
.projects-page .main-nav .button {
  margin-left:10px;
  padding:12px 24px;
  border-radius:8px;
  font-size:14px
}
.projects-page .page-hero h1 {
  font-size:52px
}
.projects-page .project {
  grid-template-columns:.9fr 1.22fr;
  gap:50px
}
.projects-page .project h2 {
  font-size:30px
}
.projects-page .project-meta {
  font-size:15px
}
.projects-page .project .prose {
  font-size:16px;
  line-height:1.62
}
.projects-page .project-images {
  grid-template-columns:1.5fr repeat(2,1fr);
  grid-template-rows:176px 176px;
  gap:12px
}
.projects-page .project-images:before,.projects-page .project-images:after {
  display:none
}
.projects-page .project-images a {
  display:block;
  position:relative;
  overflow:hidden;
  border-radius:7px;
  cursor:pointer;
  background:#edf3fa
}
.projects-page .project-images a:first-child {
  grid-column:1;
  grid-row:1/3
}
.projects-page .project-images a:nth-child(2) {
  grid-column:2;
  grid-row:1
}
.projects-page .project-images a:nth-child(3) {
  grid-column:3;
  grid-row:1
}
.projects-page .project-images a:nth-child(4) {
  grid-column:2;
  grid-row:2
}
.projects-page .project-images a:nth-child(5) {
  grid-column:3;
  grid-row:2
}
.projects-page .project-images img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
  transition:transform .3s ease
}
.projects-page .project-images a:hover img {
  transform:scale(1.04)
}
.projects-page .project-images a:after {
  content:'⌕';
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:rgba(5,33,80,0);
  color:transparent;
  font-size:30px;
  transition:background .25s,color .25s
}
.projects-page .project-images a:hover:after {
  background:rgba(5,33,80,.22);
  color:#fff
}
.project-lightbox {
  z-index:10000
}
.project-lightbox .lightbox-prev,.project-lightbox .lightbox-next {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.8);
  border-radius:50%;
  background:rgba(6,34,82,.55);
  color:#fff;
  font-size:25px;
  cursor:pointer
}
.project-lightbox .lightbox-prev {
  left:24px
}
.project-lightbox .lightbox-next {
  right:24px
}
.project-lightbox .lightbox-close {
  z-index:1
}
.project-lightbox button:hover {
  background:#fff;
  color:var(--blue)
}
@media(max-width:1100px) and (min-width:821px) {
  body.projects-page .container {
    width:calc(100% - 48px)
  }
  body.projects-page .nav-shell {
    width:calc(100% - 48px)
  }
  body.projects-page .main-nav {
    gap:15px
  }
  .projects-page .main-nav a {
    font-size:13px
  }
  .projects-page .page-hero h1 {
    font-size:47px
  }
  .projects-page .project {
    grid-template-columns:1fr 1.15fr;
    gap:38px
  }
  .projects-page .project-images {
    grid-template-rows:160px 160px
  }
}
@media(max-width:820px) {
  body.projects-page {
    --projects-header-offset:83px
  }
  body.projects-page .container {
    width:calc(100% - 32px)
  }
  body.projects-page .site-header {
    height:var(--projects-header-offset)
  }
  body.projects-page .nav-shell {
    position:relative;
    width:calc(100% - 32px);
    height:67px;
    margin:8px auto 0;
    padding:0 14px;
    background:linear-gradient(90deg,#fff,rgba(222,239,255,.78));
    border-radius:14px;
    box-shadow:0 8px 22px rgba(13,49,101,.10)
  }
  body.projects-page .logo {
    width:103px
  }
  .projects-page .menu-toggle {
    display:block;
    margin-left:auto;
    position:static
  }
  .projects-page .main-nav {
    display:none;
    position:absolute;
    z-index:1;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border-radius:12px;
    padding:9px 18px;
    box-shadow:0 13px 25px rgba(10,40,90,.15);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  .projects-page .main-nav.open {
    display:flex
  }
  .projects-page .main-nav a {
    padding:11px 2px;
    font-size:14px
  }
  .projects-page .main-nav a.active:after {
    left:0;
    right:auto;
    bottom:5px;
    transform:none
  }
  .projects-page .main-nav .button {
    margin:7px 0 4px
  }
  .projects-page .page-hero h1 {
    font-size:39px
  }
  .projects-page .project {
    grid-template-columns:1fr;
    gap:28px
  }
  .projects-page .project:nth-child(even) .project-images {
    order:0
  }
  .projects-page .project-images {
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:230px 140px 140px
  }
  .projects-page .project-images a:first-child {
    grid-column:1/-1;
    grid-row:1
  }
  .projects-page .project-images a:nth-child(2) {
    grid-column:1;
    grid-row:2
  }
  .projects-page .project-images a:nth-child(3) {
    grid-column:2;
    grid-row:2
  }
  .projects-page .project-images a:nth-child(4) {
    grid-column:1;
    grid-row:3
  }
  .projects-page .project-images a:nth-child(5) {
    grid-column:2;
    grid-row:3
  }
  .project-lightbox {
    padding:18px
  }
  .project-lightbox .lightbox-prev {
    left:12px
  }
  .project-lightbox .lightbox-next {
    right:12px
  }
}
/* FAQ page only: reuse the approved fixed navigation and broad page shell. */
body:has(.faq-layout) {
  --faq-header-offset:88px;
  padding-top:var(--faq-header-offset)
}
body:has(.faq-layout) .container {
  width:min(calc(100% - 112px),1600px)
}
body:has(.faq-layout) .site-header {
  position:fixed;
  inset:0 0 auto;
  width:100%;
  z-index:9999;
  background:transparent;
  border:0
}
body:has(.faq-layout) .nav-shell {
  position:relative;
  width:min(calc(100% - 80px),1510px);
  height:68px;
  margin:10px auto 0;
  padding:0 18px 0 25px;
  background:linear-gradient(90deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.99) 62%,rgba(222,239,255,.78) 100%);
  border-radius:18px;
  box-shadow:0 10px 25px rgba(13,49,101,.10)
}
body:has(.faq-layout) .nav-shell .logo {
  width:132px
}
body:has(.faq-layout) .main-nav {
  gap:25px
}
body:has(.faq-layout) .main-nav a {
  padding:23px 0 20px;
  font-size:14px
}
body:has(.faq-layout) .main-nav a.active:after {
  bottom:13px
}
body:has(.faq-layout) .main-nav .button {
  margin-left:10px;
  padding:12px 24px;
  border-radius:8px;
  font-size:14px
}
body:has(.faq-layout) .faq-layout {
  grid-template-columns:minmax(0,1.85fr) minmax(360px,.7fr);
  gap:70px
}
@media(max-width:1100px) and (min-width:821px) {
  body:has(.faq-layout) .container {
    width:calc(100% - 48px)
  }
  body:has(.faq-layout) .nav-shell {
    width:calc(100% - 48px)
  }
  body:has(.faq-layout) .main-nav {
    gap:15px
  }
  body:has(.faq-layout) .main-nav a {
    font-size:13px
  }
  body:has(.faq-layout) .faq-layout {
    grid-template-columns:minmax(0,1.7fr) minmax(300px,.75fr);
    gap:42px
  }
}
@media(max-width:820px) {
  body:has(.faq-layout) {
    --faq-header-offset:83px
  }
  body:has(.faq-layout) .container {
    width:calc(100% - 32px)
  }
  body:has(.faq-layout) .site-header {
    height:var(--faq-header-offset)
  }
  body:has(.faq-layout) .nav-shell {
    position:relative;
    width:calc(100% - 32px);
    height:67px;
    margin:8px auto 0;
    padding:0 14px;
    background:linear-gradient(90deg,#fff,rgba(222,239,255,.78));
    border-radius:14px;
    box-shadow:0 8px 22px rgba(13,49,101,.10)
  }
  body:has(.faq-layout) .nav-shell .logo {
    width:103px
  }
  body:has(.faq-layout) .menu-toggle {
    display:block;
    margin-left:auto;
    position:static
  }
  body:has(.faq-layout) .main-nav {
    display:none;
    position:absolute;
    z-index:1;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border-radius:12px;
    padding:9px 18px;
    box-shadow:0 13px 25px rgba(10,40,90,.15);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  body:has(.faq-layout) .main-nav.open {
    display:flex
  }
  body:has(.faq-layout) .main-nav a {
    padding:11px 2px;
    font-size:14px
  }
  body:has(.faq-layout) .main-nav a.active:after {
    left:0;
    right:auto;
    bottom:5px;
    transform:none
  }
  body:has(.faq-layout) .main-nav .button {
    margin:7px 0 4px
  }
  body:has(.faq-layout) .faq-layout {
    grid-template-columns:1fr;
    gap:30px
  }
}
/* Contact page only: locked global navigation and broad content alignment. */
body:has(.contact-cards) {
  --contact-header-offset:88px;
  padding-top:var(--contact-header-offset)
}
body:has(.contact-cards) .container {
  width:min(calc(100% - 112px),1600px)
}
body:has(.contact-cards) .site-header {
  position:fixed;
  inset:0 0 auto;
  width:100%;
  z-index:9999;
  background:transparent;
  border:0
}
body:has(.contact-cards) .nav-shell {
  position:relative;
  width:min(calc(100% - 80px),1510px);
  height:68px;
  margin:10px auto 0;
  padding:0 18px 0 25px;
  background:linear-gradient(90deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.99) 62%,rgba(222,239,255,.78) 100%);
  border-radius:18px;
  box-shadow:0 10px 25px rgba(13,49,101,.10)
}
body:has(.contact-cards) .nav-shell .logo {
  width:132px
}
body:has(.contact-cards) .main-nav {
  gap:25px
}
body:has(.contact-cards) .main-nav a {
  padding:23px 0 20px;
  font-size:14px
}
body:has(.contact-cards) .main-nav a.active:after {
  bottom:13px
}
body:has(.contact-cards) .main-nav .button {
  margin-left:10px;
  padding:12px 24px;
  border-radius:8px;
  font-size:14px
}
@media(max-width:1100px) and (min-width:821px) {
  body:has(.contact-cards) .container {
    width:calc(100% - 48px)
  }
  body:has(.contact-cards) .nav-shell {
    width:calc(100% - 48px)
  }
  body:has(.contact-cards) .main-nav {
    gap:15px
  }
  body:has(.contact-cards) .main-nav a {
    font-size:13px
  }
}
@media(max-width:820px) {
  body:has(.contact-cards) {
    --contact-header-offset:83px
  }
  body:has(.contact-cards) .container {
    width:calc(100% - 32px)
  }
  body:has(.contact-cards) .site-header {
    height:var(--contact-header-offset)
  }
  body:has(.contact-cards) .nav-shell {
    position:relative;
    width:calc(100% - 32px);
    height:67px;
    margin:8px auto 0;
    padding:0 14px;
    background:linear-gradient(90deg,#fff,rgba(222,239,255,.78));
    border-radius:14px;
    box-shadow:0 8px 22px rgba(13,49,101,.10)
  }
  body:has(.contact-cards) .nav-shell .logo {
    width:103px
  }
  body:has(.contact-cards) .menu-toggle {
    display:block;
    margin-left:auto;
    position:static
  }
  body:has(.contact-cards) .main-nav {
    display:none;
    position:absolute;
    z-index:1;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border-radius:12px;
    padding:9px 18px;
    box-shadow:0 13px 25px rgba(10,40,90,.15);
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  body:has(.contact-cards) .main-nav.open {
    display:flex
  }
  body:has(.contact-cards) .main-nav a {
    padding:11px 2px;
    font-size:14px
  }
  body:has(.contact-cards) .main-nav a.active:after {
    left:0;
    right:auto;
    bottom:5px;
    transform:none
  }
  body:has(.contact-cards) .main-nav .button {
    margin:7px 0 4px
  }
}
/* Homepage only: supplied client and partner logo marquee. */
.home-page .home-client-marquee {
  width:100%;
  height:145px;
  background:#fff;
  display:flex;
  align-items:center;
  overflow:hidden
}
.home-page .home-client-marquee-inner {
  width:100%;
  overflow:hidden;
  mask-image:linear-gradient(90deg,transparent 0,#fff 7%,#fff 93%,transparent 100%);
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#fff 7%,#fff 93%,transparent 100%)
}
.home-page .home-client-marquee-track {
  display:flex;
  width:max-content;
  animation:home-client-marquee-scroll 32s linear infinite;
  will-change:transform
}
.home-page .home-client-logo-set {
  display:flex;
  align-items:center;
  gap:72px;
  flex:none;
  padding-right:72px
}
.home-page .home-client-logo-item {
  width:205px;
  height:72px;
  display:grid;
  place-items:center;
  flex:none;
  padding:7px 15px
}
.home-page .home-client-logo-item img {
  display:block;
  width:100%;
  height:62px;
  object-fit:contain;
  transition:transform .25s ease,opacity .25s ease
}
.home-page .home-client-marquee:hover .home-client-marquee-track {
  animation-play-state:paused
}
.home-page .home-client-logo-item:hover img {
  transform:scale(1.04);
  opacity:.92
}
@keyframes home-client-marquee-scroll {
  to {
    transform:translateX(-50%)
  }
}
@media(max-width:820px) {
  .home-page .home-client-marquee {
    height:126px
  }
  .home-page .home-client-logo-set {
    gap:42px;
    padding-right:42px
  }
  .home-page .home-client-logo-item {
    width:160px;
    height:62px;
    padding:6px 10px
  }
  .home-page .home-client-logo-item img {
    height:48px
  }
  .home-page .home-client-marquee-track {
    animation-duration:28s
  }
}
@media(max-width:420px) {
  .home-page .home-client-logo-set {
    gap:32px;
    padding-right:32px
  }
  .home-page .home-client-logo-item {
    width:142px;
    height:58px
  }
  .home-page .home-client-logo-item img {
    height:42px
  }
}
@media(prefers-reduced-motion:reduce) {
  .home-page .home-client-marquee-inner {
    overflow-x:auto;
    mask-image:none;
    -webkit-mask-image:none
  }
  .home-page .home-client-marquee-track {
    animation:none
  }
  .home-page .home-client-logo-set[aria-hidden="true"] {
    display:none
  }
}
/* Homepage marquee expansion: complete supplied Partners then Clients sequence. */
.home-page .home-client-marquee {
  height:194px;
  flex-direction:column;
  justify-content:center;
  gap:15px;
  padding:20px 0 14px;
  box-sizing:border-box
}
.home-page .home-client-marquee-title {
  margin:0;
  color:var(--navy);
  font:700 30px/1.1 Manrope;
  text-align:center;
  letter-spacing:-.6px
}
.home-page .home-client-marquee-title span {
  color:var(--blue)
}
.home-page .home-client-marquee-inner {
  flex:1;
  display:flex;
  align-items:center
}
.home-page .home-client-marquee-track {
  animation-duration:56s
}
.home-page .home-client-logo-set {
  gap:62px;
  padding-right:62px
}
.home-page .home-client-logo-item {
  width:194px;
  height:66px
}
.home-page .home-client-logo-item img {
  height:58px
}
@media(max-width:820px) {
  .home-page .home-client-marquee {
    height:168px;
    gap:12px;
    padding:18px 0 12px
  }
  .home-page .home-client-marquee-title {
    font-size:26px
  }
  .home-page .home-client-logo-set {
    gap:38px;
    padding-right:38px
  }
  .home-page .home-client-logo-item {
    width:157px;
    height:56px
  }
  .home-page .home-client-logo-item img {
    height:46px
  }
  .home-page .home-client-marquee-track {
    animation-duration:50s
  }
}
@media(max-width:420px) {
  .home-page .home-client-marquee {
    height:160px
  }
  .home-page .home-client-marquee-title {
    font-size:24px
  }
  .home-page .home-client-logo-set {
    gap:30px;
    padding-right:30px
  }
  .home-page .home-client-logo-item {
    width:142px;
    height:52px
  }
  .home-page .home-client-logo-item img {
    height:42px
  }
}
