:root {
	--st-bg: #faf9f5;
	--st-surface: #ffffff;
	--st-accent-1: #d96b27;
	--st-accent-2: #0a7e8c;
	--st-text: #2b2d31;
	--st-text-2: #72777f;
	--st-line: #e6e2d6;
	--st-line-2: #efede4;
	--st-shadow:
		0 18px 50px -25px rgba(43, 45, 49, 0.18),
		0 4px 14px -6px rgba(43, 45, 49, 0.07);
	--st-shadow-soft: 0 8px 30px -18px rgba(43, 45, 49, 0.18);
	--st-radius: 14px;
	--st-radius-sm: 8px;
	--st-radius-lg: 22px;
	--st-font-h: 'Space Grotesk', system-ui, sans-serif;
	--st-font-b: 'DM Sans', system-ui, sans-serif;
	--st-container: 1240px;
	--st-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --------- Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--st-font-b);
	background: var(--st-bg);
	color: var(--st-text);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s var(--st-ease);
}
a:hover {
	color: var(--st-accent-1);
}
button {
	font-family: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--st-font-h);
	color: var(--st-text);
	font-weight: 600;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
	line-height: 1.15;
}
h1 {
	font-size: clamp(2.2rem, 5vw, 4.2rem);
	letter-spacing: -0.03em;
	font-weight: 700;
}
h2 {
	font-size: clamp(1.7rem, 3.4vw, 2.6rem);
	letter-spacing: -0.02em;
}
h3 {
	font-size: 1.3rem;
}
p {
	margin: 0 0 1em;
	color: var(--st-text);
}
.st-container {
	max-width: var(--st-container);
	margin: 0 auto;
	padding: 0 28px;
}
.st-muted {
	color: var(--st-text-2);
}

/* Depth-scale indicator (drilling scale) */
.st-depth-scale {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: linear-gradient(90deg, var(--st-accent-1), var(--st-accent-2));
	z-index: 999;
	transition: width 0.12s linear;
}
.st-depth-ticks {
	position: fixed;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 90;
	font-family: var(--st-font-h);
	font-size: 10px;
	color: var(--st-text-2);
	letter-spacing: 0.15em;
}
.st-depth-ticks span {
	display: flex;
	align-items: center;
	gap: 8px;
}
.st-depth-ticks span::before {
	content: '';
	display: block;
	width: 18px;
	height: 1px;
	background: var(--st-text-2);
	opacity: 0.4;
}
@media (max-width: 1100px) {
	.st-depth-ticks {
		display: none;
	}
}

/* ===================== HEADER ===================== */
.st-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(250, 249, 245, 0.82);
	backdrop-filter: blur(14px) saturate(1.2);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--st-line);
	z-index: 200;
}
.st-header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 14px 28px;
	gap: 24px;
	max-width: 1480px;
	margin: 0 auto;
}
.st-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--st-font-h);
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
}
.st-logo-mark {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: linear-gradient(
		180deg,
		#d96b27 0 22%,
		#faf9f5 22% 28%,
		#0a7e8c 28% 55%,
		#faf9f5 55% 61%,
		#2b2d31 61% 100%
	);

	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.st-logo span small {
	color: var(--st-text-2);
	font-weight: 400;
	font-size: 0.65rem;
	display: block;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-top: -2px;
}

.st-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	border-left: 1px solid var(--st-line);
	border-right: 1px solid var(--st-line);
	padding: 0 20px;
}
.st-nav a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 14px;
	font-size: 0.92rem;
	color: var(--st-text);
	position: relative;
	border-radius: 6px;
}
.st-nav a i {
	font-size: 0.78rem;
	color: var(--st-accent-2);
	opacity: 0.7;
}
.st-nav a:hover {
	background: var(--st-line-2);
	color: var(--st-accent-1);
}
.st-nav a.st-active {
	color: var(--st-accent-1);
}
.st-nav a.st-active::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 3px;
	height: 2px;
	background: var(--st-accent-1);
}

.st-coords {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	border: 1px solid var(--st-line);
	border-radius: 30px;
	font-family: var(--st-font-h);
	font-size: 0.78rem;
	color: var(--st-text);
	background: var(--st-surface);
	transition: all 0.3s var(--st-ease);
}
.st-coords i {
	color: var(--st-accent-1);
}
.st-coords:hover {
	border-color: var(--st-accent-1);
	transform: translateY(-1px);
}
.st-coords-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--st-accent-1);
	box-shadow: 0 0 0 4px rgba(217, 107, 39, 0.15);
	animation: st-pulse 2s infinite;
}
@keyframes st-pulse {
	50% {
		box-shadow: 0 0 0 8px rgba(217, 107, 39, 0);
	}
}

.st-burger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	border: 1px solid var(--st-line);
	background: var(--st-surface);
	align-items: center;
	justify-content: center;
	justify-self: end;
}
.st-burger i {
	font-size: 1.1rem;
}

@media (max-width: 1160px) {
	.st-nav {
		display: none;
	}
	.st-burger {
		display: inline-flex;
	}
}

@media (max-width: 980px) {
	.st-header-inner {
		grid-template-columns: 1fr auto;
		padding: 12px 20px;
	}

	.st-coords {
		display: none;
	}
}

/* Mobile drawer (bottom) */
.st-drawer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--st-surface);
	border-top: 1px solid var(--st-line);
	border-radius: 22px 22px 0 0;
	padding: 18px 20px 28px;
	box-shadow: 0 -20px 50px -20px rgba(0, 0, 0, 0.2);
	z-index: 300;
	transform: translateY(110%);
	transition: transform 0.4s var(--st-ease);
}
.st-drawer.st-open {
	transform: translateY(0);
}
.st-drawer-handle {
	width: 50px;
	height: 5px;
	background: var(--st-line);
	border-radius: 3px;
	margin: 0 auto 16px;
}
.st-drawer a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 8px;
	border-bottom: 1px solid var(--st-line-2);
	font-family: var(--st-font-h);
	font-size: 1rem;
}
.st-drawer a i {
	color: var(--st-accent-1);
	width: 18px;
}
.st-drawer-close {
	position: absolute;
	right: 18px;
	top: 14px;
	font-size: 1.2rem;
	color: var(--st-text-2);
}

