:root {
	--lg-paper: #f5f7fb;
	--lg-paper-2: #edf2f7;
	--lg-ink: #10131a;
	--lg-text: #2c3442;
	--lg-muted: #657083;
	--lg-red: #ef123d;
	--lg-red-2: #c50f32;
	--lg-cyan: #00a8c8;
	--lg-blue: #102a56;
	--lg-glass: rgba(255, 255, 255, 0.68);
	--lg-glass-strong: rgba(255, 255, 255, 0.84);
	--lg-line: rgba(16, 19, 26, 0.11);
	--lg-line-light: rgba(255, 255, 255, 0.72);
	--lg-shadow: 0 22px 70px rgba(16, 19, 26, 0.12);
	--lg-shadow-soft: 0 12px 34px rgba(16, 19, 26, 0.08);
	--lg-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--lg-radius: 24px;
	--lg-radius-sm: 12px;
	--lg-shell: 1320px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 8% 8%, rgba(239, 18, 61, 0.08), transparent 26rem),
		radial-gradient(circle at 94% 14%, rgba(0, 168, 200, 0.1), transparent 28rem),
		linear-gradient(180deg, #ffffff 0%, #f7f9fc 44%, #ffffff 100%);
	color: var(--lg-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
}

body.lg-no-scroll {
	overflow: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(16, 19, 26, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(16, 19, 26, 0.035) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 72%);
}

a {
	color: var(--lg-red);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: color 180ms var(--lg-ease), background 180ms var(--lg-ease), border-color 180ms var(--lg-ease), box-shadow 180ms var(--lg-ease), transform 180ms var(--lg-ease);
}

a:hover {
	color: var(--lg-red-2);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(0, 168, 200, 0.35);
	outline-offset: 3px;
}

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

.screen-reader-text,
.lg-skip {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.lg-skip:focus {
	top: 12px;
	left: 12px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	color: var(--lg-ink);
	border-radius: 8px;
}

.lg-shell {
	width: min(var(--lg-shell), calc(100% - 32px));
	margin-inline: auto;
}

.lg-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255, 255, 255, 0.78);
	border-bottom: 1px solid var(--lg-line-light);
	box-shadow: 0 12px 34px rgba(16, 19, 26, 0.06);
	backdrop-filter: blur(22px) saturate(160%);
}

.lg-header__inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.lg-brand {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 172px;
}

.lg-brand__link {
	display: block;
	width: fit-content;
	text-decoration: none;
}

.lg-brand__logo {
	display: block;
	width: clamp(150px, 12vw, 202px);
	height: auto;
	max-height: 54px;
	object-fit: contain;
}

.lg-brand__text,
.lg-footer__brand {
	color: var(--lg-ink);
	font-size: clamp(24px, 2vw, 30px);
	line-height: 1;
	font-weight: 880;
	text-decoration: none;
}

.lg-footer__brand {
	display: inline-block;
	width: fit-content;
}

.lg-footer__logo {
	display: block;
	width: min(190px, 100%);
	height: auto;
	filter: drop-shadow(0 10px 22px rgba(16, 19, 26, 0.08));
}

.lg-brand__caption {
	color: var(--lg-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.lg-nav {
	margin-left: auto;
}

.lg-nav__list {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lg-nav__list a {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	padding: 10px 13px;
	border-radius: 999px;
	color: var(--lg-ink);
	font-size: 14px;
	font-weight: 780;
	text-decoration: none;
}

.lg-nav__list a:hover,
.current-menu-item > a {
	background: rgba(239, 18, 61, 0.08);
	color: var(--lg-red);
	box-shadow: inset 0 0 0 1px rgba(239, 18, 61, 0.08);
}

.lg-header__cta,
.lg-btn,
.lg-filter button,
.lg-form button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--lg-radius-sm);
	border: 1px solid transparent;
	padding: 12px 18px;
	font-size: 15px;
	font-weight: 820;
	line-height: 1.15;
	text-decoration: none;
	cursor: pointer;
	transition: transform 180ms var(--lg-ease), background 180ms var(--lg-ease), border-color 180ms var(--lg-ease), box-shadow 180ms var(--lg-ease), color 180ms var(--lg-ease), opacity 180ms var(--lg-ease);
}

.lg-header__cta,
.lg-btn--primary {
	background: linear-gradient(135deg, var(--lg-red), #ff315a);
	color: #fff;
	box-shadow: 0 18px 38px rgba(239, 18, 61, 0.22);
}

.lg-btn--ghost {
	background: rgba(255, 255, 255, 0.7);
	border-color: var(--lg-line);
	color: var(--lg-ink);
	backdrop-filter: blur(16px);
}

.lg-header__cta:hover,
.lg-btn--primary:hover,
.lg-form button:hover {
	background: linear-gradient(135deg, #d90f36, #ff4166);
	color: #fff;
	box-shadow: 0 22px 46px rgba(239, 18, 61, 0.3);
	transform: translateY(-2px);
}

.lg-btn--ghost:hover,
.lg-filter button:hover,
.lg-mobile-cta a:hover {
	border-color: rgba(0, 168, 200, 0.28);
	background: rgba(255, 255, 255, 0.92);
	color: var(--lg-blue);
	box-shadow: 0 14px 32px rgba(16, 19, 26, 0.1);
	transform: translateY(-2px);
}

.lg-header__cta:active,
.lg-btn:active,
.lg-filter button:active,
.lg-form button:active,
.lg-mobile-cta a:active {
	transform: translateY(0) scale(0.99);
	box-shadow: 0 8px 20px rgba(16, 19, 26, 0.09);
}

.lg-nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border: 1px solid var(--lg-line);
	border-radius: 12px;
	background: var(--lg-glass);
}

.lg-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--lg-ink);
}

