:root {
	--tpb-bg: #f7f9fa;
	--tpb-surface: #ffffff;
	--tpb-accent-1: #c85a32;
	--tpb-accent-2: #2a6f60;
	--tpb-text: #1e2229;
	--tpb-text-muted: #5c6470;
	--tpb-line: #e3e7eb;
	--tpb-line-strong: #c9d0d7;
	--tpb-glass: rgba(255, 255, 255, 0.72);
	--tpb-shadow-sm: 0 1px 2px rgba(30, 34, 41, 0.04);
	--tpb-shadow-md: 0 8px 28px rgba(30, 34, 41, 0.06);
	--tpb-shadow-lg: 0 24px 60px rgba(30, 34, 41, 0.08);
	--tpb-radius-xs: 4px;
	--tpb-radius-sm: 8px;
	--tpb-radius-md: 14px;
	--tpb-radius-lg: 22px;
	--tpb-font-head: 'Syne', system-ui, sans-serif;
	--tpb-font-body: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
	--tpb-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--tpb-dur: 0.35s;
	--tpb-container: 1240px;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: var(--tpb-font-body);
	background: var(--tpb-bg);
	color: var(--tpb-text);
	font-size: 15px;
	line-height: 1.65;
	min-height: 100vh;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
	border: none;
	background: none;
	cursor: pointer;
	color: inherit;
}
input,
textarea,
select {
	font: inherit;
	color: inherit;
}
ul,
ol {
	list-style: none;
}

/* ---------- 3. Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--tpb-font-head);
	font-weight: 700;
	color: var(--tpb-text);
	letter-spacing: -0.01em;
	line-height: 1.08;
}
h1 {
	font-size: clamp(2.4rem, 5.5vw, 4.6rem);
	letter-spacing: -0.025em;
}
h2 {
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}
h3 {
	font-size: clamp(1.25rem, 2vw, 1.55rem);
}
h4 {
	font-size: 1.1rem;
}
p {
	color: var(--tpb-text-muted);
	font-size: 0.95rem;
}
strong {
	color: var(--tpb-text);
	font-weight: 600;
}
.tpb-mono {
	font-family: var(--tpb-font-body);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72rem;
}

/* ---------- 4. Layout helpers ---------- */
.tpb-container {
	width: 100%;
	max-width: var(--tpb-container);
	margin: 0 auto;
	padding: 0 28px;
}
.tpb-section {
	padding: 120px 0;
	position: relative;
}
.tpb-section--narrow {
	padding: 80px 0;
}
.tpb-section-head {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 36px;
	margin-bottom: 64px;
	align-items: start;
}
.tpb-section-head__index {
	font-family: var(--tpb-font-body);
	font-size: 0.72rem;
	color: var(--tpb-accent-1);
	letter-spacing: 0.25em;
	text-transform: uppercase;
	border-top: 2px solid var(--tpb-accent-1);
	padding-top: 14px;
}
.tpb-section-head__title {
	max-width: 780px;
}
.tpb-section-head__title h2 {
	margin-bottom: 18px;
}
.tpb-section-head__title p {
	font-size: 1rem;
	max-width: 640px;
}

/* ---------- 5. Scroll depth indicator ---------- */
.tpb-depth {
	position: fixed;
	top: 37px;
	right: 0;
	width: 36px;
	height: 100vh;
	pointer-events: none;
	z-index: 90;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 90px 0 40px;
}
.tpb-depth__rail {
	position: relative;
	width: 1px;
	background: var(--tpb-line-strong);
	flex: 1;
}
.tpb-depth__bar {
	position: absolute;
	top: 0;
	left: -1px;
	width: 3px;
	background: var(--tpb-accent-1);
	height: 0%;
	transition: height 0.12s linear;
}
.tpb-depth__tick {
	position: absolute;
	left: -9px;
	width: 9px;
	height: 1px;
	background: var(--tpb-line-strong);
	font-size: 9px;
}
.tpb-depth__label {
	position: absolute;
	bottom: 8px;
	font-family: var(--tpb-font-body);
	font-size: 9px;
	color: var(--tpb-text-muted);
	letter-spacing: 0.2em;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}
.tpb-depth__readout {
	font-family: var(--tpb-font-body);
	font-size: 10px;
	color: var(--tpb-accent-1);
	margin-top: 14px;
	letter-spacing: 0.15em;
}

/* ---------- 6. Header ---------- */
.tpb-topline {
	background: #11161c;
	color: #d6dbe2;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
}
.tpb-topline__inner {
	max-width: var(--tpb-container);
	margin: 0 auto;
	padding: 9px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}
.tpb-topline__contacts {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.tpb-topline__contacts a {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	transition: color var(--tpb-dur) var(--tpb-ease);
}
.tpb-topline__contacts a:hover {
	color: var(--tpb-accent-1);
}
.tpb-topline__socials {
	display: flex;
	gap: 14px;
}
.tpb-topline__socials a {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #2a3038;
	border-radius: 50%;
	transition: all var(--tpb-dur) var(--tpb-ease);
}
.tpb-topline__socials a:hover {
	background: var(--tpb-accent-1);
	border-color: var(--tpb-accent-1);
	color: #fff;
	transform: translateY(-2px);
}

.tpb-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--tpb-glass);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid var(--tpb-line);
}
.tpb-header__inner {
	max-width: var(--tpb-container);
	margin: 0 auto;
	padding: 18px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.tpb-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--tpb-font-head);
	font-weight: 800;
	font-size: 1.4rem;
	letter-spacing: -0.02em;
	color: var(--tpb-text);
}
.tpb-logo__mark {
	width: 34px;
	height: 34px;
	border: 2px solid var(--tpb-accent-1);
	position: relative;
	transform: rotate(45deg);
}
.tpb-logo__mark::after {
	content: '';
	position: absolute;
	inset: 5px;
	background: var(--tpb-accent-2);
	opacity: 0.18;
}
.tpb-logo span {
	color: var(--tpb-accent-1);
}

.tpb-nav {
	display: flex;
	gap: 6px;
	align-items: center;
}
.tpb-nav__link {
	position: relative;
	padding: 10px 14px;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tpb-text);
	border-radius: var(--tpb-radius-xs);
	transition: color var(--tpb-dur) var(--tpb-ease);
}
.tpb-nav__link::before {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 6px;
	height: 1px;
	background: var(--tpb-accent-1);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--tpb-dur) var(--tpb-ease);
}
.tpb-nav__link:hover,
.tpb-nav__link.tpb-active {
	color: var(--tpb-accent-1);
}
.tpb-nav__link:hover::before,
.tpb-nav__link.tpb-active::before {
	transform: scaleX(1);
}

.tpb-burger {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--tpb-line-strong);
	border-radius: var(--tpb-radius-xs);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}
