:root {
	--tma-primary: #111111;
	--tma-secondary: #6f6f6f;
	--tma-accent: #d7a928;
	--tma-accent-dark: #b88916;
	--tma-text: #333333;
	--tma-muted: #6d7378;
	--tma-border: #e6e6e6;
	--tma-surface: #ffffff;
	--tma-soft: #f7f7f5;
	--tma-footer: #151515;
	--tma-radius: 8px;
	--tma-shadow: 0 14px 35px rgba(17, 17, 17, 0.08);
}

body {
	color: var(--tma-text);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title {
	color: var(--tma-primary);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	letter-spacing: 0;
}

a {
	color: var(--tma-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus {
	color: var(--tma-accent-dark);
}

.ast-custom-button,
.elementor-button,
.wpforms-submit {
	background: var(--tma-accent);
	border: 1px solid var(--tma-accent);
	border-radius: 4px;
	color: #111111;
	font-weight: 700;
	min-height: 44px;
	padding: 12px 22px;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ast-custom-button:hover,
.elementor-button:hover,
.wpforms-submit:hover,
.ast-custom-button:focus,
.elementor-button:focus,
.wpforms-submit:focus {
	background: var(--tma-accent-dark);
	border-color: var(--tma-accent-dark);
	color: #ffffff;
	transform: translateY(-1px);
}

.tma-top-contact-bar {
	background: var(--tma-primary);
	color: #ffffff;
	font-size: 14px;
}

.tma-top-contact-bar a {
	color: #ffffff;
}

.tma-section {
	padding: 72px 0;
}

.tma-section--soft {
	background: var(--tma-soft);
}

.tma-card,
.tma-product-card,
.tma-service-card,
.tma-project-card {
	background: var(--tma-surface);
	border: 1px solid var(--tma-border);
	border-radius: var(--tma-radius);
	box-shadow: var(--tma-shadow);
	height: 100%;
	overflow: hidden;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.tma-card:hover,
.tma-product-card:hover,
.tma-service-card:hover,
.tma-project-card:hover {
	box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
	transform: translateY(-3px);
}

.product-image-wrapper,
.tma-product-image-wrapper {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: #ffffff;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 20px;
	width: 100%;
}

.product-image-wrapper img,
.tma-product-image-wrapper img {
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	width: 100%;
}

.tma-brand-logo {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--tma-border);
	border-radius: var(--tma-radius);
	display: flex;
	justify-content: center;
	min-height: 110px;
	padding: 22px;
}

.tma-brand-logo img {
	height: auto;
	max-height: 72px;
	max-width: 180px;
	object-fit: contain;
	width: auto;
}

.tma-icon-list .elementor-icon-list-item {
	align-items: flex-start;
}

.tma-contact-cta {
	background: var(--tma-primary);
	color: #ffffff;
}

.tma-contact-cta h2,
.tma-contact-cta h3,
.tma-contact-cta p {
	color: #ffffff;
}

.site-footer,
.ast-footer-copyright {
	background: var(--tma-footer);
	color: #d8d8d8;
}

.site-footer a {
	color: #ffffff;
}

.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
	border: 1px solid var(--tma-border);
	border-radius: 4px;
	min-height: 44px;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpforms-field select:focus {
	border-color: var(--tma-accent);
	box-shadow: 0 0 0 3px rgba(215, 169, 40, 0.18);
	outline: none;
}

@media (max-width: 1024px) {
	.tma-section {
		padding: 56px 0;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 16px;
	}

	.tma-section {
		padding: 42px 0;
	}

	.ast-custom-button,
	.elementor-button,
	.wpforms-submit {
		width: 100%;
	}

	.product-image-wrapper,
	.tma-product-image-wrapper {
		padding: 14px;
	}
}