.lg-main {
	min-height: 60vh;
}

.lg-hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 24%, rgba(0, 168, 200, 0.1), transparent 30rem),
		radial-gradient(circle at 18% 22%, rgba(239, 18, 61, 0.07), transparent 26rem),
		linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.lg-hero::before {
	content: "";
	position: absolute;
	inset: 7% 4% auto auto;
	width: min(42vw, 520px);
	aspect-ratio: 1;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(0, 168, 200, 0.22), transparent 68%);
	filter: blur(2px);
}

.lg-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
	gap: 48px;
	align-items: center;
	padding: 86px 0;
}

.lg-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	margin: 0 0 16px;
	padding: 8px 12px;
	border: 1px solid rgba(0, 168, 200, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.62);
	color: var(--lg-blue);
	font-size: 12px;
	line-height: 1.15;
	font-weight: 820;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(14px);
	overflow-wrap: anywhere;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--lg-ink);
	letter-spacing: 0;
}

h1 {
	max-width: 930px;
	font-size: clamp(36px, 4.35vw, 60px);
	line-height: 1.04;
	font-weight: 820;
}

h2 {
	max-width: 820px;
	font-size: clamp(28px, 2.85vw, 42px);
	line-height: 1.1;
	font-weight: 780;
}

h3 {
	font-size: clamp(20px, 1.55vw, 24px);
	line-height: 1.2;
	font-weight: 760;
}

.lg-hero__copy > p:not(.lg-kicker),
.lg-section > .lg-shell > p:not(.lg-kicker),
.lg-section-intro,
.lg-final-cta > p {
	max-width: 760px;
	color: var(--lg-text);
	font-size: clamp(17px, 1.25vw, 19px);
}

.lg-split h1 {
	font-size: clamp(35px, 3.65vw, 54px);
	line-height: 1.05;
}

.lg-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.lg-hero__panel,
.lg-hero__visual figure,
.lg-glass-card,
.lg-form,
.lg-steps > div,
.lg-faq details,
.lg-contact-card {
	border: 1px solid var(--lg-line-light);
	border-radius: var(--lg-radius);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
	box-shadow: var(--lg-shadow);
	backdrop-filter: blur(22px) saturate(150%);
}

.lg-hero__panel {
	display: grid;
	gap: 14px;
	padding: 18px;
}

.lg-hero__visual {
	display: grid;
	gap: 16px;
}

.lg-hero__visual figure {
	position: relative;
	margin: 0;
	padding: 12px;
	overflow: hidden;
}

.lg-hero__visual img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	border-radius: 18px;
}

.lg-hero__visual figcaption {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--lg-ink);
	font-size: 14px;
	font-weight: 780;
	backdrop-filter: blur(14px);
}

.lg-hero__proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.lg-stat {
	min-width: 0;
	padding: 16px 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.64);
	border: 1px solid var(--lg-line-light);
}

.lg-stat strong {
	display: block;
	max-width: 100%;
	color: var(--lg-ink);
	font-size: clamp(20px, 1.55vw, 28px);
	line-height: 1;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: auto;
}

.lg-stat span {
	display: block;
	margin-top: 8px;
	color: var(--lg-muted);
	font-size: 14px;
	font-weight: 680;
}

.lg-section {
	padding: clamp(54px, 6vw, 86px) 0;
}

.lg-section--intro {
	padding: clamp(68px, 7vw, 104px) 0 clamp(50px, 5vw, 74px);
}

.lg-section--tight {
	padding-top: clamp(42px, 5vw, 68px);
}

.lg-signal-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.lg-signal-strip > a,
.lg-signal-strip > div {
	min-height: 136px;
	padding: 18px;
	border: 1px solid var(--lg-line-light);
	border-radius: 20px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46));
	color: var(--lg-text);
	text-decoration: none;
	box-shadow: var(--lg-shadow-soft);
	backdrop-filter: blur(18px) saturate(150%);
}

.lg-signal-strip span {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--lg-red);
	font-size: 12px;
	font-weight: 820;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.lg-signal-strip strong {
	display: block;
	color: var(--lg-ink);
	font-size: 18px;
	line-height: 1.18;
}

.lg-signal-strip p {
	margin: 8px 0 0;
	color: var(--lg-muted);
	font-size: 14px;
	line-height: 1.45;
}

.lg-section--dark {
	background:
		radial-gradient(circle at 16% 0%, rgba(239, 18, 61, 0.055), transparent 25rem),
		radial-gradient(circle at 86% 10%, rgba(0, 168, 200, 0.055), transparent 25rem),
		linear-gradient(180deg, rgba(247, 249, 252, 0.82), rgba(255, 255, 255, 0.96));
}

.lg-section--cta {
	padding-top: 0;
}

.lg-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.lg-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.lg-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lg-glass-card {
	min-height: 255px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	color: var(--lg-text);
	text-decoration: none;
}

.lg-glass-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 72px rgba(16, 19, 26, 0.15);
}

.lg-glass-card span {
	color: var(--lg-red);
	font-size: 12px;
	font-weight: 820;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.lg-glass-card p,
.lg-steps p,
.lg-faq p,
.lg-footer li,
.lg-footer p {
	color: var(--lg-muted);
}

.lg-split {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 48px;
	align-items: start;
}

.lg-steps {
	display: grid;
	gap: 16px;
}

.lg-steps > div {
	padding: 24px;
}

.lg-steps span {
	color: var(--lg-red);
	font-size: 13px;
	font-weight: 820;
}

.lg-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0;
}

.lg-link-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 24px;
}

