/* =========================================================================
   CoreTrac Energy — main stylesheet v2
   Industrial editorial system: dark steel, warm paper, signal orange.
   Oversized condensed display type, ghost numerals, hairline rules,
   image-led tiles, restrained but constant motion.
   ========================================================================= */

:root {
	--ink:        #090d12;   /* near-black */
	--coal:       #0f151d;   /* dark section bg */
	--steel:      #161f2a;   /* raised dark surface */
	--line-dark:  rgba(255, 255, 255, 0.13);
	--paper:      #f4f1ea;   /* warm light bg */
	--card:       #ffffff;
	--line-light: #e0dacd;
	--body:       #313944;
	--muted:      #68707c;
	--accent:     #e8500f;   /* signal orange */
	--accent-hot: #ff6a2b;
	--white:      #ffffff;

	--font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
	--font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

	--container: 1280px;
	--radius: 2px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--shadow: 0 24px 60px -20px rgba(9, 13, 18, 0.4);
	--header-h: 92px;
}

/* ------------------------------------------------------------------ reset */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--ink); overscroll-behavior-y: none; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16.5px;
	line-height: 1.72;
	color: var(--body);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.05; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol, dl, dd, figure { margin: 0; padding: 0; }
li { list-style: none; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
}

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--accent); color: #fff;
	padding: 10px 18px; z-index: 999;
}
.skip-link:focus { left: 0; }

::selection { background: var(--accent); color: #fff; }

/* -------------------------------------------------------------- utilities */

.container {
	width: min(var(--container), 100% - 48px);
	margin-inline: auto;
}
.container-narrow { max-width: 800px; }

.section { padding: clamp(96px, 11vw, 168px) 0; position: relative; }
.section-light { background: var(--paper); color: var(--body); }
.section-dark  { background: var(--coal); color: rgba(255, 255, 255, 0.82); }
.section-dark + .section-dark { border-top: 1px solid var(--line-dark); background: var(--ink); }

.section-foot { margin-top: clamp(48px, 6vw, 80px); }

/* ---------------------------------------------------------------- kickers */

.kicker {
	display: flex; align-items: center; gap: 14px;
	font-family: var(--font-display);
	font-size: 15px; font-weight: 600;
	letter-spacing: 0.26em; text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 20px;
}
.kicker-rule { display: none; }
.kicker-light { color: var(--accent-hot); }

.card-kicker {
	font-family: var(--font-display);
	font-size: 13.5px; font-weight: 600;
	letter-spacing: 0.24em; text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 10px;
	display: block;
}

/* ------------------------------------------------- section head (v2 rail) */

.section-head {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: clamp(24px, 4vw, 64px);
	align-items: start;
	margin-bottom: clamp(52px, 7vw, 96px);
}

.section-head-rail { padding-top: 8px; }
.section-index {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(64px, 7vw, 104px);
	line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(9, 13, 18, 0.22);
	display: block;
}
.section-dark .section-index { -webkit-text-stroke-color: rgba(255, 255, 255, 0.22); }

.section-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(42px, 5.6vw, 76px);
	line-height: 0.96;
	letter-spacing: 0.002em;
	text-transform: uppercase;
	color: var(--ink);
	max-width: 20ch;
}
.section-dark .section-title { color: var(--white); }

.section-lead {
	font-size: 17.5px;
	max-width: 620px;
	color: var(--muted);
	margin-top: 22px;
}
.section-dark .section-lead { color: rgba(255, 255, 255, 0.58); }

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

.btn {
	position: relative;
	display: inline-flex; align-items: center; gap: 14px;
	font-family: var(--font-display);
	font-size: 17px; font-weight: 600;
	letter-spacing: 0.14em; text-transform: uppercase;
	padding: 17px 32px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	overflow: hidden;
	isolation: isolate;
	transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.45s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); }
.btn-arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.btn:hover .btn-arrow, .text-link:hover .btn-arrow { transform: translateX(6px); }

.btn-lg { padding: 20px 40px; font-size: 19px; }

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

.btn-outline { border-color: rgba(9, 13, 18, 0.35); color: var(--ink); }
.btn-outline::before { background: var(--ink); }
.btn-outline:hover { color: #fff; border-color: var(--ink); }

.btn-outline-light { border-color: var(--line-dark); color: #fff; }
.btn-outline-light::before { background: var(--accent); }
.btn-outline-light:hover { border-color: var(--accent); }

.text-link {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-display);
	font-size: 16px; font-weight: 600;
	letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--accent);
	transition: color 0.2s;
}
.text-link:hover { color: var(--accent-hot); }
.text-link-light { color: var(--accent-hot); }

/* ----------------------------------------------------------------- header */

.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 90;
	color: #fff;
	transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
	            transform 0.45s var(--ease);
}