/* ===================== HERO ===================== */
.st-hero {
	padding: 160px 0 100px;
	position: relative;
	overflow: hidden;
}
.st-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background:
		radial-gradient(
			ellipse at 80% 20%,
			rgba(10, 126, 140, 0.07),
			transparent 55%
		),
		radial-gradient(
			ellipse at 10% 90%,
			rgba(217, 107, 39, 0.06),
			transparent 50%
		); */
	background:
		linear-gradient(180deg, rgba(250, 249, 245, 0.8)),
		url('assets/st-hero-img.webp') center/cover;
	pointer-events: none;
}
.st-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
	position: relative;
}
.st-hero-meta {
	display: flex;
	gap: 18px;
	align-items: center;
	font-family: var(--st-font-h);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--st-text-2);
	margin-bottom: 28px;
}
.st-hero-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.st-hero-meta i {
	color: var(--st-accent-1);
}
.st-hero-meta hr {
	flex: 1;
	border: 0;
	border-top: 1px dashed var(--st-accent-1);
	min-width: 30px;
}
.st-hero h1 em {
	font-style: normal;
	color: var(--st-accent-1);
	font-weight: 700;
	position: relative;
}
.st-hero h1 em::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.05em;
	height: 8px;
	background: rgba(217, 107, 39, 0.15);
	z-index: -1;
}
.st-hero-lead {
	font-size: 1.05rem;
	color: var(--st-text-2);
	max-width: 560px;
	margin-top: 18px;
}
.st-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 40px;
	border-top: 1px solid var(--st-line);
	padding-top: 28px;
	gap: 24px;
}
.st-hero-stats div b {
	display: block;
	font-family: var(--st-font-h);
	font-size: 2rem;
	font-weight: 600;
	color: var(--st-accent-2);
}
.st-hero-stats div span {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--st-text-2);
}

.st-hero-visual {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: var(--st-radius-lg);
	overflow: hidden;
	background: linear-gradient(
		180deg,
		#e8dfcf 0%,
		#c8b49a 35%,
		#8c7158 65%,
		#4c3b2c 100%
	);
	box-shadow: var(--st-shadow);
}
.st-hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
	opacity: 0.9;
}
.st-hero-visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			180deg,
			transparent 0 80px,
			rgba(255, 255, 255, 0.08) 80px 81px
		),
		linear-gradient(180deg, transparent 60%, rgba(43, 45, 49, 0.4));
}
.st-hero-tag {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border-radius: 12px;
	padding: 14px 16px;
	font-family: var(--st-font-h);
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 2;
}
.st-hero-tag i {
	font-size: 1.3rem;
	color: var(--st-accent-1);
}
.st-hero-tag b {
	display: block;
	font-weight: 600;
}
.st-hero-tag small {
	color: var(--st-text-2);
	font-size: 0.72rem;
}

@media (max-width: 880px) {
	.st-hero {
		padding: 120px 0 60px;
	}
	.st-hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.st-hero-visual {
		aspect-ratio: 1/1.1;
		max-width: 520px;
	}
}