.tpb-burger span {
	width: 18px;
	height: 2px;
	background: var(--tpb-text);
	transition:
		transform 0.3s var(--tpb-ease),
		opacity 0.2s;
}
.tpb-burger.tpb-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.tpb-burger.tpb-open span:nth-child(2) {
	opacity: 0;
}
.tpb-burger.tpb-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.tpb-mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: min(380px, 86vw);
	background: #0e1318;
	color: #e6eaf0;
	padding: 90px 36px 36px;
	transform: translateX(100%);
	transition: transform 0.55s var(--tpb-ease);
	z-index: 99;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: -30px 0 80px rgba(0, 0, 0, 0.3);
}
.tpb-mobile-nav.tpb-open {
	transform: translateX(0);
}
.tpb-mobile-nav a {
	display: block;
	padding: 18px 0;
	font-family: var(--tpb-font-head);
	font-size: 1.4rem;
	border-bottom: 1px solid #1f252d;
	transition:
		color var(--tpb-dur) var(--tpb-ease),
		padding-left var(--tpb-dur);
}
.tpb-mobile-nav a:hover {
	color: var(--tpb-accent-1);
	padding-left: 10px;
}
.tpb-mobile-nav__index {
	font-family: var(--tpb-font-body);
	font-size: 0.65rem;
	color: var(--tpb-accent-1);
	letter-spacing: 0.3em;
	margin-bottom: 22px;
}

/* ---------- 7. Buttons ---------- */
.tpb-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 28px;
	background: var(--tpb-text);
	color: #fff;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	border-radius: var(--tpb-radius-xs);
	transition: all var(--tpb-dur) var(--tpb-ease);
	position: relative;
	overflow: hidden;
}
.tpb-btn::after {
	content: '→';
	font-family: var(--tpb-font-body);
	transition: transform var(--tpb-dur) var(--tpb-ease);
}
.tpb-btn:hover {
	background: var(--tpb-accent-1);
	transform: translateY(-2px);
	box-shadow: var(--tpb-shadow-md);
}
.tpb-btn:hover::after {
	transform: translateX(6px);
}
.tpb-btn--ghost {
	background: transparent;
	color: var(--tpb-text);
	border: 1px solid var(--tpb-text);
}
.tpb-btn--ghost:hover {
	background: var(--tpb-text);
	color: #fff;
}
.tpb-btn--accent {
	background: var(--tpb-accent-1);
}
.tpb-btn--accent:hover {
	background: var(--tpb-accent-2);
}
.tpb-btn[disabled] {
	background: #c9d0d7 !important;
	color: #fff !important;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* ---------- 8. HERO ---------- */
.tpb-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	padding: 120px 0 100px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.7)),
		url('assets/tpb-hero.webp') center/cover;
}
.tpb-hero__grid {
	position: absolute;
}
.tpb-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: end;
}
.tpb-hero__meta {
	display: flex;
	flex-direction: column;
	gap: 18px;
	border-left: 2px solid var(--tpb-accent-1);
	padding-left: 18px;
}
.tpb-hero__meta span {
	font-family: var(--tpb-font-body);
	font-size: 0.7rem;
	color: var(--tpb-text-muted);
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.tpb-hero__meta strong {
	color: var(--tpb-accent-1);
}
.tpb-hero__main h1 {
	margin-bottom: 32px;
	max-width: 980px;
	font-size: 3rem !important;
}
.tpb-hero__main h1 em {
	font-style: normal;
	color: var(--tpb-accent-1);
	position: relative;
}
.tpb-hero__lead {
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 740px;
	color: var(--tpb-text-muted);
	margin-bottom: 40px;
}
.tpb-hero__lead strong {
	color: var(--tpb-text);
}
.tpb-hero__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.tpb-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 80px;
	padding-top: 36px;
	border-top: 1px solid var(--tpb-line);
}
.tpb-hero__stat strong {
	display: block;
	font-family: var(--tpb-font-head);
	font-size: 2.2rem;
	color: var(--tpb-text);
	margin-bottom: 4px;
}
.tpb-hero__stat span {
	font-size: 0.72rem;
	color: var(--tpb-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.18em;
}

/* ---------- 9. Timeline (Asymmetric Nodes) ---------- */
.tpb-timeline {
	position: relative;
	padding: 40px 0;
}
.tpb-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--tpb-line-strong);
}
.tpb-timeline__row {
	display: grid;
	grid-template-columns: 1fr 80px 1fr;
	align-items: center;
	margin-bottom: 60px;
	min-height: 200px;
}
.tpb-timeline__row:nth-child(even) .tpb-timeline__card {
	grid-column: 3;
	text-align: left;
}
.tpb-timeline__row:nth-child(odd) .tpb-timeline__card {
	grid-column: 1;
	text-align: right;
}
.tpb-timeline__node {
	grid-column: 2;
	justify-self: center;
	width: 54px;
	height: 54px;
	border: 2px solid var(--tpb-line-strong);
	background: var(--tpb-surface);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--tpb-font-body);
	font-size: 0.7rem;
	color: var(--tpb-text-muted);
	cursor: pointer;
	position: relative;
	transition: all var(--tpb-dur) var(--tpb-ease);
	z-index: 2;
}
.tpb-timeline__node::before {
	content: '';
	position: absolute;

	opacity: 0;
	transition: opacity var(--tpb-dur);
}
.tpb-timeline__node:hover,
.tpb-timeline__node.tpb-active {
	border-color: var(--tpb-accent-1);
	color: var(--tpb-accent-1);
	transform: scale(1.08);
}
.tpb-timeline__node.tpb-active::before {
	opacity: 1;
}
.tpb-timeline__card {
	background: var(--tpb-surface);
	padding: 28px 30px;
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	transition: all 0.5s var(--tpb-ease);
	position: relative;
}
.tpb-timeline__card.tpb-active {
	border-color: var(--tpb-accent-1);
	box-shadow: var(--tpb-shadow-md);
	transform: scale(1.02);
}
.tpb-timeline__year {
	font-family: var(--tpb-font-body);
	color: var(--tpb-accent-1);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	display: block;
	margin-bottom: 8px;
}
.tpb-timeline__title {
	margin-bottom: 12px;
}
.tpb-timeline__text {
	font-size: 0.88rem;
	line-height: 1.7;
}

