:root {
	--teco-green: #36a852;
	--teco-green-dark: #176b36;
	--teco-green-deep: #0f4f27;
	--teco-green-light: #93d47c;
	--teco-ink: #2f3437;
	--teco-muted: #65706a;
	--teco-line: #dce4dc;
	--teco-bg: #f5f7f4;
	--teco-bg-green: #eef6ee;
	--teco-panel-green: #f7fbf6;
	--teco-white: #ffffff;
	--teco-focus: #0b6fdb;
}

* {
	box-sizing: border-box;
}

body.teco-site {
	margin: 0;
	color: var(--teco-ink);
	background: var(--teco-bg-green);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
}

a {
	color: var(--teco-green-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--teco-focus);
	outline-offset: 2px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.teco-skip-link {
	position: absolute;
	left: -999px;
	top: 1rem;
	z-index: 20;
	padding: .65rem .85rem;
	background: var(--teco-white);
	border: 1px solid var(--teco-green);
}

.teco-skip-link:focus {
	left: 1rem;
}

.teco-header {
	background: var(--teco-white);
	border-bottom: 1px solid var(--teco-line);
	border-top: 6px solid var(--teco-green);
	box-shadow: 0 1px 0 rgba(23, 107, 54, .08);
}

.teco-header__inner,
.teco-footer__inner,
.teco-container {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

.teco-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 82px;
}

.teco-brand {
	display: inline-flex;
	flex-direction: column;
	gap: .25rem;
	text-decoration: none;
	color: var(--teco-ink);
}

.teco-brand__logo {
	width: min(190px, 44vw);
	height: auto;
}

.teco-brand__name {
	color: var(--teco-green);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.teco-brand__owner {
	font-size: .82rem;
	color: var(--teco-muted);
}

.teco-nav-toggle {
	display: none;
}

.teco-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem .95rem;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.teco-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding-inline: .15rem;
	border-bottom: 3px solid transparent;
	color: var(--teco-ink);
	font-weight: 650;
	text-decoration: none;
}

.teco-nav a:hover,
.teco-nav .active > a {
	color: var(--teco-green-dark);
	border-bottom-color: var(--teco-green);
}

.teco-main {
	padding: 2.25rem 0 3.5rem;
	background: linear-gradient(var(--teco-bg-green), var(--teco-bg) 18rem);
}

.teco-band {
	padding: 2rem 0;
	background: var(--teco-white);
	border-top: 1px solid var(--teco-line);
	border-bottom: 1px solid var(--teco-line);
}

.teco-footer {
	padding: 2rem 0;
	color: var(--teco-white);
	background: var(--teco-green-dark);
	border-top: 6px solid var(--teco-green);
}

.teco-footer p {
	max-width: 780px;
	margin: .25rem 0;
}

.teco-footer__company {
	font-weight: 700;
}

.teco-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem .55rem;
	margin: .9rem 0 .65rem;
}

.teco-footer__links a {
	color: var(--teco-white);
	text-underline-offset: .18em;
}

.teco-footer__links a:hover,
.teco-footer__links a:focus {
	color: #dff4e4;
}

.teco-footer__copyright {
	font-size: .92rem;
	opacity: .88;
}

.teco-article,
.teco-products,
.teco-product {
	background: var(--teco-white);
	border: 1px solid var(--teco-line);
	border-top: 4px solid var(--teco-green);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(23, 107, 54, .08);
}

.teco-article,
.teco-products {
	padding: clamp(1.2rem, 3vw, 2rem);
}

.teco-page-heading {
	max-width: 860px;
	margin-bottom: 1.5rem;
}

.teco-page-heading h1,
.teco-article h1,
.teco-product h1 {
	margin: 0 0 .75rem;
	font-size: clamp(2rem, 3vw, 3.15rem);
	line-height: 1.08;
	letter-spacing: 0;
}

.teco-product-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 42%);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	padding: clamp(1.2rem, 3vw, 2.4rem);
	border-bottom: 1px solid var(--teco-line);
	background: var(--teco-panel-green);
}

.teco-product-hero__media {
	margin: 0;
	background: var(--teco-bg);
	border: 1px solid var(--teco-line);
	border-radius: 8px;
	overflow: hidden;
}

.teco-product-hero__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: var(--teco-white);
}

.teco-kicker,
.teco-product-code {
	margin: 0 0 .5rem;
	color: var(--teco-green-dark);
	font-weight: 750;
	text-transform: uppercase;
	font-size: .78rem;
	letter-spacing: .06em;
}

.teco-lead {
	max-width: 760px;
	margin: 0 0 1.2rem;
	color: var(--teco-muted);
	font-size: 1.15rem;
}

.teco-actions,
.teco-product-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	align-items: center;
}

