/*
Theme Name: Trio Glazurnicze i Wnętrza
Theme URI: http://trio-glazurnicze-i-wntrza.local
Author: SGWebDev
Description: Własny motyw dla Trio Glazurnicze i Wnętrza
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trio-glazurnicze
Tags: one-page, custom-menu, custom-logo
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #333333;
	background-color: #ffffff;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0 20px;
	pointer-events: none;
}

@keyframes header-fade-in {
	from {
		opacity: 0;
		transform: translateY(-12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.header-inner {
	max-width: 1200px;
	margin: 25px auto 0;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 100px;
	padding: 15px 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: all;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	animation: header-fade-in 0.6s ease both;
	transition:
		background    0.35s ease,
		box-shadow    0.35s ease,
		margin-top    0.35s ease,
		padding-top   0.35s ease,
		padding-bottom 0.35s ease;
}

.header-inner.scrolled {
	margin-top: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	background: rgba(255, 255, 255, 0.65);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* Logo */
.site-logo {
	flex-shrink: 0;
}

.site-logo img {
	width: 250px;
	height: auto;
	display: block;
	transition: width 0.35s ease;
}

.scrolled .site-logo img {
	width: 190px;
}

/* Navigation */
#primary-navigation {
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-menu li a {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #333333;
	transition: color 0.2s ease, font-size 0.35s ease;
	white-space: nowrap;
}

.scrolled .nav-menu li a {
	font-size: 14px;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
	color: #000000;
}

/* Hamburger button (mobile) */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	flex-direction: column;
	gap: 5px;
	align-items: center;
	justify-content: center;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-dark);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.70);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 1001;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 0 40px;
	gap: 0;
}

.mobile-menu.open {
	display: flex;
}

/* Safety net: ensure list inside overlay is never hidden */
.mobile-menu ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	list-style: none;
}

.mobile-menu a {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-dark);
	transition: color 0.2s ease;
}

.mobile-menu a:hover {
	color: var(--color-primary);
}

.mobile-menu-close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 36px;
	color: var(--color-dark);
	line-height: 1;
	padding: 8px;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
#main-content {
	width: 100%;
}

/* ============================================================
   ANIMACJE SCROLL (Intersection Observer)
   ============================================================ */
@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.js-anim .anim {
	opacity: 0;
}

.js-anim .anim.is-visible {
	animation: fade-in-up 0.65s ease both;
}

.js-anim .anim[data-delay="1"] { animation-delay: 0.1s; }
.js-anim .anim[data-delay="2"] { animation-delay: 0.2s; }
.js-anim .anim[data-delay="3"] { animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
	.js-anim .anim,
	.js-anim .anim.is-visible {
		opacity: 1;
		animation: none;
	}
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

/* Stałe kolorów strony */
:root {
	--color-primary:   #008fff;
	--color-dark:      #0e0c19;
	--color-body:      #3c3a47;
	--color-link:      #22577a;
	--color-accent:    #57cc99;
	--color-white:     #ffffff;
	--color-bg:        #ffffff;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-header {
	margin-bottom: 48px;
}

.section-label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-primary);
	margin-bottom: 12px;
}

.section-heading {
	font-family: 'Abril Fatface', serif;
	font-size: 50px;
	line-height: 1.2;
	font-weight: 400;
	color: var(--color-dark);
	margin: 0;
}

.section-text {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: var(--color-body);
	margin-top: 16px;
}

/* Responsive shared */
@media (max-width: 980px) {
	.section-heading { font-size: 28px; }
	.section-label   { font-size: 13px; }
}
@media (max-width: 480px) {
	.section-heading { font-size: 20px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8vw 20px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
}

.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.60) 44%,
		rgba(0, 0, 0, 0.90) 98%
	);
}

.hero-container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.hero-content {
	max-width: 66.666%;
}

.hero-label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 16px;
}

.hero-heading {
	font-family: 'Abril Fatface', serif;
	font-size: 72px;
	line-height: 1.15;
	font-weight: 400;
	color: #ffffff;
	margin: 0 0 24px;
}

.hero-text {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: #ffffff;
	margin-bottom: 36px;
}

