/* ==========================================================================
   La Media – WordPress theme
   Brand: #F8C414 | #000000 | #FFFFFF
   ========================================================================== */

:root {
	--lm-gold: #F8C414;
	--lm-gold-rgb: 248, 196, 20;
	--lm-black: #101010;
	--lm-white: #FFFFFF;
	--lm-dark: #141414;
	--lm-dark-2: #1a1a1a;
	--lm-dark-3: #222222;
	--lm-gray: #9a9a9a;
	--lm-gray-light: #d0d0d0;

	--lm-glass: rgba(255, 255, 255, 0.08);
	--lm-glass-hover: rgba(255, 255, 255, 0.12);
	--lm-glass-border: rgba(255, 255, 255, 0.14);
	--lm-glass-gold: rgba(var(--lm-gold-rgb), 0.08);
	--lm-glass-blur: 16px;
	--lm-glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);

	--lm-font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	--lm-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--lm-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--lm-radius: 18px;
	--lm-radius-sm: 12px;
	--lm-radius-pill: 999px;
	--lm-header-h: 76px;
	--lm-header-offset: 32px;
	--lm-container: 1240px;
	--lm-pad: clamp(72px, 9vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body.lm-site {
	font-family: var(--lm-font);
	font-size: 16px;
	line-height: 1.75;
	color: var(--lm-white);
	background: var(--lm-black);
	overflow-x: hidden;
	direction: ltr;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--lm-ease); }
a:hover { color: var(--lm-gold); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.25; }

/* ── Background layers ── */
.lm-bg-gradient {
	position: fixed; inset: 0; z-index: -3;
	background:
		radial-gradient(ellipse 75% 55% at 70% 12%, rgba(var(--lm-gold-rgb), 0.16) 0%, transparent 55%),
		radial-gradient(ellipse 55% 45% at 15% 88%, rgba(var(--lm-gold-rgb), 0.1) 0%, transparent 50%),
		radial-gradient(ellipse 40% 30% at 50% 50%, rgba(var(--lm-gold-rgb), 0.04) 0%, transparent 60%),
		var(--lm-black);
}

.lm-bg-noise {
	position: fixed; inset: 0; z-index: -2; opacity: 0.025; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Layout ── */
.lm-container {
	width: 100%; max-width: var(--lm-container);
	margin: 0 auto; padding: 0 clamp(20px, 4vw, 36px);
}

.lm-section { padding: var(--lm-pad) 0; position: relative; }

.lm-section__head {
	text-align: center; margin-bottom: clamp(40px, 5vw, 64px);
}

/* ── Glass ── */
.lm-glass {
	background: linear-gradient(135deg, var(--lm-glass) 0%, var(--lm-glass-gold) 100%);
	backdrop-filter: blur(var(--lm-glass-blur));
	-webkit-backdrop-filter: blur(var(--lm-glass-blur));
	border: 1px solid var(--lm-glass-border);
	border-radius: var(--lm-radius);
	box-shadow: var(--lm-glass-shadow);
}

/* ── Typography ── */
.lm-label {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 0.72rem; font-weight: 700;
	letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--lm-gold); margin-bottom: 14px;
}
.lm-label::before {
	content: ''; width: 28px; height: 2px;
	background: var(--lm-gold); border-radius: 1px;
}

.lm-heading {
	font-size: clamp(1.75rem, 4.5vw, 2.75rem);
	font-weight: 900; margin-bottom: 14px;
}

.lm-subheading {
	font-size: clamp(0.95rem, 2vw, 1.1rem);
	color: var(--lm-gray-light); max-width: 560px;
	margin: 0 auto; line-height: 1.8;
}

.lm-text-gold { color: var(--lm-gold); }

/* ── Buttons ── */
.lm-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 30px; font-family: var(--lm-font);
	font-size: 0.9rem; font-weight: 700;
	border: none; border-radius: var(--lm-radius-pill);
	cursor: pointer; transition: all 0.35s var(--lm-ease);
	position: relative; overflow: hidden; white-space: nowrap;
}

.lm-btn--sm { padding: 11px 22px; font-size: 0.82rem; }

.lm-btn--primary {
	background: var(--lm-gold); color: var(--lm-black);
	box-shadow: 0 4px 24px rgba(var(--lm-gold-rgb), 0.25);
}
.lm-btn--primary:hover {
	background: var(--lm-white); color: var(--lm-black);
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(var(--lm-gold-rgb), 0.35);
}

.lm-btn--ghost {
	background: rgba(255, 255, 255, 0.04);
	color: var(--lm-white);
	border: 1px solid var(--lm-glass-border);
	backdrop-filter: blur(8px);
}
.lm-btn--ghost:hover {
	border-color: rgba(var(--lm-gold-rgb), 0.5);
	color: var(--lm-gold);
	transform: translateY(-3px);
}

/* ── Header ── */
.lm-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	justify-content: center;
	padding: 0;
	pointer-events: none;
	overflow: visible;
	transition: padding 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.lm-header.scrolled {
	padding: 14px clamp(16px, 3vw, 28px) 0;
}

.lm-header__bar {
	pointer-events: auto;
	width: 100%;
	max-width: 100%;
	margin: 0;
	height: var(--lm-header-h);
	background: rgba(16, 16, 16, 0.88);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
	border: none;
	border-bottom: 1px solid rgba(var(--lm-gold-rgb), 0.18);
	border-radius: 0;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
	overflow: visible;
	transition:
		max-width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
		height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
		border-radius 0.55s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.45s ease,
		box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.45s ease;
}