.lg-link-grid a {
	min-height: 64px;
	display: flex;
	align-items: center;
	padding: 14px 16px;
	border: 1px solid var(--lg-line-light);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.68);
	color: var(--lg-ink);
	font-weight: 760;
	text-decoration: none;
	box-shadow: var(--lg-shadow-soft);
	backdrop-filter: blur(16px);
}

.lg-link-grid a:hover {
	border-color: rgba(239, 18, 61, 0.2);
	background: rgba(255, 255, 255, 0.88);
	color: var(--lg-red);
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(16, 19, 26, 0.12);
}

.lg-seo-grid,
.lg-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.lg-seo-card,
.lg-blog-card,
.lg-price-list > div {
	border: 1px solid var(--lg-line-light);
	border-radius: var(--lg-radius);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5));
	box-shadow: var(--lg-shadow-soft);
	backdrop-filter: blur(18px) saturate(150%);
}

.lg-seo-card,
.lg-blog-card {
	padding: clamp(22px, 3vw, 30px);
}

.lg-seo-card p:not(.lg-kicker),
.lg-blog-card p:not(.lg-kicker) {
	color: var(--lg-text);
	font-size: 17px;
}

.lg-blog-card h2 {
	font-size: clamp(24px, 2vw, 30px);
}

.lg-blog-card h2 a {
	color: var(--lg-ink);
	text-decoration: none;
}

.lg-blog-card h2 a:hover {
	color: var(--lg-red);
}

.lg-price-list {
	display: grid;
	gap: 12px;
}

.lg-price-list--wide {
	max-width: 980px;
}

.lg-price-list > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 20px;
}

.lg-price-list strong {
	color: var(--lg-ink);
	font-size: 18px;
	line-height: 1.25;
}

.lg-price-list span {
	color: var(--lg-muted);
	font-size: 15px;
	font-weight: 700;
	text-align: right;
}

.lg-filter button {
	min-height: 44px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.48));
	color: var(--lg-ink);
	border-color: var(--lg-line-light);
	box-shadow: var(--lg-shadow-soft);
	backdrop-filter: blur(14px) saturate(150%);
}

.lg-filter button.is-active {
	background: linear-gradient(135deg, var(--lg-ink), var(--lg-blue));
	color: #fff;
	border-color: rgba(255, 255, 255, 0.28);
	box-shadow: 0 18px 38px rgba(16, 19, 26, 0.16);
}

.lg-filter button.is-active:hover {
	background: var(--lg-blue);
	color: #fff;
}

.lg-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.lg-foogallery-wrap {
	margin-top: 28px;
}

.lg-foogallery-wrap .foogallery {
	--fg-gutter: 16px;
	margin: 0 !important;
}

.lg-foogallery-wrap .fg-item,
.lg-foogallery-wrap .fg-thumb,
.lg-foogallery-wrap .fg-image-wrap {
	border-radius: var(--lg-radius) !important;
}

.lg-foogallery-wrap .fg-item {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--lg-line-light);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44));
	box-shadow: var(--lg-shadow-soft);
	backdrop-filter: blur(18px) saturate(150%);
	transition: transform 220ms var(--lg-ease), box-shadow 220ms var(--lg-ease), border-color 220ms var(--lg-ease);
}

.lg-foogallery-wrap .fg-item[hidden] {
	display: none !important;
}

.lg-foogallery-wrap .fg-item:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 168, 200, 0.24);
	box-shadow: 0 24px 58px rgba(16, 19, 26, 0.14);
}

.lg-foogallery-wrap .fg-thumb {
	position: relative;
	overflow: hidden;
	transition: transform 260ms var(--lg-ease), box-shadow 260ms var(--lg-ease);
}

.lg-foogallery-wrap .fg-item:hover .fg-thumb {
	transform: scale(1.015);
}

.lg-foogallery-wrap img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.lg-foogallery-wrap .fg-caption,
.lg-foogallery-wrap .fg-caption-title,
.lg-foogallery-wrap .fg-caption-desc {
	color: var(--lg-ink) !important;
	font-family: inherit !important;
}

.lg-foogallery-wrap .fg-caption {
	border-radius: 14px !important;
	background: rgba(255, 255, 255, 0.78) !important;
	backdrop-filter: blur(14px);
}

.lg-foogallery-wrap .fg-caption-title {
	font-size: 14px !important;
	font-weight: 820 !important;
	line-height: 1.25 !important;
}

.lg-foogallery-wrap .fg-caption-desc {
	color: var(--lg-muted) !important;
	font-size: 13px !important;
	line-height: 1.35 !important;
}

.lg-gallery__item {
	position: relative;
	min-height: 0;
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--lg-line-light);
	border-radius: var(--lg-radius);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46));
	box-shadow: 0 14px 38px rgba(16, 19, 26, 0.08);
	backdrop-filter: blur(18px) saturate(150%);
	transition: transform 220ms var(--lg-ease), box-shadow 220ms var(--lg-ease), border-color 220ms var(--lg-ease), opacity 180ms var(--lg-ease);
}

.lg-gallery__item[hidden] {
	display: none !important;
}

.lg-gallery__item img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	display: block;
	transition: transform 420ms var(--lg-ease), filter 220ms var(--lg-ease);
}

.lg-gallery__link {
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
	cursor: zoom-in;
}

.lg-gallery__link::after {
	content: "Powiększ";
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	padding: 8px 10px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--lg-ink);
	font-size: 11px;
	font-weight: 820;
	line-height: 1;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 180ms var(--lg-ease), transform 180ms var(--lg-ease);
	backdrop-filter: blur(12px);
}

