@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
:root {
	--lmt-bg-deep: #050505;
	--lmt-bg-card: #111111;
	--lmt-bg-card-hover: #1a1a1a;
	--lmt-accent-amber: #e5a11a;
	--lmt-accent-amber-dim: rgba(229, 161, 26, 0.15);
	--lmt-accent-amber-glow: rgba(229, 161, 26, 0.4);
	--lmt-white: #ffffff;
	--lmt-text-primary: #cccccc;
	--lmt-text-secondary: #555555;
	--lmt-text-muted: #888888;
	--lmt-border: rgba(255, 255, 255, 0.06);
	--lmt-border-accent: rgba(229, 161, 26, 0.3);
	--lmt-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--lmt-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--lmt-radius: 2px;
	--lmt-radius-lg: 4px;
	--lmt-transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--lmt-transition-fast: 0.2s ease;
	--lmt-grid-gap: clamp(1.5rem, 3vw, 4rem);
	--lmt-section-pad: clamp(4rem, 8vw, 10rem);
	--lmt-container-max: 1340px;
	--lmt-header-h: 72px;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--lmt-font-body);
	background-color: var(--lmt-bg-deep);
	color: var(--lmt-text-primary);
	line-height: 1.7;
	overflow-x: hidden;
	position: relative;
}

/* ── FILM GRAIN OVERLAY ── */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 256px 256px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: var(--lmt-bg-deep);
}
::-webkit-scrollbar-thumb {
	background: var(--lmt-text-secondary);
	border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--lmt-accent-amber);
}

/* ── SELECTION ── */
::selection {
	background: var(--lmt-accent-amber);
	color: var(--lmt-bg-deep);
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--lmt-font-display);
	font-weight: 400;
	line-height: 1.15;
	color: var(--lmt-white);
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(2.8rem, 6vw, 5.5rem);
	font-weight: 300;
}

h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 400;
}

h3 {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 500;
}

h4 {
	font-size: clamp(1.1rem, 1.5vw, 1.4rem);
	font-weight: 500;
}

p {
	font-size: clamp(0.95rem, 1.1vw, 1.05rem);
	color: var(--lmt-text-primary);
	max-width: 72ch;
}

a {
	color: var(--lmt-accent-amber);
	text-decoration: none;
	transition: color var(--lmt-transition-fast);
}

a:hover {
	color: var(--lmt-white);
}

small {
	font-size: 0.85rem;
	color: var(--lmt-text-secondary);
}

/* ── UTILITY CLASSES ── */
.lmt-container {
	width: 100%;
	max-width: var(--lmt-container-max);
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.lmt-section {
	padding: var(--lmt-section-pad) 0;
	position: relative;
}

.lmt-section + .lmt-section {
	border-top: 1px solid var(--lmt-border);
}

.lmt-label {
	font-family: var(--lmt-font-body);
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--lmt-accent-amber);
	display: inline-block;
	margin-bottom: 1.5rem;
}

.lmt-divider {
	width: 60px;
	height: 1px;
	background: var(--lmt-accent-amber);
	margin: 2rem 0;
	opacity: 0.6;
}

.lmt-text-amber {
	color: var(--lmt-accent-amber);
}

.lmt-text-white {
	color: var(--lmt-white);
}

.lmt-text-muted {
	color: var(--lmt-text-muted);
}

.lmt-mt-1 {
	margin-top: 0.5rem;
}
.lmt-mt-2 {
	margin-top: 1rem;
}
.lmt-mt-3 {
	margin-top: 1.5rem;
}
.lmt-mt-4 {
	margin-top: 2rem;
}
.lmt-mb-1 {
	margin-bottom: 0.5rem;
}
.lmt-mb-2 {
	margin-bottom: 1rem;
}
.lmt-mb-3 {
	margin-bottom: 1.5rem;
}
.lmt-mb-4 {
	margin-bottom: 2rem;
}

/* ── ANIMATIONS ── */
@keyframes lmt-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes lmt-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes lmt-slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lmt-slideInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lmt-apertureOpen {
	from {
		clip-path: circle(0% at 50% 50%);
		opacity: 0;
	}
	to {
		clip-path: circle(100% at 50% 50%);
		opacity: 1;
	}
}

@keyframes lmt-apertureClose {
	from {
		clip-path: circle(100% at 50% 50%);
		opacity: 1;
	}
	to {
		clip-path: circle(0% at 50% 50%);
		opacity: 0;
	}
}

@keyframes lmt-pulse {
	0%,
	100% {
		opacity: 0.4;
	}
	50% {
		opacity: 1;
	}
}

@keyframes lmt-grainShift {
	0% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(-2px, 2px);
	}
	50% {
		transform: translate(2px, -1px);
	}
	75% {
		transform: translate(-1px, -2px);
	}
	100% {
		transform: translate(0, 0);
	}
}

@keyframes lmt-lightSweep {
	0% {
		left: -100%;
	}
	100% {
		left: 200%;
	}
}

.lmt-animate-in {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.lmt-animate-in.lmt-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── HEADER ── */
.lmt-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--lmt-header-h);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	background: rgba(5, 5, 5, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--lmt-border);
	transition: background var(--lmt-transition);
}