.lm-header.scrolled .lm-header__bar {
	max-width: var(--lm-container);
	height: 68px;
	border-radius: 100px;
	background: rgba(16, 16, 16, 0.94);
	backdrop-filter: blur(28px);
	-webkit-backdrop-filter: blur(28px);
	border: 1px solid rgba(var(--lm-gold-rgb), 0.28);
	border-bottom: 1px solid rgba(var(--lm-gold-rgb), 0.28);
	box-shadow:
		0 16px 48px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		0 6px 28px rgba(var(--lm-gold-rgb), 0.1);
}

.lm-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 100%;
	gap: 16px;
	width: 100%;
	max-width: var(--lm-container);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 36px);
	transition: padding 0.45s var(--lm-ease);
}

.lm-header.scrolled .lm-header__inner {
	padding: 0 clamp(18px, 3vw, 32px);
}

.lm-logo { justify-self: start; display: flex; align-items: center; }
.lm-logo img {
	height: 40px;
	width: auto;
	display: block;
	transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s var(--lm-ease);
}

.lm-header.scrolled .lm-logo img { height: 34px; }
.lm-logo:hover img { transform: scale(1.03); }

.lm-nav {
	display: flex; align-items: center; gap: 4px;
	justify-self: center;
}

.lm-nav__item { position: relative; z-index: 2; }

.lm-nav__link {
	display: flex; align-items: center; gap: 5px;
	padding: 9px 14px; font-size: 0.88rem; font-weight: 600;
	color: var(--lm-gray-light); border-radius: var(--lm-radius-pill);
	transition: all 0.25s var(--lm-ease); cursor: pointer;
	position: relative;
}
.lm-nav__link:hover {
	color: var(--lm-white);
}
.lm-nav__link.is-active {
	color: var(--lm-white);
	background: none;
}
.lm-nav__link.is-active::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 2px;
	background: var(--lm-gold);
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(var(--lm-gold-rgb), 0.65);
}

.lm-header__actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 12px;
}

.lm-header__cta {
	flex-shrink: 0;
	white-space: nowrap;
	box-shadow: 0 4px 20px rgba(var(--lm-gold-rgb), 0.35);
	transition: transform 0.3s var(--lm-ease), box-shadow 0.3s var(--lm-ease);
}

.lm-header__cta:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 8px 28px rgba(var(--lm-gold-rgb), 0.5);
}

@media (prefers-reduced-motion: reduce) {
	.lm-header,
	.lm-header__bar,
	[data-animate],
	.lm-work-card__media img,
	.lm-work-card__media video {
		transition-duration: 0.01ms !important;
		animation: none !important;
	}
	[data-animate] {
		opacity: 1;
		transform: none;
	}
}

.lm-menu-toggle {
	display: none; width: 42px; height: 42px;
	align-items: center; justify-content: center;
	background: var(--lm-glass); border: 1px solid var(--lm-glass-border);
	border-radius: var(--lm-radius-sm); cursor: pointer; color: var(--lm-white);
}
.lm-menu-toggle svg { width: 20px; height: 20px; }
.lm-menu-toggle .icon-close { display: none; }
.lm-menu-toggle.active .icon-menu { display: none; }
.lm-menu-toggle.active .icon-close { display: block; }

.lm-mobile-nav {
	display: none; position: fixed; inset: 0; z-index: 999;
	background: rgba(0,0,0,0.94); backdrop-filter: blur(24px);
	padding: calc(var(--lm-header-h) + 24px) 24px 40px;
	opacity: 0; visibility: hidden; transition: all 0.35s var(--lm-ease);
	overflow-y: auto;
}
.lm-mobile-nav.open { opacity: 1; visibility: visible; }
.lm-mobile-nav__item { border-bottom: 1px solid var(--lm-glass-border); }
.lm-mobile-nav__link {
	display: flex; padding: 16px 0;
	font-size: 1.05rem; font-weight: 700;
}
.lm-mobile-nav__link--gold {
	color: var(--lm-gold) !important;
	font-weight: 800;
}

/* ── Hero ── */
.lm-hero {
	min-height: 100vh; position: relative;
	display: flex; align-items: center;
	padding-top: calc(var(--lm-header-h) + var(--lm-header-offset)); overflow: hidden;
}

.lm-hero--404 {
	min-height: 80vh;
	text-align: center;
}

.lm-hero--404 .lm-hero__subtitle {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}

.lm-hero__bg {
	position: absolute; inset: 0; z-index: 0;
}
.lm-hero__bg img {
	width: 100%; height: 100%; object-fit: cover;
	opacity: 0.62; transform: scale(1.05);
	transition: transform 0.1s linear;
	will-change: transform;
	filter: brightness(1.1) saturate(1.15);
}
.lm-hero__bg::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg,
		rgba(16,16,16,0.25) 0%,
		rgba(16,16,16,0.45) 45%,
		rgba(16,16,16,0.82) 85%,
		var(--lm-black) 100%
	);
}

.lm-hero__wrap {
	position: relative; z-index: 2;
	padding-bottom: clamp(32px, 5vw, 56px);
}

.lm-hero__content { max-width: 680px; }

.lm-hero__tag {
	display: inline-block; padding: 7px 16px;
	font-size: 0.78rem; font-weight: 700;
	color: var(--lm-black); letter-spacing: 0.06em;
	background: var(--lm-gold);
	border: 1px solid rgba(var(--lm-gold-rgb), 0.6);
	border-radius: var(--lm-radius-pill);
	margin-bottom: 22px;
	box-shadow: 0 4px 20px rgba(var(--lm-gold-rgb), 0.3);
}

.lm-hero__title {
	font-size: clamp(2.2rem, 6.5vw, 4.2rem);
	font-weight: 900; line-height: 1.15;
	margin-bottom: 22px;
}

.lm-hero__subtitle {
	font-size: clamp(0.95rem, 2.2vw, 1.15rem);
	color: var(--lm-gray-light); line-height: 1.85;
	margin-bottom: 36px; max-width: 540px;
}

