:root {
  --navy-950: #14231f;
  --navy-900: #24483f;
  --navy-800: #366457;
  --sea-700: #366457;
  --sea-500: #659286;
  --orange-500: #f8ab37;
  --orange-400: #ffc05c;
  --ink: #172635;
  --muted: #607182;
  --line: #dbe3e9;
  --mist: #f3f7f9;
  --white: #ffffff;
  --shadow-sm: 0 12px 36px rgba(6, 22, 36, 0.08);
  --shadow-lg: 0 26px 70px rgba(6, 22, 36, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --container: 1180px;
  --header-h: 92px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, h4, h5, p { margin-top: 0; }
h1, h2, h3, h4, h5 {
  color: var(--navy-900);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.12;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.8rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -0.04em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: -0.02em; }
p:last-child { margin-bottom: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 800px); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 128px) 0; }
.section-sm { padding: clamp(52px, 7vw, 86px) 0; }
.section-mist { background: var(--mist); }
.section-navy { color: rgba(255,255,255,.78); background: var(--navy-950); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-rule { border-top: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-navy .section-heading p { color: rgba(255,255,255,.68); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--sea-700);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 2px; content: ""; background: var(--orange-500); }
.eyebrow.light { color: rgba(255,255,255,.72); }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.kicker { color: var(--orange-500); font-family: "Montserrat", sans-serif; font-weight: 700; }

.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; transform: translateY(-150%); color: var(--navy-950); background: var(--orange-500); border-radius: 6px; font-weight: 700; }
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-h);
  color: var(--white);
  background: rgba(6, 22, 36, .92);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .25s ease, box-shadow .25s ease, min-height .25s ease;
}
.page-home .site-header { background: linear-gradient(180deg, rgba(6,22,36,.82), rgba(6,22,36,0)); border-color: transparent; }
.site-header.scrolled, .page-home .site-header.scrolled { min-height: 76px; background: rgba(6,22,36,.96); box-shadow: 0 8px 28px rgba(6,22,36,.18); backdrop-filter: blur(14px); }
.header-inner { min-height: inherit; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 300px; }
.brand-logo { width: min(300px, 45vw); height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(15px, 2.1vw, 30px); }
.site-nav a { position: relative; flex: 0 0 auto; padding: 10px 0; color: rgba(255,255,255,.78); font-family: "Montserrat", sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; content: ""; transform: scaleX(0); background: var(--orange-500); transform-origin: right; transition: transform .2s ease; }
.site-nav > a:hover, .site-nav > a:focus-visible, .site-nav > a.active { color: var(--white); }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after, .site-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 17px !important; color: var(--navy-950) !important; background: var(--orange-500); border-radius: 999px; }
.nav-cta:hover { background: var(--orange-400); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 3px; }
.nav-scrim { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950) url("../images/hero.jpg") center 48% / cover no-repeat;
}
.hero::before { position: absolute; z-index: -2; inset: 0; content: ""; background: linear-gradient(90deg, rgba(20,35,31,.94) 0%, rgba(36,72,63,.78) 48%, rgba(20,35,31,.28) 100%); }
.hero::after { position: absolute; z-index: -1; right: -10vw; bottom: -35vh; width: 70vw; height: 70vw; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.hero-content { width: min(850px, 78%); padding: calc(var(--header-h) + 72px) 0 70px; }
.hero h1 { max-width: 780px; margin-bottom: 25px; color: var(--white); }
.hero-intro { max-width: 720px; margin-bottom: 20px; color: rgba(255,255,255,.82); font-size: clamp(1.12rem, 2vw, 1.38rem); }
.hero-tagline { margin-bottom: 28px; color: var(--orange-400); font-family: "Montserrat", sans-serif; font-size: clamp(.9rem, 1.5vw, 1.06rem); font-weight: 700; letter-spacing: .05em; }
.value-row { display: flex; flex-wrap: wrap; gap: 13px 30px; margin: 25px 0 38px; padding: 0; list-style: none; color: var(--white); font-family: "Montserrat", sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.value-row li { display: flex; align-items: center; gap: 10px; }
.value-row li::before { width: 7px; height: 7px; content: ""; background: var(--orange-500); border-radius: 50%; }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { max-width: 620px; margin-top: 24px; color: rgba(255,255,255,.62); font-size: .88rem; }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); color: rgba(255,255,255,.62); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue::before { width: 1px; height: 34px; content: ""; background: var(--orange-500); }

.page-hero { min-height: 72svh; }
.page-hero .hero-content { padding-top: calc(var(--header-h) + 90px); }
.page-hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.8rem); }
.entity-line { max-width: 720px; margin-bottom: 16px; color: rgba(255,255,255,.65); font-size: .9rem; letter-spacing: .04em; }
.page-mws .page-hero { background: var(--navy-950) url("../images/sections/mws-rig.jpg") center 42% / cover no-repeat; }
.page-mws .page-hero::before { background: linear-gradient(90deg, rgba(18,35,39,.96), rgba(36,72,63,.74) 55%, rgba(18,35,39,.3)); }