/* ===================== Section base ===================== */
.st-section {
	padding: 100px 0;
	position: relative;
}
.st-section-head {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: end;
	margin-bottom: 60px;
}
.st-section-head .st-tag {
	font-family: var(--st-font-h);
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	color: var(--st-accent-1);
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.st-section-head .st-tag::before {
	content: '';
	width: 30px;
	height: 1px;
	background: var(--st-accent-1);
}
.st-section-head h2 {
	max-width: 760px;
}
.st-section-head p {
	color: var(--st-text-2);
	max-width: 540px;
	margin: 0;
	font-size: 0.95rem;
	text-align: right;
	justify-self: end;
}
@media (max-width: 780px) {
	.st-section-head {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 40px;
	}
	.st-section-head p {
		text-align: left;
		justify-self: start;
	}
}

/* ===================== Fault Grid ===================== */
.st-faultgrid {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.st-fault {
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	padding: 30px 34px;
	box-shadow: var(--st-shadow-soft);
	cursor: pointer;
	transition:
		transform 0.5s var(--st-ease),
		box-shadow 0.4s var(--st-ease);
	position: relative;
	overflow: hidden;
}
.st-fault:nth-child(1) {
	margin-left: 0%;
}
.st-fault:nth-child(2) {
	margin-left: 6%;
}
.st-fault:nth-child(3) {
	margin-left: 12%;
}
.st-fault:nth-child(4) {
	margin-left: 18%;
}
.st-fault.st-shifted {
	transform: translateY(14px) translateX(-12px);
	box-shadow: var(--st-shadow);
}
.st-fault-head {
	display: grid;
	grid-template-columns: 60px 1fr auto auto;
	align-items: center;
	gap: 24px;
}
.st-fault-num {
	font-family: var(--st-font-h);
	font-size: 2rem;
	color: var(--st-accent-1);
	font-weight: 700;
}
.st-fault-title {
	font-family: var(--st-font-h);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.st-fault-meta {
	font-size: 0.78rem;
	color: var(--st-text-2);
	font-family: var(--st-font-h);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.st-fault-toggle {
	width: 38px;
	height: 38px;
	border: 1px solid var(--st-line);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--st-accent-2);
	transition: all 0.3s var(--st-ease);
}
.st-fault.st-shifted .st-fault-toggle {
	background: var(--st-accent-1);
	color: #fff;
	border-color: var(--st-accent-1);
	transform: rotate(45deg);
}
.st-fault-body {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.6s var(--st-ease),
		padding 0.4s var(--st-ease);
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 30px;
}
.st-fault.st-shifted .st-fault-body {
	max-height: 600px;
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px dashed var(--st-line);
}
.st-fault-body .st-fault-sidemeta {
	font-size: 0.85rem;
	color: var(--st-text-2);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.st-fault-body .st-fault-sidemeta span {
	display: flex;
	justify-content: space-between;
	padding-bottom: 8px;
	border-bottom: 1px dashed var(--st-line-2);
}
.st-fault-body .st-fault-sidemeta b {
	color: var(--st-text);
	font-family: var(--st-font-h);
	font-weight: 600;
}
@media (max-width: 780px) {
	.st-fault {
		padding: 22px;
	}
	.st-fault:nth-child(n) {
		margin-left: 0;
	}
	.st-fault-head {
		grid-template-columns: auto 1fr auto;
		gap: 16px;
	}
	.st-fault-meta {
		display: none;
	}
	.st-fault-body {
		grid-template-columns: 1fr;
	}
}

/* ===================== Technical Matrix ===================== */
.st-matrix {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	overflow: hidden;
	background: var(--st-surface);
}
.st-matrix-col {
	padding: 38px 32px;
	border-right: 1px solid var(--st-line);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.st-matrix-col:last-child {
	border-right: 0;
}
.st-matrix-col:hover {
	background: #fcfbf7;
}
.st-matrix-col h3 {
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 0;
}
.st-matrix-col h3 i {
	color: var(--st-accent-1);
}
.st-matrix-col .st-spec {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px dashed var(--st-line-2);
	font-size: 0.88rem;
}
.st-matrix-col .st-spec b {
	font-family: var(--st-font-h);
	color: var(--st-accent-2);
}
.st-matrix-col p {
	font-size: 0.93rem;
	color: var(--st-text-2);
}
.st-matrix-col .st-mtag {
	display: inline-flex;
	align-self: flex-start;
	font-family: var(--st-font-h);
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--st-text-2);
	background: var(--st-line-2);
	padding: 5px 10px;
	border-radius: 30px;
}
@media (max-width: 820px) {
	.st-matrix {
		grid-template-columns: 1fr;
	}
	.st-matrix-col {
		border-right: 0;
		border-bottom: 1px solid var(--st-line);
	}
}

/* ===================== Horizontal Layer Accordions (geological profiles) ===================== */
.st-layers {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	overflow: hidden;
	background: var(--st-surface);
}
.st-layer {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	align-items: center;
	padding: 24px 30px;
	cursor: pointer;
	border-bottom: 1px solid var(--st-line);
	transition: all 0.4s var(--st-ease);
	position: relative;
	gap: 24px;
}
.st-layer:last-child {
	border-bottom: 0;
}
.st-layer-depth {
	font-family: var(--st-font-h);
	color: var(--st-text-2);
	font-size: 0.85rem;
	letter-spacing: 0.05em;
}
.st-layer h3 {
	margin: 0;
	font-size: 1.2rem;
}
.st-layer-icon i {
	font-size: 1.4rem;
	color: var(--st-accent-1);
	opacity: 0.6;
	transition: transform 0.4s;
}
.st-layer-body {
	grid-column: 1/-1;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.5s var(--st-ease),
		padding 0.3s;
	color: var(--st-text-2);
}
.st-layer.st-active {
	background: linear-gradient(90deg, #ffffff 0%, #faf9f5 100%);
}
.st-layer.st-active .st-layer-body {
	max-height: 300px;
	padding-top: 18px;
}
.st-layer.st-active .st-layer-icon i {
	transform: rotate(180deg);
	color: var(--st-accent-1);
	opacity: 1;
}
.st-layer::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--st-accent-1);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.4s;
}
.st-layer.st-active::before {
	transform: scaleY(1);
}
@media (max-width: 680px) {
	.st-layer {
		grid-template-columns: 57px 1fr auto;
		padding: 18px;
	}
	.st-layer-depth {
		font-size: 0.75rem;
		color: var(--st-accent-1);
	}
}

/* ===================== Carousel (infinite loop) ===================== */
.st-carousel {
	overflow: hidden;
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 8%,
		#000 92%,
		transparent
	);
	position: relative;
	padding: 10px 0;
}
.st-carousel-track {
	display: flex;
	gap: 24px;
	animation: st-scroll 38s linear infinite;
	width: max-content;
}
.st-carousel:hover .st-carousel-track {
	animation-play-state: paused;
}
@keyframes st-scroll {
	to {
		transform: translateX(-50%);
	}
}
.st-pcard {
	width: 330px;
	flex-shrink: 0;
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	padding: 24px;
	box-shadow: var(--st-shadow-soft);
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.st-pcard-top {
	display: flex;
	align-items: center;
	gap: 14px;
}
.st-pcard-avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--st-accent-2), var(--st-accent-1));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--st-font-h);
	color: #fff;
	font-weight: 600;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.st-pcard-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}
.st-pcard h4 {
	font-family: var(--st-font-h);
	font-size: 1.05rem;
	margin: 0;
}
.st-pcard h4 + span {
	font-size: 0.8rem;
	color: var(--st-text-2);
}
.st-pcard-spec {
	font-size: 0.9rem;
	color: var(--st-text);
	border-top: 1px dashed var(--st-line);
	padding-top: 14px;
}
.st-pcard-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.75rem;
	color: var(--st-text-2);
	font-family: var(--st-font-h);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.st-pcard-meta b {
	color: var(--st-accent-1);
}

/* ===================== Form + Map ===================== */
.st-terminal {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	overflow: hidden;
	background: var(--st-surface);
}

.st-map {
	height: 100%;
	min-height: 300px;

	width: 100%;

	/* border-radius: 1rem; */
	overflow: hidden;
}