/* ---------- 10. Spectroscopy tabs ---------- */
.tpb-tabs {
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	background: var(--tpb-surface);
	overflow: hidden;
}
.tpb-tabs__head {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-bottom: 1px solid var(--tpb-line);
}
.tpb-tabs__btn {
	padding: 24px 28px;
	text-align: left;
	border-right: 1px solid var(--tpb-line);
	font-family: var(--tpb-font-body);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tpb-text-muted);
	transition: all var(--tpb-dur) var(--tpb-ease);
	position: relative;
	background: #fafbfc;
}
.tpb-tabs__btn:last-child {
	border-right: none;
}
.tpb-tabs__btn span {
	display: block;
	color: var(--tpb-accent-1);
	font-size: 0.7rem;
	margin-bottom: 6px;
}
.tpb-tabs__btn:hover {
	background: var(--tpb-surface);
	color: var(--tpb-text);
}
.tpb-tabs__btn.tpb-active {
	background: var(--tpb-surface);
	color: var(--tpb-text);
}
.tpb-tabs__btn.tpb-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 3px;
	background: var(--tpb-accent-1);
}
.tpb-tabs__body {
	padding: 48px 40px;
	min-height: 340px;
}
.tpb-tabs__pane {
	display: none;
	animation: tpbFade 0.45s var(--tpb-ease);
}
.tpb-tabs__pane.tpb-active {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
.tpb-tabs__pane h3 {
	margin-bottom: 18px;
}
.tpb-tabs__pane p {
	margin-bottom: 14px;
	font-size: 0.92rem;
}
.tpb-tabs__pane ul {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.tpb-tabs__pane li {
	padding-left: 24px;
	position: relative;
	font-size: 0.88rem;
	color: var(--tpb-text-muted);
}
.tpb-tabs__pane li::before {
	content: '◆';
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--tpb-accent-2);
	font-size: 0.7rem;
}

@keyframes tpbFade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ---------- 11. Case studies slider ---------- */
.tpb-cases {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}
.tpb-cases__slider {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	background: var(--tpb-surface);
}
.tpb-cases__track {
	display: flex;
	transition: transform 0.55s var(--tpb-ease);
}
.tpb-cases__card {
	flex: 0 0 100%;
	padding: 48px 40px;
	cursor: pointer;
}
.tpb-cases__card h3 {
	margin-bottom: 10px;
}
.tpb-cases__region {
	font-family: var(--tpb-font-body);
	font-size: 0.7rem;
	color: var(--tpb-accent-1);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 18px;
	display: block;
}
.tpb-cases__short {
	font-size: 0.9rem;
	margin-bottom: 16px;
}
.tpb-cases__meta {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	padding-top: 18px;
	border-top: 1px solid var(--tpb-line);
	font-size: 0.78rem;
	color: var(--tpb-text-muted);
}
.tpb-cases__meta span strong {
	color: var(--tpb-text);
	display: block;
}
.tpb-cases__nav {
	position: absolute;
	bottom: 24px;
	right: 24px;
	display: flex;
	gap: 10px;
}
.tpb-cases__nav button {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--tpb-line-strong);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all var(--tpb-dur) var(--tpb-ease);
}
.tpb-cases__nav button:hover {
	background: var(--tpb-accent-1);
	color: #fff;
	border-color: var(--tpb-accent-1);
}
.tpb-cases__panel {
	background: linear-gradient(180deg, #11161c, #1a2128);
	color: #e6eaf0;
	padding: 40px 36px;
	border-radius: var(--tpb-radius-md);
	position: sticky;
	top: 120px;
	min-height: 420px;
}
.tpb-cases__panel-label {
	font-family: var(--tpb-font-body);
	font-size: 0.7rem;
	color: var(--tpb-accent-1);
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.tpb-cases__panel h3 {
	color: #fff;
	margin-bottom: 18px;
}
.tpb-cases__panel p {
	color: #9fa7b2;
	font-size: 0.9rem;
	margin-bottom: 18px;
}
.tpb-cases__panel ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}
.tpb-cases__panel li {
	display: flex;
	justify-content: space-between;
	font-size: 0.78rem;
	padding-bottom: 10px;
	border-bottom: 1px solid #232a33;
}
.tpb-cases__panel li strong {
	color: #fff;
	font-weight: 500;
}
.tpb-cases__panel li span {
	color: var(--tpb-accent-1);
	font-family: var(--tpb-font-body);
}

/* ---------- 12. Atlas hover matrix ---------- */
.tpb-atlas {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(180px, auto);
	gap: 18px;
}
.tpb-atlas__card {
	background: var(--tpb-surface);
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	padding: 28px 26px;
	transition: all 0.5s var(--tpb-ease);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.tpb-atlas__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		transparent 60%,
		var(--tpb-accent-1) 200%
	);
	opacity: 0;
	transition: opacity 0.5s var(--tpb-ease);
}
.tpb-atlas__card:hover {
	transform: translateY(-4px) scale(1.015);
	border-color: var(--tpb-accent-1);
	box-shadow: var(--tpb-shadow-lg);
}
.tpb-atlas__card:hover::before {
	opacity: 0.07;
}
.tpb-atlas__card > * {
	position: relative;
	z-index: 1;
}
.tpb-atlas__card--w6 {
	grid-column: span 6;
}
.tpb-atlas__card--w4 {
	grid-column: span 4;
}
.tpb-atlas__card--w8 {
	grid-column: span 8;
}
.tpb-atlas__card--w12 {
	grid-column: span 12;
}
.tpb-atlas__index {
	font-family: var(--tpb-font-body);
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	color: var(--tpb-accent-2);
	display: block;
	margin-bottom: 14px;
}
.tpb-atlas__card h3 {
	margin-bottom: 12px;
	font-size: 1.3rem;
}
.tpb-atlas__card p {
	font-size: 0.88rem;
	margin-bottom: 18px;
}
.tpb-atlas__props {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	padding-top: 14px;
	border-top: 1px dashed var(--tpb-line);
	font-size: 0.72rem;
	color: var(--tpb-text-muted);
}
.tpb-atlas__props strong {
	color: var(--tpb-accent-1);
	display: block;
	font-size: 0.9rem;
	font-family: var(--tpb-font-head);
}

/* ---------- 13. Form & Map ---------- */
.tpb-form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: stretch;
}
.tpb-map {
	height: 100%;
	min-height: 300px;

	width: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.tpb-map {
		height: 400px;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.tpb-contact-map {
	position: relative;
	height: 100%;
}

.tpb-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;
}
.tpb-form {
	background: var(--tpb-surface);
	padding: 48px 40px;
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.tpb-form__title {
	font-family: var(--tpb-font-head);
	font-size: 1.5rem;
	margin-bottom: 6px;
}
.tpb-form__subtitle {
	font-size: 0.85rem;
	color: var(--tpb-text-muted);
	margin-bottom: 14px;
}
.tpb-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
}
.tpb-field label {
	font-family: var(--tpb-font-body);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--tpb-text-muted);
}
.tpb-field input,
.tpb-field textarea {
	padding: 14px 16px;
	border: 1px solid var(--tpb-line-strong);
	border-radius: var(--tpb-radius-xs);
	background: #fafbfc;
	font-size: 0.92rem;
	transition: all var(--tpb-dur) var(--tpb-ease);
	resize: vertical;
}
.tpb-field input:focus,
.tpb-field textarea:focus {
	outline: none;
	border-color: var(--tpb-accent-1);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(200, 90, 50, 0.08);
}
.tpb-field--invalid input,
.tpb-field--invalid textarea {
	border-color: #c0392b;
	background: #fff6f4;
}
.tpb-field__error {
	font-size: 0.7rem;
	color: #c0392b;
	display: none;
	letter-spacing: 0.05em;
}
.tpb-field--invalid .tpb-field__error {
	display: block;
}

/* ---------- 14. Footer ---------- */
.tpb-footer {
	background: #0e1318;
	color: #c7cdd5;
	padding: 96px 0 0;
	margin-top: 60px;
}
.tpb-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
	gap: 40px;
	padding-bottom: 60px;
	border-bottom: 1px solid #1f252d;
}
.tpb-footer__col h4 {
	color: #fff;
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 24px;
	padding-bottom: 14px;
	border-bottom: 1px solid #1f252d;
}
.tpb-footer__brand {
	font-family: var(--tpb-font-head);
	font-size: 1.8rem;
	color: #fff;
	margin-bottom: 18px;
	letter-spacing: -0.02em;
}
.tpb-footer__brand em {
	color: var(--tpb-accent-1);
	font-style: normal;
}
.tpb-footer__col p {
	color: #8e96a0;
	font-size: 0.85rem;
	line-height: 1.7;
}
.tpb-footer__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.tpb-footer__list a {
	font-size: 0.85rem;
	color: #c7cdd5;
	transition: all var(--tpb-dur) var(--tpb-ease);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.tpb-footer__list a:hover {
	color: var(--tpb-accent-1);
	padding-left: 6px;
}
.tpb-footer__list a::before {
	content: '›';
	color: var(--tpb-accent-1);
}
.tpb-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 14px;
	font-size: 0.85rem;
	color: #c7cdd5;
}
.tpb-footer__contact strong {
	display: block;
	color: #8e96a0;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 4px;
	font-weight: 500;
}
.tpb-footer__contact a:hover {
	color: var(--tpb-accent-1);
}
.tpb-footer__bottom {
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.78rem;
	color: #6f7682;
	flex-wrap: wrap;
	gap: 14px;
}
.tpb-footer__bottom em {
	color: var(--tpb-accent-1);
	font-style: normal;
}

