/* ════════════════════════════════════════════════
   Global Plover — 2026 Design Layer
   Inspiration: clean enterprise nav (Workday-like)
   Brand: navy / cream / gold
════════════════════════════════════════════════ */

:root {
	--gp-font-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--gp-font-body: 'Manrope', 'Segoe UI', sans-serif;
	--gp-header-h: 72px;
	--gp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
	font-family: var(--gp-font-body);
	letter-spacing: -0.01em;
}

h1, h2, h3, h4,
.gp-slide h1,
.logo-name {
	font-family: var(--gp-font-head);
	letter-spacing: -0.02em;
}

/* ── Workday-inspired header ── */
.site-header {
	height: var(--gp-header-h);
	backdrop-filter: blur(12px);
	background: rgba(7, 28, 53, 0.94) !important;
	border-bottom: 1px solid rgba(201, 168, 76, 0.18);
	transition: box-shadow 0.35s var(--gp-ease), background 0.35s var(--gp-ease);
}
@media (max-width: 768px) {
	.site-header {
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}
}
.site-header.scrolled {
	box-shadow: 0 10px 40px rgba(7, 28, 53, 0.28);
	background: rgba(7, 28, 53, 0.98) !important;
}
.header-inner {
	max-width: 1240px;
	height: var(--gp-header-h);
	align-items: center;
	gap: 2rem;
}
.site-branding {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	flex-shrink: 0;
}
.gp-logo-header {
	height: 52px;
	width: auto;
	max-width: min(220px, 42vw);
	object-fit: contain;
	display: block;
}
.custom-logo-link img,
.custom-logo {
	max-height: 52px;
	width: auto;
}

/* Text nav — underline hover, no heavy pills */
.nav-menu {
	gap: 0.15rem;
	align-items: center;
}
.nav-menu > li > a,
.nav-menu > li > a.nav-top-link {
	font-family: var(--gp-font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 0.55rem 0.85rem;
	color: rgba(255, 255, 240, 0.88);
	position: relative;
	border-radius: 0;
	background: transparent !important;
}
.nav-menu > li > a::after {
	content: '';
	position: absolute;
	left: 0.85rem;
	right: 0.85rem;
	bottom: 0.2rem;
	height: 2px;
	background: var(--gp-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--gp-ease);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
	color: var(--gp-ivory) !important;
	background: transparent !important;
}
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current-menu-ancestor > a::after {
	transform: scaleX(1);
}
.nav-arrow {
	font-size: 0.55rem;
	margin-left: 0.35rem;
	opacity: 0.7;
}

/* Mega-ish services dropdown */
.nav-menu .sub-menu {
	min-width: 280px;
	padding: 0.6rem 0;
	border-radius: 12px;
	border: 1px solid rgba(201, 168, 76, 0.22);
	background: #0a2545;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	top: calc(100% + 6px);
}
.nav-menu .sub-menu li a {
	padding: 0.7rem 1.25rem;
	font-size: 0.88rem;
	color: rgba(255, 255, 240, 0.82);
	border-bottom: none;
	transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.nav-menu .sub-menu li a:hover {
	background: rgba(201, 168, 76, 0.1);
	color: var(--gp-gold-light);
	padding-left: 1.45rem;
}

/* CTA — refined, not bubble pill */
.nav-cta-btn,
.gp-btn-gold.nav-cta-btn {
	margin-left: 0.75rem;
	border-radius: 6px !important;
	padding: 0.65rem 1.15rem !important;
	font-size: 0.84rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em;
	box-shadow: none !important;
}
.gp-btn {
	border-radius: 6px;
	font-family: var(--gp-font-body);
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: transform 0.25s var(--gp-ease), background 0.25s, box-shadow 0.25s;
}
.gp-btn:hover {
	transform: translateY(-2px);
}

/* Top bar slim */
.gp-topbar {
	padding: 0.4rem 2.5rem;
	font-size: 0.78rem;
}

/* ── Hero 2026 ── */
.gp-hero-slider {
	min-height: calc(100vh - var(--gp-header-h));
}
.gp-slide-1 .gp-slide-bg,
.gp-slide-2 .gp-slide-bg,
.gp-slide-3 .gp-slide-bg {
	background-size: cover;
	background-position: center;
}
.gp-slide-1 .gp-slide-bg {
	background-image:
		linear-gradient(115deg, rgba(7, 28, 53, 0.92) 0%, rgba(13, 45, 82, 0.72) 55%, rgba(7, 28, 53, 0.55) 100%),
		url('../assets/images/hero-training.jpg');
}
.gp-slide-2 .gp-slide-bg {
	background-image:
		linear-gradient(115deg, rgba(7, 28, 53, 0.92) 0%, rgba(13, 45, 82, 0.72) 55%, rgba(7, 28, 53, 0.55) 100%),
		url('../assets/images/hero-placements.jpg');
}
.gp-slide-3 .gp-slide-bg {
	background-image:
		linear-gradient(115deg, rgba(7, 28, 53, 0.92) 0%, rgba(13, 45, 82, 0.72) 55%, rgba(7, 28, 53, 0.55) 100%),
		url('../assets/images/hero-cloud-network.jpg');
}
.gp-slide-badge {
	border-radius: 999px;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: rgba(7, 28, 53, 0.35);
	backdrop-filter: blur(8px);
}
.gp-slide h1 {
	font-size: clamp(2.4rem, 5vw, 3.75rem);
	line-height: 1.12;
	max-width: 14ch;
}
.gp-slide h1 em {
	font-style: italic;
	color: var(--gp-gold-light);
}
.gp-stat-card {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 240, 0.08);
	border: 1px solid rgba(201, 168, 76, 0.25);
}

/* Page heroes with real imagery */
.gp-page-hero-rich {
	position: relative;
	overflow: hidden;
	padding: 4.5rem 2.5rem 3.5rem;
}
.gp-page-hero-media {
	position: relative;
}
.gp-page-hero-img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	max-height: none;
	border-radius: 14px;
	border: 1px solid rgba(201, 168, 76, 0.28);
}