.lmt-header.lmt-scrolled {
	background: rgba(5, 5, 5, 0.95);
}

.lmt-logo {
	font-family: var(--lmt-font-display);
	font-size: 1.3rem;
	font-weight: 400;
	width: 50px;
	height: 50px;
	color: var(--lmt-white);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.lmt-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lmt-logo-mark {
	width: 28px;
	height: 28px;
	border: 1.5px solid var(--lmt-accent-amber);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.lmt-logo-mark::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--lmt-accent-amber);
	border-radius: 50%;
}

.lmt-logo span {
	color: var(--lmt-accent-amber);
	font-weight: 600;
}

/* Aperture Menu Toggle */
.lmt-menu-toggle {
	width: 48px;
	height: 48px;
	background: transparent;
	border: 1.5px solid var(--lmt-border);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--lmt-transition);
	position: relative;
	z-index: 1100;
}

.lmt-menu-toggle:hover {
	border-color: var(--lmt-accent-amber);
}

.lmt-menu-toggle .lmt-aperture-icon {
	width: 22px;
	height: 22px;
	position: relative;
}

.lmt-aperture-icon span {
	display: block;
	width: 100%;
	height: 1.5px;
	background: var(--lmt-white);
	position: absolute;
	left: 0;
	transition: all var(--lmt-transition);
}

.lmt-aperture-icon span:nth-child(1) {
	top: 4px;
}
.lmt-aperture-icon span:nth-child(2) {
	top: 10px;
}
.lmt-aperture-icon span:nth-child(3) {
	top: 16px;
}

.lmt-menu-toggle.lmt-active .lmt-aperture-icon span:nth-child(1) {
	top: 10px;
	transform: rotate(45deg);
}
.lmt-menu-toggle.lmt-active .lmt-aperture-icon span:nth-child(2) {
	opacity: 0;
}
.lmt-menu-toggle.lmt-active .lmt-aperture-icon span:nth-child(3) {
	top: 10px;
	transform: rotate(-45deg);
}

/* Fullscreen Menu */
.lmt-fullscreen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(5, 5, 5, 0.97);
	z-index: 1050;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease,
		visibility 0.5s ease;
}

.lmt-fullscreen-menu.lmt-open {
	opacity: 1;
	visibility: visible;
}

.lmt-fullscreen-menu nav {
	text-align: center;
}

.lmt-fullscreen-menu nav a {
	display: block;
	font-family: var(--lmt-font-display);
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 300;
	color: var(--lmt-text-secondary);
	padding: 0.6rem 0;
	transition: all var(--lmt-transition);
	position: relative;
}

.lmt-fullscreen-menu nav a:hover,
.lmt-fullscreen-menu nav a.lmt-current {
	color: var(--lmt-white);
}

.lmt-fullscreen-menu nav a::after {
	content: '';
	position: absolute;
	bottom: 0.4rem;
	left: 50%;
	width: 0;
	height: 1px;
	background: var(--lmt-accent-amber);
	transition: all var(--lmt-transition);
	transform: translateX(-50%);
}

.lmt-fullscreen-menu nav a:hover::after {
	width: 60%;
}

/* ── HERO ── */
.lmt-hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--lmt-grid-gap);
	padding: calc(var(--lmt-header-h) + 4rem) clamp(1.5rem, 4vw, 3rem) 4rem;
	position: relative;
	overflow: hidden;
}

.lmt-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: radial-gradient(
		ellipse at 70% 50%,
		var(--lmt-accent-amber-dim),
		transparent 70%
	);
	pointer-events: none;
}

.lmt-hero-vertical {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
}

.lmt-hero-vertical h1 {
	font-size: clamp(1.8rem, 3.5vw, 3rem);
	font-weight: 300;
	letter-spacing: 0.05em;
	white-space: nowrap;
	color: var(--lmt-white);
}

.lmt-hero-center {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.lmt-hero-lens {
	width: clamp(220px, 30vw, 400px);
	height: clamp(220px, 30vw, 400px);
	border-radius: 50%;
	border: 1px solid var(--lmt-border-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: radial-gradient(
		circle,
		rgba(229, 161, 26, 0.05),
		transparent 70%
	);
}

.lmt-hero-lens::before {
	content: '';
	width: 60%;
	height: 60%;
	border-radius: 50%;
	border: 1px solid rgba(229, 161, 26, 0.15);
}

.lmt-hero-lens::after {
	content: '';
	position: absolute;
	width: 30%;
	height: 30%;
	border-radius: 50%;
	border: 1px solid rgba(229, 161, 26, 0.25);
	animation: lmt-pulse 3s ease-in-out infinite;
}

.lmt-hero-text {
	max-width: 480px;
}

.lmt-hero-text p {
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	line-height: 1.8;
	color: var(--lmt-text-primary);
	animation: lmt-fadeInUp 0.8s ease 0.3s both;
}

/* ── TABS SECTION ── */
.lmt-tabs-section {
	background: var(--lmt-bg-deep);
}

.lmt-tabs-header {
	display: flex;
	border-bottom: 1px solid var(--lmt-border);
	overflow-x: auto;
	gap: 0;
}

.lmt-tab-btn {
	flex: 1;
	min-width: 180px;
	padding: 1.5rem 2rem;
	font-family: var(--lmt-font-display);
	font-size: 1.15rem;
	font-weight: 400;
	color: var(--lmt-text-secondary);
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	transition: all var(--lmt-transition);
	text-align: left;
	position: relative;
}

.lmt-tab-btn:hover {
	color: var(--lmt-text-primary);
	background: rgba(255, 255, 255, 0.02);
}

.lmt-tab-btn.lmt-active {
	color: var(--lmt-white);
	border-bottom-color: var(--lmt-accent-amber);
}

.lmt-tab-btn .lmt-tab-num {
	font-family: var(--lmt-font-body);
	font-size: 0.65rem;
	color: var(--lmt-accent-amber);
	display: block;
	margin-bottom: 0.4rem;
	letter-spacing: 0.15em;
}

.lmt-tab-content {
	display: none;
	padding: 3rem 0;
	animation: lmt-fadeIn 0.5s ease;
}

.lmt-tab-content.lmt-active {
	display: block;
}

.lmt-tab-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--lmt-grid-gap);
	align-items: start;
}