/* Orange utility topbar — always an orange band pinned to the top */
.site-topbar {
	background: #c8431a;
	background-image: linear-gradient(180deg, #d24a1d 0%, #c14017 100%);
	color: #fff;
	overflow: hidden;
	transition: height 0.4s var(--ease), opacity 0.35s var(--ease);
	height: 42px;
}
.topbar-inner {
	display: flex; align-items: center; justify-content: space-between; height: 42px;
	font-family: var(--font-display);
	font-size: 12.5px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
}
.topbar-tagline { color: rgba(255, 255, 255, 0.82); }
.topbar-contact { display: flex; align-items: center; gap: 14px; color: #fff; }
.topbar-contact a { color: #fff; }
.topbar-contact a:hover { color: #1c0d05; }
.topbar-sep { color: rgba(255, 255, 255, 0.45); }
.topbar-loc { color: rgba(255, 255, 255, 0.82); }

/* Nav row: vertical padding lives here so the topbar height is independent */
.header-inner {
	display: flex; align-items: center; justify-content: space-between; gap: 32px;
	padding: 22px 0;
	transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}

/* Scrolled (home) + every inner page: brand-orange nav, collapse the topbar */
.site-header.is-solid,
body:not(.is-home) .site-header {
	background: var(--accent);
	background-image: linear-gradient(180deg, #ef5713 0%, #e14d0d 100%);
	box-shadow: 0 10px 30px -14px rgba(9, 13, 18, 0.55), 0 1px 0 rgba(0, 0, 0, 0.15);
}
.site-header.is-solid .header-inner,
body:not(.is-home) .site-header .header-inner { padding: 13px 0; }

/* Collapse the topbar once the compact orange nav takes over on scroll */
.site-header.is-solid .site-topbar { height: 0; opacity: 0; }

.site-header.is-hidden { transform: translateY(-102%); }

.brand-lockup { display: inline-flex; align-items: center; gap: 13px; color: #fff; }
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
	font-family: var(--font-display);
	font-size: 27px; font-weight: 700;
	letter-spacing: 0.05em; text-transform: uppercase;
}
.brand-tag {
	font-family: var(--font-display);
	font-size: 11.5px; font-weight: 600;
	letter-spacing: 0.37em; text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 5px;
}
.custom-logo-link img { max-height: 52px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 36px; }
.nav-menu { display: flex; align-items: center; gap: 32px; margin: 0; }
.nav-menu a {
	font-family: var(--font-display);
	font-size: 16px; font-weight: 600;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	padding: 8px 0;
	position: relative;
	transition: color 0.25s;
}
.nav-menu a:hover { color: #fff; }
.nav-menu a::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 100%; height: 2px; background: var(--accent);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.35s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after { transform: scaleX(1); }

.header-cta { padding: 12px 22px; font-size: 15px; }

/* --- Orange-nav colour treatment (scrolled home + all inner pages) --- */
/* Brand + toggle read as ink at every width (they sit on the orange bar) */
.site-header.is-solid .brand-lockup,
body:not(.is-home) .site-header .brand-lockup,
.site-header.is-solid .brand-mark,
body:not(.is-home) .site-header .brand-mark { color: #16110b; }
.site-header.is-solid .brand-tag,
body:not(.is-home) .site-header .brand-tag { color: rgba(22, 17, 11, 0.6); }
.site-header.is-solid .nav-toggle-box span,
body:not(.is-home) .site-header .nav-toggle-box span { background: #16110b; }
/* while the mobile menu is open it overlays a dark panel — keep bars light */
.nav-toggle[aria-expanded="true"] .nav-toggle-box span { background: #fff; }

@media (min-width: 861px) {
	.site-header.is-solid .nav-menu a,
	body:not(.is-home) .site-header .nav-menu a { color: rgba(22, 17, 11, 0.82); }
	.site-header.is-solid .nav-menu a:hover,
	body:not(.is-home) .site-header .nav-menu a:hover { color: #16110b; }
	.site-header.is-solid .nav-menu a::after,
	body:not(.is-home) .site-header .nav-menu a::after { background: #16110b; }
	.site-header.is-solid .header-cta,
	body:not(.is-home) .site-header .header-cta {
		background: #16110b; border-color: #16110b; color: #fff;
	}
	.site-header.is-solid .header-cta:hover,
	body:not(.is-home) .site-header .header-cta:hover {
		background: #000; border-color: #000; color: #fff;
	}
}

/* Topbar collapses on mobile to keep the compact bar clean */
@media (max-width: 560px) {
	.site-topbar, .site-header.is-solid .site-topbar { height: 34px; opacity: 1; }
	.topbar-tagline, .topbar-loc, .topbar-sep { display: none; }
	.topbar-inner { justify-content: center; font-size: 12px; height: 34px; }
	.topbar-mail { display: inline-flex; align-items: center; padding: 7px 6px; }
}

.nav-toggle { display: none; background: none; border: 0; padding: 13px 10px; cursor: pointer; }
.nav-toggle-box { display: flex; flex-direction: column; gap: 6px; width: 28px; }
.nav-toggle-box span { height: 2px; background: #fff; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

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

.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex; align-items: center;
	background: var(--ink);
	color: #fff;
	overflow: hidden;
}

.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
	display: flex; align-items: flex-start;
	opacity: 0; visibility: hidden;
	transition: opacity 1.1s var(--ease), visibility 0s 1.1s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transition: opacity 1.1s var(--ease); z-index: 2; }

.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img, .hero-media video {
	width: 100%; height: 100%; object-fit: cover;
	transform: scale(1.12);
	transition: transform 8s linear;
}
.hero-slide.is-active .hero-media img,
.hero-slide.is-active .hero-media video { transform: scale(1.005); }

.hero-scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(9, 13, 18, 0.86) 0%, rgba(9, 13, 18, 0.48) 55%, rgba(9, 13, 18, 0.16) 100%),
		linear-gradient(0deg, rgba(9, 13, 18, 0.92) 0%, rgba(9, 13, 18, 0.1) 45%);
}

.hero-content { position: relative; z-index: 3; padding-top: 154px; padding-bottom: 48px; }

/* cinematic atmosphere: edge vignette + fine living film grain */
.hero-atmos {
	position: absolute; inset: 0; z-index: 3; pointer-events: none;
	background: radial-gradient(125% 125% at 50% 40%, transparent 56%, rgba(9, 13, 18, 0.5) 100%);
}
.hero-atmos::after {
	content: ""; position: absolute; inset: -60%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 150px 150px;
	opacity: 0.045;
	animation: ct-grain 1.1s steps(5) infinite;
}
@keyframes ct-grain {
	0%   { transform: translate(0, 0); }
	20%  { transform: translate(-5%, 3%); }
	40%  { transform: translate(4%, -5%); }
	60%  { transform: translate(-3%, 5%); }
	80%  { transform: translate(5%, -3%); }
	100% { transform: translate(0, 0); }
}

.hero-kicker { margin-bottom: 28px; }

.hero-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(44px, 5.6vw, 86px);
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: 0.002em;
	max-width: 22ch;
	margin-bottom: 22px;
	text-wrap: balance;
}

.hero-text { max-width: 560px; font-size: 17.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.76); margin-bottom: 32px; }

/* Short desktop viewports (e.g. 1440x900 laptops): compact the hero so even
   the longest slide clears the header at the top and the pager at the bottom. */
@media (min-width: 861px) and (max-height: 960px) {
	.hero-content { padding-top: 148px; padding-bottom: 20px; }
	.hero-title { font-size: clamp(38px, 4.4vw, 62px); line-height: 0.96; margin-bottom: 14px; max-width: 30ch; }
	.hero-text { font-size: 16px; line-height: 1.5; margin-bottom: 20px; max-width: 600px; }
	.hero-kicker { margin-bottom: 18px; }
}

/* slide content entrance */
.hero-kicker, .hero-title, .hero-text, .hero-btn {
	opacity: 0; transform: translateY(34px);
	transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero-slide.is-active .hero-kicker { opacity: 1; transform: none; transition-delay: 0.3s; }
.hero-slide.is-active .hero-title  { opacity: 1; transform: none; transition-delay: 0.44s; }
.hero-slide.is-active .hero-text   { opacity: 1; transform: none; transition-delay: 0.58s; }
.hero-slide.is-active .hero-btn    { opacity: 1; transform: none; transition-delay: 0.72s; }

/* hero UI: numbered pager + big counter + arrows */
.hero-ui {
	position: absolute; left: 50%; bottom: 132px; transform: translateX(-50%);
	z-index: 5;
	display: flex; align-items: flex-end; justify-content: space-between; gap: 28px;
	pointer-events: none;
}
.hero-ui > * { pointer-events: auto; }

.hero-pager { display: flex; gap: 28px; }
.hero-dot {
	background: none; border: 0; padding: 0; cursor: pointer;
	display: flex; flex-direction: column; gap: 9px;
	width: 88px; text-align: left;
}
.hero-dot-num {
	font-family: var(--font-display);
	font-size: 15px; font-weight: 600; letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.45);
	transition: color 0.3s;
}
.hero-dot:hover .hero-dot-num { color: rgba(255, 255, 255, 0.8); }
.hero-dot.is-active .hero-dot-num { color: #fff; }
.hero-dot-bar { display: block; height: 2px; background: rgba(255, 255, 255, 0.22); overflow: hidden; }
.hero-dot-fill { display: block; height: 100%; width: 0; background: var(--accent-hot); }
.hero-dot.is-active .hero-dot-fill { animation: ct-progress var(--slide-ms, 6500ms) linear forwards; }
.hero.is-paused .hero-dot-fill { animation-play-state: paused; }

@keyframes ct-progress { from { width: 0; } to { width: 100%; } }

.hero-counter {
	display: flex; align-items: baseline; gap: 12px;
	font-family: var(--font-display); font-weight: 700;
	line-height: 1;
	margin-left: auto;
}
.hero-counter-current {
	font-size: 64px; color: #fff;
	display: inline-block;
}
.hero-counter-current.is-flipping { animation: ct-counter-in 0.6s var(--ease-out); }
@keyframes ct-counter-in {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: none; }
}
.hero-counter-sep { display: none; }
.hero-counter-total { font-size: 20px; color: rgba(255, 255, 255, 0.45); letter-spacing: 0.1em; }

.hero-arrows { display: flex; gap: 10px; }
.hero-arrow {
	width: 56px; height: 56px;
	border: 1px solid var(--line-dark); border-radius: 50%;
	background: rgba(9, 13, 18, 0.3);
	color: #fff; font-size: 20px; cursor: pointer;
	transition: background 0.3s, border-color 0.3s;
}
.hero-arrow:hover { background: var(--accent); border-color: var(--accent); }

.hero-edge {
	position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
	background: var(--line-dark); z-index: 4;
}

/* --------------------------------------------- hero quick-links (overlap) */

.hero-panel { position: relative; z-index: 6; margin-top: -78px; }
.hero-panel-grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	background: var(--steel);
	border: 1px solid var(--line-dark);
	box-shadow: var(--shadow);
}
.hero-panel-item {
	position: relative;
	display: flex; align-items: center; gap: 20px;
	padding: 30px 32px;
	color: #fff;
	border-right: 1px solid var(--line-dark);
	overflow: hidden;
	transition: background 0.35s var(--ease);
}
.hero-panel-item:last-child { border-right: 0; }
.hero-panel-item::before {
	content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
	background: var(--accent);
	transform: scaleY(0); transform-origin: top;
	transition: transform 0.4s var(--ease);
}
.hero-panel-item:hover { background: rgba(255, 255, 255, 0.04); }
.hero-panel-item:hover::before { transform: scaleY(1); }

.hero-panel-num {
	font-family: var(--font-display);
	font-size: 44px; font-weight: 700; line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
	flex: none;
	transition: color 0.35s, -webkit-text-stroke-color 0.35s;
}
.hero-panel-item:hover .hero-panel-num { color: var(--accent-hot); -webkit-text-stroke-color: var(--accent-hot); }

.hero-panel-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hero-panel-title {
	font-family: var(--font-display);
	font-size: 23px; font-weight: 700;
	letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-panel-sub { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); line-height: 1.5; }

.hero-panel-arrow {
	margin-left: auto; flex: none;
	font-size: 20px; color: var(--accent-hot);
	transition: transform 0.3s var(--ease);
}
.hero-panel-item:hover .hero-panel-arrow { transform: translateX(6px); }

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

.page-hero {
	position: relative;
	display: flex; align-items: flex-end;
	min-height: clamp(540px, 70vh, 780px);
	padding: calc(var(--header-h) + 90px) 0 clamp(90px, 10vw, 130px);
	color: #fff;
	overflow: hidden;
	background: var(--ink);
}
.page-hero-short { min-height: clamp(440px, 56vh, 620px); }

.page-hero-media { position: absolute; inset: 0; will-change: transform; transform: scale(1.18); }
.page-hero-media img {
	width: 100%; height: 100%; object-fit: cover;
	animation: ct-hero-in 1.6s var(--ease-out) both;
}
@keyframes ct-hero-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}
.page-hero::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(90deg, rgba(9, 13, 18, 0.88) 0%, rgba(9, 13, 18, 0.5) 60%, rgba(9, 13, 18, 0.24) 100%),
		linear-gradient(0deg, rgba(9, 13, 18, 0.88) 0%, rgba(9, 13, 18, 0.15) 55%);
}
.page-hero-inner { position: relative; z-index: 2; }

.page-hero-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(44px, 6.6vw, 92px);
	line-height: 0.95;
	text-transform: uppercase;
	max-width: 16ch;
	text-wrap: balance;
	animation: ct-rise 1s var(--ease-out) 0.15s both;
}
.page-hero-lead {
	max-width: 620px; font-size: 18px;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 20px;
	animation: ct-rise 1s var(--ease-out) 0.3s both;
}
.page-hero .kicker { animation: ct-rise 1s var(--ease-out) 0.05s both; }

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

.page-hero-baseline {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
	border-top: 1px solid var(--line-dark);
}
.page-hero-baseline-inner {
	display: flex; justify-content: space-between; gap: 20px;
	padding: 16px 0;
	font-family: var(--font-display);
	font-size: 12.5px; font-weight: 600;
	letter-spacing: 0.26em; text-transform: uppercase;
	color: rgba(255, 255, 255, 0.42);
}

/* ---------------------------------------------------- solution tiles (home) */

.solutions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.solution-tile {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--ink);
	color: #fff;
}
.solution-tile-media { position: absolute; inset: 0; }
.solution-tile-media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.solution-tile:hover .solution-tile-media img { transform: scale(1.07); filter: brightness(0.75); }

.solution-tile-scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(9, 13, 18, 0.5) 0%, rgba(9, 13, 18, 0) 32%),
		linear-gradient(0deg, rgba(9, 13, 18, 0.94) 0%, rgba(9, 13, 18, 0.42) 45%, rgba(9, 13, 18, 0.12) 75%);
	transition: opacity 0.5s;
}

