/* =========================================================================
   Technip
   Design notes: a drawing-sheet system. Content sits right of a mono title
   block rail. Photography is unified with a navy duotone so mixed source
   photos read as one set. Brand red is used only as a marking colour —
   ticks, rules, numbers — never as a field. The stacked wave lines are
   lifted from the droplet in the logo and are the recurring motif.
   ====================================================================== */

:root {
	--ink:          #101A33;
	--navy:         #233F87;
	--navy-deep:    #17295A;
	--navy-ink:     #0E1A3A;
	--mineral:      #EEF1F6;
	--mineral-2:    #E0E6F0;
	--paper:        #FFFFFF;
	--steel:        #6B748C;
	--line:         #D5DBE7;
	--accent:       #EC2329;
	--accent-ink:   #C7161C;

	--font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--font-body:    "Instrument Sans", system-ui, -apple-system, sans-serif;
	--font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

	--shell:        1280px;
	--gutter:       clamp(20px, 5vw, 64px);
	--rail:         180px;
	--pad-section:  clamp(56px, 8vw, 128px);

	--ease:         cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------------ base */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	font-synthesis-weight: none;
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); text-underline-offset: .22em; }
a:hover { text-decoration-color: currentColor; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.02em;
	margin: 0 0 .5em;
	text-wrap: balance;
}

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.1em; }

:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%); white-space: nowrap;
}

.skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--navy); color: #fff;
	padding: 12px 20px; font-family: var(--font-mono); font-size: 13px;
}
.skip:focus { left: 12px; top: 12px; }

.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* --------------------------------------------------------- type helpers */

.eyebrow {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--navy);
	margin: 0 0 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.eyebrow::before {
	content: "";
	width: 28px; height: 2px;
	background: var(--accent);
	flex: none;
}
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: var(--accent); }

.prose { max-width: 68ch; }
.prose--wide { max-width: 74ch; }
.prose h2 { font-size: clamp(24px, 3vw, 34px); margin-top: 1.6em; }
.prose h3 { font-size: clamp(20px, 2.2vw, 24px); margin-top: 1.4em; }
.prose img { margin: 2em 0; }
.prose a { color: var(--navy); }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
	position: relative;
	padding-left: 26px;
	margin-bottom: .5em;
}
.prose ul li::before {
	content: "";
	position: absolute; left: 0; top: .62em;
	width: 12px; height: 2px;
	background: var(--accent);
}

/* --------------------------------------------------------------- duotone
   Unifies photography of varying quality into one art-directed set.       */

.duotone { position: relative; overflow: hidden; background: var(--navy-deep); }
.duotone img {
	width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(1) contrast(1.08) brightness(.94);
}
.duotone::before {
	content: "";
	position: absolute; inset: 0;
	background: var(--navy);
	mix-blend-mode: color;
	opacity: .82;
}
.duotone::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,34,38,.15) 0%, rgba(11,34,38,.72) 100%);
}

/* --------------------------------------------------------------- buttons */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 26px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--sm { padding: 12px 18px; font-size: 11px; }