.lg-gallery__item:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 168, 200, 0.24);
	box-shadow: 0 22px 54px rgba(16, 19, 26, 0.14);
}

.lg-gallery__item:hover img {
	transform: scale(1.035);
	filter: saturate(1.04) contrast(1.02);
}

.lg-gallery__item:hover .lg-gallery__link::after,
.lg-gallery__link:focus-visible::after {
	opacity: 1;
	transform: translateY(0);
}

.lg-gallery__item figcaption {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	display: grid;
	gap: 4px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--lg-ink);
	box-shadow: 0 12px 28px rgba(16, 19, 26, 0.1);
	backdrop-filter: blur(16px) saturate(150%);
}

.lg-gallery__item figcaption span {
	color: var(--lg-red);
	font-size: 11px;
	font-weight: 840;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.lg-gallery__item figcaption strong {
	color: var(--lg-ink);
	font-size: 14px;
	font-weight: 820;
	line-height: 1.18;
}

.lg-gallery__item figcaption small {
	color: var(--lg-muted);
	font-size: 12px;
	font-weight: 650;
	line-height: 1.3;
}

.lg-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	padding: clamp(14px, 3vw, 34px);
	background:
		radial-gradient(circle at 18% 10%, rgba(239, 18, 61, 0.18), transparent 26rem),
		radial-gradient(circle at 88% 16%, rgba(0, 168, 200, 0.18), transparent 30rem),
		rgba(8, 12, 20, 0.76);
	backdrop-filter: blur(22px) saturate(140%);
}

.lg-lightbox__figure {
	width: fit-content;
	max-width: min(1180px, 100%);
	max-height: calc(100dvh - 68px);
	display: grid;
	justify-items: center;
	gap: 12px;
	margin: 0;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: calc(var(--lg-radius) + 6px);
	background: rgba(255, 255, 255, 0.16);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
	overflow: hidden;
}

.lg-lightbox__figure img {
	width: auto;
	height: auto;
	max-width: calc(100vw - 68px);
	max-height: calc(100dvh - 132px);
	object-fit: contain;
	display: block;
	border-radius: 18px;
	background: rgba(0, 0, 0, 0.22);
}

.lg-lightbox__figure figcaption {
	max-width: 100%;
	color: #fff;
	font-size: 14px;
	font-weight: 760;
	text-align: center;
	overflow-wrap: anywhere;
}

.lg-lightbox__close {
	position: fixed;
	top: 18px;
	right: 18px;
	z-index: 2001;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(16px);
	transition: transform 180ms var(--lg-ease), background 180ms var(--lg-ease);
}

.lg-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.28);
	transform: translateY(-1px);
}

.lg-story-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.lg-story-card {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
	min-height: 330px;
	overflow: hidden;
	border: 1px solid var(--lg-line-light);
	border-radius: calc(var(--lg-radius) + 6px);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5));
	box-shadow: var(--lg-shadow);
	backdrop-filter: blur(22px) saturate(150%);
}

.lg-story-card__media {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: rgba(16, 19, 26, 0.08);
}

.lg-story-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 42%, rgba(16, 19, 26, 0.18));
	pointer-events: none;
}

.lg-story-card__media img,
.lg-story-card__media video {
	width: 100%;
	height: 100%;
	min-height: 330px;
	display: block;
	object-fit: cover;
	transition: transform 420ms var(--lg-ease), filter 220ms var(--lg-ease);
}

.lg-story-card:hover .lg-story-card__media img,
.lg-story-card:hover .lg-story-card__media video {
	transform: scale(1.035);
	filter: saturate(1.04) contrast(1.02);
}

.lg-story-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(22px, 3vw, 34px);
}

.lg-story-card h3 {
	font-size: clamp(24px, 2.1vw, 32px);
	line-height: 1.08;
}

.lg-story-card h3 a {
	color: var(--lg-ink);
	text-decoration: none;
}

.lg-story-card h3 a:hover,
.lg-story-card__link:hover {
	color: var(--lg-red);
}

.lg-story-card p:not(.lg-kicker) {
	margin: 16px 0 0;
	color: var(--lg-muted);
}

.lg-story-card__link {
	width: fit-content;
	margin-top: 22px;
	color: var(--lg-ink);
	font-weight: 820;
	text-decoration-color: rgba(239, 18, 61, 0.32);
}

.lg-post-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
	gap: 42px;
	align-items: center;
}

.lg-post-hero__copy > p:not(.lg-kicker) {
	max-width: 720px;
	font-size: clamp(17px, 1.25vw, 20px);
	color: var(--lg-text);
}

.lg-post-hero__image,
.lg-post-content .wp-block-video,
.lg-post-content .wp-block-embed,
.lg-post-content .wp-block-gallery,
.lg-post-content figure {
	margin: 0;
	border: 1px solid var(--lg-line-light);
	border-radius: var(--lg-radius);
	background: rgba(255, 255, 255, 0.64);
	box-shadow: var(--lg-shadow-soft);
	overflow: hidden;
	backdrop-filter: blur(18px) saturate(150%);
}

.lg-post-hero__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.lg-post-content {
	max-width: 920px;
}

.lg-post-content > * + * {
	margin-top: 24px;
}

.lg-post-content h2 {
	margin-top: 44px;
	font-size: clamp(28px, 2.4vw, 38px);
}

.lg-post-content h3 {
	margin-top: 34px;
	font-size: clamp(22px, 1.8vw, 28px);
}

.lg-post-content p,
.lg-post-content li {
	max-width: 76ch;
	color: var(--lg-text);
	font-size: 18px;
	line-height: 1.72;
}

.lg-post-content ul,
.lg-post-content ol {
	padding-left: 1.2em;
}