.solution-tile-num {
	position: absolute; top: 22px; right: 24px;
	font-family: var(--font-display);
	font-size: clamp(64px, 6vw, 92px); font-weight: 700; line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.45);
	transition: -webkit-text-stroke-color 0.4s, color 0.4s;
}
.solution-tile:hover .solution-tile-num { -webkit-text-stroke-color: var(--accent-hot); }

.solution-tile-content {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 30px 30px 32px;
	display: flex; flex-direction: column; align-items: flex-start;
}
.solution-tile-content .card-kicker { color: var(--accent-hot); margin-bottom: 8px; }

.solution-tile-title {
	font-family: var(--font-display);
	font-size: clamp(30px, 2.6vw, 38px); font-weight: 700;
	text-transform: uppercase; line-height: 1;
	margin-bottom: 6px;
}

.solution-tile-reveal {
	display: block;
	max-height: 0; opacity: 0; overflow: hidden;
	transform: translateY(12px);
	transition: max-height 0.55s var(--ease), opacity 0.45s var(--ease), transform 0.55s var(--ease);
}
.solution-tile:hover .solution-tile-reveal,
.solution-tile:focus-visible .solution-tile-reveal { max-height: 300px; opacity: 1; transform: none; }

.solution-tile-text {
	display: block;
	font-size: 14px; line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
	margin: 8px 0 12px;
}
.solution-tile-services { display: block; margin-bottom: 14px; }
.solution-tile-service {
	position: relative;
	display: block;
	font-size: 13px; color: rgba(255, 255, 255, 0.6);
	padding: 5px 0 5px 20px;
}
.solution-tile-service::before {
	content: ""; position: absolute; left: 1px; top: 11px;
	width: 5px; height: 5px;
	border: solid var(--accent); border-width: 2px 2px 0 0;
	transform: rotate(45deg);
}
.solution-tile .text-link { margin-top: 10px; }

