/* =====================================================================
   Goldstone — section styles, ported verbatim from the design comp
   (Goldstone Security.dc.html). Fidelity lives here + theme.json.
   ===================================================================== */

/* ---------- base ---------- */
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: #0b1620;
	color: #eef3f7;
	font-family: 'Manrope', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
body h1, body h2, body h3, body h4, body h5, body h6,
body p, body figure, body blockquote, body ul, body ol {
	margin: 0;
}
a { color: #c05a24; text-decoration: none; }
a:hover { color: #f57d47; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: #f57d47; color: #0b1620; }
input, select, textarea, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: #94a3ad; }
:focus-visible { outline: 2px solid #f57d47; outline-offset: 2px; }

@keyframes gsRiseIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes gsFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes gsSlowZoom { from { transform: scale(1.09); } to { transform: scale(1); } }

.gs-rise { animation: gsRiseIn .8s ease both; }
.gs-rise--slow { animation-duration: .9s; }

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

/* ---------- layout primitives ---------- */
.gs-wrap { max-width: 1320px; margin: 0 auto; }
.gs-sec { padding-left: clamp(20px, 5vw, 64px); padding-right: clamp(20px, 5vw, 64px); }
.gs-sec--p130 { padding-top: clamp(72px, 9vw, 130px); padding-bottom: clamp(72px, 9vw, 130px); }
.gs-sec--p120 { padding-top: clamp(64px, 8vw, 120px); padding-bottom: clamp(64px, 8vw, 120px); }
.gs-sec--p110 { padding-top: clamp(56px, 7vw, 110px); padding-bottom: clamp(56px, 7vw, 110px); }
.gs-sec--p96 { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.gs-sec--navy { background: #0b1620; }
.gs-sec--panel { background: #0e1c28; }
.gs-sec--light { background: #f4f2ec; color: #14232f; }

/* ---------- eyebrow ---------- */
.gs-eyebrow {
	display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
	font: 600 12px/1 'JetBrains Mono', monospace;
	letter-spacing: .26em; text-transform: uppercase; color: #f57d47;
}
.gs-eyebrow::before { content: ''; width: 28px; height: 1px; background: #f57d47; flex: none; }
.gs-eyebrow--wide::before { width: 30px; }
.gs-eyebrow--rust { color: #c05a24; }
.gs-eyebrow--rust::before, .gs-eyebrow--rust::after { background: #c05a24; }
.gs-eyebrow--center { justify-content: center; }
.gs-eyebrow--center::after { content: ''; width: 28px; height: 1px; background: #f57d47; flex: none; }
.gs-eyebrow--rust.gs-eyebrow--center::after { background: #c05a24; }
.gs-eyebrow--mb26 { margin-bottom: 26px; }

/* ---------- headings ---------- */
.gs-h1 {
	font: 800 clamp(38px, 6.3vw, 80px)/1.02 'Montserrat', sans-serif;
	letter-spacing: -.025em; color: #f7fafc;
}
.gs-h1 .gs-accent { color: #f57d47; }
.gs-h1--page { font-size: clamp(34px, 5vw, 64px); line-height: 1.05; }
.gs-h1--contact { font-size: clamp(34px, 5vw, 62px); line-height: 1.05; }
.gs-h2 {
	font: 800 clamp(28px, 3.6vw, 46px)/1.1 'Montserrat', sans-serif;
	letter-spacing: -.02em; color: #f7fafc;
}
.gs-h2--ink { color: #14232f; text-wrap: balance; }
.gs-h2--44 { font-size: clamp(28px, 3.6vw, 44px); }
.gs-h2--40 { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.12; }
.gs-h2--36 { font-size: clamp(24px, 3vw, 36px); line-height: 1.12; }
.gs-h2--cta { font-size: clamp(28px, 3.8vw, 50px); line-height: 1.08; }
.gs-h2--slim { font-size: clamp(24px, 3vw, 38px); line-height: 1.1; }

/* lede / body text */
.gs-lede { color: #bccad5; font: 400 clamp(16px, 1.5vw, 19px)/1.65 'Manrope'; }
.gs-lede--page { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.68; }
.gs-body { color: #4f5d69; font: 400 17px/1.72 'Manrope'; }
.gs-body--165 { font-size: 16.5px; }
.gs-body--16 { font-size: 16px; line-height: 1.68; }
.gs-body--dark { color: #a9b9c5; font: 400 16.5px/1.72 'Manrope'; }
.gs-maxw { max-width: 60ch; }
.gs-maxw--62 { max-width: 62ch; }

/* ---------- buttons ---------- */
.gs-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	border-radius: 2px; white-space: nowrap; cursor: pointer; border: none;
	transition: background .2s, color .2s, border-color .2s;
}
.gs-btn--solid { background: #f57d47; color: #0b1620; font: 700 15px 'Manrope'; padding: 17px 30px; }
.gs-btn--solid:hover { background: #ff9a68; color: #0b1620; }
.gs-btn--solid.gs-btn--lg { padding: 18px 34px; }
.gs-btn--hdr { background: #f57d47; color: #ffffff; font: 700 13.5px 'Manrope'; padding: 12px 20px; }
.gs-btn--hdr:hover { background: #ff9a68; color: #ffffff; }
.gs-btn--outline { border: 1px solid rgba(255,255,255,0.24); color: #f7fafc; font: 600 15px 'Manrope'; padding: 17px 30px; background: transparent; }
.gs-btn--outline:hover { border-color: #f57d47; color: #f57d47; }
.gs-btn--outline.gs-btn--lg { padding: 18px 34px; }
.gs-btn--outline-sm { border: 1px solid rgba(255,255,255,0.22); color: #f7fafc; font: 600 14px 'Manrope'; padding: 14px 24px; background: transparent; }
.gs-btn--outline-sm:hover { border-color: #f57d47; color: #f57d47; }
.gs-arrow-link {
	display: inline-flex; align-items: center; gap: 9px; margin-top: 30px;
	color: #c05a24; font: 700 15px 'Manrope'; transition: gap .2s, color .2s;
}
.gs-arrow-link:hover { gap: 15px; color: #f57d47; }

/* ---------- header ---------- */
.gs-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	background: rgba(9,17,25,0.28);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	transition: background .3s, box-shadow .3s, border-color .3s;
}
.gs-header.is-scrolled {
	background: rgba(9,17,25,0.95);
	border-bottom-color: rgba(255,255,255,0.10);
	box-shadow: 0 18px 40px -30px rgba(0,0,0,0.9);
	-webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
}
.gs-header__inner {
	max-width: 1320px; margin: 0 auto;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	padding: 16px clamp(20px, 5vw, 64px);
}
.gs-header__logo { display: flex; align-items: center; flex: none; }
.gs-header__logo img { height: 38px; width: auto; }
.gs-nav { display: flex; align-items: center; gap: 34px; }
.gs-nav a {
	display: inline-block; padding: 8px 0;
	font: 600 14.5px/1 'Manrope', sans-serif; letter-spacing: .01em;
	color: #a7b7c4; border-bottom: 2px solid transparent; transition: color .2s;
}
.gs-nav a:hover { color: #ffffff; }
.gs-nav a.is-active { color: #ffffff; border-bottom-color: #f57d47; }
.gs-header__right { display: flex; align-items: center; gap: 16px; flex: none; }
.gs-header__tel { display: flex; align-items: center; gap: 8px; color: #cdd8e1; font: 600 13.5px 'Manrope'; }
.gs-header__tel:hover { color: #f57d47; }
.gs-header__tel .gs-tel-tag { font: 600 12px 'JetBrains Mono', monospace; color: #f57d47; }
.gs-burger {
	display: none; flex-direction: column; gap: 5px; background: none;
	border: 1px solid rgba(255,255,255,0.18); border-radius: 2px; padding: 11px 12px; cursor: pointer;
}
.gs-burger span { width: 20px; height: 2px; background: #eef3f7; display: block; }
.gs-burger span:first-child { background: #f57d47; }

/* ---------- mobile overlay ---------- */
.gs-mobilenav {
	position: fixed; inset: 0; z-index: 60; background: rgba(9,17,25,0.98);
	-webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
	display: none; flex-direction: column;
	padding: 22px clamp(20px, 5vw, 64px);
}
.gs-mobilenav.is-open { display: flex; animation: gsFadeIn .25s ease both; }
.gs-mobilenav__top { display: flex; align-items: center; justify-content: space-between; }
.gs-mobilenav__top img { height: 36px; }
.gs-mobilenav__close {
	background: none; border: 1px solid rgba(255,255,255,0.18); border-radius: 2px;
	color: #eef3f7; font: 600 15px 'Manrope'; padding: 9px 14px; cursor: pointer;
}
.gs-mobilenav__links { display: flex; flex-direction: column; gap: 6px; margin-top: 44px; }
.gs-mobilenav__links a {
	font: 700 30px/1.1 'Montserrat', sans-serif; color: #eef3f7;
	padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); letter-spacing: -.01em;
}
.gs-mobilenav__bottom { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }
.gs-mobilenav__cta { text-align: center; background: #f57d47; color: #0b1620; font: 700 16px 'Manrope'; padding: 16px; border-radius: 2px; display: block; }
.gs-mobilenav__cta:hover { background: #ff9a68; color: #0b1620; }
.gs-mobilenav__tel { text-align: center; color: #cdd8e1; font: 600 15px 'Manrope'; display: block; }
body.gs-nav-open { overflow: hidden; }

/* ---------- cover scaffolding (heroes, cards, CTA band) ---------- */
.wp-block-cover.gs-cover { padding: 0; border-radius: 0; }
.wp-block-cover.gs-cover .wp-block-cover__inner-container { width: 100%; position: relative; z-index: 2; }
.gs-h1 mark, .gs-h2 mark, .gs-cover mark.has-inline-color { background: none; }
.gs-cover::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.gs-hero-page.wp-block-cover, .gs-cta-band.wp-block-cover { min-height: 0; }
.gs-cover figure { height: 100%; }

/* home hero */
.gs-hero-home { min-height: 100vh; display: flex; align-items: flex-end; background: #0b1620; overflow: hidden; }
.gs-hero-home img.wp-block-cover__image-background { opacity: .5; animation: gsSlowZoom 9s ease-out both; }
.gs-hero-home::after {
	background:
		linear-gradient(180deg, rgba(11,22,32,0.6) 0%, transparent 30%, rgba(11,22,32,0.98) 100%),
		linear-gradient(90deg, rgba(11,22,32,0.95) 0%, rgba(11,22,32,0.55) 48%, rgba(11,22,32,0.25) 100%);
}
.gs-hero-home__pad { padding: 120px clamp(20px, 5vw, 64px) clamp(52px, 7vw, 96px); }
.gs-hero-home__content { max-width: 830px; animation: gsRiseIn .9s ease both; }
.gs-hero-home__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.gs-hero-home .gs-lede { margin-top: 26px; }

/* page hero */
.gs-hero-page { background: #0b1620; overflow: hidden; }
.gs-hero-page::after { background: linear-gradient(180deg, rgba(11,22,32,0.82), rgba(11,22,32,0.96)); }
.gs-hero-page--about::after { background: linear-gradient(180deg, rgba(11,22,32,0.85), rgba(11,22,32,0.96)); }
.gs-hero-page img.wp-block-cover__image-background { opacity: .32; }
.gs-hero-page--services img.wp-block-cover__image-background { opacity: .34; }
.gs-hero-page--contact img.wp-block-cover__image-background { opacity: .3; }
.gs-hero-page__pad { padding: clamp(140px, 16vw, 210px) clamp(20px, 5vw, 64px) clamp(56px, 7vw, 90px); }
.gs-hero-page__pad--contact { padding: clamp(140px, 16vw, 200px) clamp(20px, 5vw, 64px) clamp(52px, 6vw, 84px); max-width: 900px; margin: 0 auto; }
.gs-hero-page__content { max-width: 820px; animation: gsRiseIn .8s ease both; }
.gs-hero-page__content .gs-lede--page { margin-top: 24px; }
.gs-hero-page__content--contact .gs-lede--page { margin-top: 22px; }

/* ---------- trust strip ---------- */
.gs-trust { border-bottom: 1px solid rgba(255,255,255,0.07); background: #0e1c28; }
.gs-trust__inner {
	max-width: 1320px; margin: 0 auto; padding: 26px clamp(20px, 5vw, 64px);
	display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.gs-trust__label { font: 600 11.5px 'JetBrains Mono', monospace; letter-spacing: .24em; text-transform: uppercase; color: #7d92a3; }
.gs-chips { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.gs-badge {
	display: inline-flex; align-items: center; justify-content: center;
	background: #ffffff; border-radius: 8px; height: 48px; padding: 0 15px;
	box-shadow: 0 2px 12px -5px rgba(0,0,0,0.45);
}
.gs-badge img { max-height: 32px; width: auto; display: block; }
.gs-badge span { font: 800 12.5px 'Montserrat', sans-serif; color: #14232f; letter-spacing: .02em; white-space: nowrap; }
.gs-badge--sm { height: 44px; padding: 0 14px; box-shadow: none; }
.gs-badge--sm img { max-height: 28px; }
.gs-badge--sm span { font-size: 11.5px; }

/* ---------- section headers ---------- */
.gs-sechead { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 52px; }
.gs-sechead > div { max-width: 640px; }
.gs-sechead--tight { margin-bottom: 48px; }
.gs-sechead-center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.gs-sechead-center .gs-eyebrow { display: inline-flex; }
.gs-sechead-center p:not(.gs-eyebrow) { margin-top: 20px; color: #4f5d69; font: 400 17px/1.7 'Manrope'; }
.gs-sechead-center--dark p:not(.gs-eyebrow) { color: #bccad5; }
.gs-subhead { max-width: 640px; margin-bottom: 52px; }

/* ---------- hairline grids ---------- */
.gs-grid { display: grid; gap: 1px; border-radius: 6px; overflow: hidden; }
.gs-grid--light { background: rgba(20,35,47,0.10); border: 1px solid rgba(20,35,47,0.10); }
.gs-grid--dark { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.gs-cols-280 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.gs-cols-300 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.gs-cell { padding: clamp(28px, 3vw, 40px); }
.gs-cell--p38 { padding: clamp(28px, 3vw, 38px); }
.gs-cell--p48 { padding: clamp(30px, 3.4vw, 48px); }
.gs-grid--dark .gs-cell { background: #0e1c28; transition: background .25s; }
.gs-grid--dark .gs-cell:hover { background: #122636; }
.gs-grid--light .gs-cell { background: #ffffff; }

.gs-cell__num { font: 600 13px 'JetBrains Mono', monospace; margin-bottom: 20px; }
.gs-grid--dark .gs-cell__num { color: #f57d47; }
.gs-grid--light .gs-cell__num { color: #c05a24; }
.gs-cell h3 { font: 700 21px/1.25 'Montserrat', sans-serif; margin-bottom: 12px; }
.gs-grid--dark .gs-cell h3 { color: #f7fafc; }
.gs-grid--light .gs-cell h3 { color: #14232f; }
.gs-cell > p:last-child { font: 400 15px/1.65 'Manrope'; }
.gs-grid--dark .gs-cell > p:last-child { color: #94a5b3; }
.gs-grid--light .gs-cell > p:last-child { color: #596773; }

/* approach cells (numbered baseline) */
.gs-cell--stage .gs-stage-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.gs-cell--stage .gs-stage-head .gs-stage-num { font: 800 40px/1 'Montserrat', sans-serif; }
.gs-grid--light .gs-cell--stage .gs-stage-num { color: rgba(192,90,36,0.30); }
.gs-grid--dark .gs-cell--stage .gs-stage-num { color: rgba(245,125,71,0.28); }
.gs-cell--stage .gs-stage-head h3 { margin: 0; font: 700 20px 'Montserrat', sans-serif; }
.gs-cell--stage > p:last-child { font: 400 15px/1.62 'Manrope'; }

/* values cells (mono num + title inline) */
.gs-cell--value .gs-value-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.gs-cell--value .gs-value-head .gs-value-num { font: 600 13px 'JetBrains Mono', monospace; color: #c05a24; }
.gs-cell--value .gs-value-head h3 { margin: 0; font: 700 20px 'Montserrat', sans-serif; color: #14232f; }
.gs-cell--value > p:last-child { font: 400 15px/1.62 'Manrope'; color: #596773; }

/* mvp cells */
.gs-cell--mvp .gs-mvp-label { font: 600 12px 'JetBrains Mono', monospace; letter-spacing: .2em; text-transform: uppercase; color: #f57d47; margin-bottom: 20px; }
.gs-cell--mvp p:last-child { color: #c4d0da; font: 500 17px/1.62 'Manrope'; }

/* ---------- two-column feature rows ---------- */
.gs-2col { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); align-items: center; }
.gs-2col--intro { gap: clamp(40px, 6vw, 90px); }
.gs-2col--story { gap: clamp(40px, 6vw, 80px); }
.gs-2col--quote { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(36px, 5vw, 72px); }
.gs-2col--split { gap: clamp(40px, 5vw, 72px); align-items: stretch; }
.gs-2col--contact { gap: clamp(28px, 4vw, 56px); align-items: start; }
.gs-2col .gs-body + .gs-body { margin-top: 16px; }
.gs-2col .gs-h2 + .gs-body, .gs-2col .gs-h2--ink + .gs-body { margin-top: 24px; }
.gs-2col--story .gs-h2--40 + .gs-body { margin-top: 22px; }

/* framed image cards */
.gs-imgcard { position: relative; border-radius: 6px; overflow: hidden; border: 1px solid rgba(20,35,47,0.10); box-shadow: 0 20px 50px -30px rgba(20,35,47,0.5); }
.gs-imgcard img { width: 100%; object-fit: cover; }
.gs-imgcard--intro img { height: clamp(300px, 42vw, 460px); }
.gs-imgcard--intro::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, transparent 45%, rgba(11,22,32,0.35)); }
.gs-imgcard--story { border-color: rgba(20,35,47,0.12); box-shadow: 0 24px 60px -34px rgba(20,35,47,0.55); }
.gs-imgcard--story img { height: clamp(320px, 42vw, 470px); }
.gs-imgcard--training { border-color: rgba(20,35,47,0.12); box-shadow: 0 20px 50px -34px rgba(20,35,47,0.5); margin-bottom: 28px; }
.gs-imgcard--training img { height: 220px; }

/* ---------- stats ---------- */
.gs-statwrap { position: relative; }
.gs-stats {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 1px;
	background: rgba(20,35,47,0.10); border: 1px solid rgba(20,35,47,0.10); border-radius: 6px; overflow: hidden;
}
.gs-stat { background: #ffffff; padding: 24px 22px; }
.gs-stat__num { font: 800 clamp(30px, 3.6vw, 42px)/1 'Montserrat', sans-serif; color: #c05a24; }
.gs-stat__label { margin-top: 8px; color: #6b7883; font: 500 13.5px/1.4 'Manrope'; }

/* ---------- home sector cards ---------- */
.gs-cards-260 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
.gs-sector-card { min-height: 230px; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; transition: border-color .25s; }
.gs-sector-card img.wp-block-cover__image-background { opacity: .62; transition: transform .5s, opacity .3s; }
.gs-sector-card::after { background: linear-gradient(180deg, rgba(11,22,32,0.25) 0%, rgba(11,22,32,0.92) 100%); }
.gs-sector-card:hover { border-color: rgba(245,125,71,0.55); }
.gs-sector-card:hover img.wp-block-cover__image-background { transform: scale(1.06); opacity: .78; }
.gs-sector-card .wp-block-cover__inner-container { padding: 22px; }
.gs-sector-card h3 { font: 700 20px 'Montserrat', sans-serif; color: #f7fafc; }
.gs-sector-card__more { margin-top: 6px; }
.gs-sector-card__more a { display: inline-block; color: #f57d47; font: 600 13px 'Manrope'; }
.gs-sector-card__more a::after { content: ''; position: absolute; inset: 0; }

/* ---------- CEO quote / leadership ---------- */
.gs-photocard { position: relative; max-width: 440px; }
.gs-photocard__frame { border-radius: 6px; overflow: hidden; border: 1px solid rgba(20,35,47,0.12); box-shadow: 0 24px 60px -34px rgba(20,35,47,0.6); }
.gs-photocard__frame img { width: 100%; height: clamp(360px, 46vw, 520px); object-fit: cover; object-position: center top; }
.gs-photocard--lead { max-width: 420px; }
.gs-photocard--lead .gs-photocard__frame { border-color: rgba(255,255,255,0.1); box-shadow: none; }
.gs-photocard--lead .gs-photocard__frame img { height: clamp(360px, 46vw, 500px); }
.gs-nameplate { position: absolute; left: -1px; bottom: -1px; background: #f57d47; color: #0b1620; padding: 16px 22px; border-radius: 0 6px 0 6px; }
.gs-nameplate__name { font: 800 17px 'Montserrat', sans-serif; }
.gs-nameplate__role { font: 600 12px 'JetBrains Mono', monospace; letter-spacing: .1em; text-transform: uppercase; margin-top: 3px; }
.gs-quote-mark { font: 800 70px/0.6 'Montserrat', sans-serif; color: rgba(192,90,36,0.35); }
.gs-quote {
	font: 600 clamp(22px, 2.6vw, 32px)/1.4 'Montserrat', sans-serif;
	color: #14232f; letter-spacing: -.01em; text-wrap: pretty;
	border: none; padding: 0; margin: 0;
}
.gs-quote p { font: inherit; color: inherit; letter-spacing: inherit; }
.gs-2col--quote .gs-h2--40 { line-height: 1.1; }
.gs-quote-caption { margin-top: 26px; color: #4f5d69; font: 400 16px/1.7 'Manrope'; }
.gs-role-line { color: #f57d47; font: 600 14px 'JetBrains Mono', monospace; letter-spacing: .08em; text-transform: uppercase; margin-top: 8px; }
.gs-role-line + .gs-body--dark { margin-top: 22px; }
.gs-body--dark + .gs-body--dark { margin-top: 16px; }

/* ---------- CTA band ---------- */
.gs-cta-band { border-top: 1px solid rgba(255,255,255,0.08); }
.gs-cta-band img.wp-block-cover__image-background { opacity: .3; }
.gs-cta-band::after { background: linear-gradient(90deg, rgba(11,22,32,0.96), rgba(11,22,32,0.72)); }
.gs-cta-band__pad { padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 64px); }
.gs-cta-band__row { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.gs-cta-band__copy { max-width: 640px; }
.gs-cta-band__copy p { margin-top: 18px; color: #bccad5; font: 400 17px/1.65 'Manrope'; }
.gs-cta-band__actions { display: flex; flex-direction: column; gap: 12px; }

/* slim CTA */
.gs-cta-slim { display: flex; justify-content: space-between; align-items: center; gap: 36px; flex-wrap: wrap; }
.gs-cta-slim .gs-h2--slim { max-width: 640px; }

/* ---------- org chart ---------- */
.gs-org-wrap { max-width: 1100px; margin: 0 auto; text-align: center; }
.gs-org-wrap .gs-eyebrow { display: inline-flex; }
.gs-org-wrap .gs-h2--44 { margin-bottom: 56px; }
.gs-org { display: flex; flex-direction: column; align-items: center; gap: 0; }
.gs-org__ceo { background: #f57d47; color: #0b1620; padding: 18px 44px; border-radius: 3px; font: 800 18px 'Montserrat', sans-serif; letter-spacing: .02em; }
.gs-org__line { width: 1px; height: 34px; background: rgba(20,35,47,0.22); }
.gs-org__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 16px; width: 100%; }
.gs-org__row--mgr { max-width: 620px; }
.gs-org__row--sub { max-width: 400px; }
.gs-org__mgr { background: #ffffff; border: 1px solid rgba(20,35,47,0.12); padding: 16px; border-radius: 3px; font: 700 15px 'Montserrat', sans-serif; color: #14232f; }
.gs-org__sub { background: #eae6db; border: 1px solid rgba(20,35,47,0.1); padding: 16px; border-radius: 3px; font: 600 15px 'Manrope'; color: #4f5d69; }

/* ---------- accreditations ---------- */
.gs-accred { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gs-accred__card { background: #0b1620; border: 1px solid rgba(255,255,255,0.09); border-radius: 6px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.gs-accred__logo { width: 74px; height: 74px; box-sizing: border-box; border-radius: 10px; background: #ffffff; display: flex; align-items: center; justify-content: center; padding: 9px; }
.gs-accred__logo img { max-width: 100%; max-height: 56px; object-fit: contain; display: block; }
.gs-accred__abbr { width: 74px; height: 74px; border-radius: 50%; background: rgba(245,125,71,0.12); display: flex; align-items: center; justify-content: center; font: 800 17px 'Montserrat', sans-serif; color: #f57d47; }
.gs-accred__card h3 { margin: 0 0 6px; font: 700 18px 'Montserrat', sans-serif; color: #f7fafc; }
.gs-accred__card p { color: #94a5b3; font: 400 14px/1.55 'Manrope'; }

/* ---------- other services + training ---------- */
.gs-ticklist { display: flex; flex-direction: column; }
.gs-tickrow { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(20,35,47,0.1); color: #334451; font: 500 16px 'Manrope'; }
.gs-tickrow::before { content: ''; width: 7px; height: 7px; background: #f57d47; flex: none; transform: rotate(45deg); }
.gs-split-h2 { margin-bottom: 26px; }
.gs-split-h2--training { margin-bottom: 20px; }
.gs-training-intro { margin-bottom: 22px; color: #4f5d69; font: 400 16px/1.68 'Manrope'; }
.gs-chipset { display: flex; flex-wrap: wrap; gap: 9px; }
.gs-chip { border: 1px solid rgba(20,35,47,0.14); border-radius: 100px; padding: 8px 15px; color: #4f5d69; font: 500 13.5px 'Manrope'; }
.gs-chipset--coverage { gap: 8px; }
.gs-chipset--coverage .gs-chip { padding: 7px 14px; font-size: 13px; }

/* ---------- sector rows ---------- */
.gs-sector-rows { display: flex; flex-direction: column; gap: 20px; }
.gs-sector-row {
	display: grid; grid-template-columns: minmax(0, 0.9fr) 1.1fr; gap: 0;
	background: #ffffff; border: 1px solid rgba(20,35,47,0.10); border-radius: 6px; overflow: hidden;
	min-height: 280px; box-shadow: 0 14px 40px -30px rgba(20,35,47,0.4);
}
.gs-sector-row--wide { grid-template-columns: 1.1fr minmax(0, 0.9fr); }
.gs-sector-row__img { position: relative; min-height: 220px; }
.gs-sector-row__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gs-sector-row__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,22,32,0.15), rgba(11,22,32,0.35)); }
.gs-sector-row__body { padding: clamp(30px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.gs-sector-row__num { font: 600 13px 'JetBrains Mono', monospace; color: #c05a24; margin-bottom: 14px; }
.gs-sector-row__body h2 { margin: 0 0 14px; font: 800 clamp(24px, 2.8vw, 34px)/1.1 'Montserrat', sans-serif; letter-spacing: -.02em; color: #14232f; }
.gs-sector-row__body p:not(.gs-sector-row__num) { color: #4f5d69; font: 400 16px/1.68 'Manrope'; max-width: 60ch; }

/* ---------- contact ---------- */
.gs-form-card {
	background: #ffffff; border: 1px solid rgba(20,35,47,0.10); border-radius: 8px;
	padding: clamp(26px, 3.4vw, 44px); box-shadow: 0 24px 60px -40px rgba(20,35,47,0.5);
}
.gs-form__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 18px; }
.gs-form label { display: block; }
.gs-form .gs-label {
	display: block; font: 600 12px 'JetBrains Mono', monospace; letter-spacing: .12em;
	text-transform: uppercase; color: #6b7883; margin-bottom: 9px;
}
.gs-form input[type="text"], .gs-form input[type="email"], .gs-form input[type="tel"],
.gs-form select, .gs-form textarea {
	width: 100%; box-sizing: border-box; background: #fbfaf7; border: 1px solid rgba(20,35,47,0.16);
	border-radius: 3px; color: #14232f; font: 500 15px 'Manrope'; padding: 14px 15px; outline: none;
}
.gs-form textarea { line-height: 1.6; resize: vertical; }
.gs-form input:focus, .gs-form select:focus, .gs-form textarea:focus { border-color: #f57d47; }
.gs-form .is-error { border-color: #d24a2a; }
.gs-form .gs-field-msg { display: block; color: #c0341f; font: 500 13px 'Manrope'; margin-top: 7px; }
.gs-form__message { display: block; margin-top: 18px; }
.gs-form__submit {
	width: 100%; margin-top: 24px; background: #f57d47; color: #0b1620;
	font: 700 15px 'Manrope'; padding: 17px; border: none; border-radius: 2px; cursor: pointer;
	transition: background .2s;
}
.gs-form__submit:hover { background: #ff9a68; }
.gs-form__note { margin: 16px 0 0; color: #8a97a1; font: 400 13px/1.5 'Manrope'; text-align: center; }
.gs-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

.gs-form-success { text-align: center; padding: 36px 12px; }
.gs-form-success__icon {
	width: 64px; height: 64px; border-radius: 50%; background: rgba(245,125,71,0.14);
	display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
	font-size: 30px; color: #c05a24;
}
.gs-form-success h3 { margin: 0 0 12px; font: 800 24px 'Montserrat', sans-serif; color: #14232f; }
.gs-form-success p { margin: 0 auto 26px; max-width: 42ch; color: #4f5d69; font: 400 16px/1.65 'Manrope'; }
.gs-form-success__again {
	background: none; border: 1px solid rgba(20,35,47,0.22); color: #14232f;
	font: 600 14px 'Manrope'; padding: 14px 26px; border-radius: 2px; cursor: pointer; display: inline-block;
	transition: border-color .2s, color .2s;
}
.gs-form-success__again:hover { border-color: #f57d47; color: #c05a24; }

.gs-contact-side { display: flex; flex-direction: column; gap: 24px; }
.gs-contact-rows { display: flex; flex-direction: column; gap: 2px; }
.gs-contact-row {
	display: flex; gap: 16px; align-items: flex-start; background: #ffffff;
	border: 1px solid rgba(20,35,47,0.1); border-radius: 5px; padding: 20px 22px;
	transition: border-color .2s;
}
.gs-contact-row:hover { border-color: rgba(245,125,71,0.6); }
.gs-contact-row .gs-ctag { font: 600 11px 'JetBrains Mono', monospace; letter-spacing: .1em; color: #c05a24; padding-top: 3px; flex: none; width: 52px; }
.gs-contact-row .gs-cval { color: #14232f; font: 600 15.5px/1.5 'Manrope'; }

.gs-map-card { background: #ffffff; border: 1px solid rgba(20,35,47,0.1); border-radius: 6px; overflow: hidden; box-shadow: 0 14px 40px -32px rgba(20,35,47,0.4); }
.gs-map-card__head { padding: 16px 20px; border-bottom: 1px solid rgba(20,35,47,0.1); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gs-map-card__label { font: 600 12px 'JetBrains Mono', monospace; letter-spacing: .14em; text-transform: uppercase; color: #6b7883; }
.gs-map-card__live { display: inline-flex; align-items: center; gap: 7px; color: #c05a24; font: 600 12px 'Manrope'; }
.gs-map-card__live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #f57d47; box-shadow: 0 0 0 4px rgba(245,125,71,0.25); }
.gs-map-card iframe { width: 100%; height: 300px; border: 0; display: block; }
.gs-map-card__body { padding: 20px; }
.gs-map-card__body .gs-map-card__label { display: block; margin-bottom: 14px; }

/* ---------- brand emblem overlays ---------- */
.gs-emblem-bg {
	position: absolute; z-index: -1; pointer-events: none; user-select: none;
	opacity: .06; width: clamp(380px, 42vw, 660px); height: auto;
}
.gs-has-emblem { position: relative; z-index: 0; overflow: hidden; }
.gs-emblem-bg--footer { right: -90px; bottom: -130px; opacity: .05; }
.gs-emblem-bg--mvp { right: -80px; top: 50%; transform: translateY(-50%) rotate(-8deg); }
.gs-emblem-bg--cta { right: -60px; top: 50%; transform: translateY(-50%) rotate(-8deg); width: clamp(300px, 30vw, 460px); }

/* ---------- footer ---------- */
.gs-footer { background: #08131c; border-top: 1px solid rgba(255,255,255,0.08); position: relative; z-index: 1; overflow: hidden; }
.gs-footer__inner { max-width: 1320px; margin: 0 auto; padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 64px) 0; }
.gs-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 40px 32px; }
.gs-footer__brand { min-width: 220px; }
.gs-footer__brand img { height: 42px; width: auto; margin-bottom: 22px; }
.gs-footer__brand p { color: #8ea0b0; font: 400 14.5px/1.65 'Manrope'; max-width: 34ch; }
.gs-footer__colhead { font: 600 11px 'JetBrains Mono', monospace; letter-spacing: .16em; text-transform: uppercase; color: #5f7688; margin-bottom: 18px; }
.gs-footer__links { display: flex; flex-direction: column; gap: 12px; }
.gs-footer__links a { color: #bccad5; font: 500 15px 'Manrope'; }
.gs-footer__links a:hover { color: #f57d47; }
.gs-footer__addr { color: #8ea0b0; font: 400 14px/1.6 'Manrope'; }
.gs-footer__accred { margin-top: clamp(40px, 5vw, 60px); padding-top: 34px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.gs-footer__accred .gs-footer__colhead { margin-bottom: 0; margin-right: 6px; }
.gs-footer__bottom { padding: 22px 0 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.gs-footer__copy { color: #5f7688; font: 400 13px 'Manrope'; }
.gs-footer__loc { color: #5f7688; font: 500 12px 'JetBrains Mono', monospace; letter-spacing: .08em; }

/* ---------- 404 ---------- */
.gs-404 { min-height: 70vh; display: flex; align-items: center; }
.gs-404 .gs-h1 { margin-bottom: 18px; }

/* ---------- responsive ---------- */
@media (max-width: 1179.98px) {
	.gs-header__tel { display: none; }
}
@media (max-width: 1023.98px) {
	.gs-nav, .gs-header__right { display: none; }
	.gs-burger { display: flex; }
	.gs-accred { grid-template-columns: 1fr; }
	.gs-sector-row, .gs-sector-row--wide { grid-template-columns: 1fr; }
}