.btn--solid { background: var(--navy); color: #fff; }
.btn--solid:hover { background: var(--accent); color: #fff; }

.btn--line { border-color: currentColor; color: var(--navy); background: transparent; }
.btn--line:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.bg-navy .btn--line { color: #fff; }
.bg-navy .btn--line:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn::after { content: "→"; font-size: 14px; transform: translateX(0); transition: transform .25s var(--ease); }
.btn:hover::after { transform: translateX(4px); }

/* ---------------------------------------------------------- section beds */

.section { padding-block: var(--pad-section); }
.bg-paper   { background: var(--paper); color: var(--ink); }
.bg-mineral { background: var(--mineral); color: var(--ink); }
.bg-navy  { background: var(--navy); color: #EAF1EF; }
.bg-navy .eyebrow { color: var(--accent); }
.bg-navy a { color: #fff; }

.section__head { margin-bottom: clamp(32px, 5vw, 56px); max-width: 60ch; }
.section__title { font-size: clamp(28px, 4.2vw, 50px); }
.section__lede { max-width: 62ch; margin-bottom: 40px; color: var(--steel); }

[data-reveal] { opacity: 0; transform: translateY(14px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* -------------------------------------------------------------- masthead */

.masthead {
	position: sticky; top: 0; z-index: 60;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}
.masthead__strip {
	background: var(--navy);
	color: #C7D6D2;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .1em;
}
.masthead__stripinner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 20px; min-height: 34px;
}
.masthead__claim { margin: 0; text-transform: uppercase; }
.masthead__contact { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.masthead__contact a { text-decoration: none; }
.masthead__contact a:hover { color: #fff; }

.masthead__inner {
	display: flex; align-items: center; gap: 28px;
	min-height: 78px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; }
.brand__mark { max-height: 46px; width: auto; }
.brand__word {
	font-family: var(--font-display);
	font-weight: 800; font-size: 24px; letter-spacing: -.03em;
	color: var(--navy);
}
.masthead__actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* ------------------------------------------------------------------- nav */

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__list > .nav__item { position: relative; }

.nav__link {
	display: inline-flex; align-items: center;
	padding: 12px 12px;
	font-family: var(--font-body);
	font-size: 15px; font-weight: 500;
	text-decoration: none;
	color: var(--ink);
	position: relative;
}
.nav__link::after {
	content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px;
	height: 2px; background: var(--accent);
	transform: scaleX(0); transform-origin: left;
	transition: transform .3s var(--ease);
}
.nav__item:hover > .nav__link::after,
.current-menu-item > .nav__link::after,
.current-menu-ancestor > .nav__link::after { transform: scaleX(1); }

.nav__toggle {
	display: none;
	background: none; border: 0; padding: 6px; cursor: pointer; color: inherit;
}
.nav__toggle svg { width: 11px; }

.submenu {
	list-style: none; margin: 0; padding: 12px;
	position: absolute; top: 100%; left: -8px;
	min-width: 268px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-top: 3px solid var(--accent);
	box-shadow: 0 24px 48px -24px rgba(11,34,38,.35);
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
	z-index: 5;
}
.nav__item:hover > .submenu,
.nav__item:focus-within > .submenu { opacity: 1; visibility: visible; transform: none; }

.submenu .nav__item { position: relative; }
.submenu .nav__link {
	display: block; padding: 9px 12px; font-size: 14.5px;
	border-left: 2px solid transparent;
}
.submenu .nav__link::after { display: none; }
.submenu .nav__link:hover { background: var(--mineral); border-left-color: var(--accent); }

.submenu--nested { top: -12px; left: calc(100% + 4px); }

/* --------------------------------------------------------- mobile drawer */

.burger { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.burger__box { display: block; width: 24px; }
.burger__box i {
	display: block; height: 2px; background: var(--ink); margin: 5px 0;
	transition: transform .3s var(--ease), opacity .2s;
}
.is-nav-open .burger__box i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-nav-open .burger__box i:nth-child(2) { opacity: 0; }
.is-nav-open .burger__box i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
	position: fixed; inset: 0; top: 0; z-index: 55;
	background: var(--navy);
	color: #fff;
	overflow-y: auto;
	padding: 120px var(--gutter) 60px;
}
.drawer[hidden] { display: none; }
.drawer__list, .drawer .submenu {
	list-style: none; margin: 0; padding: 0;
	position: static; opacity: 1; visibility: visible; transform: none;
	background: none; border: 0; box-shadow: none; min-width: 0;
}
.drawer .submenu { display: none; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.2); margin-bottom: 10px; }
.drawer .nav__item.is-open > .submenu { display: block; }
.drawer .nav__item { border-bottom: 1px solid rgba(255,255,255,.12); position: relative; }
.drawer .submenu .nav__item { border-bottom: 0; }
.drawer .nav__link {
	color: #fff; padding: 16px 40px 16px 0;
	font-family: var(--font-display); font-size: 20px; font-weight: 600;
}
.drawer .submenu .nav__link { font-family: var(--font-body); font-size: 15px; font-weight: 400; padding: 8px 0; }
.drawer .nav__link::after { display: none; }
.drawer .nav__toggle {
	display: block; position: absolute; right: 0; top: 10px;
	color: var(--accent); padding: 10px;
}
.drawer .nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__foot { margin-top: 40px; display: grid; gap: 8px; font-family: var(--font-mono); font-size: 13px; }

/* ------------------------------------------------------------- preloader */

.preloader {
	position: fixed; inset: 0; z-index: 200;
	background: var(--navy);
	color: #fff;
	display: grid; place-items: center;
	transition: opacity .5s var(--ease), visibility .5s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; padding: 24px; width: min(320px, 80vw); }
.preloader__drop { width: 96px; margin: 0 auto 26px; overflow: visible; }
.preloader__outline {
	stroke-dasharray: 300;
	stroke-dashoffset: 300;
	animation: technip-draw 1.4s var(--ease) forwards;
}
.preloader__waves path { stroke: var(--accent); opacity: 0; transform: translateY(14px); }
.preloader__waves path:nth-child(1) { animation: technip-wave .5s var(--ease) .45s forwards; }
.preloader__waves path:nth-child(2) { animation: technip-wave .5s var(--ease) .58s forwards; }
.preloader__waves path:nth-child(3) { animation: technip-wave .5s var(--ease) .71s forwards; }
.preloader__waves path:nth-child(4) { animation: technip-wave .5s var(--ease) .84s forwards; }
.preloader__waves path:nth-child(5) { animation: technip-wave .5s var(--ease) .97s forwards; }
.preloader__waves path:nth-child(6) { animation: technip-wave .5s var(--ease) 1.1s forwards; }

@keyframes technip-draw { to { stroke-dashoffset: 0; } }
@keyframes technip-wave { to { opacity: 1; transform: translateY(0); } }

.preloader__word {
	font-family: var(--font-display);
	font-size: 30px; font-weight: 800; letter-spacing: -.02em;
	color: #fff; margin: 0 0 6px;
}
.preloader__note {
	font-family: var(--font-mono); font-size: 10.5px;
	letter-spacing: .16em; text-transform: uppercase;
	color: rgba(255,255,255,.6); margin: 0 0 22px;
}
.preloader__bar { height: 2px; background: rgba(255,255,255,.18); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--accent); transition: width .3s linear; }

/* ------------------------------------------------------------------ hero */

.hero { position: relative; background: var(--navy-deep); }
.hero__stage { position: relative; min-height: clamp(520px, 78vh, 780px); }
.hero__slide {
	position: absolute; inset: 0;
	display: flex; align-items: flex-end;
	opacity: 0; visibility: hidden;
	transition: opacity .9s var(--ease), visibility .9s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__slide:only-child { position: relative; opacity: 1; visibility: visible; }

.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
	background: linear-gradient(105deg, rgba(11,34,38,.92) 0%, rgba(11,34,38,.62) 46%, rgba(11,34,38,.28) 100%);
}

.hero__inner { position: relative; z-index: 2; padding-block: clamp(60px, 10vh, 120px); }
.hero__body { max-width: 46rem; color: #fff; }
.hero__title {
	font-size: clamp(38px, 6.6vw, 84px);
	font-weight: 800;
	letter-spacing: -.035em;
	margin-bottom: .32em;
}
.hero__lede {
	font-size: clamp(16px, 1.8vw, 20px);
	color: rgba(255,255,255,.82);
	max-width: 44ch;
	margin-bottom: 34px;
}
.hero__slide.is-active .hero__body > * { animation: technip-rise .8s var(--ease) both; }
.hero__slide.is-active .hero__body > *:nth-child(2) { animation-delay: .1s; }
.hero__slide.is-active .hero__body > *:nth-child(3) { animation-delay: .18s; }
.hero__slide.is-active .hero__body > *:nth-child(4) { animation-delay: .26s; }

@keyframes technip-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero__controls { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 3; }
.hero__dots { display: flex; gap: 10px; }
.hero__dot {
	background: none; border: 0; cursor: pointer; padding: 8px 0;
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
	color: rgba(255,255,255,.5);
	border-top: 2px solid rgba(255,255,255,.28);
	width: 56px; text-align: left;
	transition: color .3s, border-color .3s;
}
.hero__dot.is-active { color: var(--accent); border-top-color: var(--accent); }

/* ---------------------------------------------------------------- ticker */

.ticker {
	background: var(--navy);
	color: #fff;
	overflow: hidden;
}
.ticker__track { display: flex; width: max-content; animation: technip-marquee 42s linear infinite; }
.ticker__list {
	display: flex; align-items: center; gap: 0;
	list-style: none; margin: 0; padding: 0;
}
.ticker__list li {
	font-family: var(--font-mono);
	font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
	padding: 14px 28px;
	white-space: nowrap;
	display: flex; align-items: center; gap: 28px;
}
.ticker__list li::after { content: ""; width: 5px; height: 5px; background: var(--accent); flex: none; }

@keyframes technip-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ticker:hover .ticker__track { animation-play-state: paused; }

/* ------------------------------------------------------- page header/rail */

.pagehead { position: relative; background: var(--navy-deep); color: #fff; }
.pagehead.no-image { background: var(--mineral); color: var(--ink); }
.pagehead__media { position: absolute; inset: 0; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }

.pagehead__inner {
	position: relative; z-index: 2;
	display: grid;
	grid-template-columns: var(--rail) minmax(0, 1fr);
	gap: clamp(24px, 5vw, 64px);
	padding-block: clamp(64px, 12vh, 140px);
}
.pagehead--tall .pagehead__inner { padding-block: clamp(110px, 22vh, 240px); }
.pagehead--plain .pagehead__inner { padding-block: clamp(48px, 8vh, 96px); }

.pagehead__title { font-size: clamp(32px, 5.4vw, 66px); letter-spacing: -.035em; margin-bottom: .3em; }
.pagehead__lede { font-size: clamp(16px, 1.6vw, 19px); max-width: 52ch; opacity: .86; margin: 0; }

/* the mono title-block rail — the signature device */
.pagehead__rail { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; }

.crumbs { margin-bottom: 22px; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li { text-transform: uppercase; letter-spacing: .12em; font-size: 10px; opacity: .7; }
.crumbs li + li::before { content: "/ "; opacity: .5; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--accent); }

.titleblock { margin: 0; border-top: 1px solid currentColor; }
.titleblock__row {
	display: grid; grid-template-columns: 1fr auto; gap: 8px;
	padding: 9px 0;
	border-bottom: 1px solid color-mix(in srgb, currentColor 25%, transparent);
}
.titleblock dt { text-transform: uppercase; letter-spacing: .12em; font-size: 9.5px; opacity: .62; margin: 0; }
.titleblock dd { margin: 0; font-weight: 500; text-align: right; }

/* ----------------------------------------------------------------- split */

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: start;
}
.split--left { direction: rtl; }
.split--left > * { direction: ltr; }
.split__media { margin: 0; aspect-ratio: 4 / 5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.ticklist { list-style: none; padding: 0; margin: 26px 0; border-top: 1px solid var(--line); }
.ticklist li {
	padding: 14px 0 14px 30px;
	border-bottom: 1px solid var(--line);
	position: relative;
}
.ticklist li::before {
	content: ""; position: absolute; left: 0; top: 22px;
	width: 16px; height: 2px; background: var(--accent);
}
.ticklist strong { display: block; font-family: var(--font-display); font-size: 17px; }
.ticklist span { color: var(--steel); font-size: 15.5px; }

/* ----------------------------------------------------------------- cards */

.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
	background: var(--paper);
	padding: clamp(26px, 3vw, 40px);
	position: relative;
	transition: background .3s var(--ease);
}
.bg-mineral .card { background: var(--mineral); }
.bg-navy .card { background: var(--navy); }
.card:hover { background: var(--mineral-2); }
.bg-navy .card:hover { background: var(--navy-deep); }

.card__index {
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
	color: var(--accent-ink); display: block; margin-bottom: 20px;
}
.bg-navy .card__index { color: #fff; }
.card__title { font-size: 20px; margin-bottom: .5em; }
.card__text { margin: 0; color: var(--steel); font-size: 15.5px; }
.bg-navy .card__text { color: rgba(255,255,255,.7); }

/* ----------------------------------------------------- specification table */

.specs { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 64px); }
.specs__note { color: var(--steel); }
.specs__list { margin: 0; border-top: 2px solid var(--ink); }
.specs__row {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 16px; padding: 15px 0;
	border-bottom: 1px solid var(--line);
	align-items: baseline;
}
.specs__row dt {
	font-family: var(--font-mono); font-size: 11.5px;
	letter-spacing: .1em; text-transform: uppercase; color: var(--steel);
}
.specs__row dd { margin: 0; font-weight: 500; }

/* --------------------------------------------------------------- process */

.process { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 0; }
.process__step {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr);
	gap: clamp(18px, 3vw, 44px);
	padding: 28px 0;
	border-top: 1px solid var(--line);
	position: relative;
}
.process__step:last-child { border-bottom: 1px solid var(--line); }
.process__num {
	font-family: var(--font-mono); font-size: 13px; font-weight: 700;
	color: var(--accent-ink); letter-spacing: .1em;
	padding-top: 4px;
}
.process__title { font-size: 21px; margin-bottom: .35em; }
.process__step p { margin: 0; color: var(--steel); max-width: 62ch; }

/* ----------------------------------------------------------------- stats */

.stats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: color-mix(in srgb, currentColor 18%, transparent); }
.stat { padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px); background: inherit; }
.bg-navy .stat { background: var(--navy); }
.stat__num {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(42px, 6.4vw, 84px);
	font-weight: 800; letter-spacing: -.04em; line-height: 1;
	color: var(--navy);
	font-variant-numeric: tabular-nums;
}
.bg-navy .stat__num { color: #fff; }
.stat { border-top: 3px solid var(--accent); }
.stat__label {
	display: block; margin-top: 14px;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: .16em; text-transform: uppercase;
	opacity: .74;
}

/* --------------------------------------------------------------- gallery */

.grid-gallery { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 6px; }
.grid-gallery li { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mineral-2); }
.grid-gallery a { display: block; height: 100%; }
.grid-gallery img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3); transition: transform .6s var(--ease), filter .4s; }
.grid-gallery a:hover img { transform: scale(1.05); filter: none; }
.grid-gallery li:nth-child(6n+1) { grid-column: span 2; }

/* -------------------------------------------------------------- logowall */

.logowall {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1px; background: var(--line);
}
.logowall__item {
	background: var(--paper);
	aspect-ratio: 3 / 2;
	display: grid; place-items: center;
	padding: 18px;
}
.logowall__item img {
	max-height: 100%; width: auto; object-fit: contain;
	filter: grayscale(1); opacity: .62;
	transition: filter .3s, opacity .3s;
}
.logowall__item:hover img { filter: none; opacity: 1; }

/* ------------------------------------------------------------- accordion */

.accordion { border-top: 1px solid var(--line); max-width: 78ch; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item summary {
	cursor: pointer; list-style: none;
	padding: 20px 40px 20px 0;
	font-family: var(--font-display); font-size: 19px; font-weight: 600;
	position: relative;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after {
	content: "+"; position: absolute; right: 4px; top: 18px;
	font-family: var(--font-mono); font-size: 20px; color: var(--accent);
}
.accordion__item[open] summary::after { content: "–"; }
.accordion__body { padding-bottom: 20px; color: var(--steel); max-width: 68ch; }

/* -------------------------------------------------- quote, links, cta band */

.pullquote {
	margin: 0; max-width: 26ch;
	font-family: var(--font-display);
	font-size: clamp(24px, 3.6vw, 42px);
	font-weight: 600; line-height: 1.16; letter-spacing: -.025em;
	border-left: 3px solid var(--accent);
	padding-left: clamp(20px, 3vw, 40px);
}
.pullquote cite {
	display: block; margin-top: 22px;
	font-family: var(--font-mono); font-size: 11px; font-style: normal;
	letter-spacing: .16em; text-transform: uppercase; color: var(--steel);
}

.linklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.linklist li { border-bottom: 1px solid var(--line); }
.linklist a {
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 22px 4px; text-decoration: none;
	transition: padding .3s var(--ease), background .3s;
}
.linklist a:hover { padding-inline: 16px; background: var(--mineral); }
.linklist__label { font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 26px); font-weight: 600; }
.linklist__arrow { color: var(--accent-ink); font-size: 20px; }

.ctaband {
	display: flex; align-items: center; justify-content: space-between;
	gap: 32px; flex-wrap: wrap;
	border: 1px solid currentColor;
	padding: clamp(28px, 4vw, 52px);
}
.ctaband__text p { margin: 0; font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 30px); font-weight: 600; max-width: 34ch; }

/* ----------------------------------------------------------------- forms */

.formwrap { max-width: 780px; }
.formwrap__intro { color: var(--steel); margin-bottom: 28px; }

.form__trap { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
.field { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }

.field label {
	font-family: var(--font-mono); font-size: 10.5px;
	letter-spacing: .16em; text-transform: uppercase; color: var(--steel);
}
.field label span { color: var(--accent); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="file"],
.field select,
.field textarea,
.searchform input[type="search"] {
	width: 100%;
	font-family: var(--font-body); font-size: 16px;
	color: var(--ink);
	background: transparent;
	border: 0; border-bottom: 1px solid var(--line);
	padding: 12px 2px;
	border-radius: 0;
	transition: border-color .25s var(--ease);
}
.bg-mineral .field input, .bg-mineral .field select, .bg-mineral .field textarea { background: transparent; }
.field input:focus, .field select:focus, .field textarea:focus {
	outline: none; border-bottom-color: var(--accent); border-bottom-width: 2px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field__hint { font-family: var(--font-mono); font-size: 10.5px; color: var(--steel); letter-spacing: .06em; }

.field--check { grid-column: 1 / -1; margin-top: 22px; }
.field--check label {
	display: flex; gap: 12px; align-items: flex-start;
	font-family: var(--font-body); font-size: 14.5px;
	text-transform: none; letter-spacing: 0; color: var(--steel);
}
.field--check input { margin-top: 4px; accent-color: var(--navy); }

.form__actions { margin-top: 30px; }
.form__note { font-family: var(--font-mono); font-size: 13px; margin-top: 16px; }
.form__note.is-ok  { color: var(--navy); }
.form__note.is-bad { color: var(--accent-ink); }
.form.is-sending { opacity: .6; pointer-events: none; }

.flash { padding: 16px 0; font-family: var(--font-mono); font-size: 13px; }
.flash--ok  { background: var(--navy); color: #fff; }
.flash--bad { background: var(--accent-ink); color: #fff; }

.searchform { display: flex; gap: 12px; align-items: flex-end; max-width: 520px; margin-bottom: 28px; }

/* ------------------------------------------------------- contact + career */

.contactgrid__inner { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 80px); }
.contactblock { padding: 22px 0; border-top: 1px solid var(--line); }
.contactblock__title {
	font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
	letter-spacing: .18em; text-transform: uppercase; color: var(--steel);
	margin-bottom: 10px;
}
.contactblock__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.contactblock a { text-decoration: none; }
.contactblock a:hover { color: var(--navy); text-decoration: underline; }

.mapwrap { filter: grayscale(1) contrast(1.05); border-top: 1px solid var(--line); }
.mapwrap iframe { width: 100%; height: clamp(320px, 46vh, 480px); border: 0; display: block; }

.joblist { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.jobrow {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) auto;
	gap: clamp(16px, 3vw, 44px);
	align-items: center;
	padding: 26px 0;
	border-bottom: 1px solid var(--line);
}
.jobrow__title { font-size: 22px; margin-bottom: .3em; }
.jobrow__title a { text-decoration: none; }
.jobrow__title a:hover { color: var(--navy); }
.jobrow__summary { margin: 0; color: var(--steel); font-size: 15.5px; }
.jobrow__meta { display: flex; flex-wrap: wrap; gap: 22px; margin: 0; font-family: var(--font-mono); font-size: 11px; }
.jobrow__meta dt { text-transform: uppercase; letter-spacing: .12em; font-size: 9.5px; color: var(--steel); }
.jobrow__meta dd { margin: 2px 0 0; font-weight: 500; }
.jobrow__cta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; white-space: nowrap; }
.jobrow__cta:hover { color: var(--navy); }

/* ------------------------------------------------------------------ blog */

.postlist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.postcard__media { display: block; aspect-ratio: 16 / 10; margin-bottom: 20px; }
.postcard__date { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.postcard__title { font-size: 21px; margin-bottom: .4em; }
.postcard__title a { text-decoration: none; }
.postcard__excerpt { color: var(--steel); font-size: 15.5px; margin: 0; }

.postnav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); margin-top: 64px; }
.postnav__link { background: var(--paper); padding: 26px; text-decoration: none; display: block; }
.postnav__link:hover { background: var(--mineral); }
.postnav__link--next { text-align: right; }
.postnav__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; }
.postnav__title { font-family: var(--font-display); font-weight: 600; font-size: 17px; }

.pagination { margin-top: 56px; font-family: var(--font-mono); font-size: 13px; }
.pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.pagination .page-numbers {
	padding: 10px 15px; text-decoration: none; border: 1px solid var(--line);
}
.pagination .page-numbers.current { background: var(--ink); color: var(--accent); border-color: var(--ink); }

/* ---------------------------------------------------------------- footer */

.siteftr { background: var(--ink); color: #B8C6C4; }
.siteftr__top {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, 1.1fr) minmax(0, .9fr);
	gap: clamp(28px, 4vw, 56px);
	padding-block: clamp(52px, 8vw, 96px);
}
.siteftr .brand__mark { max-height: 52px; }
.siteftr .brand__word { color: #fff; }
.siteftr__about { margin: 22px 0 24px; font-size: 15px; max-width: 40ch; }
.siteftr__heading {
	font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
	letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
	margin-bottom: 16px;
}
.siteftr__menu, .siteftr__contact ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: 15px; }
.siteftr a { text-decoration: none; }
.siteftr a:hover { color: var(--accent); }
.siteftr__address + .siteftr__address { margin-top: 26px; }
.siteftr__address p { font-size: 14.5px; line-height: 1.6; margin: 0; }

.social { list-style: none; padding: 0; margin: 0; display: flex; gap: 18px; }
.social a {
	font-family: var(--font-mono); font-size: 10.5px;
	letter-spacing: .14em; text-transform: uppercase;
	padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.25);
}

.siteftr__base { border-top: 1px solid rgba(255,255,255,.12); }
.siteftr__baseinner {
	display: flex; justify-content: space-between; align-items: center;
	gap: 20px; flex-wrap: wrap;
	padding-block: 22px;
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
}
.siteftr__baseinner p { margin: 0; }
.siteftr__legal { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }

.notfound .searchform { margin-top: 30px; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1180px) {
	:root { --rail: 150px; }
	.nav__list > .nav__item > .nav__link { padding-inline: 9px; font-size: 14.5px; }
}

@media (max-width: 1024px) {
	.nav { display: none; }
	.burger { display: block; }
	.masthead__actions .btn { display: none; }
	.pagehead__inner { grid-template-columns: 1fr; gap: 28px; }
	.pagehead__rail { order: 2; max-width: 340px; }
	.split, .specs, .contactgrid__inner { grid-template-columns: 1fr; }
	.cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); }
	.siteftr__top { grid-template-columns: repeat(2, 1fr); }
	.jobrow { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 720px) {
	body { font-size: 16px; }
	.masthead__strip { display: none; }
	.form__grid { grid-template-columns: 1fr; }
	.cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; }
	.stats { grid-template-columns: 1fr; }
	.grid-gallery li:nth-child(6n+1) { grid-column: span 1; }
	.process__step { grid-template-columns: 1fr; gap: 6px; }
	.siteftr__top { grid-template-columns: 1fr; }
	.postnav { grid-template-columns: 1fr; }
	.postnav__link--next { text-align: left; }
	.ctaband { flex-direction: column; align-items: flex-start; }
	.split--left { direction: ltr; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	[data-reveal] { opacity: 1; transform: none; }
	.ticker__track { animation: none; }
}