/* --------------------------------------------------------- service lists */

.service-list li {
	position: relative;
	padding: 10px 0 10px 26px;
	border-bottom: 1px solid var(--line-light);
	font-size: 15px;
}
.service-list li::before {
	content: ""; position: absolute; left: 1px; top: 17px;
	width: 6px; height: 6px;
	border: solid var(--accent); border-width: 2px 2px 0 0;
	transform: rotate(45deg);
}
.service-list li:last-child { border-bottom: 0; }
.section-dark .service-list li { border-color: var(--line-dark); }

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

.split {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: clamp(44px, 7vw, 100px);
	align-items: center;
}
.split-rev { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }

.split-media { position: relative; padding-bottom: 60px; }
.framed-media {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	will-change: transform;
}
.framed-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.framed-media-offset {
	position: absolute;
	right: -8%; bottom: 0;
	width: 46%;
	border: 6px solid var(--coal);
	box-shadow: var(--shadow);
}
.section-light .framed-media-offset { border-color: var(--paper); }
.framed-media-offset img { aspect-ratio: 3 / 4; }

.media-plate {
	position: absolute; left: -20px; bottom: 90px;
	background: var(--accent); color: #fff;
	padding: 22px 28px;
	max-width: 300px;
	box-shadow: var(--shadow);
	z-index: 2;
}
.media-plate-value {
	display: block;
	font-family: var(--font-display);
	font-size: 48px; font-weight: 700; line-height: 1;
}
.media-plate-label {
	display: block;
	font-family: var(--font-display);
	font-size: 12.5px; font-weight: 600;
	letter-spacing: 0.18em; text-transform: uppercase;
	margin-top: 8px; opacity: 0.92;
}

.about-teaser p { color: rgba(255, 255, 255, 0.7); }

/* Section heads inside split columns: tighter, no ghost rail */
.split-copy .section-head { grid-template-columns: 1fr; gap: 0; margin-bottom: clamp(28px, 3vw, 40px); }
.split-copy .section-head-rail { display: none; }
.split-copy .section-title { font-size: clamp(34px, 3.4vw, 50px); }

.def-rows { margin: 30px 0 38px; border-top: 1px solid var(--line-dark); }
.def-row { display: grid; grid-template-columns: 130px 1fr; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.def-row dt {
	font-family: var(--font-display);
	font-size: 16px; font-weight: 600;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--accent-hot);
}
.def-row dd { color: rgba(255, 255, 255, 0.7); font-size: 15.5px; }

.def-rows-dark { border-color: var(--line-light); }
.def-rows-dark .def-row { border-color: var(--line-light); }
.def-rows-dark .def-row dt { color: var(--accent); }
.def-rows-dark .def-row dd { color: var(--body); }