/* ---------- 15. Cookie banner ---------- */
.tpb-cookie {
	position: fixed;
	bottom: 15px;
	left: 24px;
	right: 24px;
	max-width: 780px;
	margin: 0 auto;
	background: var(--tpb-surface);
	border: 1px solid var(--tpb-line-strong);
	border-radius: var(--tpb-radius-md);
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	box-shadow: var(--tpb-shadow-lg);
	z-index: 200;
	transform: translateY(120%);
	transition: transform 0.55s var(--tpb-ease);
}
.tpb-cookie.tpb-show {
	transform: translateY(0);
}
.tpb-cookie__icon {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	border: 1px solid var(--tpb-accent-1);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--tpb-accent-1);
}
.tpb-cookie p {
	font-size: 0.82rem;
	flex: 1;
}
.tpb-cookie a {
	color: var(--tpb-accent-1);
	text-decoration: underline;
}
.tpb-cookie button {
	padding: 12px 24px;
	background: var(--tpb-text);
	color: #fff;
	border-radius: var(--tpb-radius-xs);
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition: background var(--tpb-dur);
}
.tpb-cookie button:hover {
	background: var(--tpb-accent-1);
}

/* ---------- 16. Page hero (subpages) ---------- */
.tpb-page-hero {
	padding: 90px 0 70px;
	background: linear-gradient(180deg, #ffffff 0%, var(--tpb-bg) 100%);
	border-bottom: 1px solid var(--tpb-line);
	position: relative;
	overflow: hidden;
}
.tpb-page-hero__inner {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 48px;
	align-items: end;
}
.tpb-page-hero h1 {
	font-size: clamp(2.2rem, 4.2vw, 3.6rem);
	margin-bottom: 18px;
}
.tpb-page-hero__crumbs {
	font-family: var(--tpb-font-body);
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	color: var(--tpb-text-muted);
	text-transform: uppercase;
	margin-bottom: 24px;
}
.tpb-page-hero__crumbs a:hover {
	color: var(--tpb-accent-1);
}
.tpb-page-hero__meta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-left: 2px solid var(--tpb-accent-2);
	padding-left: 20px;
}
.tpb-page-hero__meta strong {
	font-family: var(--tpb-font-head);
	font-size: 1.05rem;
	color: var(--tpb-text);
}
.tpb-page-hero__meta span {
	font-size: 0.82rem;
	color: var(--tpb-text-muted);
}

/* ---------- 17. Article block ---------- */
.tpb-article {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 48px;
}
.tpb-article__aside {
	font-family: var(--tpb-font-body);
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	color: var(--tpb-accent-1);
	text-transform: uppercase;
	border-top: 2px solid var(--tpb-accent-1);
	padding-top: 14px;
	position: sticky;
	top: 120px;
	align-self: start;
}
.tpb-article__body p {
	font-size: 1rem;
	line-height: 1.85;
	margin-bottom: 20px;
}
.tpb-article__body p:first-of-type::first-letter {
	font-family: var(--tpb-font-head);
	font-size: 3.4rem;
	font-weight: 700;
	color: var(--tpb-accent-1);
	float: left;
	line-height: 0.9;
	padding: 6px 14px 0 0;
}

/* ---------- 18. Table (stratigraphy) ---------- */
.tpb-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	background: var(--tpb-surface);
}
.tpb-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
}
.tpb-table thead {
	background: #fafbfc;
	border-bottom: 2px solid var(--tpb-accent-1);
}
.tpb-table th {
	padding: 18px 22px;
	text-align: left;
	font-family: var(--tpb-font-body);
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--tpb-text);
}
.tpb-table td {
	padding: 18px 22px;
	border-bottom: 1px solid var(--tpb-line);
	color: var(--tpb-text-muted);
}
.tpb-table tbody tr:hover {
	background: #fbfcfd;
}
.tpb-table td strong {
	color: var(--tpb-text);
}
.tpb-table td:first-child {
	color: var(--tpb-accent-1);
	font-family: var(--tpb-font-body);
}

/* ---------- 19. Carousel (text blocks) ---------- */
.tpb-carousel {
	position: relative;
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	background: var(--tpb-surface);
	overflow: hidden;
}
.tpb-carousel__viewport {
	overflow: hidden;
}
.tpb-carousel__track {
	display: flex;
	transition: transform 0.55s var(--tpb-ease);
}
.tpb-carousel__slide {
	flex: 0 0 100%;
	padding: 56px 60px;
}
.tpb-carousel__slide h3 {
	margin-bottom: 14px;
	font-size: 1.6rem;
}
.tpb-carousel__author {
	font-family: var(--tpb-font-body);
	font-size: 0.74rem;
	color: var(--tpb-accent-1);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 18px;
}
.tpb-carousel__slide p {
	font-size: 0.95rem;
	line-height: 1.8;
}
.tpb-carousel__controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 30px;
	border-top: 1px solid var(--tpb-line);
	background: #fafbfc;
}
.tpb-carousel__dots {
	display: flex;
	gap: 8px;
}
.tpb-carousel__dot {
	width: 24px;
	height: 3px;
	background: var(--tpb-line-strong);
	border-radius: 2px;
	cursor: pointer;
	transition: background var(--tpb-dur);
}
.tpb-carousel__dot.tpb-active {
	background: var(--tpb-accent-1);
}
.tpb-carousel__btns {
	display: flex;
	gap: 8px;
}
.tpb-carousel__btns button {
	width: 38px;
	height: 38px;
	border: 1px solid var(--tpb-line-strong);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all var(--tpb-dur);
}
.tpb-carousel__btns button:hover {
	background: var(--tpb-accent-1);
	color: #fff;
	border-color: var(--tpb-accent-1);
}

/* ---------- 20. Accordion ---------- */
.tpb-accordion {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.tpb-accordion__item {
	background: var(--tpb-surface);
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-sm);
	overflow: hidden;
	transition: border-color var(--tpb-dur);
}
.tpb-accordion__item.tpb-open {
	border-color: var(--tpb-accent-1);
}
.tpb-accordion__head {
	width: 100%;
	padding: 22px 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	font-family: var(--tpb-font-head);
	font-size: 1.05rem;
	font-weight: 600;
}
.tpb-accordion__head span {
	width: 30px;
	height: 30px;
	border: 1px solid var(--tpb-line-strong);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	transition: all var(--tpb-dur);
	flex-shrink: 0;
}
.tpb-accordion__item.tpb-open .tpb-accordion__head span {
	background: var(--tpb-accent-1);
	color: #fff;
	border-color: var(--tpb-accent-1);
	transform: rotate(45deg);
}
.tpb-accordion__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s var(--tpb-ease);
}
.tpb-accordion__body-inner {
	padding: 0 26px 26px;
	font-size: 0.92rem;
	color: var(--tpb-text-muted);
	line-height: 1.8;
}