.lm-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.lm-hero__actions .lm-btn svg {
	width: 16px;
	height: 16px;
}

body.home .lm-header:not(.scrolled) .lm-header__bar {
	background: linear-gradient(180deg, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.12) 100%);
	border-bottom-color: transparent;
	box-shadow: none;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.lm-hero--home {
	min-height: 100vh;
	align-items: center;
	padding: calc(var(--lm-header-h) + 8px) 0 48px;
}

.lm-hero--home .lm-hero__bg {
	isolation: isolate;
}

.lm-hero--home .lm-hero__bg img {
	opacity: 1;
	transform: none;
	object-fit: cover;
	object-position: 82% 42%;
	filter: contrast(1.08) saturate(0.95) brightness(0.92);
}

.lm-hero--home .lm-hero__bg::after {
	display: block;
	z-index: 2;
	background:
		linear-gradient(90deg,
			rgba(6, 6, 8, 0.72) 0%,
			rgba(6, 6, 8, 0.48) 38%,
			rgba(6, 6, 8, 0.12) 68%,
			rgba(6, 6, 8, 0.22) 100%
		),
		linear-gradient(180deg,
			rgba(6, 6, 8, 0.28) 0%,
			transparent 36%,
			rgba(6, 6, 8, 0.55) 100%
		);
}

.lm-hero--home .lm-hero__mark::before,
.lm-hero--home .lm-hero__mark::after {
	display: block;
}

.lm-hero--home .lm-hero__logo {
	filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.65));
}

.lm-hero--home .lm-hero__wrap {
	padding-bottom: 0;
	width: 100%;
}

.lm-hero--home .lm-hero__content {
	max-width: 720px;
}

.lm-hero__mark {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: clamp(32px, 4.5vw, 52px);
}

.lm-hero__mark::before {
	content: '';
	position: absolute;
	width: min(560px, 78vw);
	height: min(560px, 78vw);
	left: 50%;
	top: 46%;
	transform: translate(-58%, -58%);
	border: 1px solid rgba(var(--lm-gold-rgb), 0.28);
	border-radius: 50%;
	pointer-events: none;
	box-shadow: 0 0 90px rgba(var(--lm-gold-rgb), 0.1);
}

.lm-hero__mark::after {
	content: '';
	position: absolute;
	width: 220px;
	height: 90px;
	top: 6%;
	left: 38%;
	background: radial-gradient(ellipse, rgba(255, 232, 160, 0.55) 0%, transparent 72%);
	pointer-events: none;
	filter: blur(1px);
}

.lm-hero__logo {
	position: relative;
	z-index: 1;
	height: clamp(86px, 12.5vw, 158px);
	width: auto;
	max-width: min(640px, 90vw);
	filter: drop-shadow(0 10px 32px rgba(0, 0, 0, 0.5));
}

.lm-hero__tagline {
	position: relative;
	z-index: 1;
	display: block;
	margin-top: 14px;
	font-size: clamp(0.62rem, 1.1vw, 0.74rem);
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	text-align: center;
	color: rgba(255, 255, 255, 0.78);
}

.lm-hero--home .lm-hero__title {
	font-size: clamp(2rem, 4.4vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	margin-bottom: 12px;
	line-height: 1.15;
	text-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.lm-hero--home .lm-hero__subtitle {
	font-size: clamp(0.95rem, 1.6vw, 1.08rem);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.62);
	margin-bottom: 30px;
	max-width: 520px;
	line-height: 1.6;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.lm-hero--home .lm-hero__actions {
	gap: 16px;
}

.lm-hero--home .lm-hero__actions .lm-btn {
	padding: 15px 30px;
	font-size: 0.92rem;
	min-width: 176px;
}

.lm-hero--home .lm-btn--ghost {
	background: rgba(10, 10, 12, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.32);
	color: var(--lm-white);
	backdrop-filter: blur(10px);
}

.lm-hero--home .lm-btn--ghost:hover {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--lm-white);
}

.lm-hero__scroll {
	position: absolute;
	left: clamp(10px, 1.6vw, 22px);
	top: 50%;
	bottom: auto;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	transform: translateY(-50%) rotate(180deg);
}

.lm-hero__scroll::after {
	content: '';
	width: 1px;
	height: 42px;
	background: linear-gradient(180deg, var(--lm-gold), transparent);
}

.lm-hero__index {
	position: absolute;
	right: clamp(18px, 3.2vw, 48px);
	top: 52%;
	transform: translateY(-40%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.32);
}

.lm-hero__index span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.lm-hero__index .is-active {
	color: var(--lm-gold);
}

.lm-hero__index .is-active::before {
	content: '';
	width: 14px;
	height: 1px;
	background: var(--lm-gold);
}

.lm-hero__locale {
	position: absolute;
	right: clamp(18px, 3.2vw, 48px);
	bottom: 36px;
	z-index: 3;
	margin: 0;
	text-align: right;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
}

.lm-hero__locale::after {
	content: '';
	display: block;
	width: 56px;
	height: 1px;
	margin: 10px 0 0 auto;
	background: rgba(255, 255, 255, 0.45);
}

.lm-work {
	padding-top: clamp(48px, 6vw, 72px);
}

.lm-work__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(28px, 4vw, 40px);
	text-align: left;
}

.lm-work__head .lm-heading {
	margin-bottom: 0;
}

.lm-work__head .lm-label {
	margin-bottom: 8px;
}

.lm-work__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	margin-bottom: 8px;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--lm-gray-light);
}

.lm-work__all svg {
	width: 16px;
	height: 16px;
}

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

.lm-work-card {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	min-height: 210px;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--lm-white);
}

