:root {
	--color-green-950: #133822;
	--color-green-900: #18442a;
	--color-green-800: #215337;
	--color-green-700: #2f6f3c;
	--color-green-600: #4c8d32;
	--color-green-500: #6fa63c;
	--color-cream: #f6f2e8;
	--color-text: #20322a;
	--color-muted: #617168;
	--shadow-soft: 0 18px 45px rgba(20, 35, 28, .12);
	--shadow-card: 0 12px 30px rgba(20, 35, 28, .14);
	--radius-xl: 18px;
	--radius-lg: 14px;
	--container: 1120px;
	font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	margin: 0;
	background: #fff;
	color: var(--color-text);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

.admin-bar {
	min-height: calc(100vh - 32px);
}

#main-content {
	flex: 1 0 auto;
}

.site-footer {
	flex-shrink: 0;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -100px;
	z-index: 1000;
	padding: 10px 14px;
	border-radius: 8px;
	background: #fff;
	color: var(--color-green-900);
	font-weight: 700;
	transition: top .2s ease;
}

.skip-link:focus {
	top: 16px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.utility-bar {
	background: linear-gradient(90deg, #163b24, #214d31);
	color: #fff;
	font-size: 13px;
	padding: 6px 0;
	max-height: 64px;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
	            padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
	            opacity 0.25s ease;
	opacity: 1;
}

.site-header.is-scrolled .utility-bar {
	max-height: 0;
	padding: 0;
	opacity: 0;
	pointer-events: none;
}

.utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
}

.utility-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-left: auto;
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	height: 34px;
	padding: 3px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 22px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(8px);
}

.lang-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 26px;
	padding: 0 13px;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lang-link:hover,
.lang-link:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	outline: none;
}

.lang-link.is-active,
.lang-link.is-active:hover,
.lang-link.is-active:focus-visible {
	background: #fff;
	color: var(--color-green-900);
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16);
	transform: translateY(-1px);
}

.utility-icon {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.88);
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.utility-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	transition: transform 0.2s ease;
}

.utility-icon:hover,
.utility-icon:focus-visible {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	transform: scale(1.06);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.utility-icon:hover svg {
	transform: scale(1.05);
}

.utility-icon:active {
	transform: scale(0.96);
}

/* Accessibility Bar */
.accessibility-bar {
	background: #142a1b;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	padding: 14px 0;
	z-index: 99;
	position: relative;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	animation: slideDownA11y 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownA11y {
	from { transform: translateY(-10px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.accessibility-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 20px 32px;
}

.a11y-group {
	display: flex;
	align-items: center;
	gap: 12px;
}

.a11y-group-title {
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.75);
}

.a11y-options {
	display: flex;
	align-items: center;
	gap: 6px;
}

.a11y-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}

.a11y-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
}

.a11y-btn.is-active {
	background: #4c8d32;
	border-color: #4c8d32;
	color: #fff;
	box-shadow: 0 2px 8px rgba(76, 141, 50, 0.3);
}

.a11y-reset-btn {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	background: transparent;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	margin-left: auto;
	transition: all 0.2s;
}

.a11y-reset-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

@media (max-width: 980px) {
	.accessibility-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
	.a11y-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.a11y-options {
		width: 100%;
	}
	.a11y-btn {
		flex-grow: 1;
	}
	.a11y-reset-btn {
		margin-left: 0;
		width: 100%;
		justify-content: center;
	}
}

/* Глобальные стили специальных возможностей */
body.a11y-monochrome {
	filter: grayscale(1) !important;
}

body.a11y-invert {
	filter: invert(1) hue-rotate(180deg) !important;
	background: #000 !important;
}


body.a11y-size-125 {
	font-size: 20px !important;
}
body.a11y-size-125 h1 { font-size: clamp(34px, 5vw, 54px) !important; }
body.a11y-size-125 h2 { font-size: 28px !important; }
body.a11y-size-125 p, 
body.a11y-size-125 a, 
body.a11y-size-125 li, 
body.a11y-size-125 span, 
body.a11y-size-125 small {
	font-size: 1.25em !important;
}

body.a11y-size-150 {
	font-size: 24px !important;
}
body.a11y-size-150 h1 { font-size: clamp(38px, 6vw, 60px) !important; }
body.a11y-size-150 h2 { font-size: 32px !important; }
body.a11y-size-150 p, 
body.a11y-size-150 a, 
body.a11y-size-150 li, 
body.a11y-size-150 span, 
body.a11y-size-150 small {
	font-size: 1.5em !important;
}

body.a11y-font-accessible,
body.a11y-font-accessible * {
	font-family: Arial, Helvetica, sans-serif !important;
	letter-spacing: 0.05em !important;
	word-spacing: 0.08em !important;
}

body.a11y-images-off img,
body.a11y-images-off .about-image,
body.a11y-images-off .hero-section {
	background-image: none !important;
}
body.a11y-images-off img {
	opacity: 0 !important;
}

/* Sticky site header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	transition: box-shadow 0.3s ease;
}

.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 600px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

.site-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(18, 40, 30, 0.14);
}

.main-header {
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(12px);
	transition: min-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
	            box-shadow 0.3s ease;
}

.site-header.is-scrolled .main-header {
	box-shadow: none;
}

.main-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 28px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.brand-mark {
	height: 58px;
	width: auto;
}

.primary-navigation {
	margin-left: auto;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 650;
	color: #1f3129;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.primary-menu .current-menu-item > a {
	color: var(--color-green-600);
}

/* Dropdown menus */
.menu-item-has-children {
	position: relative;
}

.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-1px) rotate(45deg);
	transition: transform .2s;
}