.teco-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: .7rem 1rem;
	border: 1px solid var(--teco-green-dark);
	border-radius: 6px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
}

.teco-button--primary {
	color: var(--teco-white);
	background: var(--teco-green-dark);
	border-color: var(--teco-green-dark);
}

.teco-button--primary:hover {
	background: var(--teco-green-deep);
	border-color: var(--teco-green-deep);
}

.teco-button--secondary {
	color: var(--teco-green-dark);
	background: var(--teco-white);
}

.teco-button--secondary:hover {
	background: var(--teco-panel-green);
}

.teco-section {
	padding: clamp(1.2rem, 3vw, 2.2rem);
	border-bottom: 1px solid var(--teco-line);
}

.teco-section:last-child {
	border-bottom: 0;
}

.teco-section h2 {
	margin: 0 0 1rem;
	padding-left: .7rem;
	border-left: 4px solid var(--teco-green);
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	letter-spacing: 0;
}

.teco-section h3 {
	margin: 0 0 .35rem;
	font-size: 1rem;
	letter-spacing: 0;
}

.teco-richtext > :first-child {
	margin-top: 0;
}

.teco-richtext > :last-child {
	margin-bottom: 0;
}

.teco-list {
	display: grid;
	gap: .55rem;
	margin: 0;
	padding-left: 1.15rem;
}

.teco-list--compact {
	gap: .3rem;
	font-size: .95rem;
}

.teco-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--teco-line);
}

.teco-table th,
.teco-table td {
	padding: .8rem .9rem;
	border-bottom: 1px solid var(--teco-line);
	text-align: left;
	vertical-align: top;
}

.teco-table th {
	width: 32%;
	background: #edf3ed;
	font-weight: 750;
}

.teco-production-grid,
.teco-product-grid {
	display: grid;
	gap: 1rem;
}

.teco-production-grid {
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.teco-fact {
	padding: 1rem;
	background: var(--teco-bg);
	border: 1px solid var(--teco-line);
	border-radius: 8px;
}

.teco-fact p {
	margin: 0;
}

.teco-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}

.teco-gallery__item {
	display: block;
	background: var(--teco-white);
	border: 1px solid var(--teco-line);
	border-radius: 8px;
	overflow: hidden;
}

.teco-gallery__item:hover,
.teco-gallery__item:focus-visible {
	border-color: var(--teco-green);
}

.teco-gallery__item:focus-visible {
	outline: 3px solid rgba(23, 107, 54, .24);
	outline-offset: 3px;
}

.teco-gallery__item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: var(--teco-white);
}

.teco-lightbox {
	width: min(96vw, 1500px);
	height: min(94vh, 1000px);
	max-width: none;
	max-height: none;
	padding: 0;
	border: 1px solid #526057;
	border-radius: 8px;
	background: #111713;
	color: var(--teco-white);
}

.teco-lightbox::backdrop {
	background: rgba(5, 12, 7, .86);
}

.teco-lightbox__panel {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto auto;
	height: 100%;
}

.teco-lightbox__toolbar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: .5rem;
	background: #1a241d;
	border-bottom: 1px solid #526057;
}

.teco-lightbox__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .75rem;
	background: #1a241d;
	border-top: 1px solid #526057;
}

.teco-lightbox__navigation,
.teco-lightbox__zoom {
	display: flex;
	align-items: center;
	gap: .45rem;
}

.teco-lightbox__zoom {
	justify-content: center;
	grid-column: 2;
}

.teco-lightbox__toolbar > .teco-lightbox__button {
	grid-column: 3;
	justify-self: end;
}

.teco-lightbox__controls .teco-lightbox__navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(112px, 1fr));
	width: min(100%, 520px);
}

.teco-lightbox__navigation .teco-lightbox__button {
	width: 100%;
}