/* Cards — quieter, more enterprise */
.gp-card {
	border-radius: 12px;
	border: 1px solid rgba(13, 45, 82, 0.08);
	background: #fff;
	box-shadow: 0 1px 0 rgba(13, 45, 82, 0.04);
	transition: transform 0.3s var(--gp-ease), box-shadow 0.3s var(--gp-ease), border-color 0.3s;
}
.gp-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(13, 45, 82, 0.1);
	border-color: rgba(201, 168, 76, 0.35);
}
.gp-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: rgba(13, 45, 82, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}
.gp-course-card {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(13, 45, 82, 0.08);
	background: #fff;
	transition: transform 0.3s var(--gp-ease), box-shadow 0.3s;
}
.gp-course-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(13, 45, 82, 0.12);
}
.gp-course-badge-trend {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gp-navy-dark);
	background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold-light));
	padding: 0.2rem 0.55rem;
	border-radius: 4px;
	margin-left: 0.4rem;
	vertical-align: middle;
}

/* Footer brand */
.footer-brand-logo {
	margin-bottom: 1rem;
}
.gp-logo-footer {
	height: 56px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}
.site-footer.gp-footer-2026 {
	background: linear-gradient(180deg, #071c35 0%, #051424 100%);
	padding: 0 0 2rem;
}
.gp-footer-2026 .footer-inner {
	max-width: 1240px;
	padding: 0 2.5rem;
}
.gp-footer-cta {
	border-bottom: 1px solid rgba(201, 168, 76, 0.18);
	background:
		radial-gradient(ellipse at 20% 0%, rgba(201, 168, 76, 0.12), transparent 55%),
		linear-gradient(120deg, #0a2545 0%, #071c35 100%);
	padding: 3rem 2.5rem;
	margin-bottom: 3.5rem;
}
.gp-footer-cta-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.gp-footer-cta-copy h2 {
	color: var(--gp-ivory);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin: 0.35rem 0 0.5rem;
	max-width: 18ch;
}
.gp-footer-cta-copy p {
	color: rgba(255, 255, 240, 0.62);
	margin: 0;
	max-width: 42ch;
	font-size: 0.92rem;
}
.gp-footer-cta-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}
.gp-footer-2026 .footer-top {
	gap: 2.5rem;
	margin-bottom: 2.75rem;
}
.footer-about {
	font-size: 0.88rem !important;
	color: rgba(255, 255, 240, 0.55) !important;
	line-height: 1.75 !important;
	margin: 0 0 1.25rem !important;
}
.gp-footer-contact {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
}
.gp-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin-bottom: 0.65rem;
	font-size: 0.86rem;
	color: rgba(255, 255, 240, 0.62);
	line-height: 1.45;
}
.gp-footer-contact a {
	color: rgba(255, 255, 240, 0.78);
	text-decoration: none;
}
.gp-footer-contact a:hover {
	color: var(--gp-gold);
}
.gp-footer-ic {
	width: 1.25rem;
	flex-shrink: 0;
	opacity: 0.85;
}
.gp-footer-2026 .footer-col h4 {
	letter-spacing: 0.12em;
}
.gp-footer-2026 .footer-bottom {
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	padding: 1.5rem 0 0;
}
.footer-loc {
	opacity: 0.85;
}
@media (max-width: 768px) {
	.gp-footer-cta { padding: 2.25rem 1.25rem; margin-bottom: 2.5rem; }
	.gp-footer-2026 .footer-inner { padding: 0 1.25rem; }
	.gp-footer-cta-copy h2 { max-width: none; }
}

