:root {
  --navy: #061b33;
  --midnight: #03111f;
  --ink: #102033;
  --muted: #536572;
  --teal: #20bfb1;
  --teal-dark: #087e75;
  --soft: #f4f7f8;
  --border: #dce5e9;
  --white: #fff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --header-height: 90px;
  --shadow: 0 22px 60px rgba(3, 17, 31, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 17px; line-height: 1.72; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(32, 191, 177, .55); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: -60px; left: 24px; padding: 12px 18px; background: var(--teal); color: var(--midnight); font-weight: 600; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; z-index: 70; top: 0; height: var(--header-height); display: grid; grid-template-columns: 190px minmax(0, 1fr) auto; align-items: center; gap: 28px; padding: 0 clamp(30px, 4vw, 78px); background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(220,229,233,.95); backdrop-filter: blur(16px); }
.brand { display: inline-flex; width: max-content; flex-direction: column; align-items: center; color: var(--navy); line-height: 1; }
.brand-logo { width: 136px; height: auto; filter: brightness(0) saturate(100%) invert(10%) sepia(29%) saturate(1802%) hue-rotate(169deg) brightness(92%) contrast(99%); }
.brand-sub { margin-top: 6px; font-size: 10px; font-weight: 600; letter-spacing: .62em; transform: translateX(4px); }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 2vw, 40px); font-size: 16px; font-weight: 600; white-space: nowrap; }
.nav-item { position: relative; display: flex; align-items: center; gap: 3px; }
.site-nav a { position: relative; padding: 32px 0 30px; }
.site-nav a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--teal); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-item.active > a::after { transform: scaleX(1); }
.nav-toggle { width: 22px; height: 38px; display: grid; place-items: center; padding: 0; color: #6a7a84; background: transparent; border: 0; cursor: pointer; transition: color .2s ease; }
.nav-toggle::before { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; content: ""; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
.nav-item.active .nav-toggle { color: var(--teal-dark); }
.nav-item.active .nav-toggle::before { transform: translateY(2px) rotate(225deg); }
.mobile-submenu { display: none; }
.site-nav a, .footer-links a { transition: color .2s ease; }
.site-nav a:hover, .footer-links a:hover { color: var(--teal-dark); }
.header-actions { position: relative; display: flex; gap: 7px; }
.icon-button { width: 48px; height: 48px; display: grid; place-items: center; padding: 0; background: transparent; border: 1px solid transparent; border-radius: 50%; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.icon-button:hover, .icon-button[aria-expanded="true"] { background: var(--soft); border-color: var(--border); }
.icon-button svg { width: 21px; fill: none; stroke: var(--navy); stroke-width: 1.65; }
.menu-toggle { display: none; }

.mega-overlay { position: fixed; z-index: 55; inset: var(--header-height) 0 0; background: rgba(3,17,31,.34); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.mega-overlay.open { opacity: 1; pointer-events: auto; }
.mega-menu { position: fixed; z-index: 60; top: var(--header-height); right: 0; left: 0; max-height: calc(100vh - var(--header-height)); overflow-y: auto; background: white; border-bottom: 1px solid var(--border); box-shadow: 0 24px 50px rgba(3,17,31,.12); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .22s ease, transform .22s ease; }
.mega-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-menu-inner { width: min(1320px, calc(100% - 56px)); min-height: 310px; display: grid; grid-template-columns: minmax(280px, .8fr) 2fr; gap: 80px; margin: auto; padding: 48px 0 54px; }
.mega-intro { padding-right: 50px; border-right: 1px solid var(--border); }
.mega-intro .eyebrow { margin-bottom: 15px; }
.mega-intro h2 { margin-bottom: 17px; font-size: 40px; line-height: 1.12; }
.mega-intro p { color: var(--muted); font-size: 16px; line-height: 1.65; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 0 48px; }
.mega-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; color: var(--navy); border-bottom: 1px solid var(--border); font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.3; transition: color .2s ease, padding-left .2s ease; }
.mega-link span { color: var(--teal-dark); font-family: var(--sans); font-size: 16px; transition: transform .2s ease; }
.mega-link:hover { padding-left: 5px; color: var(--teal-dark); }
.mega-link:hover span { transform: translateX(4px); }

.sites-menu { position: absolute; top: 58px; right: 0; width: min(640px, calc(100vw - 36px)); padding: 24px; background: white; border: 1px solid var(--border); border-radius: 4px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; }
.sites-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sites-menu-head, .search-panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.sites-menu-head span { font-family: var(--serif); font-size: 26px; }
.sites-menu-head button, .search-panel-head button { width: 38px; height: 38px; padding: 0; background: var(--soft); border: 0; border-radius: 50%; font-size: 25px; line-height: 1; cursor: pointer; }
.sites-menu-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 28px; padding-top: 20px; }
.sites-menu-grid div { display: flex; flex-direction: column; }
.sites-menu-grid strong { margin: 8px 0 7px; color: var(--navy); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.sites-menu-grid a { padding: 3px 0; color: var(--muted); font-size: 13px; }
.sites-menu-grid a:hover { color: var(--teal-dark); }

.search-overlay { position: fixed; z-index: 100; inset: 0; display: grid; place-items: start center; padding: 14vh 20px 30px; background: rgba(3,17,31,.68); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-panel { width: min(800px, 100%); padding: 30px; background: white; box-shadow: var(--shadow); transform: translateY(-15px); transition: transform .22s ease; }
.search-overlay.open .search-panel { transform: translateY(0); }
.search-panel-head .eyebrow { margin: 0; }
.search-form { display: grid; grid-template-columns: 1fr 60px; margin-top: 26px; border-bottom: 2px solid var(--navy); }
.search-form input { min-width: 0; padding: 15px 2px; background: transparent; border: 0; outline: 0; font-family: var(--serif); font-size: clamp(26px, 4vw, 44px); }
.search-form input::placeholder { color: #a5b1b7; }
.search-form button { padding: 0; color: var(--teal-dark); background: transparent; border: 0; font-size: 30px; cursor: pointer; }
.search-hint { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.search-results { display: grid; gap: 8px; max-height: 250px; margin-top: 18px; overflow-y: auto; }
.search-result { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; background: var(--soft); font-size: 14px; }
.search-result:hover { color: var(--teal-dark); }
.search-empty { color: var(--muted); font-size: 14px; }

.hero { min-height: min(820px, calc(100svh - var(--header-height))); display: grid; grid-template-columns: minmax(540px, 47%) 1fr; }
.hero-copy { position: relative; display: flex; align-items: center; padding: clamp(44px, 5.5vh, 62px) clamp(44px, 4vw, 82px); overflow: hidden; color: white; background: var(--midnight); }
.hero-copy::after { position: absolute; right: -190px; bottom: -270px; width: 560px; height: 560px; border: 1px solid rgba(38,198,184,.15); border-radius: 50%; box-shadow: 0 0 0 80px rgba(38,198,184,.025), 0 0 0 160px rgba(38,198,184,.02); content: ""; }
.hero-inner { position: relative; z-index: 2; max-width: 700px; }
.eyebrow { margin: 0 0 25px; color: var(--navy); font-size: 13px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-light { color: #a8c1cc; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h1 { max-width: 700px; margin-bottom: 28px; font-size: clamp(64px, 4.6vw, 74px); line-height: 1.08; }
h1 em, .footer-cta h2 em { color: var(--teal); font-style: normal; }
.hero-text { max-width: 620px; margin-bottom: 34px; color: #d4dee4; font-size: 18px; line-height: 1.72; }
.button-row { display: flex; flex-wrap: wrap; gap: 15px; }
.button { min-width: 205px; min-height: 58px; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; padding: 16px 21px; border: 1px solid transparent; font-size: 15px; font-weight: 600; transition: background .25s ease, border .25s ease, transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: var(--midnight); }
.button-primary:hover { background: #3dd1c4; }
.button-ghost { border-color: rgba(255,255,255,.6); color: white; }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.06); }
.hero-media { position: relative; min-height: min(820px, calc(100svh - var(--header-height))); background: linear-gradient(90deg, rgba(3,17,31,.14), transparent 40%), url("assets/hero-infrastructure.jpg") 64% center/cover; }
.hero-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 68%, rgba(3,17,31,.32)); content: ""; }
.hero-tag { position: absolute; z-index: 2; right: 42px; bottom: 36px; display: flex; flex-direction: column; align-items: flex-end; color: white; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.hero-tag span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.hero-tag strong { font-family: var(--serif); font-size: 27px; font-weight: 400; }

.section { padding: 118px 0; }
.section-shell { width: min(1640px, calc(100% - 56px)); margin: auto; }
.expertise-section { overflow: hidden; background: #fff; }
.expertise-layout { display: grid; grid-template-columns: minmax(330px, 360px) minmax(0, 1fr); gap: clamp(45px, 3.5vw, 58px); }
.section-intro h2, .approach h2, .global-copy h2 { font-size: clamp(48px, 3.7vw, 62px); line-height: 1.12; }
.section-intro p, .approach-copy > p, .global-copy p { color: var(--muted); font-size: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 20px; margin-top: 28px; color: var(--teal-dark); font-size: 15px; font-weight: 600; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.carousel-wrap { min-width: 0; }
.carousel-controls { height: 62px; display: flex; align-items: flex-start; justify-content: flex-end; gap: 10px; }
.carousel-count { margin-right: 20px; display: flex; align-items: center; gap: 13px; color: #91a0a8; font-size: 13px; }
.carousel-count strong { color: var(--navy); }
.carousel-count i { width: 40px; height: 1px; background: var(--teal); }
.carousel-arrow { width: 48px; height: 44px; padding: 0; color: var(--teal-dark); background: white; border: 1px solid var(--border); font-size: 23px; cursor: pointer; transition: color .2s ease, background .2s ease, opacity .2s ease; }
.carousel-arrow:hover:not(:disabled) { color: white; background: var(--teal-dark); }
.carousel-arrow:disabled { cursor: not-allowed; opacity: .3; }
.expertise-viewport { overflow: hidden; }
.expertise-carousel { display: grid; grid-auto-columns: 28.5%; grid-auto-flow: column; gap: 18px; overflow: visible; transition: transform .45s cubic-bezier(.22,.7,.28,1); will-change: transform; }
.expertise-carousel.moving { pointer-events: none; }
.expertise-carousel::-webkit-scrollbar { display: none; }
.expertise-card { min-height: 625px; display: flex; flex-direction: column; overflow: hidden; background: white; border: 1px solid var(--border); scroll-snap-align: start; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.expertise-card:hover { border-color: #bfd1d5; transform: translateY(-5px); box-shadow: 0 20px 45px rgba(3,17,31,.07); }
.expertise-card img { flex: 0 0 270px; height: 270px; object-fit: cover; filter: saturate(.84); transition: filter .25s ease, transform .5s ease; }
.expertise-card:hover img { filter: saturate(1); transform: scale(1.025); }
.card-content { height: 100%; display: flex; flex-direction: column; align-items: flex-start; padding: 31px 29px 28px; }
.line-icon, .impact-icon, .capability-icon { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.line-icon { width: 34px; height: 34px; color: var(--teal-dark); }
.expertise-card h3 { margin: 17px 0 14px; font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: 1.2; }
.expertise-card p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.expertise-card a { margin-top: auto; color: var(--teal-dark); font-size: 20px; }

.approach { min-height: 750px; display: grid; grid-template-columns: 42% 1fr; background: var(--soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.approach-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 112px clamp(52px, 6vw, 132px); }
.approach-copy > p { max-width: 560px; margin-bottom: 16px; }
.approach-media { position: relative; min-height: 750px; background: linear-gradient(90deg, rgba(3,17,31,.08), transparent 28%), url("assets/approach-engineers.jpg") center/cover; }
.approach-note { position: absolute; right: 36px; bottom: 36px; display: flex; flex-direction: column; padding: 20px 24px; color: white; background: rgba(3,17,31,.82); border-left: 3px solid var(--teal); }
.approach-note strong { font-family: var(--serif); font-size: 23px; font-weight: 400; }
.approach-note span { color: #c5d2da; font-size: 13px; }

.projects-section { padding-bottom: 64px; background: var(--soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 54px; }
.section-heading h2 { max-width: 790px; margin-bottom: 0; font-size: clamp(48px, 3.8vw, 64px); line-height: 1.08; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.project-card { min-width: 0; overflow: hidden; background: white; border: 1px solid var(--border); transition: box-shadow .25s ease, transform .25s ease; }
.project-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(3,17,31,.08); }
.project-image { overflow: hidden; }
.project-image img { aspect-ratio: 5 / 4; height: auto; object-fit: cover; filter: saturate(.88); transition: transform .5s ease, filter .3s ease; }
.project-card:hover img { filter: saturate(1); transform: scale(1.03); }
.project-content { min-height: 360px; display: flex; flex-direction: column; padding: 31px; }
.project-content span, .news-card span { color: #647985; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.project-content h3 { margin: 13px 0 16px; font-size: 24px; line-height: 1.38; }
.project-content p { color: var(--muted); font-size: 17px; }
.project-content a, .news-card a { margin-top: auto; color: var(--teal-dark); font-size: 14px; font-weight: 600; }
.sectors-heading { margin: 88px 0 27px; scroll-margin-top: calc(var(--header-height) + 20px); }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sector-card { position: relative; min-height: 350px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 32px; color: white; background: linear-gradient(180deg, rgba(3,17,31,.02), rgba(3,17,31,.62) 82%), var(--bg) center/cover; }
.sector-card::before { position: absolute; inset: 0; background: var(--teal); opacity: 0; content: ""; transition: opacity .3s ease; }
.sector-card > * { position: relative; z-index: 1; }
.sector-card:hover::before { opacity: .16; }
.sector-card span { font-size: 13px; letter-spacing: .1em; }
.sector-card h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 38px; font-weight: 500; }
.sector-card p { max-width: 305px; margin: 0; color: #f3f7f8; font-size: 17px; line-height: 1.6; }
.sector-card b { position: absolute; right: 26px; bottom: 25px; color: var(--teal); font-size: 20px; font-weight: 400; }
.sector-commercial { --bg: url("assets/office.jpg"); }
.sector-industrial { --bg: url("assets/industrial.jpg"); }
.sector-public { --bg: url("assets/public.jpg"); }
.sector-critical { --bg: url("assets/datacentre.jpg"); }

.seo-context { max-width: 620px; margin-top: 30px; color: var(--muted); border-top: 1px solid var(--border); }
.seo-context-wide { max-width: none; margin-top: 48px; }
.seo-context summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; color: var(--teal-dark); font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; list-style: none; }
.seo-context summary::-webkit-details-marker { display: none; }
.seo-context summary::after { content: "+"; font-size: 20px; font-weight: 400; line-height: 1; }
.seo-context[open] summary::after { content: "−"; }
.seo-context div { padding: 3px 0 5px; }
.seo-context div p { max-width: 850px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.seo-context-dark { border-color: rgba(255,255,255,.24); }
.seo-context-dark summary { color: var(--teal); }
.seo-context-dark div p { color: #c9d6dc; }

.impact { padding-top: 80px; padding-bottom: 108px; background: white; }
.impact-heading { margin-bottom: 52px; }
.impact-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.impact-grid article { padding: 7px 40px; border-left: 1px solid var(--border); }
.impact-grid article:first-child { padding-left: 0; border-left: 0; }
.impact-icon { width: 38px; height: 38px; margin-bottom: 24px; color: var(--teal-dark); }
.impact-grid h3 { margin-bottom: 12px; font-size: 18px; line-height: 1.38; }
.impact-grid p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.capabilities { display: grid; grid-template-columns: 1fr 1fr; color: white; background: var(--midnight); }
.capability { position: relative; min-height: 235px; display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 24px; align-items: center; padding: 40px clamp(36px, 6vw, 112px); border-right: 1px solid rgba(255,255,255,.13); background-size: cover; background-position: center; isolation: isolate; }
.capability::before { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3,17,31,.93) 30%, rgba(3,17,31,.72)); content: ""; }
.capability.solar { background-image: url("assets/solar.jpg"); }
.capability.core { background-image: url("assets/datacentre.jpg"); }
.capability-icon { width: 42px; height: 42px; color: var(--teal); }
.capability small { color: #a8b9c2; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.capability h3 { margin: 4px 0 6px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.capability p { max-width: 500px; margin-bottom: 11px; color: #d6e0e4; font-size: 16px; }
.capability b { color: var(--teal); font-size: 13px; }

.global-section { padding-top: 96px; padding-bottom: 64px; background: white; }
.global-layout { display: grid; grid-template-columns: 320px minmax(300px, 1fr) 440px; gap: clamp(40px, 3.5vw, 62px); align-items: center; }
.world-map { position: relative; min-width: 0; margin-bottom: 34px; }
.world-map-image { width: 100%; height: auto; opacity: .95; }
.map-dot { position: absolute; z-index: 2; top: var(--y); left: var(--x); width: 9px; height: 9px; padding: 0; background: var(--teal); border: 2px solid white; border-radius: 50%; box-shadow: 0 2px 7px rgba(3,17,31,.25); cursor: pointer; transform: translate(-50%, -50%); transition: width .2s ease, height .2s ease, background .2s ease, z-index .2s ease; }
.map-dot::after { position: absolute; inset: -6px; border: 1px solid rgba(32,191,177,.42); border-radius: 50%; content: ""; animation: map-pulse 2.4s ease-out infinite; }
.map-dot::before { position: absolute; z-index: 4; bottom: calc(100% + 12px); left: 50%; padding: 6px 9px; color: white; background: var(--navy); border-radius: 2px; box-shadow: 0 6px 16px rgba(3,17,31,.18); content: attr(aria-label); font-size: 11px; font-weight: 600; line-height: 1.2; opacity: 0; pointer-events: none; transform: translate(-50%, 4px); transition: opacity .18s ease, transform .18s ease; white-space: nowrap; }
.map-dot:hover, .map-dot:focus-visible, .map-dot.active { z-index: 5; background: var(--navy); box-shadow: 0 0 0 3px rgba(32,191,177,.22), 0 2px 7px rgba(3,17,31,.25); }
.map-dot:hover::before, .map-dot:focus-visible::before { opacity: 1; transform: translate(-50%, 0); }
.map-dot[data-country="united-states"] { --x: 22.8%; --y: 28.3%; }
.map-dot[data-country="canada"] { --x: 20.6%; --y: 18.9%; }
.map-dot[data-country="united-kingdom"] { --x: 49.4%; --y: 20%; }
.map-dot[data-country="germany"] { --x: 53%; --y: 22.2%; }
.map-dot[data-country="france"] { --x: 50.6%; --y: 25%; }
.map-dot[data-country="belgium"] { --x: 51.1%; --y: 22.5%; }
.map-dot[data-country="netherlands"] { --x: 51.7%; --y: 20.2%; }
.map-dot[data-country="spain"] { --x: 49%; --y: 27.6%; }
.map-dot[data-country="italy"] { --x: 53.5%; --y: 26.2%; }
.map-dot[data-country="republic-of-moldova"] { --x: 58%; --y: 23.9%; }
.map-dot[data-country="united-arab-emirates"] { --x: 65.1%; --y: 36.4%; }
.map-dot[data-country="egypt"] { --x: 58.6%; --y: 35.1%; }
.map-dot[data-country="south-africa"] { --x: 56.4%; --y: 67%; }
.map-dot[data-country="china"] { --x: 78.9%; --y: 30%; }
.map-dot[data-country="australia"] { --x: 87.2%; --y: 64.1%; }
@keyframes map-pulse { 0%, 40% { opacity: .75; transform: scale(.72); } 80%, 100% { opacity: 0; transform: scale(1.45); } }
.map-tooltip { position: absolute; left: 50%; bottom: -42px; padding: 8px 14px; color: var(--navy); background: white; border: 1px solid var(--border); box-shadow: 0 8px 20px rgba(3,17,31,.07); font-size: 13px; transform: translateX(-50%); white-space: nowrap; }
.region-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.region-group { margin-bottom: 24px; padding-left: 0; border-left: 2px solid transparent; transition: border-color .2s ease, padding-left .2s ease; }
.region-group.active { padding-left: 10px; border-color: var(--teal); }
.region-title { margin: 0 0 10px; padding: 0; color: var(--navy); background: transparent; border: 0; font-size: 12px; font-weight: 600; letter-spacing: .11em; text-align: left; text-transform: uppercase; cursor: pointer; }
.region-group > div, .region-group > div > div { display: flex; flex-direction: column; }
.region-group a { padding: 2px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.region-group a { transition: color .2s ease, transform .2s ease; }
.region-group a:hover, .region-group a:focus-visible, .region-group a.active { color: var(--teal-dark); transform: translateX(4px); }

.news-section { padding-top: 88px; padding-bottom: 118px; background: var(--soft); }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.news-card { min-width: 0; overflow: hidden; background: white; border: 1px solid var(--border); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(3,17,31,.08); }
.news-card img { aspect-ratio: 16 / 10; height: auto; object-fit: cover; filter: saturate(.82); transition: filter .25s ease, transform .5s ease; }
.news-card:hover img { filter: saturate(1); transform: scale(1.025); }
.news-card > div { min-height: 300px; display: flex; flex-direction: column; padding: 29px; }
.news-card span { display: flex; justify-content: space-between; gap: 12px; }
.news-card time { color: #8a9ba4; font-weight: 400; letter-spacing: 0; white-space: nowrap; }
.news-card h3 { margin: 22px 0; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.32; }

.site-footer { padding: 0 clamp(32px, 5vw, 94px); color: white; background: var(--midnight); }
.footer-cta { min-height: 380px; display: flex; align-items: center; justify-content: space-between; gap: 62px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-cta h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(54px, 4.8vw, 80px); line-height: 1.06; }
.footer-main { display: grid; grid-template-columns: 260px 1fr; gap: 92px; padding: 88px 0 76px; }
.brand-light { color: white; }
.brand-light .brand-logo { filter: none; }
.footer-brand p { margin: 34px 0; color: #c1cdd3; font-size: 16px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; color: white; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.socials a:hover, .socials a:focus-visible { color: var(--midnight); background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.socials a[aria-label="Facebook"] svg { fill: currentColor; stroke: none; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 52px 36px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links h3 { margin-bottom: 19px; color: white; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { margin-bottom: 8px; color: #bdc9cf; font-size: 15px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 28px 0 36px; color: #a9b7be; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 24px; }
.back-to-top { color: var(--teal); }

.page-hero { min-height: 500px; display: flex; align-items: center; color: white; background: linear-gradient(90deg, rgba(3,17,31,.97), rgba(3,17,31,.68)), url("assets/hero-infrastructure.jpg") center/cover; }
.page-hero-inner { width: min(1320px, calc(100% - 56px)); margin: auto; padding: 80px 0; }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(58px, 6vw, 82px); }
.page-hero p:not(.eyebrow) { max-width: 700px; margin: 25px 0 0; color: #d4dee4; font-size: 19px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 50px; color: #b9c9d1; font-size: 13px; }
.breadcrumb a:hover { color: var(--teal); }
.page-content-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.page-content-grid h2 { font-size: clamp(44px, 4vw, 62px); }
.page-content-grid p { max-width: 650px; color: var(--muted); font-size: 18px; }
.page-content-grid .button { margin-top: 25px; }

.internal-page .page-hero { position: relative; min-height: 620px; overflow: hidden; isolation: isolate; background-position: center; }
.internal-page .page-hero::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(135deg, transparent 52%, rgba(32,191,177,.1)); content: ""; }
.internal-page .page-hero-about-us { background-image: linear-gradient(90deg, rgba(3,17,31,.98), rgba(3,17,31,.62)), url("/assets/office.jpg"); }
.internal-page .page-hero-our-expertise { background-image: linear-gradient(90deg, rgba(3,17,31,.98), rgba(3,17,31,.58)), url("/assets/plant.jpg"); }
.internal-page .page-hero-our-customers { background-image: linear-gradient(90deg, rgba(3,17,31,.98), rgba(3,17,31,.58)), url("/assets/commercial.jpg"); }
.internal-page .page-hero-our-impact { background-image: linear-gradient(90deg, rgba(3,17,31,.98), rgba(3,17,31,.6)), url("/assets/city.jpg"); }
.internal-page .page-hero-projects { background-image: linear-gradient(90deg, rgba(3,17,31,.98), rgba(3,17,31,.58)), url("/assets/industrial.jpg"); }
.internal-page .page-hero-media-centre { background-image: linear-gradient(90deg, rgba(3,17,31,.98), rgba(3,17,31,.58)), url("/assets/inspection.jpg"); }
.internal-page .page-hero-careers { background-image: linear-gradient(90deg, rgba(3,17,31,.98), rgba(3,17,31,.58)), url("/assets/engineers.jpg"); }
.internal-page .page-hero-contact-us { background-image: linear-gradient(90deg, rgba(3,17,31,.98), rgba(3,17,31,.58)), url("/assets/public.jpg"); }
.internal-page .page-hero-inner { width: min(1440px, calc(100% - 72px)); padding: 105px 0 98px; }
.internal-page .page-hero h1 { max-width: 1040px; font-size: clamp(60px, 5.4vw, 86px); line-height: 1.06; }
.internal-page .page-hero p:not(.eyebrow) { max-width: 820px; font-size: 20px; line-height: 1.7; }
.internal-page .breadcrumb { margin-bottom: 72px; }
.internal-page .breadcrumb a { transition: color .2s ease; }

.internal-intro { padding: 126px 0 120px; background: white; }
.internal-intro-grid { display: grid; grid-template-columns: minmax(360px, .9fr) 1.1fr; gap: clamp(60px, 8vw, 150px); align-items: start; }
.internal-intro h2, .internal-heading h2 { margin-bottom: 0; font-size: clamp(46px, 4vw, 64px); line-height: 1.1; }
.internal-intro-grid > div:last-child > p:first-child { max-width: 770px; color: var(--muted); font-family: var(--serif); font-size: clamp(25px, 2.1vw, 34px); line-height: 1.45; }
.internal-note { max-width: 680px; margin-top: 30px; padding: 20px 24px; color: var(--muted); background: var(--soft); border-left: 3px solid var(--teal); font-size: 15px; }

.internal-section { padding: 112px 0; background: white; }
.internal-section-soft { background: var(--soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.internal-heading { max-width: 900px; margin-bottom: 62px; }
.internal-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.internal-card { min-height: 330px; display: flex; flex-direction: column; align-items: flex-start; padding: 34px 32px; overflow: hidden; color: var(--ink); background: white; border: 1px solid var(--border); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.internal-card:hover { border-color: #b7d0d4; box-shadow: 0 18px 42px rgba(3,17,31,.08); transform: translateY(-4px); }
.internal-card-index { color: var(--teal-dark); font-size: 12px; font-weight: 600; letter-spacing: .12em; }
.internal-card h3 { margin: 34px 0 15px; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.25; }
.internal-card p { margin-bottom: 20px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.internal-card ul { display: grid; gap: 7px; margin: 0 0 24px; padding: 0; color: var(--muted); font-size: 14px; list-style: none; }
.internal-card li { position: relative; padding-left: 16px; }
.internal-card li::before { position: absolute; top: .75em; left: 0; width: 5px; height: 5px; background: var(--teal); border-radius: 50%; content: ""; }
.internal-card b { margin-top: auto; display: flex; align-items: center; gap: 14px; color: var(--teal-dark); font-size: 14px; }
.internal-card b span { transition: transform .2s ease; }
.internal-card:hover b span { transform: translateX(4px); }

.internal-content-list { border-top: 1px solid var(--border); }
.internal-content-block { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 48px; padding: 68px 0; border-bottom: 1px solid var(--border); }
.internal-content-block > span { color: var(--teal-dark); font-size: 13px; font-weight: 600; letter-spacing: .12em; }
.internal-content-block > div { display: grid; grid-template-columns: minmax(300px, .85fr) 1.15fr; gap: clamp(48px, 7vw, 120px); }
.internal-content-block h2 { margin: 0; font-size: clamp(36px, 3vw, 48px); line-height: 1.14; }
.internal-content-block p { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.8; }

.internal-supporting { padding: 95px 0; color: white; background: var(--midnight); }
.internal-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 34px; background: rgba(255,255,255,.15); }
.internal-support-grid article { padding: 44px; background: var(--midnight); }
.internal-support-grid h3 { margin-bottom: 13px; font-family: var(--serif); font-size: 32px; font-weight: 500; }
.internal-support-grid p { max-width: 620px; margin-bottom: 0; color: #c6d3d9; font-size: 16px; }

.related-section { background: white; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.related-grid a { min-height: 270px; display: flex; flex-direction: column; padding: 29px; background: var(--soft); border-top: 3px solid transparent; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.related-grid a:hover { background: #eef4f5; border-color: var(--teal); transform: translateY(-3px); }
.related-grid span { color: var(--teal-dark); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.related-grid h3 { margin: 28px 0; font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: 1.3; }
.related-grid b { margin-top: auto; display: flex; justify-content: space-between; color: var(--teal-dark); font-size: 13px; }
.related-grid i { font-style: normal; transition: transform .2s ease; }
.related-grid a:hover i { transform: translateX(4px); }

.internal-final-cta { padding: 92px 0; color: white; background: linear-gradient(90deg, #061b33, #092d48); }
.internal-final-cta .section-shell { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.internal-final-cta .eyebrow { grid-column: 1 / -1; margin-bottom: -24px; }
.internal-final-cta h2 { max-width: 900px; margin: 0; font-size: clamp(42px, 4vw, 62px); line-height: 1.1; }

.internal-form-layout { display: grid; grid-template-columns: minmax(280px, .7fr) 1.3fr; gap: clamp(60px, 8vw, 140px); }
.internal-form-layout h2 { font-size: clamp(44px, 4vw, 62px); }
.internal-form-layout > div > p:not(.eyebrow) { color: var(--muted); }
.corporate-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.corporate-form label, .job-search-panel label { display: grid; gap: 8px; color: var(--navy); font-size: 13px; font-weight: 600; }
.corporate-form input, .corporate-form select, .corporate-form textarea, .job-search-panel input, .job-search-panel select { width: 100%; min-height: 54px; padding: 13px 14px; color: var(--ink); background: white; border: 1px solid #cddadd; border-radius: 0; font: 400 15px/1.5 var(--sans); outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.corporate-form textarea { resize: vertical; }
.corporate-form input:focus, .corporate-form select:focus, .corporate-form textarea:focus, .job-search-panel input:focus, .job-search-panel select:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(32,191,177,.13); }
.form-wide { grid-column: 1 / -1; }
.corporate-form .button { width: max-content; }
.job-search-panel { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 18px; align-items: end; padding: 32px; background: white; border: 1px solid var(--border); }
.job-search-panel .button { min-width: 200px; }
.job-empty { margin: 28px 0 0; padding: 24px 28px; color: var(--muted); background: white; border-left: 3px solid var(--teal); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1500px) {
  .expertise-carousel { grid-auto-columns: 24%; }
}

@media (max-width: 1279px) {
  :root { --header-height: 90px; }
  .site-header { grid-template-columns: 165px minmax(0,1fr) auto; gap: 15px; padding-inline: 24px; }
  .brand-logo { width: 124px; }
  .site-nav { gap: 17px; font-size: 15px; }
  .site-nav a { padding-block: 32px; }
  .site-nav a::after { bottom: 20px; }
  .hero { grid-template-columns: 48% 1fr; }
  h1 { font-size: clamp(64px, 5.6vw, 70px); }
  .hero-text { font-size: 18px; }
  .expertise-carousel { grid-auto-columns: 32%; }
  .project-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .global-layout { grid-template-columns: 285px 1fr; }
  .region-list { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1120px) {
  :root { --header-height: 88px; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .menu-toggle { grid-column: 3; grid-row: 1; width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; padding: 0; background: transparent; border: 1px solid var(--border); border-radius: 50%; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 22px; height: 1px; display: block; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 49; top: var(--header-height); right: 0; left: 0; max-height: calc(100vh - var(--header-height)); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 28px 30px; overflow-y: auto; background: white; border-bottom: 1px solid var(--border); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-item { display: grid; grid-template-columns: 1fr 48px; border-bottom: 1px solid var(--border); }
  .site-nav a { padding: 15px 0; border-bottom: 0; font-size: 16px; }
  .site-nav a::after { display: none; }
  .nav-toggle { width: 48px; height: 54px; }
  .mobile-submenu { grid-column: 1 / -1; max-height: 0; display: flex; flex-direction: column; overflow: hidden; background: var(--soft); transition: max-height .25s ease; }
  .mobile-submenu.open { max-height: 720px; padding: 7px 14px 13px; }
  .mobile-submenu a { padding: 9px 0; color: var(--muted); font-family: var(--sans); font-size: 14px; font-weight: 500; }
  .mega-menu, .mega-overlay { display: none; }
  .sites-menu { position: fixed; top: calc(var(--header-height) - 4px); right: 18px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; padding: 82px 7vw; }
  .hero-media { min-height: 500px; }
  .expertise-layout { grid-template-columns: 1fr; gap: 38px; }
  .section-intro { max-width: 620px; }
  .expertise-carousel { grid-auto-columns: 48%; }
  .approach { grid-template-columns: 1fr; }
  .approach-copy { padding: 105px 7vw; }
  .approach-media { min-height: 570px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 0; }
  .impact-grid article:nth-child(odd) { padding-left: 0; border-left: 0; }
  .capabilities { grid-template-columns: 1fr; }
  .capability { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .global-layout { grid-template-columns: 1fr; }
  .global-copy { max-width: 580px; }
  .world-map { width: min(820px, 100%); margin: auto; }
  .region-list { grid-column: auto; }
  .footer-cta { align-items: flex-start; flex-direction: column; justify-content: center; padding: 65px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
  .footer-brand { max-width: 300px; }
  .page-content-grid { grid-template-columns: 1fr; gap: 35px; }
  .internal-page .page-hero { min-height: 560px; }
  .internal-page .page-hero-inner { width: min(100% - 48px, 1440px); padding: 85px 0; }
  .internal-intro-grid, .internal-form-layout { grid-template-columns: 1fr; gap: 42px; }
  .internal-card-grid { grid-template-columns: repeat(2, 1fr); }
  .internal-content-block > div { grid-template-columns: 1fr; gap: 25px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .job-search-panel { grid-template-columns: 1fr 1fr; }
  .job-search-panel .button { width: 100%; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .site-header { padding-inline: 18px; gap: 6px; }
  .brand-logo { width: 116px; }
  .brand-sub { margin-top: 5px; font-size: 9px; }
  .icon-button { width: 38px; height: 38px; }
  .icon-button svg { width: 19px; }
  .menu-toggle { width: 40px; height: 40px; }
  .sites-menu { right: 10px; width: calc(100vw - 20px); max-height: calc(100vh - 100px); overflow-y: auto; padding: 20px; }
  .sites-menu-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .search-overlay { padding: 10vh 12px 20px; }
  .search-panel { padding: 22px; }
  .search-form { grid-template-columns: 1fr 45px; }
  .search-form input { font-size: 25px; }
  .section { padding: 104px 0; }
  .section-shell { width: min(100% - 36px, 1440px); }
  h1 { font-size: clamp(42px, 12vw, 52px); line-height: 1.09; }
  .hero-copy { min-height: 610px; padding: 68px 22px; }
  .hero-text { font-size: 17px; line-height: 1.7; }
  .hero-media { min-height: 380px; background-position: 64% center; }
  .hero-tag { right: 20px; bottom: 20px; }
  .hero-tag strong { font-size: 21px; }
  .button { width: 100%; min-height: 62px; font-size: 16px; }
  .eyebrow { font-size: 12px; }
  .section-intro h2, .approach h2, .global-copy h2, .section-heading h2 { font-size: 43px; }
  .section-intro p, .approach-copy > p, .global-copy p { font-size: 17px; }
  .expertise-carousel { grid-auto-columns: 100%; gap: 14px; }
  .expertise-card { min-height: 590px; }
  .expertise-card img { flex-basis: 255px; height: 255px; }
  .carousel-controls { justify-content: flex-start; }
  .approach-copy { padding: 88px 20px; }
  .approach-media { min-height: 420px; background-position: 58% center; }
  .approach-note { right: 18px; bottom: 18px; left: 18px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .project-grid, .sector-grid, .news-grid { grid-template-columns: 1fr; }
  .project-content { min-height: 330px; }
  .sector-card { min-height: 350px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-grid article, .impact-grid article:nth-child(odd) { padding: 0 0 30px; border: 0; border-bottom: 1px solid var(--border); }
  .impact-grid p { font-size: 16px; }
  .capability { min-height: 285px; grid-template-columns: 1fr; gap: 8px; padding: 42px 25px; }
  .capability-icon { width: 38px; height: 38px; }
  .capability p { font-size: 15px; }
  .region-list { grid-template-columns: 1fr 1fr; gap: 20px; }
  .news-card > div { min-height: 285px; }
  .footer-cta { min-height: 480px; }
  .footer-cta h2 { font-size: 49px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 38px 24px; }
  .footer-links a { font-size: 15px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; font-size: 13px; }
  .footer-bottom div { gap: 13px 20px; }
  .page-hero { min-height: 420px; }
  .page-hero-inner { width: calc(100% - 36px); padding: 65px 0; }
  .page-hero h1 { font-size: 48px; }
  .internal-page .page-hero { min-height: 520px; }
  .internal-page .page-hero-inner { width: calc(100% - 36px); padding: 62px 0 70px; }
  .internal-page .page-hero h1 { font-size: clamp(43px, 12vw, 56px); }
  .internal-page .page-hero p:not(.eyebrow) { font-size: 17px; }
  .internal-page .breadcrumb { margin-bottom: 48px; }
  .internal-intro, .internal-section { padding: 82px 0; }
  .internal-intro h2, .internal-heading h2 { font-size: 42px; }
  .internal-intro-grid > div:last-child > p:first-child { font-size: 24px; }
  .internal-heading { margin-bottom: 42px; }
  .internal-card-grid, .related-grid, .internal-support-grid, .corporate-form, .job-search-panel { grid-template-columns: 1fr; }
  .internal-card { min-height: 290px; padding: 28px 25px; }
  .internal-card h3 { font-size: 26px; }
  .internal-content-block { grid-template-columns: 1fr; gap: 18px; padding: 48px 0; }
  .internal-content-block h2 { font-size: 37px; }
  .internal-content-block p { font-size: 17px; }
  .internal-supporting { padding: 78px 0; }
  .internal-support-grid article { padding: 32px 25px; }
  .related-grid a { min-height: 235px; }
  .internal-final-cta { padding: 75px 0; }
  .internal-final-cta .section-shell { grid-template-columns: 1fr; align-items: start; }
  .internal-final-cta .eyebrow { margin-bottom: -15px; }
  .internal-final-cta h2 { font-size: 42px; }
  .corporate-form .button, .job-search-panel .button { width: 100%; }
}

@media (max-width: 420px) {
  .header-actions { gap: 0; }
  .sites-menu-grid, .region-list, .footer-links { grid-template-columns: 1fr; }
  .hero-tag { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .expertise-carousel { transition-duration: .01ms !important; }
}