.lmt-tab-body h3 {
	margin-bottom: 1rem;
}

.lmt-tab-body p {
	line-height: 1.85;
}

/* ── MASONRY GALLERY ── */
.lmt-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lmt-gallery-item {
	background: var(--lmt-bg-card);
	border: 1px solid var(--lmt-border);
	overflow: hidden;
	transition: all var(--lmt-transition);
	position: relative;
}

.lmt-gallery-item:hover {
	border-color: var(--lmt-border-accent);
	transform: translateY(-4px);
}

.lmt-gallery-item:nth-child(2) {
	grid-row: span 2;
}

.lmt-gallery-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	/* height: 100%; */
	background: var(--lmt-bg-card);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lmt-text-secondary);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--lmt-border);
	position: relative;
	overflow: hidden;
}

.lmt-gallery-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* .lmt-gallery-item:nth-child(2) .lmt-gallery-img {
	aspect-ratio: 3 / 4;
} */

.lmt-gallery-img::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(229, 161, 26, 0.05),
		transparent
	);
	transition: left 0.6s ease;
}

.lmt-gallery-item:hover .lmt-gallery-img::after {
	left: 200%;
}

.lmt-gallery-caption {
	padding: 1.5rem;
}

.lmt-gallery-caption h4 {
	font-size: 1rem;
	margin-bottom: 0.6rem;
}

.lmt-gallery-caption p {
	font-size: 0.85rem;
	color: var(--lmt-text-muted);
	line-height: 1.7;
}

/* ── PROFILE SLIDER ── */
.lmt-slider-wrap {
	position: relative;
	overflow: hidden;
}

.lmt-slider-track {
	display: flex;

	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lmt-profile-card {
	min-width: 100%;
	flex: 0 0 100%;
	background: var(--lmt-bg-card);
	border: 1px solid var(--lmt-border);
	padding: 2.5rem 2rem;
	flex-shrink: 0;
	transition: all var(--lmt-transition);
}

.lmt-profile-card:hover {
	border-color: var(--lmt-border-accent);
}

.lmt-profile-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--lmt-bg-deep);
	border: 1px solid var(--lmt-border);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--lmt-font-display);
	font-size: 1.6rem;
	color: var(--lmt-accent-amber);
}

.lmt-profile-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.lmt-profile-card h4 {
	margin-bottom: 0.3rem;
}

.lmt-profile-card .lmt-profile-loc {
	font-size: 0.8rem;
	color: var(--lmt-accent-amber);
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.lmt-profile-card p {
	font-size: 0.9rem;
	color: var(--lmt-text-muted);
}

.lmt-slider-controls {
	display: flex;
	gap: 0.75rem;
	margin-top: 2rem;
}

.lmt-slider-btn {
	width: 48px;
	height: 48px;
	background: transparent;
	border: 1px solid var(--lmt-border);
	color: var(--lmt-text-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	transition: all var(--lmt-transition);
}

.lmt-slider-btn:hover {
	border-color: var(--lmt-accent-amber);
	color: var(--lmt-accent-amber);
}

/* ── ACCORDIONS ── */
.lmt-accordion-group {
	max-width: 800px;
}

.lmt-accordion {
	border-bottom: 1px solid var(--lmt-border);
}

.lmt-accordion-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 0;
	font-family: var(--lmt-font-display);
	font-size: 1.15rem;
	font-weight: 400;
	color: var(--lmt-white);
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: color var(--lmt-transition-fast);
	gap: 1rem;
}

.lmt-accordion-header:hover {
	color: var(--lmt-accent-amber);
}

.lmt-accordion-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	position: relative;
	transition: transform var(--lmt-transition);
}

.lmt-accordion-icon::before,
.lmt-accordion-icon::after {
	content: '';
	position: absolute;
	background: var(--lmt-accent-amber);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform var(--lmt-transition);
}

.lmt-accordion-icon::before {
	width: 14px;
	height: 1px;
}

.lmt-accordion-icon::after {
	width: 1px;
	height: 14px;
}