.lg-post-content a {
	color: var(--lg-red);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.lg-post-content blockquote {
	margin-left: 0;
	padding: 20px 24px;
	border-left: 3px solid var(--lg-red);
	border-radius: 0 8px 8px 0;
	background: rgba(255, 255, 255, 0.58);
}

.lg-post-content .wp-block-video video,
.lg-post-content iframe {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
}

.lg-post-content .wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding: 12px;
}

.lg-case-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--lg-line-light);
	border-radius: var(--lg-radius);
	background: rgba(255, 255, 255, 0.64);
	box-shadow: var(--lg-shadow-soft);
	backdrop-filter: blur(18px) saturate(150%);
}

.lg-post-content .wp-block-gallery figure,
.lg-post-content .wp-block-gallery .wp-block-image,
.lg-case-gallery figure {
	margin: 0;
	border-radius: 16px;
	box-shadow: none;
}

.lg-post-content .wp-block-gallery img,
.lg-case-gallery img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.lg-final-cta {
	padding: clamp(24px, 5vw, 44px);
	border: 1px solid var(--lg-line-light);
	border-radius: calc(var(--lg-radius) + 8px);
	background:
		radial-gradient(circle at 82% 4%, rgba(239, 18, 61, 0.11), transparent 22rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56));
	box-shadow: var(--lg-shadow);
	backdrop-filter: blur(24px);
}

.lg-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
	padding: clamp(18px, 4vw, 28px);
}

.lg-form label {
	display: grid;
	gap: 7px;
	color: var(--lg-ink);
	font-weight: 760;
}

.lg-form label:nth-of-type(4),
.lg-form__check,
.lg-form button,
.lg-form__message {
	grid-column: 1 / -1;
}

.lg-form input,
.lg-form textarea {
	width: 100%;
	min-height: 52px;
	border: 1px solid var(--lg-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--lg-ink);
	font: inherit;
	padding: 12px 14px;
}

.lg-form textarea {
	min-height: 150px;
	resize: vertical;
}

.lg-form__check {
	display: flex !important;
	grid-template-columns: none !important;
	align-items: center;
	gap: 10px !important;
	color: var(--lg-text) !important;
	font-size: 14px;
}

.lg-form__check input {
	width: 18px;
	min-height: 18px;
}

.lg-form__trap {
	position: absolute;
	left: -9999px;
}

.lg-form__message {
	margin: 0;
	color: var(--lg-ink);
	font-weight: 760;
}

.contact-form-brand {
	position: relative;
	max-width: 720px;
	margin: 0 0 28px;
	padding: 4px 0 6px;
}

.contact-form-brand::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: min(310px, 72%);
	height: 1px;
	background: linear-gradient(90deg, rgba(239, 18, 61, 0.32), rgba(0, 168, 200, 0.1), transparent);
}

.contact-sign {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	gap: clamp(4px, 0.65vw, 9px);
	width: fit-content;
	max-width: 100%;
	perspective: 900px;
	outline: none;
}

.contact-sign::before {
	content: "";
	position: absolute;
	inset: 4px -18px -18px;
	z-index: -1;
	border-radius: 999px;
	background:
		radial-gradient(circle at 18% 50%, rgba(239, 18, 61, 0.16), transparent 54%),
		radial-gradient(circle at 86% 40%, rgba(0, 168, 200, 0.12), transparent 58%);
	filter: blur(14px);
	opacity: 0.72;
	transition: opacity 220ms var(--lg-ease), transform 220ms var(--lg-ease);
}

.contact-sign span {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: clamp(42px, 4.1vw, 62px);
	aspect-ratio: 0.76;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: clamp(9px, 0.85vw, 13px);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.82)),
		radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.98), transparent 42%);
	box-shadow:
		0 18px 38px rgba(16, 19, 26, 0.12),
		0 7px 0 rgba(16, 19, 26, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		inset 0 -10px 18px rgba(16, 19, 26, 0.06);
	color: #171b24;
	font-size: clamp(31px, 3.25vw, 50px);
	font-weight: 920;
	line-height: 1;
	transform: rotateX(8deg) rotateY(-6deg);
	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9),
		0 10px 18px rgba(16, 19, 26, 0.12);
	transition:
		background 260ms var(--lg-ease),
		box-shadow 260ms var(--lg-ease),
		color 260ms var(--lg-ease),
		text-shadow 260ms var(--lg-ease),
		transform 260ms var(--lg-ease);
}

.contact-sign span::after {
	content: "";
	position: absolute;
	inset: 8% 12% auto;
	height: 28%;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), transparent);
	opacity: 0.52;
	pointer-events: none;
}

.contact-sign:hover::before,
.contact-sign:focus-visible::before {
	opacity: 1;
	transform: scale(1.04);
}

.contact-sign:hover span,
.contact-sign:focus-visible span {
	animation: contact-sign-light 980ms var(--lg-ease) both;
	background:
		linear-gradient(145deg, rgba(255, 48, 91, 0.96), rgba(239, 18, 61, 0.86)),
		radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.88), transparent 38%);
	border-color: rgba(255, 255, 255, 0.78);
	color: #fff;
	box-shadow:
		0 20px 44px rgba(239, 18, 61, 0.24),
		0 7px 0 rgba(113, 10, 28, 0.35),
		0 0 24px rgba(239, 18, 61, 0.38),
		0 0 54px rgba(239, 18, 61, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.82),
		inset 0 -10px 18px rgba(80, 6, 20, 0.18);
	text-shadow:
		0 0 8px rgba(255, 255, 255, 0.72),
		0 0 20px rgba(255, 255, 255, 0.4),
		0 10px 20px rgba(113, 10, 28, 0.28);
	transform: rotateX(4deg) rotateY(-3deg) translateY(-2px);
}