.lm-work-card:hover {
	color: var(--lm-white);
	border-color: rgba(var(--lm-gold-rgb), 0.35);
}

.lm-work-card__media {
	position: absolute;
	inset: 0;
}

.lm-work-card__media img,
.lm-work-card__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	transition: transform 0.65s var(--lm-ease-out);
}

.lm-work-card:hover .lm-work-card__media:not(.lm-work-card__media--slides) img,
.lm-work-card:hover .lm-work-card__media video {
	transform: scale(1.06);
}

.lm-work-card__media--slides {
	overflow: hidden;
}

.lm-work-card__media--slides img.lm-work-card__slide {
	position: absolute;
	top: 50%;
	left: 50%;
	right: auto;
	bottom: auto;
	width: 108%;
	height: 108%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	pointer-events: none;
	will-change: transform, opacity;
	z-index: 0;
	transform: translate(-50%, -50%) scale(1.03);
	transition: none;
}

.lm-work-card__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.lm-work-card__slide.is-leaving {
	z-index: 0;
	animation: none;
	opacity: 0;
	transform: translate(-50%, -50%) scale(1.03);
	transition: opacity 0.55s ease;
}

.lm-work-card__slide.is-active.lm-from-zoom {
	animation: lmPhotoZoom 1.05s var(--lm-ease) both;
}

.lm-work-card__slide.is-active.lm-from-left {
	animation: lmPhotoLeft 1.05s var(--lm-ease) both;
}

.lm-work-card__slide.is-active.lm-from-right {
	animation: lmPhotoRight 1.05s var(--lm-ease) both;
}

.lm-work-card__slide.is-active.lm-from-up {
	animation: lmPhotoUp 1.05s var(--lm-ease) both;
}

@keyframes lmPhotoZoom {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1.08);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.03);
	}
}

@keyframes lmPhotoLeft {
	from {
		opacity: 0;
		transform: translate(calc(-50% - 1.5%), -50%) scale(1.06);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.03);
	}
}

@keyframes lmPhotoRight {
	from {
		opacity: 0;
		transform: translate(calc(-50% + 1.5%), -50%) scale(1.06);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.03);
	}
}

@keyframes lmPhotoUp {
	from {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 1.5%)) scale(1.07);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.03);
	}
}

.lm-work-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.lm-work-card__num {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.7);
}

.lm-work-card__meta {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 2;
	padding-right: 56px;
}

.lm-work-card__kicker {
	display: block;
	margin-bottom: 4px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.lm-work-card__title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 800;
}

.lm-work-card__go {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(0, 0, 0, 0.28);
	color: var(--lm-white);
	transition: background 0.3s var(--lm-ease), border-color 0.3s var(--lm-ease), color 0.3s var(--lm-ease);
}

.lm-work-card__go svg {
	width: 16px;
	height: 16px;
}

.lm-work-card:hover .lm-work-card__go {
	background: var(--lm-gold);
	border-color: var(--lm-gold);
	color: var(--lm-black);
}

/* ── CTA Banner ── */
.lm-cta-banner {
	text-align: center; padding: clamp(48px, 7vw, 72px) clamp(24px, 4vw, 48px);
	position: relative; overflow: hidden;
}
.lm-cta-banner__glow {
	position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(ellipse at center, rgba(var(--lm-gold-rgb), 0.18) 0%, transparent 65%);
}
.lm-cta-banner__title {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	font-weight: 900; color: var(--lm-gold);
	margin-bottom: 12px; position: relative;
}
.lm-cta-banner__text {
	color: var(--lm-gray-light); margin-bottom: 28px;
	max-width: 480px; margin-left: auto; margin-right: auto;
	position: relative;
}

/* ── Contact ── */
.lm-contact {
	display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px;
}

.lm-contact__info { display: flex; flex-direction: column; gap: 14px; }

.lm-contact__item {
	display: flex; align-items: center; gap: 16px;
	padding: 20px 22px; transition: transform 0.3s var(--lm-ease), border-color 0.3s;
}
.lm-contact__item:hover {
	transform: translateX(4px);
	border-color: rgba(var(--lm-gold-rgb), 0.35);
	color: var(--lm-white);
}
.lm-contact__item svg { width: 22px; height: 22px; color: var(--lm-gold); flex-shrink: 0; }
.lm-contact__label {
	display: block; font-size: 0.75rem; font-weight: 600;
	color: var(--lm-gray); margin-bottom: 2px;
}
.lm-contact__item strong { font-weight: 700; }

.lm-contact__form { padding: clamp(28px, 4vw, 40px); }
.lm-contact__form .lm-btn { width: 100%; }

.lm-form__group { margin-bottom: 18px; }
.lm-form__label {
	display: block; font-size: 0.8rem; font-weight: 700;
	margin-bottom: 8px; color: var(--lm-gray-light);
}
.lm-form__input, .lm-form__textarea {
	width: 100%; padding: 14px 16px;
	font-family: var(--lm-font); font-size: 0.92rem;
	color: var(--lm-white); background: rgba(255,255,255,0.04);
	border: 1px solid var(--lm-glass-border);
	border-radius: var(--lm-radius-sm); outline: none;
	transition: all 0.25s;
}
.lm-form__input:focus, .lm-form__textarea:focus {
	border-color: rgba(var(--lm-gold-rgb), 0.5);
	background: rgba(var(--lm-gold-rgb), 0.04);
}
.lm-form__textarea { min-height: 130px; resize: vertical; }

/* ── Footer ── */
.lm-footer {
	padding: 56px 0 28px;
	background: var(--lm-dark-2);
	border-top: 1px solid var(--lm-glass-border);
}

.lm-footer__grid {
	display: grid; grid-template-columns: 1.6fr 1fr 1fr;
	gap: 40px; margin-bottom: 40px;
}