/* ------------------------------------------------------------ values band */

.values-ticker {
	background: var(--ink);
	border-top: 1px solid var(--line-dark);
	border-bottom: 1px solid var(--line-dark);
	overflow: hidden;
	padding: clamp(22px, 3vw, 34px) 0;
}
.values-ticker-track {
	display: flex; align-items: center; gap: 48px; white-space: nowrap;
	font-family: var(--font-display);
	font-size: clamp(40px, 5.4vw, 72px);
	font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
	line-height: 1;
	animation: ct-ticker 30s linear infinite;
	width: max-content;
}
.values-ticker-track span:not(.tick-sep) {
	color: transparent;
	-webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.55);
	transition: color 0.3s;
}
.values-ticker-track span:not(.tick-sep):hover { color: var(--accent-hot); -webkit-text-stroke-color: var(--accent-hot); }
.tick-sep { color: var(--accent); font-size: 0.55em; }
@keyframes ct-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--line-dark);
	background: var(--coal);
}
.value-card {
	padding: 44px 32px 52px;
	border-right: 1px solid var(--line-dark);
	position: relative;
	overflow: hidden;
	transition: background 0.4s var(--ease);
}
.value-card:last-child { border-right: 0; }
.value-card:hover { background: var(--steel); }
.value-card::before {
	content: ""; position: absolute; left: 0; top: 0;
	width: 100%; height: 3px; background: var(--accent);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.45s var(--ease);
}
.value-card:hover::before { transform: scaleX(1); }

.value-num {
	font-family: var(--font-display);
	font-size: 64px; font-weight: 700; line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.3);
	display: block; margin-bottom: 26px;
	transition: -webkit-text-stroke-color 0.4s;
}
.value-card:hover .value-num { -webkit-text-stroke-color: var(--accent-hot); }
.value-title {
	font-family: var(--font-display);
	font-size: 29px; font-weight: 700; text-transform: uppercase;
	color: #fff;
}
.value-strap {
	font-family: var(--font-display);
	font-size: 15px; font-weight: 600;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--accent-hot);
	margin-bottom: 14px;
}
.value-text { font-size: 14.5px; color: rgba(255, 255, 255, 0.6); }

/* -------------------------------------------------------------- principles */

.principles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.principle {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line-light);
	padding: 44px 36px 48px;
	overflow: hidden;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.principle::before {
	content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
	background: var(--accent);
	transform: scaleY(0); transform-origin: top;
	transition: transform 0.45s var(--ease);
}
.principle:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.principle:hover::before { transform: scaleY(1); }

.principle-num {
	font-family: var(--font-display);
	font-size: 56px; font-weight: 700; line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 1.2px rgba(9, 13, 18, 0.28);
	display: block; margin-bottom: 24px;
	transition: -webkit-text-stroke-color 0.4s;
}
.principle:hover .principle-num { -webkit-text-stroke-color: var(--accent); }
.principle h3 {
	font-family: var(--font-display);
	font-size: 29px; font-weight: 700; text-transform: uppercase;
	color: var(--ink);
}
.principle-strap {
	font-family: var(--font-display);
	font-size: 15px; font-weight: 600;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
}
.principle p:last-child { color: var(--muted); font-size: 15.5px; }

/* ----------------------------------------------------------------- team */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card {
	background: var(--card);
	border: 1px solid var(--line-light);
	border-top: 3px solid var(--accent);
	padding: 36px 32px 42px;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.team-card h3 {
	font-family: var(--font-display);
	font-size: 27px; font-weight: 700; text-transform: uppercase;
	color: var(--ink);
}
.team-card p:last-child { color: var(--muted); font-size: 15.5px; }

/* ---------------------------------------------------- terrain tiles (home) */

.terrain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.terrain-tile {
	position: relative;
	aspect-ratio: 3 / 4.1;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--steel);
}
.terrain-tile-media { position: absolute; inset: 0; }
.terrain-tile-media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.terrain-tile:hover .terrain-tile-media img { transform: scale(1.08); filter: brightness(0.72); }

.terrain-tile-scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(9, 13, 18, 0.5) 0%, rgba(9, 13, 18, 0) 32%),
		linear-gradient(0deg, rgba(9, 13, 18, 0.92) 0%, rgba(9, 13, 18, 0.35) 50%, rgba(9, 13, 18, 0.1) 80%);
}
.terrain-tile-num {
	position: absolute; top: 18px; right: 20px;
	font-family: var(--font-display);
	font-size: 54px; font-weight: 700; line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.4);
	transition: -webkit-text-stroke-color 0.4s;
}
.terrain-tile:hover .terrain-tile-num { -webkit-text-stroke-color: var(--accent-hot); }

.terrain-tile-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 24px 26px; color: #fff; }
.terrain-tile-content .card-kicker { color: var(--accent-hot); margin-bottom: 6px; }
.terrain-tile-content h3 {
	font-family: var(--font-display);
	font-size: 26px; font-weight: 700; text-transform: uppercase;
	margin-bottom: 0;
}
.terrain-tile-text {
	font-size: 13.5px; color: rgba(255, 255, 255, 0.68); line-height: 1.55;
	max-height: 0; opacity: 0; overflow: hidden;
	transform: translateY(10px);
	transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), transform 0.5s var(--ease), margin-top 0.5s var(--ease);
	margin-top: 0;
}
.terrain-tile:hover .terrain-tile-text { max-height: 170px; opacity: 1; transform: none; margin-top: 10px; }

/* Operations page rows */
.terrain-rows { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 104px); }
.terrain-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(36px, 6vw, 84px);
	align-items: center;
}
.terrain-row:nth-child(even) .terrain-row-media { order: 2; }
.terrain-row-media { border-radius: var(--radius); overflow: hidden; }
.terrain-row-media img {
	width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
	transition: transform 0.9s var(--ease);
}
.terrain-row:hover .terrain-row-media img { transform: scale(1.04); }
.terrain-row-body h2 {
	font-family: var(--font-display);
	font-size: clamp(32px, 3.6vw, 50px); font-weight: 700; text-transform: uppercase;
	color: var(--ink);
}
.terrain-row-body p { color: var(--muted); }