.internal-hero { position: relative; overflow: hidden; padding: calc(var(--header-h) + 82px) 0 92px; color: var(--white); background: var(--navy-800); }
.internal-hero::before { position: absolute; right: -150px; bottom: -310px; width: 620px; height: 620px; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025); }
.internal-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); align-items: center; gap: clamp(42px, 7vw, 90px); }
.internal-hero h1 { margin-bottom: 22px; color: var(--white); font-size: clamp(2.5rem, 5vw, 4.8rem); }
.internal-hero p { max-width: 680px; color: rgba(255,255,255,.78); font-size: 1.12rem; }
.internal-visual { position: relative; min-height: 330px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.internal-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.internal-visual iframe { width: 100%; height: 100%; min-height: 330px; border: 0; }
.internal-visual.contain img { padding: 42px; object-fit: contain; background: rgba(255,255,255,.94); }
.page-jobs .internal-hero { background: var(--navy-950); }
.page-contact .internal-hero { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); }
.page-contact .internal-hero-grid { grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr); gap: clamp(42px, 5vw, 72px); }
.page-contact .internal-hero h1 { font-size: clamp(2.8rem, 4.6vw, 4.5rem); }
.page-contact .internal-visual { min-height: 470px; }
.page-contact .internal-visual iframe { min-height: 470px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px; font-family: "Montserrat", sans-serif; font-size: .82rem; font-weight: 800; letter-spacing: .02em; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn::after { content: "\2192"; font-size: 1.15em; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { color: var(--navy-950); background: var(--orange-500); }
.btn-primary:hover { background: var(--orange-400); }
.btn-secondary { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.38); backdrop-filter: blur(8px); }
.btn-secondary:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.7); }
.btn-dark { color: var(--white); background: var(--navy-900); }
.btn-outline { color: var(--navy-900); border-color: var(--navy-900); }

.intro-grid, .media-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); align-items: center; gap: clamp(42px, 8vw, 100px); }
.intro-copy h2, .media-copy h2 { margin-bottom: 25px; }
.media-frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.media-frame::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.3); border-radius: inherit; pointer-events: none; }
.media-frame img { width: 100%; min-height: 480px; object-fit: cover; }
.media-caption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 17px 20px; color: rgba(255,255,255,.75); background: rgba(6,22,36,.86); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; backdrop-filter: blur(12px); font-size: .85rem; }