.hero-text p {
	margin: 0;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-btn {
	display: inline-block;
	padding: 12px 28px;
	background: #ffffff;
	color: #22577a;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	border-radius: 100px;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-btn:hover,
.hero-btn:focus {
	opacity: 0.88;
	transform: translateY(-2px);
	color: #22577a;
}

.hero-btn--outline {
	background: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.hero-btn--outline:hover,
.hero-btn--outline:focus {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

/* Scroll-down arrow */
.hero-scroll-down {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: #ffffff;
	text-decoration: none;
	animation: hero-bounce 2s ease-in-out infinite;
	transition: border-color 0.2s ease, background 0.2s ease;
	z-index: 2;
}

.hero-scroll-down:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

.hero-scroll-down svg {
	display: block;
}

@keyframes hero-bounce {
	0%, 100% { transform: translateX(-50%) translateY(0);    opacity: 1;    }
	50%       { transform: translateX(-50%) translateY(10px); opacity: 0.65; }
}

/* ============================================================
   HERO RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
	.hero-content {
		max-width: 100%;
	}

	.hero-heading {
		font-size: 40px;
	}

	.hero-label {
		font-size: 13px;
	}

	.hero-text {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.hero-section {
		padding: 10vw 20px;
		min-height: 90vh;
	}

	.hero-heading {
		font-size: 28px;
	}

	.hero-label {
		font-size: 12px;
	}

	.hero-btn {
		font-size: 13px;
		padding: 11px 22px;
	}
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
	background: #000000;
	color: #ffffff;
	padding: 30px 20px;
	text-align: center;
}

#site-footer p {
	font-size: 14px;
	opacity: 0.9;
}

#site-footer a {
	color: var(--color-primary);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

#site-footer a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
	.nav-menu {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.site-logo img {
		width: 138px;
	}

	.header-inner {
		padding: 12px 24px;
	}
}

@media (max-width: 480px) {
	.header-inner {
		margin-top: 15px;
		padding: 10px 20px;
	}
}

/* ============================================================
   SECTION: NASZE USŁUGI
   ============================================================ */
.section-uslugi {
	background: #f7f8fa;
	padding: 96px 0;
}

.uslugi-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.uslugi-card {
	position: relative;
	border-radius: 50px;
	overflow: hidden;
	min-height: 320px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uslugi-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.uslugi-card__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-color: #1a1a2e;
	z-index: 0;
	transition: transform 0.4s ease;
}

.uslugi-card:hover .uslugi-card__bg {
	transform: scale(1.04);
}

.uslugi-card__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 0, 0, 0.55) 100%
	);
}

.uslugi-card__body {
	position: relative;
	z-index: 1;
	padding: 30px;
	color: #ffffff;
}

.uslugi-card__icon {
	color: #ffffff;
	margin-bottom: 16px;
	opacity: 0.9;
}

.uslugi-card__icon svg {
	width: 44px;
	height: 44px;
	display: block;
}

.uslugi-card__title {
	font-family: 'Abril Fatface', serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 2px;
	color: #ffffff;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.uslugi-card__text {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

/* Usługi responsive */
@media (max-width: 768px) {
	.section-uslugi { padding: 64px 0; }
	.uslugi-grid { grid-template-columns: 1fr; gap: 16px; }
	.uslugi-card { min-height: 260px; }
	.uslugi-card__title { font-size: 18px; letter-spacing: 1px; }
	.uslugi-card__text { font-size: 13px; }
}

@media (max-width: 480px) {
	.uslugi-card { border-radius: 28px; }
	.uslugi-card__body { padding: 20px; }
}

/* ============================================================
   SECTION: O NAS
   ============================================================ */
.section-o-nas {
	background: var(--color-bg);
	padding: 96px 0;
}

.o-nas-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.o-nas-col {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: var(--color-body);
}

.o-nas-col p {
	margin: 0 0 20px;
}

.o-nas-col p:last-child {
	margin-bottom: 0;
}

.o-nas-col a {
	color: var(--color-link);
	text-decoration: underline;
}

.o-nas-col strong {
	font-weight: 700;
	color: var(--color-dark);
}

/* O nas responsive */
@media (max-width: 768px) {
	.section-o-nas {
		padding: 64px 0;
	}

	.o-nas-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.o-nas-col + .o-nas-col {
		margin-top: 20px;
	}
}

@media (max-width: 480px) {
	.section-o-nas {
		padding: 48px 0;
	}

	.o-nas-col {
		font-size: 14px;
	}
}

/* ============================================================
   SECTION: DLACZEGO MY?
   ============================================================ */
.section-dlaczego {
	background: var(--color-bg);
	padding: 96px 0;
}

.dlaczego-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.dlaczego-card {
	background: #ffffff;
	border: 1px solid #e8eaf0;
	border-radius: 24px;
	padding: 36px 28px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dlaczego-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
	border-color: var(--color-primary);
}

.dlaczego-card__icon {
	width: 48px;
	height: 48px;
	background: #e8f4ff;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--color-primary);
	transition: background 0.25s ease;
}

.dlaczego-card:hover .dlaczego-card__icon {
	background: var(--color-primary);
	color: #ffffff;
}

.dlaczego-card__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.dlaczego-card__title {
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--color-dark);
	margin: 0 0 12px;
	line-height: 1.3;
}

.dlaczego-card__text {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: var(--color-body);
	margin: 0;
}

/* Dlaczego responsive */
@media (max-width: 980px) {
	.dlaczego-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.section-dlaczego { padding: 64px 0; }
	.dlaczego-grid { grid-template-columns: 1fr; gap: 16px; }
	.dlaczego-card { padding: 24px 20px; border-radius: 18px; }
}

/* ============================================================
   SECTION: REALIZACJE
   ============================================================ */
.section-realizacje {
	background: #000000;
	padding: 96px 0;
}

.section-header--light .section-label {
	color: var(--color-primary);
}

.section-heading--light {
	color: #ffffff;
}

.section-text--light {
	color: rgba(255, 255, 255, 0.75);
}

/* 4-thumbnail preview grid */
.realizacje-preview {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.realizacje-thumb {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	background: #111;
	aspect-ratio: 4 / 3;
	padding: 0;
	border: none;
	cursor: pointer;
}

.realizacje-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.realizacje-thumb:hover img,
.realizacje-thumb:focus img {
	transform: scale(1.05);
}

.realizacje-thumb__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: #ffffff;
	border-radius: 14px;
}

.realizacje-thumb:hover .realizacje-thumb__overlay,
.realizacje-thumb:focus .realizacje-thumb__overlay {
	opacity: 1;
}

.realizacje-thumb__count {
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
}

.realizacje-footer-text {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	text-align: center;
	margin-top: 36px;
}

/* Realizacje responsive */
@media (max-width: 600px) {
	.section-realizacje { padding: 64px 0; }
	.realizacje-thumb { border-radius: 10px; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.trio-lb {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.trio-lb.is-open {
	display: flex;
}


.trio-lb__close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 40px;
	cursor: pointer;
	line-height: 1;
	opacity: 0.7;
	transition: opacity 0.2s;
	padding: 4px 8px;
}

.trio-lb__close:hover { opacity: 1; }

.trio-lb__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.05em;
}

.trio-lb__stage {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 90vw;
	max-height: 85vh;
}

.trio-lb__stage img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 6px;
	display: block;
}

.trio-lb__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.1);
	border: none;
	color: #ffffff;
	font-size: 48px;
	cursor: pointer;
	padding: 16px 20px;
	line-height: 1;
	border-radius: 8px;
	opacity: 0.7;
	transition: opacity 0.2s, background 0.2s;
}