@media (max-width: 768px) {
	.st-map {
		height: 400px;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.st-contact-map {
	position: relative;
	height: 100%;
}

.st-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	/* border-radius: 1rem; */

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

.st-form {
	padding: 46px 40px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.st-form .st-tag {
	font-family: var(--st-font-h);
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	color: var(--st-accent-1);
	text-transform: uppercase;
}
.st-form h2 {
	font-size: 1.8rem;
	margin-bottom: 6px;
}
.st-form-lead {
	color: var(--st-text-2);
	font-size: 0.95rem;
	margin-bottom: 10px;
}
.st-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.st-field label {
	font-size: 0.78rem;
	font-family: var(--st-font-h);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-text-2);
}
.st-field input,
.st-field textarea {
	padding: 13px 16px;
	border: 1px solid var(--st-line);
	border-radius: 8px;
	background: #fcfbf7;
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--st-text);
	transition: all 0.25s var(--st-ease);
}
.st-field textarea {
	resize: vertical;
	min-height: 110px;
}
.st-field input:focus,
.st-field textarea:focus {
	outline: 0;
	border-color: var(--st-accent-2);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(10, 126, 140, 0.08);
}
.st-field.st-error input,
.st-field.st-error textarea {
	border-color: var(--st-accent-1);
	background: #fff8f4;
}
.st-error-msg {
	font-size: 0.75rem;
	color: var(--st-accent-1);
	display: none;
}
.st-field.st-error .st-error-msg {
	display: block;
}
.st-btn {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--st-text);
	color: #fff;
	padding: 14px 26px;
	border-radius: 30px;
	font-family: var(--st-font-h);
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	transition: all 0.3s var(--st-ease);
}
.st-btn:hover {
	background: var(--st-accent-1);
	transform: translateY(-2px);
}
.st-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	background: var(--st-text-2);
	transform: none;
}
.st-btn i {
	transition: transform 0.3s;
}
.st-btn:hover i {
	transform: translateX(4px);
}

@media (max-width: 880px) {
	.st-terminal {
		grid-template-columns: 1fr;
	}
	.st-map {
		min-height: 340px;
	}
	.st-form {
		padding: 32px 26px;
	}
}

/* ===================== FOOTER ===================== */
.st-footer {
	background: #f2efe6;
	border-top: 1px solid var(--st-line);
	padding: 80px 0 30px;
	margin-top: 60px;
	position: relative;
}
.st-footer::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--st-accent-1),
		var(--st-accent-2),
		var(--st-text)
	);
}
.st-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
	gap: 50px;
	margin-bottom: 60px;
}
.st-footer h4 {
	font-family: var(--st-font-h);
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--st-text-2);
	margin-bottom: 18px;
	font-weight: 600;
}
.st-footer .st-logo {
	margin-bottom: 18px;
}
.st-footer p {
	font-size: 0.92rem;
	color: var(--st-text-2);
}
.st-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.st-footer ul a {
	font-size: 0.92rem;
	color: var(--st-text);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.st-footer ul a::before {
	content: '›';
	color: var(--st-accent-1);
	font-family: var(--st-font-h);
}
.st-footer-contact span {
	display: block;
	font-size: 0.92rem;
	margin-bottom: 10px;
	color: var(--st-text);
}
.st-footer-contact span i {
	color: var(--st-accent-1);
	margin-right: 10px;
	width: 14px;
}
.st-footer-bottom {
	border-top: 1px solid var(--st-line);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 0.82rem;
	color: var(--st-text-2);
	font-family: var(--st-font-h);
}
@media (max-width: 880px) {
	.st-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
}
@media (max-width: 520px) {
	.st-footer-grid {
		grid-template-columns: 1fr;
	}
}

/* ===================== Cookie banner ===================== */
.st-cookie {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: 18px;
	padding: 18px 24px;
	box-shadow: var(--st-shadow);
	z-index: 400;
	display: none;
	align-items: center;
	gap: 24px;
	max-width: 780px;
	margin: 0 auto;
}
.st-cookie.st-show {
	display: flex;
	animation: st-rise 0.6s var(--st-ease);
}
@keyframes st-rise {
	from {
		transform: translateY(40px);
		opacity: 0;
	}
}
.st-cookie i {
	font-size: 1.3rem;
	color: var(--st-accent-1);
	flex-shrink: 0;
}
.st-cookie p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--st-text-2);
	flex: 1;
}
.st-cookie a {
	color: var(--st-accent-2);
	text-decoration: underline;
}
.st-cookie button {
	background: var(--st-text);
	color: #fff;
	padding: 10px 22px;
	border-radius: 30px;
	font-family: var(--st-font-h);
	font-size: 0.82rem;
	letter-spacing: 0.05em;
	transition: background 0.3s;
}
.st-cookie button:hover {
	background: var(--st-accent-1);
}
@media (max-width: 680px) {
	.st-cookie {
		flex-wrap: wrap;
		text-align: left;
		padding: 16px;
	}
	.st-cookie button {
		width: 100%;
	}
}

/* ===================== Subpage hero ===================== */
.st-subhero {
	padding: 160px 0 70px;
	border-bottom: 1px solid var(--st-line);
	position: relative;
	background: linear-gradient(180deg, #f4f1e7 0%, var(--st-bg) 100%);
}
.st-subhero-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 60px;
	align-items: end;
}
.st-breadcrumbs {
	font-family: var(--st-font-h);
	font-size: 0.78rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--st-text-2);
	margin-bottom: 20px;
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}
.st-breadcrumbs a {
	color: var(--st-accent-1);
}
.st-breadcrumbs span {
	color: var(--st-line);
	font-weight: 600;
}
.st-subhero h1 {
	font-size: clamp(2rem, 4vw, 3.4rem);
}
.st-subhero-lead {
	font-size: 1.05rem;
	color: var(--st-text-2);
	max-width: 520px;
}
.st-meta-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	background: var(--st-surface);
	overflow: hidden;
}
.st-meta-panel div {
	padding: 22px;
	border-right: 1px solid var(--st-line);
	border-bottom: 1px solid var(--st-line);
}
.st-meta-panel div:nth-child(2n) {
	border-right: 0;
}
.st-meta-panel div:nth-last-child(-n + 2) {
	border-bottom: 0;
}
.st-meta-panel small {
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--st-text-2);
	font-family: var(--st-font-h);
	display: block;
	margin-bottom: 6px;
}
.st-meta-panel b {
	font-family: var(--st-font-h);
	font-size: 1.1rem;
	color: var(--st-accent-2);
}
@media (max-width: 880px) {
	.st-subhero {
		padding: 120px 0 50px;
	}
	.st-subhero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* ===================== Longread ===================== */
.st-longread {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
}
.st-longread aside {
	position: sticky;
	top: 120px;
	align-self: start;
}
.st-longread aside .st-tag {
	font-family: var(--st-font-h);
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	color: var(--st-accent-1);
	text-transform: uppercase;
	display: block;
	margin-bottom: 14px;
}
.st-longread aside h3 {
	font-size: 1.6rem;
}
.st-longread aside p {
	font-size: 0.9rem;
	color: var(--st-text-2);
}
.st-longread .st-prose p {
	font-size: 1rem;
	line-height: 1.85;
	color: var(--st-text);
}
.st-longread .st-prose p:first-letter {
	font-family: var(--st-font-h);
	font-size: 3.4rem;
	float: left;
	line-height: 0.9;
	margin: 6px 12px 0 0;
	color: var(--st-accent-1);
	font-weight: 700;
}
.st-longread .st-callout {
	margin-top: 30px;
	padding: 24px 28px;
	border-left: 3px solid var(--st-accent-1);
	background: #fff;
	border-radius: 0 var(--st-radius) var(--st-radius) 0;
	font-size: 0.95rem;
	color: var(--st-text);
}
@media (max-width: 880px) {
	.st-longread {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.st-longread aside {
		position: static;
	}
}

/* ===================== Comparison table (drill bits) ===================== */
.st-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	overflow: hidden;
}
.st-table th,
.st-table td {
	padding: 18px 22px;
	text-align: left;
	border-bottom: 1px solid var(--st-line);
}
.st-table th {
	background: #f4f1e7;
	font-family: var(--st-font-h);
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-text-2);
	font-weight: 600;
}
.st-table tr:last-child td {
	border-bottom: 0;
}
.st-table tr:hover td {
	background: #fcfbf7;
}
.st-table td:first-child {
	font-family: var(--st-font-h);
	color: var(--st-accent-2);
	font-weight: 600;
}
.st-table-wrap {
	overflow-x: auto;
	border-radius: var(--st-radius);
}