.division-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.division-card { position: relative; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); background: var(--navy-900); }
.division-card::before { position: absolute; z-index: 1; inset: 0; content: ""; background: linear-gradient(180deg, rgba(6,22,36,.08) 30%, rgba(6,22,36,.97)); }
.division-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.division-card:hover img { transform: scale(1.035); }
.division-card-content { position: relative; z-index: 2; padding: clamp(26px, 5vw, 48px); color: rgba(255,255,255,.82); }
.division-card h3 { margin-bottom: 12px; color: var(--white); font-size: clamp(1.55rem, 3vw, 2.4rem); }
.division-card .division-index { display: block; margin-bottom: 14px; color: var(--orange-400); font-family: "Montserrat", sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.division-card .text-link { color: var(--white); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card, .value-card, .contact-card, .process-card { padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 8px 26px rgba(6,22,36,.035); }
.service-card .card-num, .process-card .card-num { display: inline-grid; width: 38px; height: 38px; margin-bottom: 22px; place-items: center; color: var(--navy-950); background: var(--orange-500); border-radius: 50%; font-family: "Montserrat", sans-serif; font-size: .78rem; font-weight: 800; }
.service-card h3, .value-card h3, .process-card h3 { margin-bottom: 13px; }
.service-card p, .value-card p, .process-card p { color: var(--muted); font-size: .95rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--sea-700); font-family: "Montserrat", sans-serif; font-size: .8rem; font-weight: 800; }
.text-link::after { content: "\2192"; }

.stat-band { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); overflow: hidden; }
.stat-intro, .stat { padding: 32px; }
.stat { border-left: 1px solid rgba(255,255,255,.14); }
.stat strong { display: block; color: var(--orange-400); font-family: "Montserrat", sans-serif; font-size: clamp(1.5rem, 2.8vw, 2.4rem); }
.stat span { color: rgba(255,255,255,.68); font-size: .87rem; }