.contact-sign span:nth-child(2) {
	animation-delay: 70ms;
}

.contact-sign span:nth-child(3) {
	animation-delay: 140ms;
}

.contact-sign span:nth-child(4) {
	animation-delay: 210ms;
}

.contact-sign span:nth-child(5) {
	animation-delay: 280ms;
}

.contact-sign span:nth-child(6) {
	animation-delay: 350ms;
}

.contact-sign span:nth-child(7) {
	animation-delay: 420ms;
}

@keyframes contact-sign-light {
	0% {
		filter: brightness(1);
	}

	42% {
		filter: brightness(1.28) saturate(1.12);
	}

	100% {
		filter: brightness(1.08) saturate(1.05);
	}
}

.contact-kaseton {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: fit-content;
	max-width: 100%;
	padding: 14px 24px;
	border: 1px solid rgba(239, 18, 61, 0.14);
	border-radius: 20px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
		radial-gradient(circle at 18% 10%, rgba(239, 18, 61, 0.14), transparent 40%),
		radial-gradient(circle at 100% 100%, rgba(0, 168, 200, 0.12), transparent 42%);
	box-shadow:
		0 18px 48px rgba(16, 19, 26, 0.1),
		0 10px 26px rgba(239, 18, 61, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(18px) saturate(150%);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-kaseton::before {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: -1;
	border-radius: inherit;
	background:
		linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.82) 42%, transparent 64%);
	opacity: 0.42;
	transform: translateX(-18%);
	transition: transform 0.45s ease, opacity 0.35s ease;
}

.contact-kaseton__text {
	display: inline-flex;
	align-items: center;
	font-family: inherit;
	font-size: clamp(30px, 3.1vw, 42px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.contact-kaseton__logo {
	position: relative;
	z-index: 1;
	display: block;
	width: clamp(170px, 18vw, 230px);
	height: auto;
	filter:
		drop-shadow(0 8px 18px rgba(16, 19, 26, 0.12))
		drop-shadow(0 0 16px rgba(239, 18, 61, 0.08));
	transition: filter 0.35s ease, transform 0.35s ease;
}

.contact-kaseton__red {
	color: var(--lg-red);
	text-shadow:
		0 0 8px rgba(239, 18, 61, 0.22),
		0 0 18px rgba(239, 18, 61, 0.12);
	transition: color 0.35s ease, text-shadow 0.35s ease;
}

.contact-kaseton__dark {
	color: var(--lg-ink);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
	transition: color 0.35s ease, text-shadow 0.35s ease;
}

.contact-kaseton:hover {
	border-color: rgba(239, 18, 61, 0.28);
	box-shadow:
		0 24px 64px rgba(16, 19, 26, 0.14),
		0 0 28px rgba(239, 18, 61, 0.16),
		0 0 70px rgba(0, 168, 200, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
	transform: translateY(-2px);
}

.contact-kaseton:hover::before {
	opacity: 0.72;
	transform: translateX(14%);
}

.contact-kaseton:hover .contact-kaseton__red {
	color: #ff2557;
	text-shadow:
		0 0 8px rgba(239, 18, 61, 0.56),
		0 0 20px rgba(239, 18, 61, 0.28),
		0 0 38px rgba(239, 18, 61, 0.16);
}

.contact-kaseton:hover .contact-kaseton__dark {
	color: #1b1f2a;
	text-shadow:
		0 0 8px rgba(255, 255, 255, 0.85),
		0 0 18px rgba(0, 168, 200, 0.16);
}

.contact-kaseton:hover .contact-kaseton__logo {
	filter:
		drop-shadow(0 10px 24px rgba(16, 19, 26, 0.14))
		drop-shadow(0 0 18px rgba(239, 18, 61, 0.24))
		drop-shadow(0 0 34px rgba(239, 18, 61, 0.12));
	transform: translateY(-1px);
}

.contact-form-brand__text {
	max-width: 420px;
	margin: 12px 0 0;
	color: var(--lg-muted);
	font-size: 15px;
	line-height: 1.55;
}

.lg-contact-panel {
	display: grid;
	gap: 14px;
	max-width: 680px;
	margin-top: 28px;
}

.lg-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 0;
}

.lg-contact-card {
	padding: 20px;
	min-width: 0;
}

.lg-contact-card--office {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding: 24px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.56)),
		radial-gradient(circle at top right, rgba(255, 23, 73, 0.13), transparent 42%);
}

.lg-contact-card--wide {
	grid-column: 1 / -1;
}

.lg-contact-card strong {
	display: block;
	color: var(--lg-ink);
	font-size: 18px;
	line-height: 1.25;
}

.lg-contact-card a,
.lg-footer a[href^="tel:"] {
	white-space: nowrap;
}

.lg-contact-card span {
	display: block;
	margin-top: 8px;
	color: var(--lg-muted);
	font-size: 16px;
	line-height: 1.45;
	overflow-wrap: break-word;
}

.lg-contact-card p {
	max-width: 440px;
	margin: 12px 0 0;
	color: var(--lg-muted);
	font-size: 16px;
	line-height: 1.6;
}

.lg-office-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid rgba(255, 23, 73, 0.22);
	border-radius: 999px;
	background: rgba(255, 23, 73, 0.08);
	color: var(--lg-accent);
	font-size: 14px;
	font-weight: 820;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lg-office-link:hover,
.lg-office-link:focus-visible {
	background: rgba(255, 23, 73, 0.14);
	box-shadow: 0 14px 30px rgba(255, 23, 73, 0.12);
	transform: translateY(-1px);
}