/* ---------- 21. Vertical tabs ---------- */
.tpb-vtabs {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	background: var(--tpb-surface);
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	padding: 32px;
}
.tpb-vtabs__head {
	display: flex;
	flex-direction: column;
	gap: 6px;
	border-right: 1px solid var(--tpb-line);
	padding-right: 24px;
}
.tpb-vtabs__btn {
	padding: 18px 16px;
	text-align: left;
	font-family: var(--tpb-font-body);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tpb-text-muted);
	border-left: 2px solid transparent;
	transition: all var(--tpb-dur);
}
.tpb-vtabs__btn:hover {
	color: var(--tpb-text);
	background: #fafbfc;
}
.tpb-vtabs__btn.tpb-active {
	color: var(--tpb-accent-1);
	border-left-color: var(--tpb-accent-1);
	background: #fafbfc;
}
.tpb-vtabs__body {
	padding: 14px 20px;
	min-height: 280px;
}
.tpb-vtabs__pane {
	display: none;
	animation: tpbFade 0.4s var(--tpb-ease);
}
.tpb-vtabs__pane.tpb-active {
	display: block;
}
.tpb-vtabs__pane h3 {
	margin-bottom: 14px;
}
.tpb-vtabs__pane p {
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 14px;
}

/* ---------- 22. Checklist / alternating rows ---------- */
.tpb-checklist {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.tpb-checklist__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.tpb-checklist__row.tpb-reverse {
	direction: rtl;
}
.tpb-checklist__row.tpb-reverse > * {
	direction: ltr;
}
.tpb-checklist__text h3 {
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.tpb-checklist__text h3 em {
	font-style: normal;
	font-family: var(--tpb-font-body);
	font-size: 0.78rem;
	color: var(--tpb-accent-1);
	padding: 4px 10px;
	border: 1px solid var(--tpb-accent-1);
	border-radius: var(--tpb-radius-xs);
	letter-spacing: 0.16em;
}
.tpb-checklist__text p {
	font-size: 0.95rem;
	line-height: 1.8;
}
.tpb-checklist__media {
	background: #eef1f4;
	border-radius: var(--tpb-radius-md);
	aspect-ratio: 4/3;
	overflow: hidden;
	position: relative;
	border: 1px solid var(--tpb-line);
}
.tpb-checklist__media::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(200, 90, 50, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(200, 90, 50, 0.06) 1px, transparent 1px);
	background-size: 40px 40px;
}
.tpb-checklist__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

/* ---------- 23. Steps list ---------- */
.tpb-steps {
	display: flex;
	flex-direction: column;
	gap: 14px;
	counter-reset: tpb-steps;
}
.tpb-steps__item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 24px;
	padding: 28px 32px;
	background: var(--tpb-surface);
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	transition: all var(--tpb-dur);
	cursor: pointer;
}
.tpb-steps__item:hover {
	border-color: var(--tpb-accent-1);
	box-shadow: var(--tpb-shadow-md);
	transform: translateX(6px);
}
.tpb-steps__item::before {
	counter-increment: tpb-steps;
	content: counter(tpb-steps, decimal-leading-zero);
	font-family: var(--tpb-font-head);
	font-size: 2.4rem;
	color: var(--tpb-accent-1);
	font-weight: 700;
	line-height: 1;
}
.tpb-steps__item h4 {
	margin-bottom: 8px;
	font-size: 1.15rem;
}
.tpb-steps__item p {
	font-size: 0.9rem;
}

/* ---------- 24. Quad grid (chemistry) ---------- */
.tpb-quad {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.tpb-quad__cell {
	background: var(--tpb-surface);
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	padding: 32px 24px;
	transition: all var(--tpb-dur);
}
.tpb-quad__cell:hover {
	transform: translateY(-4px);
	border-color: var(--tpb-accent-2);
	box-shadow: var(--tpb-shadow-md);
}
.tpb-quad__cell i {
	font-size: 1.4rem;
	color: var(--tpb-accent-1);
	margin-bottom: 18px;
	display: block;
}
.tpb-quad__cell h4 {
	margin-bottom: 10px;
	font-size: 1.1rem;
}
.tpb-quad__cell p {
	font-size: 0.85rem;
	line-height: 1.7;
}

/* ---------- 25. Manifesto block ---------- */
.tpb-manifest {
	background: #0e1318;
	color: #e6eaf0;
	border-radius: var(--tpb-radius-lg);
	padding: 80px 60px;
	position: relative;
	overflow: hidden;
}
.tpb-manifest::before {
	content: '01';
	position: absolute;
	top: 30px;
	right: 60px;
	font-family: var(--tpb-font-head);
	font-size: 8rem;
	color: #1a2128;
	font-weight: 800;
}
.tpb-manifest__label {
	font-family: var(--tpb-font-body);
	font-size: 0.72rem;
	color: var(--tpb-accent-1);
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.tpb-manifest h2 {
	color: #fff;
	margin-bottom: 24px;
	max-width: 780px;
}
.tpb-manifest p {
	color: #9fa7b2;
	font-size: 1.02rem;
	line-height: 1.85;
	max-width: 780px;
	margin-bottom: 18px;
}

/* ---------- 26. Contact specific ---------- */
.tpb-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 48px;
	margin-bottom: 60px;
}
.tpb-contact-card {
	background: var(--tpb-surface);
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius-md);
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.tpb-contact-card h3 {
	margin-bottom: 4px;
}
.tpb-contact-card .tpb-mono {
	color: var(--tpb-accent-1);
	margin-bottom: 8px;
}
.tpb-contact-item {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var(--tpb-line);
}
.tpb-contact-item:last-child {
	border-bottom: none;
}
.tpb-contact-item i {
	width: 42px;
	height: 42px;
	border: 1px solid var(--tpb-accent-1);
	color: var(--tpb-accent-1);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.tpb-contact-item strong {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--tpb-text-muted);
	margin-bottom: 4px;
}
.tpb-contact-item a,
.tpb-contact-item span {
	color: var(--tpb-text);
	font-size: 0.95rem;
}
.tpb-contact-item a:hover {
	color: var(--tpb-accent-1);
}

/* ---------- 27. Animations ---------- */
@keyframes tpbPulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.08);
		opacity: 0.85;
	}
}
.tpb-pulse {
	animation: tpbPulse 2.4s var(--tpb-ease) infinite;
}

@keyframes tpbFloatY {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

.tpb-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s var(--tpb-ease);
}
.tpb-reveal.tpb-in {
	opacity: 1;
	transform: none;
}

/* ---------- 28. Utility ---------- */
.tpb-hide {
	display: none !important;
}
.tpb-text-accent {
	color: var(--tpb-accent-1);
}
.tpb-text-secondary {
	color: var(--tpb-accent-2);
}
.tpb-divider {
	height: 1px;
	background: var(--tpb-line);
	margin: 60px 0;
	position: relative;
}
.tpb-divider::before {
	content: '◇';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: var(--tpb-bg);
	color: var(--tpb-accent-1);
	padding: 0 14px;
}

