/* Site-Shell (Header, Footer, Skip-Link)
   Wird nur fuer si-Routes geladen (eigener Render-Pfad). */

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	padding: 12px 16px;
	background: #0F6E3D;
	color: #fff;
	text-decoration: none;
	z-index: 9999;
}
.skip-link:focus { top: 0; }

.si-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid #E7E7E2;
	padding: 12px 16px;
}
.si-site-header__inner {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 24px;
}
.si-site-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #0F1419;
}
.si-site-header__brand span {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.01em;
}
.si-site-header__nav {
	margin-left: auto;
	display: flex;
	gap: 16px;
}
.si-site-header__nav a {
	color: #0F1419;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	padding: 6px 0;
}
.si-site-header__nav a:hover { color: #0F6E3D; }

.si-site-header__cta {
	background: #0F6E3D;
	color: #fff !important;
	padding: 6px 14px !important;
	border-radius: 6px;
}
.si-site-header__cta:hover { background: #0A4F2A; }

main#si-main { min-height: 60vh; }

.si-site-footer {
	position: relative;
	border-top: 1px solid #E7E7E2;
	margin-top: 60px;
	padding: 36px 16px 24px;
	color: #5A6573;
	font-size: 13px;
	isolation: isolate;
	overflow: hidden;
}
.si-site-footer__bg {
	position: absolute;
	inset: 0;
	background-image: var(--si-footer-bg-a), var(--si-footer-bg-b);
	background-position: 0% center, 100% center;
	background-size: 50% 100%, 50% 100%;
	background-repeat: no-repeat, no-repeat;
	opacity: 0.10;
	z-index: -2;
	pointer-events: none;
}
.si-site-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(250,250,247,0.85) 0%, rgba(250,250,247,0.95) 100%);
	z-index: -1;
}
.si-site-footer__metrics {
	max-width: 980px;
	margin: 0 auto 24px;
}
.si-footer-stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin: 0;
	padding: 16px 18px;
	background: rgba(255,255,255,0.7);
	backdrop-filter: blur(6px);
	border: 1px solid #E7E7E2;
	border-radius: 12px;
}
.si-footer-stats > div { text-align: center; }
.si-footer-stats dt {
	font-size: 10px;
	color: #5A6573;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
}
.si-footer-stats dd {
	margin: 4px 0 0;
	font-size: 17px;
	font-weight: 700;
	color: #0F6E3D;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
@media (max-width: 700px) {
	.si-footer-stats { grid-template-columns: repeat(2, 1fr); }
}
.si-site-footer__inner {
	max-width: 1080px;
	margin: 0 auto;
	text-align: center;
}
.si-site-footer nav {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 8px;
	flex-wrap: wrap;
}
.si-site-footer nav a {
	color: inherit;
	text-decoration: none;
}
.si-site-footer nav a:hover { color: #0F6E3D; }
.si-site-footer p { margin: 0; }