.lg-faq {
	max-width: 900px;
}

.lg-faq details {
	margin-top: 14px;
	padding: 18px 20px;
}

.lg-faq summary {
	color: var(--lg-ink);
	font-weight: 780;
	cursor: pointer;
}

.lg-page .lg-content,
.lg-article {
	max-width: 880px;
	margin: 0 auto;
	padding: 80px 0;
}

.lg-legal {
	max-width: 920px;
}

.lg-legal p,
.lg-legal li {
	max-width: 78ch;
	color: var(--lg-text);
}

.lg-page .lg-content p,
.lg-article p {
	color: var(--lg-text);
}

.lg-footer {
	border-top: 1px solid var(--lg-line-light);
	background:
		radial-gradient(circle at 8% 0%, rgba(239, 18, 61, 0.12), transparent 28rem),
		radial-gradient(circle at 88% 12%, rgba(0, 168, 200, 0.13), transparent 28rem),
		rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(20px);
}

.lg-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: 22px;
	padding: 56px 0 26px;
}

.lg-footer__pitch,
.lg-footer__panel {
	border: 1px solid var(--lg-line-light);
	border-radius: calc(var(--lg-radius) + 4px);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.52));
	box-shadow: var(--lg-shadow-soft);
	backdrop-filter: blur(20px) saturate(150%);
}

.lg-footer__pitch {
	padding: clamp(24px, 4vw, 42px);
}

.lg-footer__pitch p {
	max-width: 760px;
	font-size: clamp(17px, 1.35vw, 20px);
	color: var(--lg-text);
}

.lg-footer__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.lg-footer__panel {
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 10px;
	padding: clamp(24px, 3vw, 34px);
	text-align: center;
}

.lg-footer__panel h2 {
	max-width: 320px;
}

.lg-footer__panel ul,
.lg-footer__grid ul {
	display: grid;
	gap: 9px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.lg-footer__panel ul {
	width: min(100%, 360px);
	justify-items: center;
	margin-top: 4px;
	padding: 14px;
	border: 1px solid rgba(16, 19, 26, 0.07);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.44);
}

.lg-footer__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.9fr 0.85fr 1fr;
	gap: 28px;
	padding: 26px 0 30px;
}

.lg-footer h2 {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 780;
}

.lg-footer a:not(.lg-btn) {
	color: var(--lg-ink);
	font-weight: 720;
}

.lg-footer a:not(.lg-btn):hover {
	color: var(--lg-red);
	text-decoration-color: rgba(239, 18, 61, 0.38);
}

.lg-footer .lg-btn--primary,
.lg-footer .lg-btn--primary:hover {
	color: #fff;
}

.lg-footer .lg-btn--ghost {
	color: var(--lg-ink);
}

.lg-footer .lg-btn--ghost:hover {
	color: var(--lg-blue);
}

.lg-footer__note {
	font-size: 14px;
}

.lg-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0 28px;
	border-top: 1px solid var(--lg-line);
	color: var(--lg-muted);
	font-size: 14px;
}

.lg-mobile-cta {
	display: none;
}