@media print {
	.masthead, .siteftr, .preloader, .drawer, .ticker { display: none !important; }
	body { color: #000; font-size: 12pt; }
	.duotone::before, .duotone::after { display: none; }
}

/* -------------------------------------------------------------- lightbox */

.lightbox {
	position: fixed; inset: 0; z-index: 300;
	background: rgba(11,34,38,.94);
	display: grid; place-items: center;
	padding: clamp(20px, 5vw, 64px);
	cursor: zoom-out;
	animation: technip-fade .25s var(--ease);
}
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox__close {
	position: absolute; top: 18px; right: 22px;
	background: none; border: 0; color: var(--accent);
	font-size: 34px; line-height: 1; cursor: pointer;
}
@keyframes technip-fade { from { opacity: 0; } to { opacity: 1; } }

.masthead.is-stuck { box-shadow: 0 12px 32px -22px rgba(11,34,38,.5); }
.masthead.is-stuck .masthead__inner { min-height: 66px; }


/* ------------------------------------------------- wave rule (logo motif) */

.waverule {
	height: 12px;
	background-repeat: repeat-x;
	background-size: 24px 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='12' viewBox='0 0 24 12'%3E%3Cpath d='M0 9q3-5 6 0t6 0 6 0 6 0' fill='none' stroke='%23EC2329' stroke-width='2.4'/%3E%3C/svg%3E");
	opacity: .9;
}
.bg-navy .waverule { filter: brightness(1.6); }

.section__head .eyebrow::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='6' viewBox='0 0 28 6'%3E%3Cpath d='M0 4.5q3.5-5 7 0t7 0 7 0 7 0' fill='none' stroke='%23EC2329' stroke-width='2.2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-color: transparent;
	height: 6px;
}