.lm-footer__brand p {
	color: var(--lm-gray); font-size: 0.88rem;
	line-height: 1.8; margin: 16px 0 20px; max-width: 300px;
}

.lm-footer__heading {
	font-family: var(--lm-font);
	font-size: 0.78rem; font-weight: 800;
	letter-spacing: 0.14em; color: var(--lm-gold);
	margin-bottom: 18px;
}

.lm-footer__links a {
	display: block; padding: 5px 0;
	font-size: 0.88rem; color: var(--lm-gray-light);
	transition: all 0.2s;
}
.lm-footer__links a:hover { color: var(--lm-gold); padding-left: 4px; }

.lm-footer__social { display: flex; gap: 10px; }
.lm-footer__social a {
	width: 38px; height: 38px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%; background: var(--lm-glass);
	border: 1px solid var(--lm-glass-border);
	color: var(--lm-gray-light); transition: all 0.3s var(--lm-ease);
}
.lm-footer__social a svg { width: 16px; height: 16px; }
.lm-footer__social a:hover {
	background: var(--lm-gold); color: var(--lm-black);
	border-color: var(--lm-gold); transform: translateY(-3px);
}

.lm-footer__bottom {
	display: flex; align-items: center; justify-content: space-between;
	padding-top: 24px; border-top: 1px solid var(--lm-glass-border);
	font-size: 0.78rem; color: var(--lm-gray);
}
.lm-footer__made { font-style: italic; opacity: 0.7; }
.lm-footer__made a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.lm-footer__made a:hover { color: var(--lm-gold); }

/* ── Inner pages – bright hero & service layout ── */
.lm-page-hero {
	padding-top: calc(var(--lm-header-h) + var(--lm-header-offset) + 40px);
	padding-bottom: 64px; position: relative; overflow: hidden;
	min-height: 72vh; display: flex; align-items: center;
}
.lm-page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lm-page-hero__bg img {
	width: 100%; height: 100%; object-fit: cover;
	opacity: 0.58; transform: scale(1.05);
	filter: brightness(1.08) saturate(1.1);
}

.lm-page-hero--bright .lm-page-hero__bg::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(105deg,
		rgba(16,16,16,0.72) 0%,
		rgba(16,16,16,0.45) 45%,
		rgba(16,16,16,0.55) 100%
	);
}
.lm-page-hero__glow {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: radial-gradient(ellipse 50% 40% at 20% 50%, rgba(var(--lm-gold-rgb), 0.15) 0%, transparent 70%);
}
.lm-page-hero .lm-container { position: relative; z-index: 2; }
.lm-page-hero__title {
	font-size: clamp(2rem, 5.5vw, 3.8rem);
	font-weight: 900; line-height: 1.12;
	margin-bottom: 18px; color: var(--lm-gold);
}
.lm-page-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: var(--lm-gray-light); max-width: 560px;
	line-height: 1.75; margin-bottom: 28px;
}
.lm-page-hero__breadcrumb {
	display: flex; align-items: center; gap: 8px;
	font-size: 0.85rem; color: var(--lm-gray); margin-bottom: 18px;
}
.lm-page-hero__breadcrumb span:last-child { color: var(--lm-gold); }

.lm-page-hero--photo .lm-page-hero__bg {
	background: #08080a;
}

.lm-page-hero--photo .lm-page-hero__bg img {
	opacity: 1;
	object-fit: cover;
	object-position: 68% 48%;
	transform: none;
	filter: contrast(1.08) saturate(1.02) brightness(0.78);
}

.lm-page-hero--photo.lm-page-hero--bright .lm-page-hero__bg::after {
	background:
		linear-gradient(90deg,
			rgba(8, 8, 10, 0.78) 0%,
			rgba(8, 8, 10, 0.42) 32%,
			rgba(8, 8, 10, 0.08) 62%,
			rgba(8, 8, 10, 0.22) 100%),
		linear-gradient(180deg,
			rgba(8, 8, 10, 0.22) 0%,
			transparent 30%,
			transparent 70%,
			rgba(8, 8, 10, 0.32) 100%);
}

.lm-page-hero--photo .lm-page-hero__glow {
	background: radial-gradient(ellipse 48% 42% at 18% 48%, rgba(var(--lm-gold-rgb), 0.12) 0%, transparent 70%);
}

.lm-page-hero--design .lm-page-hero__bg {
	background: #f5c400;
}

.lm-page-hero--design .lm-page-hero__bg img {
	width: auto;
	height: auto;
	max-width: min(108vw, 1160px);
	max-height: 100%;
	object-fit: contain;
	opacity: 1;
	filter: none;
	transform: none;
	position: absolute;
	left: auto;
	right: clamp(4px, 2vw, 28px);
	top: 52%;
	translate: 0 -50%;
}

.lm-page-hero--design.lm-page-hero--bright .lm-page-hero__bg::after {
	background: linear-gradient(90deg,
		rgba(16, 16, 16, 0.58) 0%,
		rgba(16, 16, 16, 0.22) 46%,
		rgba(16, 16, 16, 0.06) 100%
	);
}

.lm-page-hero--design .lm-page-hero__glow {
	display: none;
}

/* ── Video reels ── */
.lm-reel {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 9 / 16;
	max-height: 520px;
	border: 1px solid rgba(var(--lm-gold-rgb), 0.22);
	background: #0a0a0a;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	transition: transform 0.35s var(--lm-ease), box-shadow 0.35s var(--lm-ease), border-color 0.35s;
}

.lm-reel:hover {
	transform: translateY(-4px);
	border-color: rgba(var(--lm-gold-rgb), 0.45);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(var(--lm-gold-rgb), 0.08);
}