.menu-item-has-children:hover > a::after {
	transform: translateY(2px) rotate(225deg);
}

.sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 200px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: 0 12px 36px rgba(19, 56, 34, .16);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s, visibility .2s, transform .2s;
	z-index: 60;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(4px);
}

.sub-menu li {
	margin: 0;
}

.sub-menu a {
	display: block;
	padding: 9px 14px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 550;
	color: #1f3129;
	white-space: nowrap;
	transition: background .15s, color .15s;
}

.sub-menu a:hover,
.sub-menu a:focus-visible {
	background: #eef6e8;
	color: var(--color-green-700);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(31, 49, 41, .14);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	outline: none;
	transition: background-color 0.2s, border-color 0.2s;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--color-green-900);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Hamburger to X animation */
.menu-toggle.is-active span:nth-child(2) {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(3) {
	opacity: 0;
}

.menu-toggle.is-active span:nth-child(4) {
	transform: translateY(-6px) rotate(-45deg);
}

/* Роскошная панель поиска */
.search-panel {
	position: absolute;
	z-index: 100;
	inset-inline: 0;
	padding: 24px 0 28px;
	background: #fff;
	box-shadow: 0 20px 50px rgba(18, 38, 28, 0.15);
	transform: translateY(-20px);
	opacity: 0;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.search-panel.is-active {
	transform: translateY(0);
	opacity: 1;
}

.search-panel-inner {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	position: relative;
}

/* Кастомная форма поиска */
.search-form-lux {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.search-input-wrapper {
	position: relative;
	display: flex;
	width: 100%;
	background: #f4f7f5;
	border: 1px solid rgba(31, 68, 42, 0.12);
	border-radius: 12px;
	transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.search-input-wrapper:focus-within {
	border-color: var(--color-green-600);
	box-shadow: 0 0 0 4px rgba(76, 141, 50, 0.14);
	background-color: #fff;
}

.search-icon-left {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-muted);
	pointer-events: none;
	display: flex;
	align-items: center;
}

.search-icon-left svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.search-field-lux {
	width: 100%;
	padding: 14px 14px 14px 48px;
	border: none;
	background: transparent;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-text);
	outline: none;
}

.search-field-lux::placeholder {
	color: #7b8e83;
}

.search-submit-lux {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	border-radius: 10px;
	margin: 4px;
	padding: 10px 22px;
	background: var(--color-green-700);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.15s, transform 0.1s;
}

.search-submit-lux:hover {
	background-color: var(--color-green-800);
}

.search-submit-lux:active {
	transform: scale(0.98);
}

.search-submit-lux svg {
	width: 16px;
	height: 16px;
}

/* Кнопка закрытия */
.search-close-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(31, 68, 42, 0.12);
	border-radius: 12px;
	background: transparent;
	color: var(--color-muted);
	cursor: pointer;
	transition: background-color 0.15s, color 0.15s;
	flex-shrink: 0;
	margin-top: 2px;
}

.search-close-btn:hover {
	background-color: #f4f7f5;
	color: var(--color-green-950);
}

.search-close-btn svg {
	width: 22px;
	height: 22px;
}

/* Подсказки и популярные запросы */
.search-suggestions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	padding-left: 4px;
	font-size: 13px;
}