/* ===================== Text card carousel (manual) ===================== */
.st-mancarousel {
	position: relative;
}
.st-mancarousel-viewport {
	overflow: hidden;
	border-radius: var(--st-radius);
}
.st-mancarousel-track {
	display: flex;
	transition: transform 0.55s var(--st-ease);
}
.st-tcard {
	min-width: 100%;
	padding: 38px 44px;
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 30px;
	align-items: start;
}
.st-tcard-num {
	font-family: var(--st-font-h);
	font-size: 3.5rem;
	color: var(--st-accent-1);
	font-weight: 700;
	line-height: 1;
}
.st-tcard h3 {
	font-size: 1.5rem;
	margin-bottom: 14px;
}
.st-tcard-meta {
	display: flex;
	gap: 18px;
	font-family: var(--st-font-h);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-text-2);
	margin-bottom: 18px;
}
.st-tcard-meta b {
	color: var(--st-accent-2);
}
.st-mancarousel-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 22px;
	gap: 20px;
}
.st-mancarousel-controls button {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--st-line);
	background: var(--st-surface);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--st-text);
	transition: all 0.3s;
	flex-shrink: 0;
}
.st-mancarousel-controls button:hover {
	background: var(--st-accent-1);
	color: #fff;
	border-color: var(--st-accent-1);
}
.st-mancarousel-dots {
	display: flex;
	gap: 8px;
	flex: 1;
	justify-content: center;
}
.st-mancarousel-dots span {
	width: 24px;
	height: 4px;
	background: var(--st-line);
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.3s;
}
.st-mancarousel-dots span.st-active {
	background: var(--st-accent-1);
}
@media (max-width: 680px) {
	.st-tcard {
		grid-template-columns: 1fr;
		padding: 26px;
	}
	.st-tcard-num {
		font-size: 2.4rem;
	}
}

/* ===================== Accordion (basic) ===================== */
.st-acc {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.st-acc-item {
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	overflow: hidden;
}
.st-acc-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 28px;
	cursor: pointer;
	font-family: var(--st-font-h);
	font-weight: 600;
	font-size: 1.05rem;
}
.st-acc-q i {
	transition: transform 0.3s;
	color: var(--st-accent-1);
}
.st-acc-a {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.5s var(--st-ease),
		padding 0.3s;
	padding: 0 28px;
	color: var(--st-text-2);
	font-size: 0.95rem;
}
.st-acc-item.st-open .st-acc-q i {
	transform: rotate(45deg);
}
.st-acc-item.st-open .st-acc-a {
	max-height: 400px;
	padding: 10px 28px 24px;
}

/* ===================== Vertical tabs ===================== */
.st-vtabs {
	display: grid;
	grid-template-columns: 0.9fr 2fr;
	gap: 40px;
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	overflow: hidden;
}
.st-vtabs-list {
	display: flex;
	flex-direction: column;
	background: #f4f1e7;
	padding: 20px 0;
}
.st-vtabs-list button {
	text-align: left;
	padding: 18px 28px;
	font-family: var(--st-font-h);
	font-size: 1rem;
	color: var(--st-text);
	border-left: 3px solid transparent;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 14px;
}
.st-vtabs-list button i {
	color: var(--st-accent-2);
	font-size: 0.9rem;
}
.st-vtabs-list button.st-active {
	background: var(--st-surface);
	border-left-color: var(--st-accent-1);
	color: var(--st-accent-1);
}
.st-vtab-panel {
	padding: 38px 40px;
	display: none;
}
.st-vtab-panel.st-active {
	display: block;
	animation: st-fade 0.4s;
}
@keyframes st-fade {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
}
.st-vtab-panel h3 {
	font-size: 1.4rem;
}
.st-vtab-panel p {
	color: var(--st-text-2);
}
@media (max-width: 780px) {
	.st-vtabs {
		grid-template-columns: 1fr;
	}
	.st-vtabs-list {
		flex-direction: column;
		overflow-x: auto;
		padding: 0;
	}
	.st-vtabs-list button {
		border-left: 0;
		border-bottom: 3px solid transparent;
		white-space: nowrap;
	}
	.st-vtabs-list button.st-active {
		border-bottom-color: var(--st-accent-1);
	}
}