@media (max-width: 980px) {
	.lg-header__inner {
		min-height: 72px;
	}

	.lg-nav-toggle {
		display: block;
		margin-left: auto;
	}

	.lg-nav {
		position: absolute;
		top: 72px;
		left: 20px;
		right: 20px;
		display: none;
		padding: 12px;
		border: 1px solid var(--lg-line-light);
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.94);
		box-shadow: var(--lg-shadow);
		backdrop-filter: blur(24px);
	}

	.lg-nav.is-open {
		display: block;
	}

	.lg-nav__list {
		display: grid;
	}

	.lg-header__cta {
		display: none;
	}

	.lg-hero {
		min-height: auto;
	}

	.lg-hero__grid,
	.lg-split,
	.lg-footer__top,
	.lg-footer__grid {
		grid-template-columns: 1fr;
	}

	.lg-hero__grid {
		padding: 64px 0;
	}

	.lg-card-grid,
	.lg-gallery,
	.lg-story-grid,
	.lg-hero__proof,
	.lg-card-grid--three,
	.lg-link-grid,
	.lg-contact-grid,
	.lg-signal-strip,
	.lg-seo-grid,
	.lg-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lg-story-card,
	.lg-post-hero {
		grid-template-columns: 1fr;
	}

	.lg-story-card__media img,
	.lg-story-card__media video {
		min-height: 280px;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
		padding-bottom: 96px;
	}

	body.page-id-3201 {
		padding-bottom: 0;
	}

	body.page-id-3201 .lg-mobile-cta {
		display: none;
	}

	.contact-form-brand {
		margin-bottom: 18px;
	}

	.contact-sign {
		gap: 4px;
		width: calc(100% - 2px);
		justify-content: flex-start;
	}

	.contact-sign::before {
		inset: 8px 0 -12px;
	}

	.contact-sign span {
		width: min(40px, calc((100vw - 64px) / 7.35));
		border-radius: 9px;
		font-size: clamp(27px, 8vw, 34px);
	}

	.contact-form-brand::after {
		width: min(260px, 84%);
	}

	.contact-kaseton {
		padding: 15px 24px;
		border-radius: 15px;
	}

	.contact-kaseton__logo {
		width: min(190px, 100%);
	}

	.contact-form-brand__text {
		font-size: 14px;
	}

	.lg-shell {
		width: min(100% - 28px, var(--lg-shell));
	}

	h1 {
		font-size: clamp(34px, 10.8vw, 46px);
		line-height: 1.02;
	}

	h2 {
		font-size: clamp(27px, 8.6vw, 36px);
	}

	.lg-card-grid,
	.lg-gallery,
	.lg-story-grid,
	.lg-form,
	.lg-hero__proof,
	.lg-card-grid--three,
	.lg-link-grid,
	.lg-contact-grid,
	.lg-signal-strip,
	.lg-seo-grid,
	.lg-blog-grid {
		grid-template-columns: 1fr;
	}

	.lg-price-list > div {
		display: grid;
	}

	.lg-price-list span {
		text-align: left;
	}

	.lg-contact-card--office {
		display: grid;
		gap: 16px;
	}

	.lg-office-link {
		width: 100%;
	}

	.lg-section-head {
		display: grid;
		align-items: start;
	}

	.lg-story-card {
		min-height: 0;
	}

	.lg-story-card__media img,
	.lg-story-card__media video {
		min-height: 230px;
	}

	.lg-post-content .wp-block-gallery {
		grid-template-columns: 1fr;
	}

	.lg-case-gallery {
		grid-template-columns: 1fr;
	}

	.lg-lightbox {
		padding: 12px;
	}

	.lg-lightbox__figure {
		max-width: 100%;
		max-height: calc(100dvh - 72px);
		padding: 8px;
		border-radius: 20px;
	}

	.lg-lightbox__figure img {
		max-width: calc(100vw - 40px);
		max-height: calc(100dvh - 128px);
		border-radius: 14px;
	}

	.lg-lightbox__close {
		top: 10px;
		right: 10px;
	}

	.lg-footer__top {
		padding-top: 36px;
	}

	.lg-footer {
		padding-bottom: 88px;
	}

	.lg-section,
	.lg-section--intro {
		padding: 46px 0;
	}

	.lg-section--cta {
		padding-top: 0;
	}

	.lg-split {
		gap: 28px;
	}

	.lg-actions {
		margin-top: 22px;
	}

	.lg-signal-strip {
		margin-top: 20px;
	}

	.lg-gallery__item,
	.lg-gallery__item img {
		min-height: 0;
	}

	.lg-footer__bottom {
		flex-direction: column;
	}

	.lg-mobile-cta {
		position: fixed;
		left: 10px;
		right: 10px;
		bottom: 10px;
		z-index: 950;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		padding: 8px;
		border: 1px solid var(--lg-line-light);
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.9);
		box-shadow: var(--lg-shadow);
		backdrop-filter: blur(18px);
	}

	.lg-mobile-cta a {
		min-height: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 10px;
		background: #fff;
		color: var(--lg-ink);
		font-weight: 900;
		text-decoration: none;
	}

	.lg-mobile-cta a:last-child {
		background: var(--lg-red);
		color: #fff;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}


/* Baza wiedzy: navigation, cards and internal-linking sections. */
.lg-nav__list .menu-item-has-children {
	position: relative;
}
.lg-nav__list .sub-menu {
	position: absolute;
	z-index: 30;
	top: calc(100% + 8px);
	left: 0;
	display: grid;
	width: min(360px, calc(100vw - 40px));
	max-height: min(420px, calc(100vh - 120px));
	margin: 0;
	padding: 8px;
	overflow: auto;
	list-style: none;
	border: 1px solid rgba(16, 19, 26, 0.11);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 20px 44px rgba(16, 19, 26, 0.16);
	backdrop-filter: blur(18px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 160ms var(--lg-ease), transform 160ms var(--lg-ease);
}
.lg-nav__list .menu-item-has-children:hover > .sub-menu,
.lg-nav__list .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.lg-nav__list .sub-menu a {
	display: block;
	min-height: auto;
	padding: 10px 12px;
	border-radius: 9px;
	font-size: 13px;
	line-height: 1.3;
}
.lg-section--blog-preview {
	background: linear-gradient(180deg, rgba(247, 249, 252, 0.9), rgba(255, 255, 255, 0.96));
}
.lg-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.lg-blog-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 20px;
	border: 1px solid var(--lg-line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 14px 32px rgba(16, 19, 26, 0.07);
}
.lg-blog-card h2,
.lg-blog-card h3 {
	margin: 0 0 12px;
	font-size: clamp(20px, 1.8vw, 25px);
}
.lg-blog-card h2 a,
.lg-blog-card h3 a {
	color: inherit;
	text-decoration: none;
}
.lg-blog-card h2 a:hover,
.lg-blog-card h3 a:hover {
	color: var(--lg-red);
}
.lg-blog-card > p:not(.lg-kicker) {
	margin: 0 0 16px;
	color: var(--lg-text);
	line-height: 1.55;
}
.lg-blog-card__image,
.lumeon-related-articles__image {
	display: block;
	margin: -20px -20px 18px;
	overflow: hidden;
	border-radius: 15px 15px 10px 10px;
	aspect-ratio: 16 / 9;
	background: #eef1f5;
}
.lg-blog-card__image img,
.lumeon-related-articles__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms var(--lg-ease);
}
.lg-blog-card__image:hover img,
.lumeon-related-articles__image:hover img {
	transform: scale(1.035);
}
.lg-blog-card .lg-story-card__link {
	margin-top: auto;
}
.lumeon-related-articles .lg-btn--ghost {
	margin-top: 20px;
}
@media (max-width: 980px) {
	.lg-nav__list .menu-item-has-children {
		position: static;
	}
	.lg-nav__list .sub-menu {
		position: static;
		display: grid;
		width: auto;
		max-height: none;
		margin: 2px 0 8px 12px;
		padding: 4px;
		overflow: visible;
		border: 0;
		border-left: 1px solid var(--lg-line);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}
}
@media (max-width: 760px) {
	.lg-blog-grid {
		grid-template-columns: 1fr;
	}
}