.suggestions-label {
	color: var(--color-muted);
	font-weight: 600;
}

.suggestion-link {
	padding: 4px 12px;
	background-color: #f0f5f2;
	border-radius: 99px;
	color: var(--color-green-800);
	font-weight: 600;
	transition: background-color 0.15s, color 0.15s;
}

.suggestion-link:hover {
	background-color: var(--color-green-700);
	color: #fff;
}

/* Затемняющий фон */
.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 95;
	background: rgba(19, 56, 34, 0.45);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.search-overlay.is-active {
	opacity: 1;
}

.hero-section {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	color: #fff;
	touch-action: pan-y; /* Prevent browser touch action on horizontal swipe */
}

/* Hero Slider */
/* Hero Slider */
.hero-slider {
	position: relative;
	z-index: 1;
	overflow: hidden;
	cursor: grab;
	width: 100%;
	user-select: none;
	-webkit-user-select: none;
}

.hero-slider:active {
	cursor: grabbing;
}

.hero-slider-track {
	display: flex;
	width: 100%;
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide {
	flex: 0 0 100%;
	width: 100%;
	min-height: 520px;
	padding: 64px 0 96px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.hero-slide-container {
	/* removed width: 100% so it uses .container width */
}

/* Static Overlay Grid */
.hero-static-grid {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	align-items: center;
	gap: 56px;
	padding: 64px 0 96px;
}

.hero-stats-card {
	pointer-events: auto; /* allow text selection and tooltips */
}

.hero-content-slide {
	max-width: 650px;
	width: 100%;
}

.hero-content-slide h1 {
	max-width: 620px;
	margin: 0 0 22px;
	font-size: clamp(44px, 6vw, 68px);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: 0;
}

.hero-content-slide p {
	max-width: 560px;
	margin: 0 0 34px;
	font-size: 18px;
	line-height: 1.72;
	font-weight: 550;
	text-shadow: 0 1px 10px rgba(0, 0, 0, .22);
}

/* Dots navigation */
.hero-slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

@media (min-width: 1025px) {
	.hero-slider-dots {
		bottom: 78px;
	}
}


.hero-slider-dot {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, .4);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition: background-color .3s, border-color .3s, transform .2s;
}

.hero-slider-dot:hover {
	border-color: #fff;
	transform: scale(1.1);
}

.hero-slider-dot.is-active {
	border-color: #fff;
	background-color: #fff;
	transform: scale(1.2);
}

.button-primary,
.button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	border-radius: 999px;
	padding: 0 28px;
	background: linear-gradient(135deg, #77aa3f, #4d8b31);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 14px 28px rgba(43, 90, 35, .28);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-secondary {
	min-height: 42px;
	padding-inline: 24px;
	font-size: 14px;
	box-shadow: none;
}

.button-primary svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 32px rgba(43, 90, 35, .32);
}