/* ===================== Checklist ===================== */
.st-check {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: center;
}
.st-check-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.st-check-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 22px 26px;
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	align-items: start;
	transition: transform 0.3s;
}
.st-check-item:hover {
	transform: translateX(6px);
	border-color: var(--st-accent-1);
}
.st-check-num {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(217, 107, 39, 0.1);
	color: var(--st-accent-1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--st-font-h);
	font-weight: 700;
	flex-shrink: 0;
}
.st-check-item h4 {
	font-family: var(--st-font-h);
	font-size: 1.05rem;
	margin: 0 0 4px;
}
.st-check-item p {
	font-size: 0.9rem;
	color: var(--st-text-2);
	margin: 0;
}
.st-check-img {
	/* aspect-ratio: 3/4; */
	background: linear-gradient(180deg, #d8cfbe, #7a6951);
	border-radius: var(--st-radius);
	overflow: hidden;
	box-shadow: var(--st-shadow);
	width: 100%;
	height: 100%;
}
.st-check-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}
@media (max-width: 780px) {
	.st-check {
		grid-template-columns: 1fr;
	}
}

/* ===================== 4-grid blocks ===================== */
.st-quad {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.st-quad-cell {
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	padding: 30px 26px;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.st-quad-cell:hover {
	transform: translateY(-6px);
	box-shadow: var(--st-shadow);
}
.st-quad-cell i {
	font-size: 1.5rem;
	color: var(--st-accent-1);
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(217, 107, 39, 0.08);
}
.st-quad-cell h4 {
	font-family: var(--st-font-h);
	font-size: 1.1rem;
	margin: 0;
}
.st-quad-cell p {
	font-size: 0.9rem;
	color: var(--st-text-2);
	margin: 0;
}
.st-quad-cell .st-quad-num {
	font-family: var(--st-font-h);
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--st-text-2);
}
@media (max-width: 880px) {
	.st-quad {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.st-quad {
		grid-template-columns: 1fr;
	}
}

/* ===================== Manifesto / closing ===================== */
.st-manifesto {
	background: linear-gradient(135deg, #2b2d31 0%, #1c1e22 100%);
	color: #fff;
	padding: 80px 60px;
	border-radius: var(--st-radius-lg);
	position: relative;
	overflow: hidden;
}
.st-manifesto::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 80% 20%,
		rgba(217, 107, 39, 0.2),
		transparent 50%
	);
}
.st-manifesto h2 {
	color: #fff;
	max-width: 780px;
	position: relative;
}
.st-manifesto p {
	color: rgba(255, 255, 255, 0.7);
	max-width: 680px;
	font-size: 1rem;
	position: relative;
}
.st-manifesto .st-signature {
	margin-top: 40px;
	display: flex;
	gap: 20px;
	align-items: center;
	position: relative;
	font-family: var(--st-font-h);
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}
.st-manifesto .st-signature::before {
	content: '';
	width: 50px;
	height: 1px;
	background: var(--st-accent-1);
}

/* ===================== Contact-page stacks ===================== */
.st-contact-stack {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}
.st-contact-card {
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius);
	padding: 34px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}
.st-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--st-shadow);
	border-color: var(--st-accent-1);
}
.st-contact-card i {
	font-size: 1.6rem;
	color: var(--st-accent-1);
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(217, 107, 39, 0.08);
}
.st-contact-card h4 {
	font-family: var(--st-font-h);
	font-size: 1.05rem;
	margin: 0;
}
.st-contact-card p {
	font-size: 0.95rem;
	color: var(--st-text-2);
	margin: 0;
	line-height: 1.55;
}
.st-contact-card a {
	color: var(--st-accent-2);
	font-weight: 500;
}
.st-bigform {
	background: var(--st-surface);
	border: 1px solid var(--st-line);
	border-radius: var(--st-radius-lg);
	padding: 50px;
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.st-bigform h2 {
	grid-column: 1/-1;
	margin-bottom: 0;
}
.st-bigform .st-form-lead {
	grid-column: 1/-1;
	color: var(--st-text-2);
	margin-bottom: 14px;
}
.st-bigform .st-field-full {
	grid-column: 1/-1;
}
.st-bigform .st-btn {
	grid-column: 1/-1;
}
.st-bigmap {
	height: 480px;
	margin-top: 60px;
	border-radius: var(--st-radius-lg);
	overflow: hidden;
	border: 1px solid var(--st-line);
	background: #eef5f4;
}
.st-bigmap iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.3) contrast(0.95) brightness(1.05);
}
@media (max-width: 880px) {
	.st-contact-stack {
		grid-template-columns: 1fr;
	}
	.st-bigform {
		grid-template-columns: 1fr;
		padding: 32px;
	}
}

/* ===================== Reveal animations ===================== */
.st-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.9s var(--st-ease);
}
.st-reveal.st-in {
	opacity: 1;
	transform: none;
}
.st-reveal-l {
	opacity: 0;
	transform: translateX(-40px);
	transition: all 0.9s var(--st-ease);
}
.st-reveal-l.st-in {
	opacity: 1;
	transform: none;
}

/* ===================== Utility ===================== */
.st-sep {
	height: 1px;
	background: var(--st-line);
	margin: 60px 0;
}
.st-success {
	padding: 14px 18px;
	border-radius: 10px;
	background: rgba(10, 126, 140, 0.1);
	color: var(--st-accent-2);
	font-family: var(--st-font-h);
	font-size: 0.9rem;
	display: none;
}
.st-success.st-show {
	display: block;
}

@media (max-width: 480px) {
	.st-hero-stats {
		grid-template-columns: 1fr;
	}

	.st-fault-title {
		word-break: break-all;
		font-size: 1rem;
	}

	.st-pcard {
		width: 280px;
	}

	.st-mancarousel-dots span {
		width: 15px;
	}

	.st-subhero h1 {
		font-size: 1.5rem;
	}

	.st-meta-panel b {
		word-break: break-all;
	}

	.st-manifesto {
		padding: 40px 20px;
	}
}