/* ---------- 29. Tooltip ---------- */
.tpb-tip {
	position: relative;
	display: inline-block;
	cursor: help;
}
.tpb-tip::after {
	content: attr(data-tip);
	position: absolute;
	bottom: 130%;
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	background: #0e1318;
	color: #fff;
	padding: 8px 12px;
	border-radius: var(--tpb-radius-xs);
	font-size: 0.7rem;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: all 0.25s var(--tpb-ease);
}
.tpb-tip:hover::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* ---------- 31. Spectroscopy section bg ---------- */
.tpb-spectroscopy {
	background: linear-gradient(180deg, var(--tpb-bg) 0%, #ffffff 100%);
}

/* ---------- 32. Number callout ---------- */
.tpb-numero {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	font-family: var(--tpb-font-head);
}
.tpb-numero strong {
	font-size: 3rem;
	color: var(--tpb-accent-1);
	line-height: 1;
}
.tpb-numero span {
	font-size: 0.78rem;
	color: var(--tpb-text-muted);
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* ---------- 33. Tag chips ---------- */
.tpb-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}
.tpb-chip {
	font-family: var(--tpb-font-body);
	font-size: 0.7rem;
	padding: 6px 12px;
	border: 1px solid var(--tpb-line-strong);
	border-radius: 30px;
	letter-spacing: 0.1em;
	color: var(--tpb-text-muted);
	text-transform: uppercase;
}
.tpb-chip--accent {
	border-color: var(--tpb-accent-1);
	color: var(--tpb-accent-1);
}

/* ---------- 34. Quote ---------- */
.tpb-quote {
	background: #fafbfc;
	border-left: 3px solid var(--tpb-accent-1);
	padding: 30px 36px;
	margin: 30px 0;
	font-family: var(--tpb-font-head);
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--tpb-text);
}
.tpb-quote cite {
	display: block;
	margin-top: 14px;
	font-family: var(--tpb-font-body);
	font-style: normal;
	font-size: 0.76rem;
	color: var(--tpb-text-muted);
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

/* ---------- 35. Backdrop overlay (mobile nav) ---------- */
.tpb-overlay {
	position: fixed;
	inset: 0;
	background: rgba(14, 19, 24, 0.45);
	backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s var(--tpb-ease);
	z-index: 95;
}
.tpb-overlay.tpb-show {
	opacity: 1;
	pointer-events: auto;
}

/* ---------- 36. Scroll anchor ---------- */
[id] {
	scroll-margin-top: 120px;
}

/* ---------- 37. Selection ---------- */
::selection {
	background: var(--tpb-accent-1);
	color: #fff;
}

/* ---------- 38. Print fallback ---------- */
@media print {
	.tpb-header,
	.tpb-footer,
	.tpb-cookie,
	.tpb-depth,
	.tpb-topline {
		display: none;
	}
	body {
		background: #fff;
	}
}

/* ---------- 39. Misc spacing ---------- */
.tpb-mb-s {
	margin-bottom: 16px;
}
.tpb-mb-m {
	margin-bottom: 28px;
}
.tpb-mb-l {
	margin-bottom: 48px;
}
.tpb-mt-s {
	margin-top: 16px;
}
.tpb-mt-m {
	margin-top: 28px;
}
.tpb-mt-l {
	margin-top: 48px;
}

/* ---------- 40. Final guard ---------- */
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}

/* ---------- 41. Extra atmosphere utilities ---------- */
.tpb-marker {
	display: inline-block;
	padding: 2px 8px;
	background: linear-gradient(
		120deg,
		rgba(200, 90, 50, 0.18),
		rgba(200, 90, 50, 0.05)
	);
	color: var(--tpb-accent-1);
	border-radius: var(--tpb-radius-xs);
	font-family: var(--tpb-font-body);
	font-size: 0.78rem;
	letter-spacing: 0.06em;
}
.tpb-marker--green {
	background: linear-gradient(
		120deg,
		rgba(42, 111, 96, 0.18),
		rgba(42, 111, 96, 0.05)
	);
	color: var(--tpb-accent-2);
}
.tpb-kbd {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 22px;
	padding: 0 7px;
	border: 1px solid var(--tpb-line-strong);
	border-bottom-width: 2px;
	border-radius: 4px;
	background: #fafbfc;
	font-family: var(--tpb-font-body);
	font-size: 0.72rem;
	color: var(--tpb-text);
}

/* ---------- 42. Page hero accent grid ---------- */
.tpb-page-hero::after {
	content: '';
	position: absolute;
	right: -120px;
	top: -120px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(200, 90, 50, 0.1), transparent 70%);
	pointer-events: none;
}
.tpb-page-hero::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--tpb-accent-1),
		transparent
	);
	opacity: 0.6;
}

/* ---------- 43. Hero text gradient on highlight ---------- */
.tpb-hero h1 em::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6px;
	height: 8px;
	background: rgba(200, 90, 50, 0.18);
	z-index: -1;
}

/* ---------- 44. Form focused outline polish ---------- */
.tpb-field input:focus-visible,
.tpb-field textarea:focus-visible {
	outline-offset: 0;
}

/* ---------- 45. Hover lift utility ---------- */
.tpb-lift {
	transition:
		transform var(--tpb-dur),
		box-shadow var(--tpb-dur);
}
.tpb-lift:hover {
	transform: translateY(-3px);
	box-shadow: var(--tpb-shadow-md);
}

/* ---------- 46. Soft section break ---------- */
.tpb-soft-break {
	position: relative;
	margin: 120px 0 0;
}
.tpb-soft-break::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 140px;
	height: 1px;
	background: var(--tpb-accent-1);
}

/* ---------- 47. Inline ticker ---------- */
.tpb-ticker {
	display: flex;
	gap: 24px;
	font-family: var(--tpb-font-body);
	font-size: 0.78rem;
	color: var(--tpb-text-muted);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 18px 0;
	border-top: 1px solid var(--tpb-line);
	border-bottom: 1px solid var(--tpb-line);
	overflow: hidden;
}
.tpb-ticker span {
	white-space: nowrap;
}
.tpb-ticker em {
	color: var(--tpb-accent-1);
	font-style: normal;
}

/* ---------- 48. Index counter helper ---------- */
.tpb-counter {
	counter-reset: tpb-c;
	display: grid;
	gap: 14px;
}
.tpb-counter > *::before {
	counter-increment: tpb-c;
	content: counter(tpb-c, decimal-leading-zero) ' · ';
	color: var(--tpb-accent-1);
	font-family: var(--tpb-font-body);
	margin-right: 6px;
}

/* ---------- 49. Glow on hover for atlas ---------- */
.tpb-atlas__card:hover .tpb-atlas__props strong {
	color: var(--tpb-accent-2);
}

/* ---------- 50. Subtle floating animation for logo mark ---------- */
.tpb-logo:hover .tpb-logo__mark {
	animation: tpbFloatY 1.8s ease-in-out infinite;
}

