/* =========================================================
   NSP Frontend Fixes - dev.notzstucki.website
   Premium, institutional styling. Reusable classes.
   ========================================================= */

:root {
	--nspff-navy:   #0a2540;
	--nspff-navy-2: #133a66;
	--nspff-gold:   #b89154;
	--nspff-ink:    #11151c;
	--nspff-muted:  #5a6675;
	--nspff-line:   #e6e9ee;
	--nspff-bg:     #ffffff;
	--nspff-bg-2:   #f5f7fb;
	--nspff-radius: 4px;
	--nspff-font:   "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* =========================================================
   1. HERO
   ========================================================= */
.nspff-hero {
	position: relative;
	background: var(--nspff-navy);
	color: #fff;
	overflow: hidden;
	padding: clamp(48px, 8vw, 120px) 0;
}
.nspff-hero__inner {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 48px);
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 32px;
}
@media (min-width: 900px) {
	.nspff-hero__inner {
		grid-template-columns: 1.2fr 1fr;
	}
}
.nspff-hero__content {
	position: relative;
	z-index: 2;
}
.nspff-hero__title {
	font-family: var(--nspff-font);
	font-weight: 600;
	font-size: clamp(2.25rem, 5.2vw, 4.5rem);
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin: 0 0 1rem 0;
	color: #fff;
}
.nspff-hero__subtitle {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255,255,255,0.85);
	margin: 0 0 1.75rem 0;
	max-width: 56ch;
}
.nspff-hero__cta {
	display: inline-block;
	padding: 14px 28px;
	background: var(--nspff-gold);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	border-radius: var(--nspff-radius);
	transition: background 0.2s ease;
}
.nspff-hero__cta:hover { background: #a07d44; color:#fff; }

.nspff-hero__stats {
	list-style: none;
	margin: 2.5rem 0 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 32px;
	max-width: 720px;
}
.nspff-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
	border-left: 2px solid var(--nspff-gold);
	padding-left: 16px;
}
.nspff-hero__stat-figure {
	display: flex;
	align-items: baseline;
	gap: 6px;
	color: #fff;
	font-weight: 600;
	line-height: 1;
}
.nspff-hero__stat-pre {
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
}
.nspff-hero__stat-value {
	font-size: clamp(2rem, 3.2vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.01em;
}
.nspff-hero__stat-unit {
	font-size: 1.1rem;
	font-weight: 600;
	color: rgba(255,255,255,0.85);
}
.nspff-hero__stat-label {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.75);
	line-height: 1.4;
}

.nspff-hero__watermark {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	z-index: 1;
}
.nspff-hero__watermark img {
	width: 100%;
	max-width: 520px;
	height: auto;
	opacity: 0.85;
	object-fit: contain;
}
@media (max-width: 899px) {
	.nspff-hero__watermark {
		position: absolute;
		top: 0;
		right: -10%;
		width: 80%;
		height: 100%;
		opacity: 0.18;
		pointer-events: none;
	}
}

/* =========================================================
   2. EXECUTIVE CAROUSEL
   ========================================================= */
.nspff-exec {
	background: var(--nspff-bg);
	padding: clamp(48px, 6vw, 96px) 0;
}
.nspff-exec__head {
	max-width: 1280px;
	margin: 0 auto 2rem;
	padding: 0 clamp(20px, 4vw, 48px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.nspff-exec__title {
	font-family: var(--nspff-font);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 600;
	color: var(--nspff-navy);
	margin: 0;
	letter-spacing: -0.01em;
}
.nspff-exec__controls {
	display: flex;
	gap: 8px;
}
.nspff-exec__nav {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--nspff-line);
	background: #fff;
	color: var(--nspff-navy);
	font-size: 1.1rem;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.nspff-exec__nav:hover {
	background: var(--nspff-navy);
	color: #fff;
	border-color: var(--nspff-navy);
}
.nspff-exec__nav:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.nspff-exec__track-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 48px);
	overflow: hidden;
}
.nspff-exec__track {
	list-style: none;
	margin: 0;
	padding: 4px 0 24px;
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.nspff-exec__track::-webkit-scrollbar { height: 6px; }
.nspff-exec__track::-webkit-scrollbar-thumb { background: var(--nspff-line); border-radius: 4px; }

.nspff-exec__card {
	flex: 0 0 calc((100% - 24px) / 2);
	min-width: 220px;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--nspff-line);
	border-radius: var(--nspff-radius);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 640px)  { .nspff-exec__card { flex-basis: calc((100% - 48px) / 3); } }