.hero-stats-card {
	width: 100%;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 12px;
	background: rgba(26, 58, 44, .82);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
	backdrop-filter: blur(10px);
}

.hero-stat {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 14px;
	align-items: center;
}

.hero-stat + .hero-stat {
	margin-top: 22px;
}

.hero-stat-icon {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 2px solid rgba(255, 255, 255, .9);
	border-radius: 999px;
	color: #fff;
}

.hero-stat-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.hero-stat small {
	display: block;
	margin-bottom: 2px;
	color: rgba(255, 255, 255, .82);
	font-size: 13px;
	font-weight: 650;
}

.hero-stat strong {
	display: block;
	color: #fff;
	font-size: 20px;
	line-height: 1.25;
}

.quick-access {
	position: relative;
	z-index: 5;
	margin-top: -58px;
	padding-bottom: 60px;
}

.quick-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.quick-card {
	display: grid;
	min-height: 172px;
	align-content: center;
	justify-items: center;
	padding: 24px 18px;
	border: 1px solid rgba(32, 50, 42, .08);
	border-radius: var(--radius-lg);
	background: #ffffff;
	box-shadow: var(--shadow-card);
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.quick-card:hover,
.quick-card:focus-visible {
	transform: translateY(-6px);
	border-color: rgba(76, 141, 50, .36);
	box-shadow: 0 22px 48px rgba(20, 35, 28, .17);
}

.quick-card-icon svg {
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	fill: none;
	stroke: var(--color-green-700);
	stroke-width: 3;
}

.quick-card strong {
	margin-bottom: 7px;
	color: #20342a;
	font-size: 18px;
	line-height: 1.25;
}

.quick-card span:last-child {
	color: #41534a;
	font-size: 14px;
	line-height: 1.45;
}

.about-section {
	padding: 36px 0 42px;
	background: linear-gradient(180deg, #fff 0%, #fbf8ef 100%);
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	align-items: center;
	gap: 40px;
}

.about-copy h2,
.section-heading h2 {
	margin: 0 0 22px;
	color: var(--color-green-900);
	font-size: clamp(28px, 3vw, 34px);
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0;
}

.about-copy p {
	margin: 0 0 26px;
	color: #394a42;
	font-size: 17px;
	line-height: 1.7;
}

.about-image img,
.about-image .image-placeholder {
	width: 100%;
	aspect-ratio: 1.7 / 1;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
}

.image-placeholder {
	min-height: 140px;
	background:
		linear-gradient(135deg, rgba(80, 128, 74, .18), rgba(218, 160, 82, .16)),
		linear-gradient(90deg, #dde7d8, #f1ece1);
}

.about-stats {
	display: flex;
	flex-wrap: nowrap;
	gap: 30px;
	margin-top: 28px;
}

.about-stat {
	display: grid;
	grid-template-columns: 38px auto;
	grid-template-areas:
		"icon value"
		"icon label";
	align-items: center;
	column-gap: 12px;
}

.about-stat span {
	grid-area: icon;
	color: var(--color-green-600);
}

.about-stat svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
}

.about-stat strong {
	grid-area: value;
	color: var(--color-green-900);
	font-size: 28px;
	line-height: 1;
}

.about-stat small {
	grid-area: label;
	color: #405249;
	font-size: 14px;
}

.news-section,
.gallery-section,
.archive-section,
.content-section {
	padding: 36px 0;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.section-heading h2 {
	margin: 0;
}

.section-heading a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #21352b;
	font-size: 14px;
	font-weight: 550;
}

.section-heading a:hover,
.section-heading a:focus-visible {
	color: var(--color-green-600);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.news-card,
.archive-card {
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 26px rgba(20, 35, 28, .1);
	transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover,
.archive-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(20, 35, 28, .14);
}

.news-image,
.archive-card-image {
	display: block;
	overflow: hidden;
	background: #e9eee5;
	aspect-ratio: 1.55 / 1;
}

.news-image img,
.news-image .image-placeholder,
.archive-card-image img,
.archive-card-image .image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.news-card:hover .news-image img,
.archive-card:hover .archive-card-image img {
	transform: scale(1.04);
}

.news-card-body,
.archive-card-body {
	padding: 16px 18px 20px;
}

.news-card-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 6px;
	color: #667268;
	font-size: 12px;
	line-height: 1;
}

.news-card-meta time,
.news-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	line-height: 1;
}

.news-card-meta svg {
	opacity: 0.6;
	display: inline-block !important;
	position: relative;
	top: 1px;
	vertical-align: middle;
	flex-shrink: 0;
}

.archive-card-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 8px;
	color: #667268;
	font-size: 12px;
	line-height: 1;
}