.lmt-accordion.lmt-open .lmt-accordion-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.lmt-accordion-body {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.4s ease,
		padding 0.4s ease;
}

.lmt-accordion.lmt-open .lmt-accordion-body {
	max-height: 1000px;
	padding-bottom: 1.5rem;
}

.lmt-accordion-body p {
	font-size: 0.95rem;
	color: var(--lmt-text-muted);
	line-height: 1.8;
}

/* ── FORMS ── */
.lmt-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.lmt-form-group {
	position: relative;
}

.lmt-form-group label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--lmt-text-secondary);
	margin-bottom: 0.5rem;
}

.lmt-form-group input,
.lmt-form-group textarea {
	width: 100%;
	padding: 1rem 1.2rem;
	font-family: var(--lmt-font-body);
	font-size: 0.95rem;
	color: var(--lmt-white);
	background: var(--lmt-bg-card);
	border: 1px solid var(--lmt-border);
	border-radius: var(--lmt-radius);
	outline: none;
	transition:
		border-color var(--lmt-transition),
		box-shadow var(--lmt-transition);
}

.lmt-form-group input:focus,
.lmt-form-group textarea:focus {
	border-color: var(--lmt-accent-amber);
	box-shadow: 0 0 0 3px var(--lmt-accent-amber-dim);
}

.lmt-form-group input.lmt-error,
.lmt-form-group textarea.lmt-error {
	border-color: #e53e3e;
}

.lmt-form-group .lmt-error-msg {
	display: none;
	font-size: 0.75rem;
	color: #e53e3e;
	margin-top: 0.4rem;
}

.lmt-form-group input.lmt-error ~ .lmt-error-msg,
.lmt-form-group textarea.lmt-error ~ .lmt-error-msg {
	display: block;
}

.lmt-form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.lmt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 1rem 2.5rem;
	font-family: var(--lmt-font-body);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--lmt-bg-deep);
	background: var(--lmt-accent-amber);
	border: none;
	border-radius: var(--lmt-radius);
	cursor: pointer;
	transition: all var(--lmt-transition);
	position: relative;
	overflow: hidden;
}

.lmt-btn:hover {
	background: var(--lmt-white);
	color: var(--lmt-bg-deep);
}

.lmt-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	background: var(--lmt-text-secondary);
}

.lmt-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
}

.lmt-btn:not(:disabled):hover::after {
	animation: lmt-lightSweep 0.6s ease;
}

/* ── MAP ── */
.lmt-map-container {
	width: 100%;
	height: 100%;
	background: var(--lmt-bg-card);
	border: 1px solid var(--lmt-border);
	border-radius: var(--lmt-radius);
	overflow: hidden;
	position: relative;
}

.lmt-map {
	height: 100%;
	min-height: 300px;
	filter: grayscale(1) invert(1) contrast(0.8) brightness(0.5);

	width: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.lmt-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.lmt-contact-map {
	position: relative;
	height: 100%;
	/* min-height: 300px; */

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.lmt-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ── CONTACT GRID ── */
.lmt-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--lmt-grid-gap);
	align-items: start;
}

/* ── INFO CARDS ── */
.lmt-info-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.lmt-info-card {
	background: var(--lmt-bg-card);
	border: 1px solid var(--lmt-border);
	padding: 2rem;
	text-align: center;
	transition: all var(--lmt-transition);
}

.lmt-info-card:hover {
	border-color: var(--lmt-border-accent);
	transform: translateY(-3px);
}

.lmt-info-card i {
	font-size: 1.5rem;
	color: var(--lmt-accent-amber);
	margin-bottom: 1rem;
	display: block;
}

.lmt-info-card h4 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.lmt-info-card p,
.lmt-info-card a {
	font-size: 0.9rem;
	color: var(--lmt-text-muted);
}

/* ── CONTENT BLOCKS ── */
.lmt-content-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--lmt-grid-gap);
	align-items: start;
}

.lmt-content-block.lmt-reverse {
	direction: rtl;
}

.lmt-content-block.lmt-reverse > * {
	direction: ltr;
}

.lmt-content-aside {
	background: var(--lmt-bg-card);
	border: 1px solid var(--lmt-border);
	padding: 2.5rem;
	position: relative;
}

.lmt-content-aside::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: var(--lmt-accent-amber);
	opacity: 0.5;
}

/* ── TIMELINE / CHRONOLOGY ── */
.lmt-timeline {
	position: relative;
	padding-left: 2.5rem;
}

.lmt-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: var(--lmt-border);
}

.lmt-timeline-item {
	position: relative;
	padding-bottom: 2rem;
}

.lmt-timeline-item::before {
	content: '';
	position: absolute;
	left: -2.5rem;
	top: 0.5rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lmt-accent-amber);
	box-shadow: 0 0 12px var(--lmt-accent-amber-glow);
}

.lmt-timeline-item h4 {
	margin-bottom: 0.4rem;
}

.lmt-timeline-year {
	font-family: var(--lmt-font-body);
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--lmt-accent-amber);
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 0.5rem;
}

/* ── DATA TABLE ── */
.lmt-data-table {
	width: 100%;
	border-collapse: collapse;
}