.ops-base { margin-top: clamp(72px, 9vw, 120px); }
.ops-base-inner {
	background: var(--coal); color: rgba(255, 255, 255, 0.72);
	padding: clamp(44px, 6vw, 72px);
	border-left: 4px solid var(--accent);
	box-shadow: var(--shadow);
}
.ops-base-inner h2 {
	font-family: var(--font-display);
	font-size: clamp(32px, 3.6vw, 50px); font-weight: 700; text-transform: uppercase;
	color: #fff;
}

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

.stats {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 88px 88px;
}

.stats-grid {
	display: grid; grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line-dark);
	border-left: 1px solid var(--line-dark);
}
.stat {
	padding: 46px 36px 52px;
	border-right: 1px solid var(--line-dark);
	border-bottom: 1px solid var(--line-dark);
	transition: background 0.4s var(--ease);
}
.stat:hover { background: rgba(255, 255, 255, 0.03); }
.stat-value {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(64px, 7vw, 104px);
	font-weight: 700; line-height: 0.9;
	color: var(--accent-hot);
	letter-spacing: -0.01em;
}
.stat-label {
	display: block;
	font-family: var(--font-display);
	font-size: 21px; font-weight: 600;
	letter-spacing: 0.12em; text-transform: uppercase;
	color: #fff; margin-top: 14px;
}
.stat-note { display: block; font-size: 14px; color: rgba(255, 255, 255, 0.52); margin-top: 8px; }

/* --------------------------------------------------------------- CTA band */

.cta-band { position: relative; padding: clamp(110px, 14vw, 190px) 0; color: #fff; overflow: hidden; background: var(--ink); }
.cta-media {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	will-change: transform; transform: scale(1.18);
}
.cta-media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(9, 13, 18, 0.94) 15%, rgba(9, 13, 18, 0.6) 100%);
}
.cta-inner { position: relative; max-width: 780px; }
.cta-title {
	font-family: var(--font-display);
	font-size: clamp(48px, 7vw, 96px);
	font-weight: 700; text-transform: uppercase; line-height: 0.94;
}
.cta-title em { font-style: normal; color: var(--accent-hot); }
.cta-text { font-size: 18px; color: rgba(255, 255, 255, 0.72); margin: 22px 0 40px; max-width: 560px; }
.cta-actions { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.cta-mail {
	font-family: var(--font-display);
	font-size: 19px; font-weight: 600; letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.75);
	border-bottom: 2px solid var(--accent);
	padding-bottom: 3px;
	transition: color 0.25s;
}
.cta-mail:hover { color: var(--accent-hot); }

/* ---------------------------------------------------------------- contact */

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
	gap: clamp(36px, 5vw, 72px);
	align-items: start;
}

.contact-aside {
	position: sticky; top: 120px;
	background: var(--coal);
	color: rgba(255, 255, 255, 0.78);
	padding: clamp(32px, 4vw, 48px);
	border-top: 3px solid var(--accent);
	box-shadow: var(--shadow);
}
.contact-fact { padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.contact-fact:first-child { padding-top: 0; }
.contact-fact:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-fact dt {
	font-family: var(--font-display);
	font-size: 14px; font-weight: 600;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--accent-hot);
	margin-bottom: 6px;
}
.contact-fact dd { font-size: 16px; color: #fff; }
.contact-fact a:hover { color: var(--accent-hot); }

.contact-form-wrap {
	background: var(--card);
	border: 1px solid var(--line-light);
	padding: clamp(32px, 5vw, 56px);
	box-shadow: var(--shadow);
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-field { margin-bottom: 26px; }
.form-field label {
	display: block;
	font-family: var(--font-display);
	font-size: 13.5px; font-weight: 600;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 6px;
	transition: color 0.2s;
}
.form-field:focus-within label { color: var(--accent); }
.form-field input, .form-field select, .form-field textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 16.5px;
	color: var(--ink);
	background: transparent;
	border: 0;
	border-bottom: 2px solid var(--line-light);
	border-radius: 0;
	padding: 10px 2px 12px;
	transition: border-color 0.25s;
	appearance: none;
	-webkit-appearance: none;
}
.form-field select {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23e8500f' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 4px center;
	padding-right: 28px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
	outline: none;
	border-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 10px; }

.hp-field { position: absolute !important; left: -9999px !important; }

.form-success {
	background: #0f3a22; color: #c7f0d8;
	border-left: 4px solid #2fbf71;
	padding: 18px 22px; margin-bottom: 30px;
	font-size: 15px;
}

/* -------------------------------------------------------- solution single */

.solution-single {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
	gap: clamp(44px, 6vw, 88px);
	align-items: start;
}
.solution-single-aside { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 120px; }
.aside-box { background: var(--card); border: 1px solid var(--line-light); padding: 34px; }
.aside-box-accent {
	background: var(--coal); border-color: var(--coal);
	border-top: 3px solid var(--accent);
	color: rgba(255, 255, 255, 0.75);
	box-shadow: var(--shadow);
}
.aside-box-accent .aside-heading { color: #fff; }
.aside-heading {
	font-family: var(--font-display);
	font-size: 23px; font-weight: 700; text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 18px;
}

.solution-rows { display: flex; flex-direction: column; gap: clamp(64px, 9vw, 110px); }
.solution-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(36px, 6vw, 84px);
	align-items: center;
}
.solution-row:nth-child(even) .solution-row-media { order: 2; }
.solution-row-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.solution-row-media img {
	width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
	transition: transform 0.9s var(--ease);
}
.solution-row:hover .solution-row-media img { transform: scale(1.04); }
.solution-card-num {
	position: absolute; right: 18px; bottom: 12px;
	font-family: var(--font-display);
	font-size: 84px; font-weight: 700; line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
	text-shadow: 0 2px 30px rgba(9, 13, 18, 0.5);
}
.solution-row-body h2 {
	font-family: var(--font-display);
	font-size: clamp(34px, 4vw, 54px); font-weight: 700; text-transform: uppercase;
	color: var(--ink);
}
.solution-row-body h2 a { transition: color 0.25s; }
.solution-row-body h2 a:hover { color: var(--accent); }
.solution-row-body > p { color: var(--muted); }
.service-list-cols { columns: 2; column-gap: 40px; margin-top: 20px; }
.service-list-cols li { break-inside: avoid; }

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

.post-list { display: flex; flex-direction: column; gap: 44px; }
.post-list-item { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: center; }
.post-list-media { border-radius: var(--radius); overflow: hidden; display: block; }
.post-list-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.7s var(--ease); }
.post-list-media:hover img { transform: scale(1.05); }
.post-list-title { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; }
.post-list-title a:hover { color: var(--accent); }
.pagination-wrap { margin-top: 52px; }
.pagination-wrap .nav-links { display: flex; gap: 8px; }
.pagination-wrap .page-numbers {
	padding: 10px 17px; border: 1px solid var(--line-light);
	font-family: var(--font-display); font-weight: 600;
	transition: border-color 0.2s, color 0.2s;
}
.pagination-wrap .page-numbers:hover { border-color: var(--accent); color: var(--accent); }
.pagination-wrap .page-numbers.current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* --------------------------------------------------------- entry content */