:root {
	--sl-bg: #faf9f5;
	--sl-white: #ffffff;
	--sl-accent-terra: #d96b27;
	--sl-accent-hydro: #0a7e8c;
	--sl-text-dark: #2b2d31;
	--sl-text-muted: #72777f;
	--sl-border: #e8e4da;
	--sl-shadow: 0 2px 24px rgba(43, 45, 49, 0.07);
	--sl-shadow-hover: 0 8px 40px rgba(43, 45, 49, 0.12);
	--sl-radius: 12px;
	--sl-font-display: 'Cormorant Garamond', Georgia, serif;
	--sl-font-body: 'DM Sans', sans-serif;
	--sl-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-legal-page {
	min-height: 100vh;
	padding: 0 0 80px;
}

/* ── Hero / Banner ──────────────────────────────────────── */
.st-legal-hero {
	position: relative;
	overflow: hidden;
	background: var(--sl-white);
	border-bottom: 1px solid var(--sl-border);
	padding: 100px 40px 56px;
	text-align: center;
}

.st-legal-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(217, 107, 39, 0.04) 0%, transparent 50%),
		linear-gradient(225deg, rgba(10, 126, 140, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

/* Geological crack lines decoration */
.st-legal-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--sl-accent-terra) 20%,
		var(--sl-accent-hydro) 50%,
		var(--sl-accent-terra) 80%,
		transparent 100%
	);
	opacity: 0.6;
}

.st-legal-breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sl-text-muted);
	margin-bottom: 24px;
}

.st-legal-breadcrumb a {
	color: var(--sl-accent-hydro);
	text-decoration: none;
	transition: color var(--sl-transition);
}

.st-legal-breadcrumb a:hover {
	color: var(--sl-accent-terra);
}

.st-legal-breadcrumb-sep {
	color: var(--sl-border);
}

.st-legal-hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--sl-accent-hydro) 0%, #0d9aab 100%);
	color: #fff;
	font-family: var(--sl-font-body);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 40px;
	margin-bottom: 20px;
}

.st-legal-hero-title {
	font-family: var(--sl-font-display);
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 300;
	letter-spacing: -0.01em;
	color: var(--sl-text-dark);
	line-height: 1.15;
	margin-bottom: 16px;
}

.st-legal-hero-title em {
	font-style: italic;
	color: var(--sl-accent-terra);
}

.st-legal-hero-subtitle {
	font-size: 0.95rem;
	color: var(--sl-text-muted);
	max-width: 520px;
	margin: 0 auto;
}

.st-legal-meta {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.st-legal-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: var(--sl-text-muted);
	font-weight: 400;
}

.st-legal-meta-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sl-accent-terra);
	flex-shrink: 0;
}

/* ── Layout ─────────────────────────────────────────────── */
.st-legal-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 48px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 56px 40px 0;
	align-items: start;
}

/* ── Sidebar / Table of Contents ────────────────────────── */
.st-legal-sidebar {
	position: sticky;
	top: 90px;
}

.st-legal-toc-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--sl-text-muted);
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--sl-border);
}

.st-legal-toc {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.st-legal-toc li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 0.82rem;
	color: var(--sl-text-muted);
	text-decoration: none;
	transition:
		background var(--sl-transition),
		color var(--sl-transition);
	font-weight: 400;
	line-height: 1.4;
}

.st-legal-toc li a:hover {
	background: rgba(10, 126, 140, 0.07);
	color: var(--sl-accent-hydro);
}

.st-legal-toc li a.active {
	background: rgba(217, 107, 39, 0.08);
	color: var(--sl-accent-terra);
	font-weight: 500;
}

.st-legal-toc-num {
	font-family: var(--sl-font-display);
	font-size: 0.9rem;
	color: var(--sl-border);
	flex-shrink: 0;
	font-weight: 500;
	transition: color var(--sl-transition);
}

.st-legal-toc li a:hover .st-legal-toc-num,
.st-legal-toc li a.active .st-legal-toc-num {
	color: inherit;
}

.st-legal-sidebar-contact {
	margin-top: 32px;
	padding: 20px;
	background: var(--sl-white);
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius);
	box-shadow: var(--sl-shadow);
}

.st-legal-sidebar-contact-title {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sl-text-muted);
	margin-bottom: 12px;
}

.st-legal-sidebar-contact p {
	font-size: 0.8rem;
	color: var(--sl-text-muted);
	line-height: 1.6;
}

.st-legal-sidebar-contact a {
	color: var(--sl-accent-hydro);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.82rem;
	transition: color var(--sl-transition);
}

.st-legal-sidebar-contact a:hover {
	color: var(--sl-accent-terra);
}

/* ── Main Content ───────────────────────────────────────── */
.st-legal-content {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* ── Section Card ───────────────────────────────────────── */
.st-legal-section {
	position: relative;
	background: var(--sl-white);
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius);
	padding: 40px 44px;
	margin-bottom: 20px;
	box-shadow: var(--sl-shadow);
	transition: box-shadow var(--sl-transition);
	overflow: hidden;
}

.st-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(
		180deg,
		var(--sl-accent-terra) 0%,
		var(--sl-accent-hydro) 100%
	);
	border-radius: 3px 0 0 3px;
	opacity: 0;
	transition: opacity var(--sl-transition);
}

.st-legal-section:hover {
	box-shadow: var(--sl-shadow-hover);
}

.st-legal-section:hover::before {
	opacity: 1;
}

.st-legal-section-header {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 24px;
}

.st-legal-section-num {
	font-family: var(--sl-font-display);
	font-size: 2.8rem;
	font-weight: 300;
	line-height: 1;
	color: var(--sl-border);
	flex-shrink: 0;
	letter-spacing: -0.03em;
	margin-top: -4px;
	user-select: none;
}

.st-legal-section-titles {
	flex: 1;
}

.st-legal-section-tag {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--sl-accent-hydro);
	margin-bottom: 6px;
}

.st-legal-section-title {
	font-family: var(--sl-font-display);
	font-size: 1.45rem;
	font-weight: 500;
	color: var(--sl-text-dark);
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.st-legal-divider {
	height: 1px;
	background: linear-gradient(90deg, var(--sl-border) 0%, transparent 100%);
	margin-bottom: 24px;
}

.st-legal-section p {
	font-size: 0.92rem;
	color: var(--sl-text-muted);
	line-height: 1.8;
	margin-bottom: 14px;
}

.st-legal-section p:last-child {
	margin-bottom: 0;
}

.st-legal-section ul,
.st-legal-section ol {
	padding-left: 0;
	list-style: none;
	margin: 16px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.st-legal-section ul li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.9rem;
	color: var(--sl-text-muted);
	line-height: 1.7;
}

.st-legal-section ul li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sl-accent-terra);
	flex-shrink: 0;
	margin-top: 8px;
}