.lmt-data-table th,
.lmt-data-table td {
	padding: 1rem 1.2rem;
	text-align: left;
	border-bottom: 1px solid var(--lmt-border);
	font-size: 0.9rem;
}

.lmt-data-table th {
	font-family: var(--lmt-font-body);
	font-weight: 600;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--lmt-accent-amber);
	background: rgba(229, 161, 26, 0.05);
}

.lmt-data-table tr:hover td {
	background: rgba(255, 255, 255, 0.02);
}

.lmt-data-table td {
	color: var(--lmt-text-primary);
}

/* ── CAROUSEL ── */
.lmt-carousel-wrap {
	position: relative;
	overflow: hidden;
}

.lmt-carousel-track {
	display: flex;
	/* gap: 2rem; */
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lmt-carousel-slide {
	min-width: 100%;
	flex: 0 0 100%;
	background: var(--lmt-bg-card);
	border: 1px solid var(--lmt-border);
	padding: 2.5rem;
	flex-shrink: 0;
}

.lmt-carousel-slide h4 {
	margin-bottom: 1rem;
}

.lmt-carousel-controls {
	display: flex;
	gap: 0.75rem;
	margin-top: 2rem;
}

/* ── CARDS GRID ── */
.lmt-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lmt-card {
	background: var(--lmt-bg-card);
	border: 1px solid var(--lmt-border);
	padding: 2.5rem 2rem;
	transition: all var(--lmt-transition);
	position: relative;
	overflow: hidden;
}

.lmt-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--lmt-accent-amber), transparent);
	opacity: 0;
	transition: opacity var(--lmt-transition);
}

.lmt-card:hover {
	border-color: var(--lmt-border-accent);
	transform: translateY(-4px);
}

.lmt-card:hover::before {
	opacity: 1;
}

.lmt-card h4 {
	margin-bottom: 1rem;
}

.lmt-card p {
	font-size: 0.9rem;
	color: var(--lmt-text-muted);
	line-height: 1.8;
}

/* ── COMPARISON BLOCK ── */
.lmt-comparison {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 2rem;
	align-items: start;
}

.lmt-comparison-vs {
	font-family: var(--lmt-font-display);
	font-size: 2rem;
	color: var(--lmt-accent-amber);
	align-self: center;
	opacity: 0.5;
}

.lmt-comparison-col {
	background: var(--lmt-bg-card);
	border: 1px solid var(--lmt-border);
	padding: 2.5rem;
}

.lmt-comparison-col h4 {
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--lmt-border);
}

/* ── FOOTER ── */
.lmt-footer {
	background: var(--lmt-bg-card);
	border-top: 1px solid var(--lmt-border);
	padding: 5rem 0 0;
}

.lmt-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: var(--lmt-grid-gap);
	padding-bottom: 4rem;
}

.lmt-footer-col h4 {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--lmt-border);
}

.lmt-footer-col p {
	font-size: 0.88rem;
	color: var(--lmt-text-muted);
	line-height: 1.7;
}

.lmt-footer-col ul {
	list-style: none;
}

.lmt-footer-col ul li {
	margin-bottom: 0.6rem;
}

.lmt-footer-col ul li a {
	font-size: 0.88rem;
	color: var(--lmt-text-muted);
	transition: color var(--lmt-transition-fast);
}

.lmt-footer-col ul li a:hover {
	color: var(--lmt-accent-amber);
}

.lmt-footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.lmt-footer-social a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--lmt-border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lmt-text-muted);
	font-size: 0.9rem;
	transition: all var(--lmt-transition);
}

.lmt-footer-social a:hover {
	border-color: var(--lmt-accent-amber);
	color: var(--lmt-accent-amber);
}

.lmt-footer-bottom {
	border-top: 1px solid var(--lmt-border);
	padding: 1.5rem 0;
	text-align: center;
}

.lmt-footer-bottom p {
	font-size: 0.8rem;
	color: var(--lmt-text-secondary);
	margin: 0 auto;
}

/* ── COOKIE BANNER ── */
.lmt-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--lmt-bg-card);
	border-top: 1px solid var(--lmt-border);
	padding: 1.2rem clamp(1.5rem, 4vw, 3rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	z-index: 9998;
	transform: translateY(100%);
	transition: transform 0.5s ease;
}

.lmt-cookie-banner.lmt-show {
	transform: translateY(0);
}

.lmt-cookie-banner p {
	font-size: 0.85rem;
	color: var(--lmt-text-muted);
	margin: 0;
}

.lmt-cookie-banner a {
	color: var(--lmt-accent-amber);
}

.lmt-cookie-accept {
	padding: 0.7rem 1.8rem;
	font-size: 0.75rem;
	flex-shrink: 0;
}

/* ── PAGE HERO (Internal Pages) ── */
.lmt-page-hero {
	padding: calc(var(--lmt-header-h) + 5rem) 0 4rem;
	/* min-height: 100vh; */
	text-align: center;
	position: relative;
	background: radial-gradient(
		ellipse at 50% 30%,
		var(--lmt-accent-amber-dim),
		transparent 60%
	);
}