.lm-reel__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #000;
	pointer-events: none;
}

.lm-reel__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.45) 100%);
	display: flex;
	align-items: flex-end;
	padding: 14px;
}

.lm-reel__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--lm-black);
	background: var(--lm-gold);
	box-shadow:
		0 4px 16px rgba(var(--lm-gold-rgb), 0.4),
		0 0 20px rgba(var(--lm-gold-rgb), 0.5),
		0 0 40px rgba(var(--lm-gold-rgb), 0.28);
	animation: reelBadgeGlow 3s ease-in-out infinite;
}

.lm-reel:hover .lm-reel__badge {
	animation: reelBadgeGlowStrong 1.8s ease-in-out infinite;
}

@keyframes reelBadgeGlow {
	0%, 100% {
		box-shadow:
			0 4px 14px rgba(var(--lm-gold-rgb), 0.35),
			0 0 18px rgba(var(--lm-gold-rgb), 0.45),
			0 0 36px rgba(var(--lm-gold-rgb), 0.22);
	}
	50% {
		box-shadow:
			0 4px 18px rgba(var(--lm-gold-rgb), 0.5),
			0 0 30px rgba(var(--lm-gold-rgb), 0.72),
			0 0 56px rgba(var(--lm-gold-rgb), 0.38);
	}
}

@keyframes reelBadgeGlowStrong {
	0%, 100% {
		box-shadow:
			0 4px 16px rgba(var(--lm-gold-rgb), 0.45),
			0 0 26px rgba(var(--lm-gold-rgb), 0.65),
			0 0 48px rgba(var(--lm-gold-rgb), 0.32);
	}
	50% {
		box-shadow:
			0 6px 22px rgba(var(--lm-gold-rgb), 0.55),
			0 0 38px rgba(var(--lm-gold-rgb), 0.9),
			0 0 68px rgba(var(--lm-gold-rgb), 0.45);
	}
}

.lm-reel__badge svg {
	width: 14px;
	height: 14px;
}

/* ── Service hub (unified Video / Photography) ── */
.lm-hub-section {
	padding: clamp(44px, 5vw, 76px) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lm-hub-section:first-child {
	padding-top: 0;
}

.lm-hub-section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.lm-hub-section__head {
	max-width: 680px;
	margin-bottom: clamp(24px, 4vw, 36px);
}

.lm-hub-section__title {
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 900;
	margin-bottom: 10px;
}

.lm-hub-section__intro {
	font-size: 0.95rem;
	color: var(--lm-gray-light);
	line-height: 1.75;
	margin: 0;
}

.lm-hub-bundle__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	align-items: start;
}

.lm-hub-bundle__extra[hidden] {
	display: none;
}

.lm-hub-bundle__extra {
	margin-top: 18px;
}

.lm-hub-bundle__more {
	margin-top: 28px;
	text-align: center;
}

.lm-hub-bundle__reel {
	width: 100%;
}

.lm-hub-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.lm-hub-gallery__item {
	margin: 0;
	position: relative;
	border-radius: var(--lm-radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--lm-glass-border);
	background: #111;
	cursor: pointer;
}

.lm-hub-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s var(--lm-ease-out);
}

.lm-hub-gallery__item:hover img {
	transform: scale(1.06);
}

.lm-hub-gallery__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(var(--lm-gold-rgb), 0);
	transition: background 0.35s var(--lm-ease);
	pointer-events: none;
}

.lm-hub-gallery__item:hover::after {
	background: rgba(var(--lm-gold-rgb), 0.1);
}

.lm-brand-cases {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 32px);
}