.teco-lightbox__button {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid #718077;
	border-radius: 6px;
	background: #263229;
	color: var(--teco-white);
	font: inherit;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.teco-lightbox__button:hover,
.teco-lightbox__button:focus-visible {
	background: var(--teco-green);
	border-color: #b7d9bf;
}

.teco-lightbox__button:focus-visible {
	outline: 2px solid var(--teco-white);
	outline-offset: 2px;
}

.teco-lightbox__button:disabled {
	opacity: .38;
	cursor: default;
}

.teco-lightbox__reset {
	width: 72px;
	font-size: .8rem;
	font-weight: 700;
}

.teco-lightbox__stage {
	min-width: 0;
	min-height: 0;
	overflow: auto;
	overscroll-behavior: contain;
	background: #0b0f0c;
}

.teco-lightbox__canvas {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100%;
	min-height: 100%;
}

.teco-lightbox__canvas img {
	display: block;
	max-width: none;
	max-height: none;
	background: var(--teco-white);
	box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
	cursor: zoom-in;
	user-select: none;
	-webkit-user-drag: none;
}

.teco-lightbox__canvas img:active {
	cursor: zoom-out;
}

.teco-lightbox__canvas img:focus-visible {
	outline: 3px solid var(--teco-green);
	outline-offset: 3px;
}

.teco-lightbox__status {
	margin: 0;
	padding: .45rem .75rem;
	background: #1a241d;
	border-top: 1px solid #526057;
	color: #eef8f0;
	font-size: .82rem;
	text-align: center;
}

.teco-video {
	overflow: hidden;
	max-width: 920px;
	aspect-ratio: 16 / 9;
	background: #101712;
	border: 1px solid var(--teco-line);
	border-radius: 8px;
}

.teco-video iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.teco-downloads {
	display: grid;
	gap: .5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.teco-downloads a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	font-weight: 700;
}

.teco-product-grid {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.teco-product-card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	background: var(--teco-white);
	border: 1px solid var(--teco-line);
	border-top: 4px solid var(--teco-green);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(23, 107, 54, .07);
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.teco-product-card:hover {
	border-color: #bfe3c3;
	box-shadow: 0 14px 32px rgba(23, 107, 54, .12);
	transform: translateY(-2px);
}

.teco-product-card__media {
	display: block;
	min-height: 190px;
	background: var(--teco-panel-green);
}

.teco-product-card__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: var(--teco-white);
}

.teco-product-card__body,
.teco-product-card__actions {
	padding: 1rem;
}

.teco-product-card__body h2 {
	margin: .2rem 0 .65rem;
	font-size: 1.25rem;
	line-height: 1.25;
	letter-spacing: 0;
}

.teco-product-card__body h2 a {
	color: var(--teco-ink);
	text-decoration: none;
}

.teco-product-card__body p {
	margin: 0 0 .75rem;
	color: var(--teco-muted);
}

.teco-product-card__actions {
	padding-top: 0;
}

@media (max-width: 760px) {
	.teco-product-hero {
		grid-template-columns: 1fr;
	}

	.teco-header__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: .75rem;
		width: min(100% - 24px, 1180px);
		min-height: 0;
		padding: .7rem 0;
	}

	.teco-brand {
		min-width: 0;
	}

	.teco-brand__logo {
		width: min(150px, 52vw);
	}

	.teco-brand__owner {
		display: none;
	}

	.teco-nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: .45rem;
		min-width: 92px;
		min-height: 48px;
		padding: .5rem .75rem;
		border: 1px solid var(--teco-green);
		border-radius: 6px;
		background: var(--teco-white);
		color: var(--teco-green-dark);
		font: inherit;
		font-weight: 750;
		cursor: pointer;
	}

	.teco-nav-toggle:hover,
	.teco-nav-toggle:focus-visible,
	.teco-nav-toggle[aria-expanded="true"] {
		background: var(--teco-green);
		color: var(--teco-white);
	}

	.teco-nav-toggle:focus-visible {
		outline: 3px solid rgba(23, 107, 54, .24);
		outline-offset: 3px;
	}

	.teco-nav-toggle__icon {
		display: inline-grid;
		place-items: center;
		width: 1.15rem;
		font-size: 1.3rem;
		line-height: 1;
	}

	.teco-nav {
		grid-column: 1 / -1;
		width: 100%;
		border-top: 1px solid var(--teco-line);
	}

	.teco-header.teco-menu-ready .teco-nav:not(.is-open) {
		display: none;
	}

	.teco-nav ul {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		padding-top: .25rem;
	}

	.teco-nav a {
		width: 100%;
		min-height: 46px;
		padding: .55rem .25rem;
		border-bottom: 1px solid var(--teco-line);
		border-left: 3px solid transparent;
	}

	.teco-nav a:hover,
	.teco-nav .active > a {
		border-bottom-color: var(--teco-line);
		border-left-color: var(--teco-green);
	}

	.teco-product-hero {
		padding: 1rem;
	}

	.teco-section,
	.teco-article,
	.teco-products {
		padding: 1rem;
	}

	.teco-lightbox {
		width: 100vw;
		height: 100dvh;
		border: 0;
		border-radius: 0;
	}

	.teco-lightbox__toolbar {
		padding: .45rem;
	}

	.teco-lightbox__controls {
		padding: .6rem;
	}

	.teco-lightbox__button {
		width: 48px;
		height: 48px;
	}

	.teco-lightbox__reset {
		width: 64px;
	}

	.teco-table,
	.teco-table tbody,
	.teco-table tr,
	.teco-table th,
	.teco-table td {
		display: block;
		width: 100%;
	}

	.teco-table th {
		border-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.teco-product-card {
		transition: none;
	}

	.teco-product-card:hover {
		transform: none;
	}
}