.trio-lb__nav:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.trio-lb__prev { left: 16px; }
.trio-lb__next { right: 16px; }

/* ============================================================
   SECTION: OBSZAR DZIAŁANIA
   ============================================================ */
.section-obszar {
	background: var(--color-bg);
	padding: 96px 0;
}

.obszar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.obszar-col {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: var(--color-body);
}

.obszar-col p { margin: 0 0 16px; }
.obszar-col p:last-child { margin-bottom: 0; }
.obszar-col strong { font-weight: 700; color: var(--color-dark); }

@media (max-width: 768px) {
	.section-obszar { padding: 64px 0; }
	.obszar-grid { grid-template-columns: 1fr; gap: 20px; }
	.obszar-col { font-size: 15px; }
}

/* ============================================================
   SECTION: CYTAT
   ============================================================ */
.section-cytat {
	background: #f7f8fa;
	padding: 80px 0;
}

.cytat-inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.cytat-icon {
	color: var(--color-link);
	margin-bottom: 24px;
	display: flex;
	justify-content: center;
}

.cytat-text {
	font-family: 'Abril Fatface', serif;
	font-size: 28px;
	line-height: 1.4;
	color: var(--color-dark);
	margin: 0 0 20px;
	font-weight: 400;
	font-style: normal;
}

.cytat-text p { margin: 0; }

.cytat-author {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-body);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-style: normal;
}

@media (max-width: 768px) {
	.section-cytat { padding: 56px 0; }
	.cytat-text { font-size: 20px; }
}

/* ============================================================
   SECTION: KONTAKT
   ============================================================ */
.section-kontakt {
	background: #000000;
	padding: 96px 0;
}

.kontakt-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 8px;
}

.kontakt-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 40px 32px;
	text-align: center;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.kontakt-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(0, 143, 255, 0.4);
}

.kontakt-card__icon {
	display: none;
}

.kontakt-card__name {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--color-primary);
	font-family: 'Abril Fatface', serif;
	font-size: 32px;
	font-weight: 400;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: background 0.25s ease, transform 0.25s ease;
}

.kontakt-card:hover .kontakt-card__name {
	background: #ffffff;
	color: var(--color-primary);
	transform: scale(1.06);
}

.kontakt-card__phone {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
	letter-spacing: 0.02em;
}

.kontakt-card__phone:hover {
	color: var(--color-primary);
}

@media (max-width: 768px) {
	.section-kontakt { padding: 64px 0; }
	.kontakt-grid { grid-template-columns: 1fr; gap: 16px; }
	.kontakt-card { padding: 28px 24px; border-radius: 18px; }
	.kontakt-card__name  { width: 60px; height: 60px; font-size: 26px; }
	.kontakt-card__phone { font-size: 16px; }
}