.lm-brand-case {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.lm-brand-case__cover {
	position: relative;
	margin: 0;
	padding: 0;
	border: 1px solid var(--lm-glass-border);
	border-radius: var(--lm-radius);
	overflow: hidden;
	background: #111;
	cursor: pointer;
	aspect-ratio: 16 / 9;
	width: 100%;
	display: block;
}

.lm-brand-case__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.lm-brand-case__view {
	position: absolute;
	left: 16px;
	bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(16, 16, 16, 0.78);
	border: 1px solid rgba(248, 196, 20, 0.45);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.lm-brand-case__tag {
	display: inline-block;
	color: var(--lm-gold);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.lm-brand-case__title {
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	font-weight: 900;
	margin: 0 0 8px;
}

.lm-brand-case__intro {
	margin: 0;
	color: var(--lm-gray-light);
	line-height: 1.7;
	font-size: 0.95rem;
}

.lm-brand-case__boards {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.lm-legal {
	padding: clamp(32px, 5vw, 60px);
}
.lm-legal--compact {
	padding: clamp(28px, 4vw, 48px);
}
.lm-legal--narrow {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.lm-legal h2 {
	font-size: 1.35rem; font-weight: 800;
	margin: 36px 0 14px; color: var(--lm-gold);
}
.lm-legal h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 10px; }
.lm-legal p { margin-bottom: 14px; color: var(--lm-gray-light); line-height: 1.85; }
.lm-legal a { color: var(--lm-gold); text-decoration: underline; text-underline-offset: 3px; }
.lm-legal ul { margin-bottom: 14px; padding-right: 20px; }
.lm-legal ul li { color: var(--lm-gray-light); margin-bottom: 6px; list-style: disc; }

.lm-text-gradient {
	background: linear-gradient(135deg, var(--lm-white), var(--lm-gold));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ── Scroll reveal ── */
[data-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--lm-ease-out), transform 0.7s var(--lm-ease-out);
}

[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

[data-animate="fade-left"] { transform: translateX(24px); }
[data-animate="fade-left"].is-visible { transform: translateX(0); }

[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-right"].is-visible { transform: translateX(0); }

[data-animate="scale"] { transform: scale(0.96); }
[data-animate="scale"].is-visible { transform: scale(1); }

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.4s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* ── Pricing ── */
.lm-pricing--direct {
	padding-top: calc(var(--lm-header-h) + 36px);
}

.lm-pricing__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: clamp(36px, 5vw, 56px);
}

.lm-pricing__tab {
	padding: 12px 24px;
	border-radius: var(--lm-radius-pill);
	border: 1px solid var(--lm-glass-border);
	background: rgba(255, 255, 255, 0.04);
	color: var(--lm-gray-light);
	font-family: var(--lm-font);
	font-size: 0.88rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s var(--lm-ease);
}

.lm-pricing__tab:hover {
	color: var(--lm-white);
	border-color: rgba(var(--lm-gold-rgb), 0.35);
}

.lm-pricing__tab.is-active {
	color: var(--lm-black);
	background: var(--lm-gold);
	border-color: var(--lm-gold);
	box-shadow: 0 6px 24px rgba(var(--lm-gold-rgb), 0.35);
}

.lm-pricing__panel {
	display: none;
}

.lm-pricing__panel.is-active {
	display: block;
}

.lm-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}

.lm-pricing-card {
	display: flex;
	flex-direction: column;
	padding: clamp(24px, 3vw, 32px);
	border-radius: var(--lm-radius);
	min-height: 100%;
}

.lm-pricing-card--featured {
	border-color: rgba(var(--lm-gold-rgb), 0.45);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(var(--lm-gold-rgb), 0.1);
	transform: translateY(-6px);
}

.lm-pricing-card--featured:hover {
	transform: translateY(-10px);
}

.lm-pricing-card__tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 5px 12px;
	margin-bottom: 14px;
	border-radius: var(--lm-radius-pill);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lm-gold);
	background: rgba(var(--lm-gold-rgb), 0.12);
	border: 1px solid rgba(var(--lm-gold-rgb), 0.28);
}

.lm-pricing-card--featured .lm-pricing-card__tag {
	color: var(--lm-black);
	background: var(--lm-gold);
	border-color: var(--lm-gold);
}

.lm-pricing-card__name {
	font-size: 1.45rem;
	font-weight: 900;
	margin-bottom: 8px;
}

.lm-pricing-card__desc {
	font-size: 0.88rem;
	color: var(--lm-gray-light);
	line-height: 1.6;
	margin-bottom: 20px;
	min-height: 2.8em;
}

.lm-pricing-card__price {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	margin-bottom: 4px;
}

.lm-pricing-card__from {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--lm-gray-light);
	text-transform: lowercase;
	margin-bottom: 6px;
}

.lm-pricing-card__amount {
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 900;
	line-height: 1;
	color: var(--lm-gold);
	letter-spacing: -0.02em;
}

.lm-pricing-card__currency {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--lm-gold);
	margin-bottom: 4px;
}

.lm-pricing-card__vat {
	font-size: 0.75rem;
	color: var(--lm-gray-light);
	margin-bottom: 20px;
	opacity: 0.85;
}

.lm-pricing-card__features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	flex: 1;
}

.lm-pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 0;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--lm-gray-light);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lm-pricing-card__features li:last-child {
	border-bottom: none;
}

.lm-pricing-card__check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	font-size: 0.7rem;
	font-weight: 800;
	color: var(--lm-gold);
	background: rgba(var(--lm-gold-rgb), 0.12);
}

.lm-pricing-card__cta {
	width: 100%;
	justify-content: center;
	margin-top: auto;
}

.lm-pricing__notes {
	margin-top: clamp(40px, 5vw, 56px);
	padding: clamp(24px, 4vw, 36px);
	border-radius: var(--lm-radius);
}

.lm-pricing__notes-title {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 14px;
	color: var(--lm-gold);
}

.lm-pricing__notes ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lm-pricing__notes li {
	position: relative;
	padding: 8px 0 8px 18px;
	font-size: 0.85rem;
	color: var(--lm-gray-light);
	line-height: 1.6;
}

.lm-pricing__notes li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--lm-gold);
}

.lm-pricing__cta {
	margin-top: clamp(32px, 4vw, 48px);
}

/* ── Glass box hover & glow (stable) ── */
.lm-glass-box {
	--mx: 50%;
	--my: 50%;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition:
		transform 0.4s var(--lm-ease),
		box-shadow 0.4s var(--lm-ease),
		border-color 0.4s var(--lm-ease);
}

.lm-glass-box__glow {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.22s var(--lm-ease);
	background: radial-gradient(
		circle 180px at var(--mx) var(--my),
		rgba(var(--lm-gold-rgb), 0.2) 0%,
		rgba(var(--lm-gold-rgb), 0.06) 42%,
		transparent 72%
	);
}

.lm-glass-box:hover .lm-glass-box__glow {
	opacity: 1;
	transition: opacity 0.35s var(--lm-ease);
}

.lm-glass-box:hover {
	border-color: rgba(var(--lm-gold-rgb), 0.35);
	box-shadow:
		0 12px 36px rgba(0, 0, 0, 0.32),
		0 0 0 1px rgba(var(--lm-gold-rgb), 0.08) inset,
		0 0 32px rgba(var(--lm-gold-rgb), 0.12);
}

.lm-glass-box > :not(.lm-glass-box__glow) {
	position: relative;
	z-index: 1;
}

/* Static gold text glow – no pulsing animation */
.lm-glass-box .lm-text-gold,
.lm-glass-box .lm-cta-banner__title,
.lm-glass-box .lm-pricing-card__amount,
.lm-glass-box .lm-pricing-card__currency,
.lm-glass-box .lm-pricing-card__tag,
.lm-glass-box .lm-pricing__notes-title {
	text-shadow:
		0 0 10px rgba(var(--lm-gold-rgb), 0.5),
		0 0 24px rgba(var(--lm-gold-rgb), 0.28);
	transition: text-shadow 0.35s var(--lm-ease);
}