.news-band { color: var(--navy-950); background: var(--orange-500); }
.news-inner { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: 22px; text-align: center; }
.news-label { padding: 5px 10px; color: var(--white); background: var(--navy-900); border-radius: 999px; font-family: "Montserrat", sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.news-inner strong { font-family: "Montserrat", sans-serif; }

.credential-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 15px; }
.credential { min-height: 160px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.credential-code { color: var(--orange-500); font-family: "Montserrat", sans-serif; font-size: .76rem; font-weight: 800; letter-spacing: .16em; }
.credential-mark { display: block; height: 54px; width: auto; max-width: 130px; object-fit: contain; margin-bottom: 6px; }
.credential strong { display: block; color: var(--navy-900); font-family: "Montserrat", sans-serif; }
.credential small { display: block; margin-top: 5px; color: var(--muted); }
.cert-logos { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-top: 30px; }
.cert-logos img { height: 96px; width: auto; padding: 12px 16px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); }
.review-note { margin-top: 25px; padding: 16px 19px; color: #72531c; background: #fff8e8; border: 1px solid #f3d89b; border-radius: 10px; font-size: .88rem; }

.client-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.client-logo { min-height: 106px; padding: 18px; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.client-logo img { width: 100%; max-width: 125px; max-height: 54px; object-fit: contain; filter: grayscale(1); opacity: .58; transition: filter .25s ease, opacity .25s ease, transform .25s ease; }
.client-logo:hover img { filter: none; opacity: 1; transform: scale(1.04); }

.feature-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 30px; color: var(--muted); }
.feature-list li::before { position: absolute; top: .62em; left: 0; width: 11px; height: 11px; content: ""; background: var(--orange-500); border-radius: 3px; transform: rotate(45deg); }
.operations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.operation { padding: 18px 20px; color: var(--navy-900); background: var(--mist); border-left: 3px solid var(--orange-500); border-radius: 0 8px 8px 0; font-family: "Montserrat", sans-serif; font-size: .83rem; font-weight: 700; }

.sector-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.sector-card { display: grid; grid-template-columns: 190px minmax(0, 1fr); min-height: 220px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.sector-card img { width: 100%; height: 100%; object-fit: cover; }
.sector-copy { padding: 28px; }
.sector-copy h3 { margin-bottom: 10px; }
.sector-copy p { color: var(--muted); font-size: .92rem; }
.capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.capability-panel { padding: 32px; color: rgba(255,255,255,.74); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); }
.capability-panel h3 { color: var(--white); }
.capability-panel ul { margin: 20px 0 0; padding-left: 20px; }
.capability-panel li { margin: 8px 0; }

.quote-band { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.quote-band::after { position: absolute; top: -230px; right: -160px; width: 520px; height: 520px; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025); }
.quote-band blockquote { position: relative; z-index: 1; max-width: 970px; margin: 0; color: var(--white); font-family: "Montserrat", sans-serif; font-size: clamp(1.55rem, 3vw, 2.9rem); font-weight: 700; line-height: 1.3; letter-spacing: -.025em; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card h3 { margin-bottom: 8px; }
.contact-card .contact-type { display: block; margin-bottom: 24px; color: var(--sea-700); font-family: "Montserrat", sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-card address { color: var(--muted); font-style: normal; }
.contact-card a { color: var(--sea-700); font-weight: 600; }
.contact-card.pending { background: var(--mist); border-style: dashed; }
.office-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.office-grid .contact-card { min-height: 360px; display: flex; flex-direction: column; }
.office-map-link { margin-top: auto; padding-top: 26px; }
.office-map-link::after { content: " \2192"; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(40px, 7vw, 90px); }
.map-frame { min-height: 480px; overflow: hidden; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.map-frame iframe { width: 100%; height: 100%; min-height: 480px; border: 0; }
.contact-form { padding: clamp(28px, 5vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-family: "Montserrat", sans-serif; font-size: .76rem; font-weight: 800; }
.field input, .field textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: var(--mist); border: 1px solid var(--line); border-radius: 8px; outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--sea-700); box-shadow: 0 0 0 3px rgba(54,100,87,.13); }
.form-note { margin: 18px 0; color: var(--muted); font-size: .82rem; }

.job-panel { padding: clamp(32px, 6vw, 64px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; background: var(--navy-900); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.job-panel h2, .job-panel h3 { color: var(--white); }
.job-panel p { color: rgba(255,255,255,.7); }
.job-meta { padding: 26px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; }
.job-meta ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,.72); }

.cta-band { padding: clamp(56px, 8vw, 90px) 0; background: var(--orange-500); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 780px; margin: 0; color: var(--navy-950); font-size: clamp(1.8rem, 3.5vw, 3.2rem); }

.site-footer { color: rgba(255,255,255,.66); background: var(--navy-950); }
.footer-grid { padding: 75px 0 60px; display: grid; grid-template-columns: 1.15fr .7fr 1fr 1fr 1fr 1fr; gap: 30px; }
.footer-logo { width: 260px; margin-bottom: 22px; }
.footer-tagline { max-width: 290px; color: var(--white); font-family: "Montserrat", sans-serif; font-weight: 600; line-height: 1.35; }
.footer-values { color: var(--orange-400); font-size: .85rem; }
.footer-social { display: flex; gap: 18px; margin-top: 22px; }
.footer-social a, .footer-col a { transition: color .2s ease; }
.footer-social a:hover, .footer-col a:hover { color: var(--orange-400); }
.footer-hashtag { margin-top: 14px; font-size: .82rem; }
.footer-col h4 { margin-bottom: 22px; color: var(--white); font-size: .88rem; line-height: 1.4; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin: 9px 0; }
.footer-col address { font-style: normal; font-size: .89rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; font-size: .76rem; }

@media (max-width: 1120px) {
  :root { --header-h: 78px; }
  .nav-toggle { display: block; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-open .site-header { background: var(--navy-950); }
  /* backdrop-filter on the header creates a containing block for the fixed-position
     menu/scrim below, breaking them after scroll — keep the blur desktop-only */
  .site-header.scrolled, .page-home .site-header.scrolled { backdrop-filter: none; }
  .site-nav { position: fixed; z-index: 2; top: var(--header-h); right: 0; bottom: 0; width: min(88vw, 420px); padding: 34px; flex-direction: column; align-items: stretch; gap: 5px; transform: translateX(100%); background: var(--navy-950); box-shadow: -20px 20px 45px rgba(0,0,0,.2); transition: transform .25s ease; }
  .nav-open .site-nav { transform: none; }
  .site-nav a { padding: 14px 0; font-size: .92rem; }
  .nav-cta { margin-top: 15px; text-align: center; }
  .nav-scrim { position: fixed; z-index: 1; top: var(--header-h); right: 0; bottom: 0; left: 0; display: block; padding: 0; pointer-events: none; opacity: 0; background: rgba(6,22,36,.68); border: 0; transition: opacity .25s ease; }
  .nav-open .nav-scrim { pointer-events: auto; opacity: 1; }
  .hero-content { width: min(850px, 90%); }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-grid { grid-template-columns: repeat(4, 1fr); }
  .credential-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .page-contact .internal-hero-grid { grid-template-columns: 1fr; }
  .page-contact .internal-visual, .page-contact .internal-visual iframe { min-height: 520px; }
  .contact-card.pending { grid-column: span 2; }
  .stat-band { grid-template-columns: repeat(3, 1fr); }
  .stat-intro { grid-column: 1 / -1; }
  .stat:first-of-type { border-left: 0; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .hero { min-height: 920px; background-position: 57% center; }
  .page-hero { min-height: 760px; }
  .hero::before { background: linear-gradient(90deg, rgba(4,17,29,.94), rgba(4,17,29,.72)); }
  .hero-content { width: 100%; padding-top: calc(var(--header-h) + 74px); }
  .site-nav { left: 0; width: 100%; padding: 30px 24px; box-shadow: none; }
  .site-nav a { padding: 15px 0; font-size: 1rem; }
  .site-nav > a:not(.nav-cta)::after { right: auto; width: 42px; }
  .nav-cta { margin-top: 18px; }
  .scroll-cue { display: none; }
  .hero-actions .btn, .cta-row .btn { width: 100%; }
  .value-row { gap: 11px 18px; }
  .intro-grid, .media-grid, .division-grid, .job-panel { grid-template-columns: 1fr; }
  .internal-hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .internal-visual { min-height: 280px; }
  .page-contact .internal-hero { padding-bottom: 64px; }
  .page-contact .internal-hero h1 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
  .page-contact .internal-visual, .page-contact .internal-visual iframe { min-height: 390px; }
  .media-grid .media-frame { order: -1; }
  .media-frame img { min-height: 340px; }
  .division-card { min-height: 440px; }
  .card-grid, .contact-grid { grid-template-columns: 1fr; }
  .office-grid, .capability-grid { grid-template-columns: 1fr; }
  .contact-card.pending { grid-column: auto; }
  .operations-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-band { grid-template-columns: 1fr; }
  .stat { border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .cta-band .container { align-items: stretch; flex-direction: column; }
  .cta-band .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom .container { flex-direction: column; }
  .footer-cred { display: none; }
}

@media (max-width: 440px) {
  .brand { flex-basis: auto; }
  .brand-logo { width: 245px; max-width: 67vw; }
  .hero { min-height: 880px; }
  .credential-grid, .operations-grid { grid-template-columns: 1fr; }
  .sector-card { grid-template-columns: 1fr; }
  .sector-card img { height: 190px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .news-inner { padding: 15px 0; align-items: flex-start; flex-direction: column; gap: 8px; text-align: left; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .value-card, .contact-card, .process-card { padding: 25px; }
}

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

/* Form feedback + honeypot */
.form-alert { padding: 14px 18px; border-radius: 8px; font-weight: 600; margin-bottom: 18px; }
.form-alert.success { background: #e6f4ee; color: #1e5c46; border: 1px solid #9fd3bd; }
.form-alert.error { background: #fbe9e7; color: #8c2f24; border: 1px solid #efb4ac; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-form select { width: 100%; padding: 12px 14px; border: 1px solid var(--line, #d5dde2); border-radius: 8px; font: inherit; background: #fff; }

.contact-form input[type="file"] { width: 100%; padding: 10px 12px; border: 1px dashed var(--line, #d5dde2); border-radius: 8px; font: inherit; background: #fff; }