.archive-card-meta time,
.archive-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	line-height: 1;
}

.archive-card-meta svg,
.single-post-meta svg {
	display: inline-block !important;
	position: relative;
	top: 1px;
	vertical-align: middle;
	flex-shrink: 0;
	margin: 0;
}

.archive-card .archive-card-meta time {
	display: inline-flex !important;
	margin-bottom: 0 !important;
}

.news-card h3,
.archive-card h2 {
	margin: 0;
	color: #172b22;
	font-size: 18px;
	line-height: 1.28;
	font-weight: 600;
}

.archive-card-body p {
	margin: 10px 0 0;
	color: var(--color-muted);
}

.gallery-section {
	padding-bottom: 60px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.gallery-item {
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	background: #e6ece1;
	cursor: zoom-in;
}

.gallery-item img,
.gallery-placeholder {
	width: 100%;
	aspect-ratio: 1.55 / 1;
	object-fit: cover;
	transition: transform .3s ease, filter .3s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
	transform: scale(1.06);
	filter: saturate(1.08);
}

.gallery-placeholder {
	min-height: auto;
}

.footer-contact-band {
	padding: 34px 0;
	background:
		linear-gradient(rgba(28, 81, 61, .9), rgba(28, 81, 61, .9)),
		linear-gradient(135deg, #2f6f61, #173d2a);
	color: #fff;
}

.footer-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px;
}

.footer-contact-item {
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 18px;
}

.contact-icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 999px;
	background: #77a73a;
}

.contact-icon svg {
	width: 28px;
	height: 28px;
	fill: #fff;
}

.footer-contact-item small {
	display: block;
	margin-bottom: 2px;
	color: rgba(255, 255, 255, .84);
	font-size: 13px;
}

.footer-contact-item strong {
	display: block;
	font-size: 20px;
	line-height: 1.3;
}

.footer-main {
	padding: 36px 0 34px;
	background: radial-gradient(circle at 30% 0, rgba(104, 149, 68, .22), transparent 34%), #123820;
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 2fr 1fr;
	gap: 52px;
	align-items: start;
}


.footer-brand p {
	margin: 18px 0 0;
	max-width: 270px;
	color: rgba(255, 255, 255, .82);
	font-size: 14px;
}

.footer-menu {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
}

.footer-menu a {
	color: rgba(255, 255, 255, .86);
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
	color: #fff;
	text-decoration: underline;
}

.footer-socials h2 {
	margin: 0 0 14px;
	font-size: 15px;
}

.social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.social-list a {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 999px;
	background: #4b75c8;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
}

.social-list a svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.social-list a svg path {
	fill: currentColor !important;
}

.social-list a svg circle {
	display: none;
}

.social-list a:nth-child(2) {
	background: #e44a7a;
}

.social-list a:nth-child(3) {
	background: #dd2f2f;
}

.social-list a:nth-child(4) {
	background: #30a6df;
}

.page-hero {
	padding: 70px 0;
	background: linear-gradient(135deg, rgba(19, 56, 34, .95), rgba(47, 111, 60, .85)), var(--color-green-900);
	color: #fff;
}

.compact-hero {
	padding: 54px 0;
}