.st-legal-section ol {
	counter-reset: ol-counter;
}

.st-legal-section ol li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.9rem;
	color: var(--sl-text-muted);
	line-height: 1.7;
	counter-increment: ol-counter;
}

.st-legal-section ol li::before {
	content: counter(ol-counter, decimal-leading-zero);
	font-family: var(--sl-font-display);
	font-size: 0.85rem;
	color: var(--sl-accent-hydro);
	flex-shrink: 0;
	font-weight: 500;
	min-width: 24px;
}

.st-legal-highlight {
	background: linear-gradient(
		135deg,
		rgba(10, 126, 140, 0.05) 0%,
		rgba(217, 107, 39, 0.04) 100%
	);
	border: 1px solid rgba(10, 126, 140, 0.15);
	border-radius: 8px;
	padding: 16px 20px;
	margin: 16px 0;
	font-size: 0.88rem;
	color: var(--sl-text-dark);
	line-height: 1.7;
}

.st-legal-highlight strong {
	color: var(--sl-accent-hydro);
	font-weight: 600;
}

.st-legal-link {
	color: var(--sl-accent-hydro);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid rgba(10, 126, 140, 0.3);
	transition:
		color var(--sl-transition),
		border-color var(--sl-transition);
}

.st-legal-link:hover {
	color: var(--sl-accent-terra);
	border-color: rgba(217, 107, 39, 0.4);
}

/* ── Table (for cookie types) ───────────────────────────── */
.st-legal-table-wrap {
	overflow-x: auto;
	margin: 16px 0;
	border-radius: 8px;
	border: 1px solid var(--sl-border);
}

.st-legal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.84rem;
}

.st-legal-table thead tr {
	background: var(--sl-bg);
}

.st-legal-table th {
	padding: 12px 16px;
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sl-text-muted);
	text-align: left;
	border-bottom: 1px solid var(--sl-border);
}

.st-legal-table td {
	padding: 12px 16px;
	color: var(--sl-text-muted);
	border-bottom: 1px solid var(--sl-border);
	line-height: 1.5;
	vertical-align: top;
}

.st-legal-table tbody tr:last-child td {
	border-bottom: none;
}

.st-legal-table tbody tr:hover td {
	background: rgba(10, 126, 140, 0.03);
}

.st-legal-badge {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 40px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.st-legal-badge--required {
	background: rgba(217, 107, 39, 0.1);
	color: var(--sl-accent-terra);
}

.st-legal-badge--optional {
	background: rgba(10, 126, 140, 0.1);
	color: var(--sl-accent-hydro);
}

/* ── Contact / Final Section ────────────────────────────── */
.st-legal-contact-section {
	background: linear-gradient(135deg, var(--sl-text-dark) 0%, #1e2024 100%);
	border-radius: var(--sl-radius);
	padding: 48px 44px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.st-legal-contact-section::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(217, 107, 39, 0.15) 0%,
		transparent 70%
	);
}

.st-legal-contact-section::after {
	content: '';
	position: absolute;
	bottom: -40px;
	left: -40px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(10, 126, 140, 0.15) 0%,
		transparent 70%
	);
}

.st-legal-contact-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sl-accent-terra);
	margin-bottom: 12px;
}

.st-legal-contact-title {
	font-family: var(--sl-font-display);
	font-size: 2rem;
	font-weight: 300;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 20px;
}

.st-legal-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	position: relative;
	z-index: 1;
}

.st-legal-contact-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.st-legal-contact-item-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.st-legal-contact-item-val {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
}

.st-legal-contact-item-val a {
	color: var(--sl-accent-hydro);
	text-decoration: none;
	font-weight: 500;
	transition: color var(--sl-transition);
}

.st-legal-contact-item-val a:hover {
	color: var(--sl-accent-terra);
}

/* ── Nav Links between pages ────────────────────────────── */
.st-legal-nav {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 40px 0;
}

.st-legal-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 20px;
	border-radius: 40px;
	font-size: 0.82rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid var(--sl-border);
	color: var(--sl-text-muted);
	background: var(--sl-white);
	transition: all var(--sl-transition);
	box-shadow: var(--sl-shadow);
}

.st-legal-nav-link:hover {
	background: var(--sl-accent-hydro);
	color: #fff;
	border-color: var(--sl-accent-hydro);
}

.st-legal-nav-link.current {
	background: var(--sl-accent-terra);
	color: #fff;
	border-color: var(--sl-accent-terra);
}

/* ── Scroll progress bar ────────────────────────────────── */
.st-legal-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: linear-gradient(
		90deg,
		var(--sl-accent-terra),
		var(--sl-accent-hydro)
	);
	z-index: 1000;
	transition: width 0.1s linear;
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes st-legal-fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.st-legal-hero {
	animation: st-legal-fadeUp 0.6s ease both;
}
.st-legal-section {
	animation: st-legal-fadeUp 0.5s ease both;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
	.st-legal-layout {
		grid-template-columns: 1fr;
		padding: 32px 24px 0;
	}
	.st-legal-sidebar {
		position: static;
		display: none;
	}
	.st-legal-hero {
		padding: 100px 24px 40px;
	}
	.st-legal-section {
		padding: 28px 24px;
	}
	.st-legal-contact-section {
		padding: 32px 24px;
	}
	.st-legal-contact-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.st-legal-nav {
		padding: 28px 24px 0;
	}
}

@media (max-width: 600px) {
	.st-legal-hero-title {
		font-size: 1.5rem;
	}

	.st-legal-breadcrumb {
		display: none;
	}
	.st-legal-section-num {
		font-size: 2rem;
	}
	.st-legal-contact-title {
		font-size: 1.5rem;
	}

	.st-legal-section ul li {
		flex-direction: column;
	}
	.st-legal-section-title {
		font-size: 1.2rem;
	}
}