.lm-glass-box:hover .lm-text-gold,
.lm-glass-box:hover .lm-cta-banner__title,
.lm-glass-box:hover .lm-pricing-card__amount,
.lm-glass-box:hover .lm-pricing-card__currency,
.lm-glass-box:hover .lm-pricing-card__tag,
.lm-glass-box:hover .lm-pricing__notes-title {
	text-shadow:
		0 0 14px rgba(var(--lm-gold-rgb), 0.65),
		0 0 32px rgba(var(--lm-gold-rgb), 0.35);
}

.lm-glass-box .lm-pricing-card__check {
	box-shadow: 0 0 12px rgba(var(--lm-gold-rgb), 0.25);
}

.lm-glass-box .lm-contact__item svg {
	filter: drop-shadow(0 0 6px rgba(var(--lm-gold-rgb), 0.45));
	transition: filter 0.35s var(--lm-ease);
}

.lm-glass-box:hover .lm-contact__item svg {
	filter: drop-shadow(0 0 8px rgba(var(--lm-gold-rgb), 0.6));
}

.lm-pricing-card--featured .lm-pricing-card__tag {
	text-shadow: none;
}

.lm-contact__item.lm-glass-box:hover { transform: translateY(-3px); }
.lm-cta-banner.lm-glass-box:hover { transform: translateY(-2px); }

.lm-btn--primary:hover {
	box-shadow: 0 8px 28px rgba(var(--lm-gold-rgb), 0.35);
}

@media (prefers-reduced-motion: reduce) {
	.lm-reel__badge {
		animation: none !important;
		box-shadow:
			0 4px 14px rgba(var(--lm-gold-rgb), 0.35),
			0 0 20px rgba(var(--lm-gold-rgb), 0.4);
	}

	.lm-work-card__slide,
	.lm-work-card__slide.is-active,
	.lm-work-card__slide.is-leaving {
		animation: none !important;
		transition: opacity 0.2s ease !important;
		transform: translate(-50%, -50%) !important;
	}
}

@media (max-width: 860px) {
	.lm-brand-cases { grid-template-columns: 1fr; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.lm-work__grid { grid-template-columns: 1fr; }
	.lm-footer__grid { grid-template-columns: 1fr 1fr; }
	.lm-hub-bundle__grid { grid-template-columns: repeat(2, 1fr); }
	.lm-hub-gallery { grid-template-columns: repeat(2, 1fr); }
	.lm-pricing__grid { grid-template-columns: repeat(2, 1fr); }
	.lm-pricing-card--featured { transform: none; }
	.lm-header.scrolled {
		padding: 10px 12px 0;
	}

	.lm-header.scrolled .lm-header__bar {
		height: 64px;
	}

	.lm-header__inner { grid-template-columns: 1fr auto; }
	.lm-nav { display: none; }
	.lm-header__cta { display: none; }
	.lm-menu-toggle { display: flex; }
	.lm-mobile-nav { display: block; }
}

@media (max-width: 640px) {
	.lm-contact { grid-template-columns: 1fr; }
	.lm-footer__grid { grid-template-columns: 1fr; }
	.lm-hub-bundle__grid {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin: 0 auto;
	}
	.lm-hub-gallery {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin: 0 auto;
	}
	.lm-brand-cases { grid-template-columns: 1fr; }
	.lm-pricing__grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}
	.lm-hero:not(.lm-hero--home) .lm-hero__actions { flex-direction: column; }
	.lm-hero:not(.lm-hero--home) .lm-hero__actions .lm-btn { width: 100%; }
	.lm-hero__scroll,
	.lm-hero__index,
	.lm-hero__locale { display: none; }
	.lm-work__head { flex-direction: column; align-items: flex-start; }
	.lm-hero--home { padding-bottom: 40px; }
	.lm-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

.lm-skip {
	position: absolute;
	left: 16px;
	top: -60px;
	z-index: 10000;
	padding: 10px 16px;
	background: var(--lm-gold);
	color: var(--lm-black);
	font-weight: 800;
	border-radius: 8px;
}
.lm-skip:focus {
	top: 16px;
	color: var(--lm-black);
}

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

/* Lightbox */
.lm-lightbox {
	position: fixed; inset: 0; z-index: 9999;
	background: rgba(0,0,0,0.92); backdrop-filter: blur(20px);
	display: flex; align-items: center; justify-content: center;
	cursor: pointer; opacity: 0; transition: opacity 0.3s var(--lm-ease);
}
.lm-lightbox.is-open { opacity: 1; }
.lm-lightbox img,
.lm-lightbox__video {
	max-width: 92vw; max-height: 90vh;
	border-radius: var(--lm-radius-sm);
	box-shadow: 0 24px 80px rgba(0,0,0,0.6);
	transform: scale(0.92); transition: transform 0.35s var(--lm-ease-out);
}
.lm-lightbox.is-open img,
.lm-lightbox.is-open .lm-lightbox__video { transform: scale(1); }
.lm-lightbox__video {
	width: auto;
	height: auto;
	background: #000;
	cursor: default;
}
.lm-lightbox--board {
	align-items: flex-start;
	justify-content: center;
	overflow-y: auto;
	padding: 28px 0 72px;
}
.lm-lightbox--board .lm-lightbox__board {
	width: min(1280px, 94vw);
	margin: 0 auto;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0,0,0,0.6);
	background: #0a0a0a;
}
.lm-lightbox--board img,
.lm-lightbox.is-open.lm-lightbox--board img {
	max-width: none;
	max-height: none;
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
	transform: none;
}