.page-hero h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(34px, 5vw, 54px);
	line-height: 1.12;
	font-weight: 600;
	letter-spacing: 0;
}

.page-hero .eyebrow {
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, .78);
}

.single-post-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1;
}

.single-post-meta time,
.single-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.single-post-meta svg {
	flex-shrink: 0;
	opacity: 0.8;
}

.content-section {
	padding: 48px 0 64px;
}

.content-container {
	max-width: 860px;
	margin-inline: auto;
}

.entry-content {
	color: #263a31;
	font-size: 18px;
}

.entry-content > * {
	margin-block: 0 1.2em;
}

.entry-content h2,
.entry-content h3 {
	color: var(--color-green-900);
	line-height: 1.25;
}

.entry-content a {
	color: var(--color-green-700);
	text-decoration: underline;
}

.single-featured-image {
	margin: 0 0 28px;
}

.single-featured-image img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	border-radius: 12px;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.archive-card-image img,
.archive-card-image .image-placeholder {
	width: 100%;
	aspect-ratio: 1.55 / 1;
	object-fit: cover;
}

/* Document list view */
.document-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.document-list-item {
	border-bottom: 1px solid rgba(32, 50, 42, .1);
}

.document-list-item:first-child {
	border-top: 1px solid rgba(32, 50, 42, .1);
}

.document-list-link {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 12px;
	color: var(--color-text);
	font-weight: 550;
	font-size: 15px;
	transition: background-color .15s, color .15s;
	border-radius: 8px;
}

.document-list-link:hover {
	background: #f0f5f2;
	color: var(--color-green-700);
}

.document-list-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: #e8f0e2;
	border-radius: 8px;
	color: var(--color-green-700);
}

.document-list-title {
	flex: 1;
	line-height: 1.4;
}

.document-list-date {
	flex-shrink: 0;
	font-size: 13px;
	color: var(--color-muted);
	font-weight: 500;
	white-space: nowrap;
}

.document-list-arrow {
	flex-shrink: 0;
	color: var(--color-muted);
	display: flex;
	align-items: center;
}

.document-list-link:hover .document-list-arrow {
	color: var(--color-green-700);
}

@media (max-width: 600px) {
	.document-list-date {
		display: none;
	}
}

.navigation.pagination {
	margin-top: 36px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: grid;
	min-width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 8px;
	background: #eef2eb;
	color: var(--color-green-900);
	font-weight: 700;
}

.page-numbers.current {
	background: var(--color-green-700);
	color: #fff;
}

.lightbox {
	position: fixed;
	z-index: 999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 28px;
	background: rgba(4, 16, 10, .86);
}

.lightbox[hidden] {
	display: none;
}