.lmt-hero::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url('assets/lmt-hero.webp') center/cover;
	opacity: 0.3;
}

.lmt-page-hero .lmt-label {
	margin-bottom: 1.5rem;
}

.lmt-page-hero h1 {
	margin-bottom: 1.5rem;
}

.lmt-page-hero p {
	max-width: 600px;
	margin: 0 auto;
	color: var(--lmt-text-muted);
}

/* ── GRAPH/CHART CSS ── */
.lmt-chart {
	display: flex;
	align-items: flex-end;
	gap: 0.5rem;
	height: 200px;
	padding: 1rem 0;
	border-bottom: 1px solid var(--lmt-border);
}

.lmt-chart-bar {
	flex: 1;
	background: linear-gradient(
		to top,
		var(--lmt-accent-amber),
		rgba(229, 161, 26, 0.2)
	);
	border-radius: 2px 2px 0 0;
	position: relative;
	transition: all var(--lmt-transition);
	cursor: pointer;
	min-height: 10px;
}

.lmt-chart-bar:hover {
	filter: brightness(1.3);
}

.lmt-chart-bar::after {
	content: attr(data-label);
	position: absolute;
	bottom: -2rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.65rem;
	color: var(--lmt-text-secondary);
	white-space: nowrap;
}

.lmt-chart-labels {
	display: flex;
	justify-content: space-around;
	margin-top: 2.5rem;
}

/* ── SPACER ── */
.lmt-spacer {
	height: var(--lmt-header-h);
}

/* ── LIGHTBOX APERTURE TRANSITIONS ── */
.lmt-aperture-transition {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--lmt-bg-deep);
	z-index: 10000;
	pointer-events: none;
	animation: lmt-apertureOpen 0.8s ease forwards;
}

/* ── ARTICLE STYLES ── */
.lmt-article {
	max-width: 750px;
}

.lmt-article h3 {
	margin-bottom: 1.2rem;
}

.lmt-article p {
	margin-bottom: 1.5rem;
	line-height: 1.9;
}

.lmt-article blockquote {
	border-left: 3px solid var(--lmt-accent-amber);
	padding: 1rem 1.5rem;
	margin: 2rem 0;
	background: rgba(229, 161, 26, 0.03);
	font-style: italic;
	color: var(--lmt-text-muted);
}

/* ── SECTION HEADERS ── */
.lmt-section-header {
	margin-bottom: 3rem;
}

.lmt-section-header h2 {
	margin-bottom: 1rem;
}

.lmt-section-header p {
	color: var(--lmt-text-muted);
	max-width: 560px;
}

/* ── DEPTH OF FIELD TABLE STYLING ── */
.lmt-dof-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--lmt-border);
	border-radius: var(--lmt-radius);
}

/* ── NUMBER INDICATOR ── */
.lmt-num {
	font-family: var(--lmt-font-body);
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--lmt-accent-amber);
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 0.75rem;
}

/* ── LINK WITH ARROW ── */
.lmt-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--lmt-accent-amber);
	transition: gap var(--lmt-transition);
}

.lmt-link-arrow:hover {
	gap: 0.8rem;
	color: var(--lmt-white);
}

/* ── THANK YOU PAGE ── */
.lmt-thankyou {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.lmt-thankyou h1 {
	margin-bottom: 1rem;
}

.lmt-thankyou p {
	margin: 0 auto 2rem;
}

/* ── LEGAL PAGES ── */
.lmt-legal {
	padding: calc(var(--lmt-header-h) + 4rem) 0 4rem;
}

.lmt-legal h1 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.lmt-legal h2 {
	font-size: 1.5rem;
	margin: 2.5rem 0 1rem;
}

.lmt-legal p,
.lmt-legal li {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--lmt-text-muted);
	margin-bottom: 1rem;
}

.lmt-legal ul {
	list-style: none;
	padding-left: 1.5rem;
}

.lmt-legal ul li::before {
	content: '—';
	color: var(--lmt-accent-amber);
	margin-right: 0.5rem;
}

/* ── COUNTER ── */
.lmt-counter-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	text-align: center;
	padding: 3rem 0;
	border-top: 1px solid var(--lmt-border);
	border-bottom: 1px solid var(--lmt-border);
}

.lmt-counter-item h3 {
	font-size: 2.5rem;
	color: var(--lmt-accent-amber);
	margin-bottom: 0.3rem;
}