.entry-content h2, .entry-content h3 {
	font-family: var(--font-display);
	text-transform: uppercase;
	color: var(--ink);
	margin-top: 1.5em;
}
.entry-content h2 { font-size: clamp(28px, 3vw, 40px); }
.entry-content a { color: var(--accent); border-bottom: 1px solid rgba(232, 80, 15, 0.35); }
.entry-content a:hover { color: var(--accent-hot); }
.entry-content ul li { position: relative; padding: 7px 0 7px 28px; }
.entry-content ul li::before {
	content: ""; position: absolute; left: 2px; top: 15px;
	width: 7px; height: 7px;
	border: solid var(--accent); border-width: 2px 2px 0 0;
	transform: rotate(45deg);
}
.entry-content ol { padding-left: 20px; }
.entry-content ol li { list-style: decimal; padding: 7px 0; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote {
	margin: 1.6em 0; padding: 6px 0 6px 28px;
	border-left: 3px solid var(--accent);
	font-size: 1.12em; color: var(--ink);
}

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

.site-footer {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.6);
	padding: clamp(72px, 9vw, 120px) 0 36px;
	font-size: 15px;
	border-top: 1px solid var(--line-dark);
}

.footer-cta {
	display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap;
	padding-bottom: clamp(44px, 6vw, 72px);
	margin-bottom: clamp(44px, 6vw, 72px);
	border-bottom: 1px solid var(--line-dark);
}
.footer-cta-kicker {
	font-family: var(--font-display);
	font-size: 15px; font-weight: 600;
	letter-spacing: 0.26em; text-transform: uppercase;
	color: var(--accent-hot);
	margin: 0 0 10px;
	flex-basis: 100%;
}
.footer-cta-link {
	display: inline-flex; align-items: center; gap: 26px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(40px, 6.5vw, 92px);
	line-height: 0.95;
	text-transform: uppercase;
	color: #fff;
	transition: color 0.3s var(--ease);
}
.footer-cta-link:hover { color: var(--accent-hot); }
.footer-cta-arrow {
	color: var(--accent);
	transition: transform 0.4s var(--ease);
}
.footer-cta-link:hover .footer-cta-arrow { transform: translateX(16px); }

.footer-grid {
	display: grid;
	grid-template-columns: 2.2fr 1fr 1fr 1.3fr 1.4fr;
	gap: clamp(32px, 4vw, 56px);
	padding-bottom: clamp(48px, 6vw, 68px);
	border-bottom: 1px solid var(--line-dark);
}

.brand-lockup-footer { margin-bottom: 22px; }
.footer-about { font-size: 14.5px; max-width: 340px; line-height: 1.75; }

.footer-heading {
	font-family: var(--font-display);
	font-size: 15px; font-weight: 600;
	letter-spacing: 0.24em; text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 20px;
}
.footer-col li { padding: 3px 0; }
.footer-col a { display: inline-block; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-hot); }
.footer-compliance li { position: relative; padding-left: 24px; }
.footer-compliance li::before {
	content: ""; position: absolute; left: 1px; top: 13px;
	width: 5px; height: 5px;
	border: solid var(--accent); border-width: 2px 2px 0 0;
	transform: rotate(45deg);
}
.footer-contact a { color: var(--accent-hot); }

.footer-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.footer-social a {
	width: 40px; height: 40px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	color: rgba(255, 255, 255, 0.75);
	border: 1px solid var(--line-dark);
	transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover {
	color: #fff; background: var(--accent); border-color: var(--accent);
	transform: translateY(-2px);
}
.footer-social svg { display: block; }

.footer-legal {
	display: flex; flex-wrap: wrap; gap: 10px 26px;
	padding-top: 34px; margin-top: 8px;
	border-top: 1px solid var(--line-dark);
}
.footer-legal a {
	font-family: var(--font-display);
	font-size: 13px; font-weight: 600;
	letter-spacing: 0.14em; text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	transition: color 0.2s;
}
.footer-legal a:hover { color: var(--accent-hot); }

.footer-bottom {
	display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
	padding-top: 22px;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.38);
}
.footer-strap {
	font-family: var(--font-display);
	letter-spacing: 0.24em; text-transform: uppercase;
}

/* ---------------------------------------------------------- reveal motion */

.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; }
	.page-hero-media, .cta-media { transform: none !important; }
}

/* -------------------------------------------------- careers: open roles */

.role-list { margin-top: 8px; border-top: 1px solid var(--line-dark); }
.role {
	display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 28px;
	padding: 26px 6px; border-bottom: 1px solid var(--line-dark);
	color: #fff; transition: padding-left 0.35s var(--ease), background 0.35s var(--ease);
}
.role:hover { padding-left: 16px; background: rgba(255, 255, 255, 0.02); }
.role-title {
	font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
	font-size: clamp(21px, 2.3vw, 29px); letter-spacing: 0.01em; line-height: 1.05; color: #fff;
}
.role-meta {
	font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
	font-size: 13.5px; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.55); white-space: nowrap;
}
.role-apply {
	font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
	font-size: 14px; letter-spacing: 0.14em; color: var(--accent); white-space: nowrap;
	display: inline-flex; align-items: center; gap: 9px;
}
.role:hover .role-apply .btn-arrow { transform: translateX(5px); }
.role-apply .btn-arrow { transition: transform 0.3s var(--ease); }