.lightbox img {
	max-height: 86vh;
	border-radius: 8px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.lightbox button {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #102a1c;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 1180px) {
	.primary-menu {
		gap: 18px;
		font-size: 13px;
	}

}

@media (max-width: 980px) {
	.container {
		width: min(calc(100% - 32px), var(--container));
	}

	.menu-toggle {
		display: block;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: block;
		max-height: 0;
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		padding: 0 16px;
		background: #fff;
		box-shadow: 0 18px 32px rgba(20, 35, 28, .12);
		transform: translateY(-10px);
		transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
		            opacity 0.3s ease, 
		            transform 0.3s ease, 
		            padding 0.35s ease, 
		            visibility 0.35s;
		z-index: 90;
	}

	.primary-navigation.is-open {
		max-height: 500px;
		opacity: 1;
		visibility: visible;
		padding: 12px 16px 20px;
		transform: translateY(0);
	}

	.primary-menu {
		display: grid;
		gap: 4px;
	}

	.primary-menu a {
		min-height: 44px;
		padding-inline: 4px;
	}

	/* Mobile submenu overrides */
	.sub-menu {
		position: static;
		transform: none;
		box-shadow: none;
		border-radius: 0;
		background: transparent;
		padding: 0 0 0 16px;
		opacity: 1;
		visibility: visible;
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease;
		min-width: 0;
	}

	.sub-menu.is-open {
		max-height: 300px;
	}

	.sub-menu a {
		font-size: 13px;
		padding: 8px 12px;
		border-radius: 8px;
		white-space: normal;
	}

	.menu-item-has-children:hover > .sub-menu,
	.menu-item-has-children:focus-within > .sub-menu {
		transform: none;
	}

	.menu-item-has-children > a {
		transition: color .15s;
	}

	.menu-item-has-children > a::after {
		transition: transform .25s ease;
	}

	.menu-item-has-children > a.submenu-open {
		color: var(--color-green-600);
	}

	.menu-item-has-children > a.submenu-open::after {
		transform: translateY(2px) rotate(225deg);
	}

	.hero-static-grid {
		position: relative;
		pointer-events: auto;
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 24px 0 0;
	}

	.hero-stats-card {
		max-width: 560px;
	}

	.quick-grid,
	.gallery-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.news-grid,
	.archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-contact-grid,
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hero-slider {
		position: relative;
		height: auto;
	}

	.hero-slide {
		height: auto;
		padding: 46px 0 40px;
	}
}

@media (max-width: 680px) {
	.utility-inner {
		min-height: auto;
		padding: 8px 0;
	}

	.utility-actions {
		width: 100%;
		justify-content: flex-end;
		gap: 10px;
	}

	.language-switcher {
		height: 32px;
		padding: 3px;
	}

	.lang-link {
		min-width: 36px;
		height: 24px;
		padding: 0 10px;
		font-size: 11px;
	}


	.main-header-inner {
		min-height: 72px;
	}

	.brand-mark {
		height: 48px;
		width: auto;
	}

	.hero-section,
	.hero-static-grid {
		min-height: auto;
	}

	.hero-static-grid {
		padding: 46px 0 88px;
	}

	.hero-copy h1,
	.hero-content-slide h1 {
		font-size: 40px;
		line-height: 1.2;
		margin-bottom: 16px;
	}

	.hero-copy p,
	.hero-content-slide p {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 24px;
	}

	.hero-stats-card {
		padding: 20px;
	}

	.quick-access {
		margin-top: -46px;
		padding-bottom: 36px;
	}

	.quick-grid,
	.news-grid,
	.gallery-grid,
	.archive-grid {
		grid-template-columns: 1fr;
	}

	.quick-card {
		min-height: 142px;
	}

	.about-section,
	.news-section,
	.gallery-section,
	.archive-section,
	.content-section {
		padding-block: 30px;
	}

	.about-stats {
		display: grid;
		gap: 18px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-contact-item,
	.footer-menu {
		grid-template-columns: 1fr;
	}
}


/* --- Entrance & Reveal Animations --- */
@keyframes pageEntrance {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#main-content {
	animation: pageEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Scroll-Reveal System */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: transform, opacity;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

.reveal-left {
	transform: translateX(-40px);
}

.reveal-right {
	transform: translateX(40px);
}

.reveal-scale {
	transform: scale(0.94);
}

/* Stagger reveals */
.reveal-stagger > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: transform, opacity;
}

.reveal-stagger.is-visible > * {
	opacity: 1;
	transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 50ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 190ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 260ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 330ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 470ms; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 540ms; }

/* Hero slide stagger content animations */
@keyframes heroFadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-slide.is-active h1 {
	animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-slide.is-active p {
	animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-slide.is-active .button-primary {
	animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Lazy Load Images Smooth Fade-in */
img[loading="lazy"] {
	opacity: 0;
	transition: opacity 0.5s ease;
}

img[loading="lazy"].is-loaded {
	opacity: 1;
}

/* Micro-animations: active click feedback */
.button-primary:active,
.button-secondary:active,
.btn:active,
.utility-icon:active,
.a11y-btn:active {
	transform: scale(0.96);
	transition: transform 0.1s ease;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