@media (min-width: 1024px) { .nspff-exec__card { flex-basis: calc((100% - 72px) / 4); } }
.nspff-exec__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(10,37,64,0.08);
}
.nspff-exec__photo {
	position: relative;
	aspect-ratio: 4 / 5;
	background: var(--nspff-bg-2);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.nspff-exec__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.nspff-exec__initials {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--nspff-navy);
	letter-spacing: 0.04em;
}
.nspff-exec__meta {
	padding: 20px;
}
.nspff-exec__name {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--nspff-navy);
	margin: 0 0 6px 0;
	line-height: 1.3;
}
.nspff-exec__role {
	font-size: 0.9rem;
	color: var(--nspff-muted);
	margin: 0 0 4px 0;
	line-height: 1.4;
}
.nspff-exec__loc {
	font-size: 0.85rem;
	color: var(--nspff-muted);
	margin: 0;
	font-style: italic;
}

/* =========================================================
   3. GREY STRIP REMOVAL
   Targets common patterns used by themes/builders below blue banners.
   Add more selectors here if a specific class is identified on the site.
   ========================================================= */
body.nspff-no-grey-strip .page-grey-strip,
body.nspff-no-grey-strip .grey-strip,
body.nspff-no-grey-strip .banner-grey-strip,
body.nspff-no-grey-strip .below-banner-strip,
body.nspff-no-grey-strip .post-banner-strip,
body.nspff-no-grey-strip .elementor-section.grey-strip,
body.nspff-no-grey-strip .nsp-grey-strip,
body.nspff-no-grey-strip [data-nsp-grey-strip] {
	display: none !important;
}

/* =========================================================
   4. OUR TALENTS
   ========================================================= */
.nspff-talents {
	padding: clamp(48px, 6vw, 96px) 0;
	background: var(--nspff-bg);
}
.nspff-talents__head {
	max-width: 1280px;
	margin: 0 auto 2rem;
	padding: 0 clamp(20px, 4vw, 48px);
}
.nspff-talents__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 600;
	color: var(--nspff-navy);
	margin: 0 0 1.5rem 0;
	letter-spacing: -0.01em;
}
.nspff-talents__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	border-bottom: 1px solid var(--nspff-line);
	padding-bottom: 0;
}
.nspff-talents__filter {
	background: transparent;
	border: 0;
	padding: 12px 18px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--nspff-muted);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.nspff-talents__filter:hover {
	color: var(--nspff-navy);
}
.nspff-talents__filter.is-active {
	color: var(--nspff-navy);
	border-bottom-color: var(--nspff-gold);
}

.nspff-talents__grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px clamp(20px, 4vw, 48px) 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 28px;
}
.nspff-talents__card {
	background: #fff;
	border: 1px solid var(--nspff-line);
	border-radius: var(--nspff-radius);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nspff-talents__card.is-hidden { display: none; }
.nspff-talents__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(10,37,64,0.08);
}
.nspff-talents__photo {
	aspect-ratio: 4 / 5;
	background: var(--nspff-bg-2);
	overflow: hidden;
}
.nspff-talents__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.nspff-talents__photo-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eef1f6 0%, #d9dfe8 100%);
}
.nspff-talents__meta { padding: 18px 20px 22px; }
.nspff-talents__name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--nspff-navy);
	margin: 0 0 4px 0;
}
.nspff-talents__role {
	font-size: 0.88rem;
	color: var(--nspff-muted);
	margin: 0 0 4px 0;
}
.nspff-talents__loc {
	font-size: 0.82rem;
	color: var(--nspff-muted);
	margin: 0;
	font-style: italic;
}
.nspff-talents__notice {
	max-width: 1280px;
	margin: 32px auto;
	padding: 16px 20px;
	background: #fff8e5;
	border-left: 4px solid var(--nspff-gold);
	color: var(--nspff-ink);
	font-size: 0.95rem;
}

/* =========================================================
   5. INSIGHTS TABS
   ========================================================= */
.nspff-tabs {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 48px);
	border-bottom: 1px solid var(--nspff-line);
}
.nspff-tabs__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.nspff-tabs__item { display: flex; }
.nspff-tabs__link {
	display: inline-block;
	padding: 14px 20px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--nspff-muted);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.nspff-tabs__link:hover { color: var(--nspff-navy); }
.nspff-tabs__item.is-active .nspff-tabs__link {
	color: var(--nspff-navy);
	border-bottom-color: var(--nspff-gold);
	font-weight: 600;
}