.lmt-counter-item p {
	font-size: 0.8rem;
	color: var(--lmt-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 auto;
}

@media (max-width: 640px) {
	.lmt-counter-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.lmt-hero {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.lmt-hero-vertical {
		writing-mode: horizontal-tb;
		transform: none;
	}

	.lmt-hero-vertical h1 {
		white-space: normal;
	}

	.lmt-hero-text {
		max-width: none;
	}

	.lmt-tab-body,
	.lmt-contact-grid,
	.lmt-content-block {
		grid-template-columns: 1fr;
	}

	.lmt-content-block.lmt-reverse {
		direction: ltr;
	}

	.lmt-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.lmt-gallery-item:nth-child(2) {
		grid-row: auto;
	}

	.lmt-profile-card {
		min-width: 100%;
	}

	.lmt-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.lmt-cards-grid {
		grid-template-columns: 1fr 1fr;
	}

	.lmt-info-cards {
		grid-template-columns: 1fr;
	}

	.lmt-comparison {
		grid-template-columns: 1fr;
	}

	.lmt-comparison-vs {
		text-align: center;
	}

	.lmt-carousel-slide {
		min-width: 100%;
	}

	.lmt-hero-text p {
		margin: 0 auto;
	}
}

@media (max-width: 640px) {
	:root {
		--lmt-section-pad: 3rem;
	}

	.lmt-hero {
		padding-top: calc(var(--lmt-header-h) + 2rem);
		min-height: auto;
	}

	.lmt-hero-lens {
		width: 180px;
		height: 180px;
	}

	.lmt-tabs-header {
		flex-direction: column;
	}

	.lmt-tab-btn {
		border-bottom: 1px solid var(--lmt-border);
	}

	.lmt-tab-btn.lmt-active {
		border-left: 2px solid var(--lmt-accent-amber);
		border-bottom: 1px solid var(--lmt-border);
	}

	.lmt-gallery {
		grid-template-columns: 1fr;
	}

	.lmt-profile-card {
		min-width: 100%;
	}

	.lmt-footer-grid {
		grid-template-columns: 1fr;
	}

	.lmt-cards-grid {
		grid-template-columns: 1fr;
	}

	.lmt-fullscreen-menu nav a {
		font-size: 1.8rem;
	}

	.lmt-cookie-banner {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.lmt-logo {
		font-size: 1rem;
		width: 40px;
		height: 40px;
	}

	.lmt-content-block {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}

:root {
	/* Цветовая палитра Obsidian Cinema */
	--lmt-legal-obsidian: #050505;
	--lmt-legal-graphite: #111111;
	--lmt-legal-amber: #e5a11a;
	--lmt-legal-white: #ffffff;
	--lmt-legal-text: #cccccc;
	--lmt-legal-shadow: #555555;

	/* Типографика */
	--lmt-legal-font-primary:
		'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--lmt-legal-font-mono: 'Space Mono', 'Courier New', monospace;

	/* Отступы и размеры */
	--lmt-legal-spacing-xs: 0.5rem;
	--lmt-legal-spacing-sm: 1rem;
	--lmt-legal-spacing-md: 1.5rem;
	--lmt-legal-spacing-lg: 2rem;
	--lmt-legal-spacing-xl: 3rem;
	--lmt-legal-spacing-xxl: 4rem;

	/* Переходы */
	--lmt-legal-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lmt-legal-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 120px var(--lmt-legal-spacing-lg) var(--lmt-legal-spacing-xxl);
	position: relative;
}

/* === ШАПКА СТРАНИЦЫ === */
.lmt-legal-header {
	margin-bottom: var(--lmt-legal-spacing-xxl);
	padding-bottom: var(--lmt-legal-spacing-xl);
	border-bottom: 1px solid var(--lmt-legal-shadow);
	position: relative;
}

.lmt-legal-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--lmt-legal-amber),
		transparent
	);
	box-shadow: 0 0 10px var(--lmt-legal-amber);
}

.lmt-legal-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--lmt-legal-white);
	margin-bottom: var(--lmt-legal-spacing-sm);
	letter-spacing: -0.02em;
	text-transform: uppercase;
	position: relative;
}

.lmt-legal-subtitle {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	color: var(--lmt-legal-amber);
	font-weight: 500;
	margin-bottom: var(--lmt-legal-spacing-xs);
	letter-spacing: 0.05em;
}

.lmt-legal-date {
	font-size: 0.875rem;
	color: var(--lmt-legal-shadow);
	font-family: var(--lmt-legal-font-mono);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* === СЕКЦИИ КОНТЕНТА === */
.lmt-legal-content {
	background-color: var(--lmt-legal-graphite);
	border-radius: 8px;
	padding: var(--lmt-legal-spacing-xl);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	position: relative;
}

.lmt-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--lmt-legal-amber),
		transparent
	);
}

.lmt-legal-section {
	margin-bottom: var(--lmt-legal-spacing-xl);
	padding: var(--lmt-legal-spacing-lg);
	background-color: rgba(17, 17, 17, 0.5);
	border-left: 3px solid var(--lmt-legal-shadow);
	border-radius: 4px;
	transition: var(--lmt-legal-transition);
	position: relative;
}

.lmt-legal-section:hover {
	border-left-color: var(--lmt-legal-amber);
	background-color: rgba(229, 161, 26, 0.03);
	box-shadow: 0 2px 15px rgba(229, 161, 26, 0.1);
}

.lmt-legal-section:last-child {
	margin-bottom: 0;
}

/* === НОМЕР СЕКЦИИ === */
.lmt-legal-section-number {
	position: absolute;
	top: -3px;
	left: var(--lmt-legal-spacing-md);
	font-family: var(--lmt-legal-font-mono);
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--lmt-legal-amber);
	background-color: var(--lmt-legal-graphite);
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	border: 1px solid var(--lmt-legal-shadow);
	letter-spacing: 0.1em;
}