/* ---------- 51. Smooth nav underline on mobile ---------- */
@media (max-width: 760px) {
	.tpb-mobile-nav__index {
		font-size: 0.6rem;
	}
	.tpb-hero {
		padding: 80px 0 60px;
		min-height: auto;
	}
	.tpb-hero__stats {
		margin-top: 48px;
	}
	.tpb-page-hero {
		padding: 60px 0 50px;
	}
	.tpb-table th,
	.tpb-table td {
		padding: 14px 16px;
		font-size: 0.82rem;
	}
	.tpb-section-head {
		margin-bottom: 36px;
	}
	.tpb-cases__panel {
		padding: 28px 22px;
		min-height: auto;
	}
}

/* ---------- 52. Wide screen tuning ---------- */
@media (min-width: 1500px) {
	:root {
		--tpb-container: 1320px;
	}
	.tpb-hero h1 {
		font-size: 5rem;
	}
}

/* ---------- 53. High-contrast safety ---------- */
@media (prefers-contrast: more) {
	:root {
		--tpb-line: #9ca3ab;
		--tpb-line-strong: #5c6470;
		--tpb-text-muted: #2a2f37;
	}
}

/* ---------- 54. Final tail ---------- */
.tpb-end {
	text-align: center;
	font-family: var(--tpb-font-body);
	font-size: 0.72rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--tpb-text-muted);
	padding: 40px 0 0;
}
.tpb-end::before,
.tpb-end::after {
	content: '— —';
	margin: 0 14px;
	color: var(--tpb-accent-1);
}

/* ---------- 30. Responsive ---------- */
@media (max-width: 1100px) {
	.tpb-atlas {
		grid-template-columns: repeat(6, 1fr);
	}
	.tpb-atlas__card--w6,
	.tpb-atlas__card--w4,
	.tpb-atlas__card--w8 {
		grid-column: span 6;
	}
	.tpb-atlas__card--w12 {
		grid-column: span 6;
	}
	.tpb-cases {
		grid-template-columns: 1fr;
	}
	.tpb-cases__panel {
		position: static;
	}
	.tpb-form-section {
		grid-template-columns: 1fr;
	}
	.tpb-map {
		min-height: 380px;
	}
	.tpb-contact-grid {
		grid-template-columns: 1fr;
	}
	.tpb-page-hero__inner {
		grid-template-columns: 1fr;
	}
	.tpb-page-hero__meta {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 24px;
	}
	.tpb-article {
		grid-template-columns: 1fr;
	}
	.tpb-article__aside {
		position: static;
		border-top: none;
		border-left: 2px solid var(--tpb-accent-1);
		padding: 0 0 0 14px;
	}
	.tpb-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
	.tpb-quad {
		grid-template-columns: repeat(2, 1fr);
	}
	.tpb-vtabs {
		grid-template-columns: 1fr;
		padding: 18px;
	}
	.tpb-vtabs__head {
		border-right: none;
		border-bottom: 1px solid var(--tpb-line);
		padding: 0 0 14px;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.tpb-vtabs__btn {
		border-left: none;
		border-bottom: 2px solid transparent;
	}
	.tpb-vtabs__btn.tpb-active {
		border-left: none;
		border-bottom-color: var(--tpb-accent-1);
	}
	.tpb-checklist__row,
	.tpb-checklist__row.tpb-reverse {
		grid-template-columns: 1fr;
		direction: ltr;
	}
	.tpb-tabs__pane.tpb-active {
		grid-template-columns: 1fr;
	}
	.tpb-tabs__head {
		grid-template-columns: 1fr;
	}
	.tpb-tabs__btn {
		border-right: none;
		border-bottom: 1px solid var(--tpb-line);
	}

	.tpb-nav {
		display: none;
	}
	.tpb-burger {
		display: flex;
	}
}

@media (max-width: 760px) {
	.tpb-section {
		padding: 80px 0;
	}
	.tpb-topline__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 12px 20px;
	}
	.tpb-topline {
		font-size: 0.65rem;
	}

	.tpb-depth {
		display: none;
	}
	.tpb-hero__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.tpb-hero__meta {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 18px;
		border-left: none;
		border-top: 2px solid var(--tpb-accent-1);
		padding: 14px 0 0;
	}
	.tpb-hero__stats {
		grid-template-columns: repeat(2, 1fr);
	}
	.tpb-section-head {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.tpb-timeline::before {
		left: 24px;
	}
	.tpb-timeline__row {
		grid-template-columns: 48px 1fr;
		gap: 16px;
	}
	.tpmin-timeline__row,
	.tpb-timeline__row:nth-child(even) .tpb-timeline__card,
	.tpb-timeline__row:nth-child(odd) .tpb-timeline__card {
		grid-column: 2;
		text-align: left;
	}
	.tpb-timeline__node {
		width: 42px;
		height: 42px;
		justify-self: start;
		position: absolute;
		left: 3px;
	}
	.tpb-manifest {
		padding: 50px 28px;
	}
	.tpb-manifest::before {
		font-size: 5rem;
		right: 24px;
	}
	.tpb-quad {
		grid-template-columns: 1fr;
	}
	.tpb-atlas {
		grid-template-columns: 1fr;
	}
	.tpb-atlas__card--w6,
	.tpb-atlas__card--w4,
	.tpb-atlas__card--w8,
	.tpb-atlas__card--w12 {
		grid-column: span 1;
	}
	.tpb-footer__grid {
		grid-template-columns: 1fr;
	}
	.tpb-footer {
		padding: 60px 0 0;
	}
	.tpb-carousel__slide {
		padding: 36px 28px;
	}
	.tpb-cookie {
		flex-direction: column;
		align-items: flex-start;
		padding: 18px;
	}
	.tpb-form,
	.tpb-contact-card {
		padding: 28px 22px;
	}
	.tpb-tabs__body {
		padding: 30px 22px;
	}
}

@media (max-width: 480px) {
	.tpb-topline {
		display: none;
	}

	.tpb-hero__main h1 {
		font-size: 2rem !important;
	}

	.tpb-timeline__title {
		word-break: break-all;
	}

	.tpb-form-section,
	.tpb-contact-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
	.tpb-logo {
		font-size: 1rem;
	}

	.tpb-section-head__title h2 {
		word-break: break-all;
	}

	.tpb-carousel__controls {
		flex-direction: column;
		gap: 2rem;
	}

	.tpb-steps__item {
		grid-template-columns: 1fr;
	}
}

:root {
	--tpb-bg: #f7f9fa;
	--tpb-white: #ffffff;
	--tpb-copper: #c85a32;
	--tpb-malachite: #2a6f60;
	--tpb-graphite: #1e2229;
	--tpb-stone: #5c6470;
	--tpb-line: #dde3e8;
	--tpb-glass: rgba(255, 255, 255, 0.72);
	--tpb-radius: 2px;
	--tpb-shadow:
		0 1px 3px rgba(30, 34, 41, 0.07), 0 4px 20px rgba(30, 34, 41, 0.05);
}

.tpb-legal-wrapper {
	max-width: 860px;
	margin: 0 auto;
	padding: 72px 32px 96px;
}

/* ── Hero / Banner ───────────────────────────────── */
.tpb-legal-hero {
	position: relative;
	padding: 56px 0 40px;
	margin-bottom: 56px;
	border-bottom: 1px solid var(--tpb-line);
}

.tpb-legal-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -32px;
	right: -32px;
	height: 3px;
	background: linear-gradient(90deg, var(--tpb-copper), var(--tpb-malachite));
}