/* Open / Closed status */
.role-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.role-status {
	font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
	font-size: 11px; letter-spacing: 0.16em; line-height: 1;
	padding: 5px 10px 4px; border-radius: 2px; white-space: nowrap;
}
.role-status--open { color: #08130c; background: #3fb066; }
.role-status--closed { color: rgba(255, 255, 255, 0.62); background: rgba(255, 255, 255, 0.09); }

/* Closed roles: shown, but muted and not interactive (no apply link) */
.role-is-closed { cursor: default; }
.role-is-closed:hover { padding-left: 6px; background: none; }
.role-is-closed .role-title { color: rgba(255, 255, 255, 0.6); }
.role-is-closed .role-meta { color: rgba(255, 255, 255, 0.4); }
.role-apply--closed {
	font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
	font-size: 13px; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.42); white-space: nowrap;
}

/* ------------------------------------------------- hse: credential chips */

.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 10px; }
.cred-chip {
	display: flex; align-items: flex-start; gap: 16px;
	padding: 26px 26px; border: 1px solid var(--line-dark); background: rgba(255, 255, 255, 0.02);
}
.cred-dash { display: none; }
.cred-chip h3 {
	font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
	font-size: 20px; letter-spacing: 0.02em; color: #fff;
}
.cred-chip p { font-size: 14.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.62); margin-top: 5px; }

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

@media (max-width: 1120px) {
	.site-nav { gap: 24px; }
	.nav-menu { gap: 22px; }
	.nav-menu a { letter-spacing: 0.1em; }
	.header-cta { padding: 11px 18px; }
	.cred-grid { grid-template-columns: 1fr; }
	.solutions-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
	.principles, .team-grid { grid-template-columns: 1fr 1fr; }
	.values-grid { grid-template-columns: 1fr 1fr; }
	.value-card { border-bottom: 1px solid var(--line-dark); }
	.terrain-grid { grid-template-columns: 1fr 1fr; }
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.split, .split-rev { grid-template-columns: 1fr; }
	.split-rev .split-copy { order: 1; }
	.split-rev .split-media { order: 2; }
	.framed-media img { aspect-ratio: 16 / 10; }
	/* Single-column split: keep the offset image inside the viewport
	   (base rule uses right:-8%, which bleeds once the column is full-width). */
	.framed-media-offset { right: 0; width: 42%; }
	.solution-single { grid-template-columns: 1fr; }
	.solution-single-aside { position: static; }
	.contact-layout { grid-template-columns: 1fr; }
	.contact-aside { position: static; order: 2; }
	.section-head { grid-template-columns: 1fr; gap: 18px; }
	.section-index { font-size: 56px; }
	.hero-panel-grid { grid-template-columns: 1fr; }
	.hero-panel-item { border-right: 0; border-bottom: 1px solid var(--line-dark); }
	.hero-panel-item:last-child { border-bottom: 0; }
}

@media (max-width: 860px) {
	body { font-size: 16px; }

	.nav-toggle { display: block; z-index: 101; position: relative; }
	.site-nav {
		position: fixed; inset: 0; z-index: 100;
		background: var(--ink);
		flex-direction: column; justify-content: center; align-items: flex-start;
		padding: 110px 38px 60px;
		gap: 28px;
		transform: translateX(100%);
		transition: transform 0.5s var(--ease);
	}
	.site-nav.is-open { transform: translateX(0); }
	.nav-menu { flex-direction: column; align-items: flex-start; gap: 16px; }
	.nav-menu a { font-size: 34px; letter-spacing: 0.06em; }
	.role { grid-template-columns: 1fr; gap: 7px; padding: 22px 4px; }
	.role:hover { padding-left: 4px; }
	.role-apply { margin-top: 4px; }

	.custom-logo-link img { max-height: 42px; max-width: 62vw; }
	.hero-slide { align-items: flex-start; }
	.hero-content { padding-top: 140px; padding-bottom: 150px; }
	.hero-ui { bottom: 96px; flex-wrap: wrap; gap: 18px; }
	.hero-arrows, .hero-counter { display: none; }
	.hero-dot { width: 58px; padding: 8px 0; }
	.hero-panel { margin-top: -56px; }

	.solutions-grid { grid-template-columns: 1fr; }
	.solution-tile { aspect-ratio: 4 / 3.4; }
	.solution-tile-reveal, .terrain-tile-text {
		max-height: none; opacity: 1; transform: none; overflow: visible; margin-top: 10px;
	}
	.principles, .team-grid, .terrain-grid, .values-grid, .footer-grid { grid-template-columns: 1fr; }
	.terrain-tile { aspect-ratio: 4 / 3.2; }
	.value-card { border-right: 0; }
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.form-row-2 { grid-template-columns: 1fr; gap: 0; }
	.terrain-row, .solution-row { grid-template-columns: 1fr; }
	.terrain-row:nth-child(even) .terrain-row-media,
	.solution-row:nth-child(even) .solution-row-media { order: 0; }
	.post-list-item { grid-template-columns: 1fr; }
	.media-plate { left: 12px; bottom: 74px; }
	.framed-media-offset { display: none; }
	.split-media { padding-bottom: 0; }
	.service-list-cols { columns: 1; }
	.page-hero { min-height: clamp(480px, 60vh, 640px); }
	.page-hero-baseline-inner span:last-child { display: none; }
}

@media (max-width: 480px) {
	.container { width: calc(100% - 36px); }
	.stats-grid { grid-template-columns: 1fr; }
	.hero-title { font-size: clamp(44px, 13.5vw, 64px); }
	.footer-cta-link { font-size: clamp(34px, 10vw, 48px); gap: 14px; }
	.btn { padding: 15px 24px; font-size: 16px; }
	.btn-lg { padding: 17px 28px; font-size: 17px; }
}