/* Section rhythm */
.gp-sec-label {
	letter-spacing: 0.14em;
	font-weight: 600;
	font-size: 0.72rem;
}
.gp-section {
	padding: 5.5rem 2.5rem;
}

/* Pathways grid (Workday careers vibe) */
.gp-pathway-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 2rem;
}
.gp-pathway {
	display: block;
	padding: 1.75rem 1.5rem;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(13, 45, 82, 0.08);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.25s, transform 0.25s var(--gp-ease), box-shadow 0.25s;
	min-height: 160px;
}
.gp-pathway:hover {
	border-color: var(--gp-gold);
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(13, 45, 82, 0.1);
}
.gp-pathway h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--gp-navy);
}
.gp-pathway p {
	font-size: 0.88rem;
	color: var(--gp-text-muted);
	margin: 0 0 1rem;
}
.gp-pathway-link {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gp-gold);
}

/* Course filters */
.gp-course-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin: 0 0 2rem;
}
.gp-filter-btn {
	border: 1px solid rgba(13, 45, 82, 0.12);
	background: #fff;
	color: var(--gp-navy);
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.2s;
}
.gp-filter-btn:hover,
.gp-filter-btn.active {
	background: var(--gp-navy);
	color: var(--gp-ivory);
	border-color: var(--gp-navy);
}

@media (max-width: 1024px) {
	.gp-pathway-grid { grid-template-columns: repeat(2, 1fr); }
	.gp-slide h1 { max-width: none; }
}
@media (max-width: 768px) {
	.gp-pathway-grid { grid-template-columns: 1fr; }
	.gp-logo-header { height: 40px; max-width: min(160px, 48vw); }
	.nav-cta-btn { margin: 0.75rem 0 0; width: 100%; text-align: center; }
	.nav-menu > li > a::after { display: none; }
	.gp-page-hero-rich { padding: 3rem 1.25rem 2.25rem; }
	.gp-page-hero-copy h1 { font-size: 1.85rem; line-height: 1.2; }
	.gp-page-hero-img { max-height: 220px; width: 100%; object-fit: cover; }
	.gp-steps { grid-template-columns: 1fr !important; }
	.gp-contact-grid { gap: 2rem; }
	.gp-footer-cta-actions { width: 100%; }
	.gp-footer-cta-actions .gp-btn { flex: 1 1 auto; text-align: center; justify-content: center; }
	.gp-course-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.35rem; -webkit-overflow-scrolling: touch; }
	.gp-filter-btn { white-space: nowrap; flex-shrink: 0; }
}