.tpb-legal-label {
	display: inline-block;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--tpb-copper);
	background: rgba(200, 90, 50, 0.08);
	border: 1px solid rgba(200, 90, 50, 0.2);
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.tpb-legal-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 300;
	color: var(--tpb-graphite);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}

.tpb-legal-title span {
	color: var(--tpb-copper);
}

.tpb-legal-meta {
	font-size: 0.82rem;
	color: var(--tpb-stone);
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.tpb-legal-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.tpb-legal-meta-item::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--tpb-stone);
	opacity: 0.5;
}

/* ── Nav Links ───────────────────────────────────── */
.tpb-legal-nav {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 56px;
	padding: 20px 24px;
	background: var(--tpb-white);
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius);
}

.tpb-legal-nav a {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--tpb-stone);
	text-decoration: none;
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid transparent;
	transition: all 0.2s ease;
	letter-spacing: 0.02em;
}

.tpb-legal-nav a:hover,
.tpb-legal-nav a.tpb-active {
	color: var(--tpb-copper);
	border-color: rgba(200, 90, 50, 0.3);
	background: rgba(200, 90, 50, 0.05);
}

/* ── Section ─────────────────────────────────────── */
.tpb-legal-section {
	margin-bottom: 40px;
	padding: 36px 40px;
	background: var(--tpb-white);
	border: 1px solid var(--tpb-line);
	border-radius: var(--tpb-radius);
	box-shadow: var(--tpb-shadow);
	position: relative;
	transition: box-shadow 0.25s ease;
}

.tpb-legal-section:hover {
	box-shadow:
		0 2px 8px rgba(30, 34, 41, 0.1),
		0 8px 32px rgba(30, 34, 41, 0.07);
}

.tpb-legal-section-num {
	position: absolute;
	top: 36px;
	right: 40px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 3.5rem;
	font-weight: 300;
	color: var(--tpb-line);
	line-height: 1;
	user-select: none;
}

.tpb-legal-section-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	font-size: 1rem;
	flex-shrink: 0;
}

.tpb-icon-copper {
	background: rgba(200, 90, 50, 0.1);
	color: var(--tpb-copper);
}

.tpb-icon-malachite {
	background: rgba(42, 111, 96, 0.1);
	color: var(--tpb-malachite);
}

.tpb-legal-section h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--tpb-graphite);
	margin-bottom: 14px;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.tpb-legal-section p {
	font-size: 0.9rem;
	color: var(--tpb-stone);
	margin-bottom: 10px;
	line-height: 1.75;
}

.tpb-legal-section p:last-child {
	margin-bottom: 0;
}

.tpb-legal-section ul {
	list-style: none;
	margin-top: 10px;
}

.tpb-legal-section ul li {
	font-size: 0.88rem;
	color: var(--tpb-stone);
	padding: 6px 0 6px 20px;
	position: relative;
	border-bottom: 1px solid var(--tpb-bg);
	line-height: 1.65;
}

.tpb-legal-section ul li:last-child {
	border-bottom: none;
}

.tpb-legal-section ul li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--tpb-copper);
	font-size: 0.75rem;
	top: 8px;
}

/* ── Highlight Box ───────────────────────────────── */
.tpb-legal-highlight {
	margin-top: 16px;
	padding: 14px 18px;
	background: linear-gradient(
		135deg,
		rgba(42, 111, 96, 0.06),
		rgba(200, 90, 50, 0.04)
	);
	border-left: 3px solid var(--tpb-malachite);
	border-radius: 0 var(--tpb-radius) var(--tpb-radius) 0;
	font-size: 0.85rem;
	color: var(--tpb-graphite);
	line-height: 1.65;
}

/* ── Cookie Table ────────────────────────────────── */
.tpb-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 16px;
	font-size: 0.82rem;
}

.tpb-legal-table th {
	text-align: left;
	font-weight: 500;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tpb-stone);
	padding: 8px 12px;
	border-bottom: 2px solid var(--tpb-line);
	background: var(--tpb-bg);
}

.tpb-legal-table td {
	padding: 10px 12px;
	color: var(--tpb-stone);
	border-bottom: 1px solid var(--tpb-line);
	vertical-align: top;
	line-height: 1.5;
}

.tpb-legal-table tr:last-child td {
	border-bottom: none;
}

.tpb-tag {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 500;
	padding: 2px 8px;
	border-radius: 10px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tpb-tag-required {
	background: rgba(200, 90, 50, 0.1);
	color: var(--tpb-copper);
}

.tpb-tag-optional {
	background: rgba(42, 111, 96, 0.1);
	color: var(--tpb-malachite);
}

/* ── Contact Block ───────────────────────────────── */
.tpb-legal-contact {
	margin-top: 48px;
	padding: 32px 40px;
	background: linear-gradient(135deg, #1e2229 0%, #2a3340 100%);
	border-radius: var(--tpb-radius);
	position: relative;
	overflow: hidden;
}

.tpb-legal-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--tpb-copper), var(--tpb-malachite));
}

.tpb-legal-contact h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	font-weight: 300;
	color: #fff;
	margin-bottom: 20px;
}

.tpb-legal-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.tpb-legal-contact-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tpb-legal-contact-item .tpb-contact-label {
	font-size: 0.68rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 500;
}

.tpb-legal-contact-item a,
.tpb-legal-contact-item span {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color 0.2s;
}

.tpb-legal-contact-item a:hover {
	color: var(--tpb-copper);
}

/* ── Divider Rule ────────────────────────────────── */
.tpb-rule {
	border: none;
	height: 1px;
	background: var(--tpb-line);
	margin: 40px 0;
}

/* ── Animations ──────────────────────────────────── */
@keyframes tpb-fade-up {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tpb-legal-hero {
	animation: tpb-fade-up 0.5s ease both;
}
.tpb-legal-nav {
	animation: tpb-fade-up 0.5s 0.1s ease both;
}
.tpb-legal-section:nth-child(1) {
	animation: tpb-fade-up 0.5s 0.15s ease both;
}
.tpb-legal-section:nth-child(2) {
	animation: tpb-fade-up 0.5s 0.2s ease both;
}
.tpb-legal-section:nth-child(3) {
	animation: tpb-fade-up 0.5s 0.25s ease both;
}
.tpb-legal-section:nth-child(4) {
	animation: tpb-fade-up 0.5s 0.3s ease both;
}
.tpb-legal-section:nth-child(5) {
	animation: tpb-fade-up 0.5s 0.35s ease both;
}
.tpb-legal-section:nth-child(6) {
	animation: tpb-fade-up 0.5s 0.4s ease both;
}
.tpb-legal-contact {
	animation: tpb-fade-up 0.5s 0.45s ease both;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
	.tpb-legal-wrapper {
		padding: 40px 20px 72px;
	}
	.tpb-legal-section {
		padding: 28px 24px;
	}
	.tpb-legal-section-num {
		font-size: 2.5rem;
		top: 28px;
		right: 24px;
	}
	.tpb-legal-contact {
		padding: 28px 24px;
	}
	.tpb-legal-table {
		font-size: 0.78rem;
	}
	.tpb-legal-table th,
	.tpb-legal-table td {
		padding: 7px 8px;
	}

	.tpb-legal-hero::before {
		display: none;
	}
}