/* === ЗАГОЛОВКИ СЕКЦИЙ === */
.lmt-legal-section-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: var(--lmt-legal-white);
	margin-bottom: var(--lmt-legal-spacing-md);
	margin-top: var(--lmt-legal-spacing-sm);
	letter-spacing: -0.01em;
	position: relative;
	padding-left: var(--lmt-legal-spacing-sm);
}

/* === ТЕКСТОВЫЙ КОНТЕНТ === */
.lmt-legal-text {
	font-size: 1rem;
	line-height: 1.9;
	color: var(--lmt-legal-text);
}

.lmt-legal-text p {
	margin-bottom: var(--lmt-legal-spacing-md);
}

.lmt-legal-text p:last-child {
	margin-bottom: 0;
}

.lmt-legal-text strong {
	color: var(--lmt-legal-white);
	font-weight: 600;
	position: relative;
}

.lmt-legal-text a {
	color: var(--lmt-legal-amber);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: var(--lmt-legal-transition);
}

.lmt-legal-text a:hover {
	border-bottom-color: var(--lmt-legal-amber);
	text-shadow: 0 0 8px rgba(229, 161, 26, 0.4);
}

/* === КОНТАКТНЫЙ БЛОК === */
.lmt-legal-contact {
	background-color: rgba(5, 5, 5, 0.6);
	border: 1px solid var(--lmt-legal-shadow);
	border-radius: 6px;
	padding: var(--lmt-legal-spacing-md);
	margin-top: var(--lmt-legal-spacing-md);
	margin-bottom: var(--lmt-legal-spacing-md);
	position: relative;
	overflow: hidden;
}

.lmt-legal-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--lmt-legal-amber), transparent);
}

.lmt-legal-contact p {
	margin-bottom: var(--lmt-legal-spacing-xs);
	font-size: 0.95rem;
	padding-left: var(--lmt-legal-spacing-md);
}

.lmt-legal-contact p:last-child {
	margin-bottom: 0;
}

.lmt-legal-contact strong {
	color: var(--lmt-legal-amber);
	display: block;
	margin-bottom: var(--lmt-legal-spacing-xs);
	font-size: 1.1rem;
}

/* === ФУТЕР === */
.lmt-legal-footer {
	margin-top: var(--lmt-legal-spacing-xxl);
	padding-top: var(--lmt-legal-spacing-lg);
	text-align: center;
	position: relative;
}

.lmt-legal-light-line {
	width: 100%;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--lmt-legal-shadow) 20%,
		var(--lmt-legal-amber) 50%,
		var(--lmt-legal-shadow) 80%,
		transparent
	);
	margin-bottom: var(--lmt-legal-spacing-md);
	box-shadow: 0 0 15px rgba(229, 161, 26, 0.3);
	animation: lmt-legal-pulse 3s infinite ease-in-out;
}

@keyframes lmt-legal-pulse {
	0%,
	100% {
		opacity: 0.6;
		box-shadow: 0 0 10px rgba(229, 161, 26, 0.2);
	}
	50% {
		opacity: 1;
		box-shadow: 0 0 20px rgba(229, 161, 26, 0.4);
	}
}

.lmt-legal-footer-text {
	font-size: 0.875rem;
	color: var(--lmt-legal-shadow);
	font-family: var(--lmt-legal-font-mono);
	letter-spacing: 0.05em;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
	.lmt-legal-content {
		padding: var(--lmt-legal-spacing-md);
	}

	.lmt-legal-section {
		padding: var(--lmt-legal-spacing-md);
	}

	.lmt-legal-section-number {
		left: var(--lmt-legal-spacing-sm);
		font-size: 0.7rem;
		padding: 0.2rem 0.5rem;
	}

	.lmt-legal-title {
		font-size: 2rem;
	}

	.lmt-legal-subtitle {
		font-size: 1rem;
	}

	.lmt-legal-section-title {
		font-size: 1.5rem;
	}

	.lmt-legal-text {
		font-size: 0.95rem;
	}

	.lmt-legal-contact p {
		font-size: 0.9rem;
		padding-left: var(--lmt-legal-spacing-sm);
	}
}

@media (max-width: 480px) {
	.lmt-legal-header {
		margin-bottom: var(--lmt-legal-spacing-lg);
		padding-bottom: var(--lmt-legal-spacing-md);
	}

	.lmt-legal-content {
		padding: var(--lmt-legal-spacing-sm);
		border-radius: 6px;
	}

	.lmt-legal-section {
		padding: var(--lmt-legal-spacing-sm);
		margin-bottom: var(--lmt-legal-spacing-md);
	}

	.lmt-legal-title {
		font-size: 1.3rem;
	}

	.lmt-legal-subtitle {
		font-size: 0.9rem;
	}

	.lmt-legal-section-title {
		font-size: 1.25rem;
		padding-left: var(--lmt-legal-spacing-xs);
	}

	.lmt-legal-text {
		font-size: 0.9rem;
		line-height: 1.7;
	}

	.lmt-legal-date {
		font-size: 0.75rem;
	}

	.lmt-legal-footer-text {
		font-size: 0.75rem;
	}
	.lmt-legal-text p {
		word-wrap: break-word;
	}
}
