html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

a {
	text-decoration: none
}

body {
	font-family: 'Inter', 'Segoe UI', 'Poppins', system-ui, -apple-system, sans-serif;
	background: #fefaf5;
	min-height: 100vh;
	width: 100%;
	overflow-x: hidden;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 32px;
}

.site-header {
	background: #ffffff;
	border-radius: 0 0 36px 36px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.02);
	transition: all 0.2s;
	position: relative;
	z-index: 100;
}

.top-panel {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px 32px;
	padding: 20px 32px;
	transition: all 0.3s ease;
}

.logo-block {
	display: flex;
	align-items: center;
}

.logo-block img {
	height: 80px;
	width: auto;
}

.right-group {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.right-group .right-group-row {
	display: flex;
}

.address-block {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f9f4ed;
	padding: 8px 20px;
	border-radius: 80px;
	transition: all 0.2s;
}

.address-icon {
	font-size: 1.2rem;
}

.address-icon img {
	height: 24px;
}

.address-text {
	font-weight: 500;
	font-size: 0.9rem;
	color: #3e2c1c;
	line-height: 1.4;
}

.address-text strong {
	color: #E86A2C;
	font-weight: 700;
}

.btn-write {
	background: #E86A2C;
	color: white;
	border: none;
	padding: 10px 24px;
	border-radius: 60px;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(232, 106, 44, 0.25);
	text-decoration: none;
	font-family: inherit;
}

.btn-write:hover {
	background: #d45c1e;
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(232, 106, 44, 0.3);
}

.social-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	transition: all 0.2s ease;
	text-decoration: none;
	color: #5a4a3a;
	font-size: 1.2rem;
}

.social-icon.vk {
	background-color: #0077FF;
}

.social-icon.tg {
	background-color: #25a3e2;
}

.social-icon img {
	width: 100%;
	height: 100%;
}

.social-icon:hover {
	transform: translateY(-2px);
}

.nav-fullwidth {
	width: 100%;
	background: #ffffff;
	padding: 6px 0 10px;
	border-radius: 0 0 32px 32px;
}

.nav-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 32px;
	position: relative;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	flex-wrap: wrap;
	padding-left: 0;
}

.nav-item {
	position: relative;
	flex: 1 0 20%;
	text-align: center;
}

.nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 18px;
	font-weight: 600;
	font-size: 0.95rem;
	color: #2c241a;
	text-decoration: none;
	border-radius: 60px;
	transition: all 0.2s;
	white-space: nowrap;
	background: transparent;
	width: 100%;
    justify-content: center;
}

.main-nav >.nav-item:nth-child(1) .nav-link {
	background: #ebecfc;
}
.main-nav > .nav-item:nth-child(2) .nav-link {
	background: #ffe6f4;
}
.main-nav > .nav-item:nth-child(3) .nav-link {
	background: #e9f2da;
}
.main-nav > .nav-item:nth-child(4) .nav-link {
	background: #dff5ff;
}
.main-nav > .nav-item:nth-child(5) .nav-link {
	background: #fff6d2;
}
.main-nav > .nav-item:nth-child(6) .nav-link {
	background: #ebecfc;
}
.main-nav > .nav-item:nth-child(7) .nav-link {
	background: #ffe6f4;
}
.main-nav > .nav-item:nth-child(8) .nav-link {
	background: #e9f2da;
}
.main-nav > .nav-item:nth-child(9) .nav-link {
	background: #dff5ff;
}
.main-nav > .nav-item:nth-child(10) .nav-link {
	background: #fff6d2;
}

.main-nav > .nav-item:nth-child(1) .nav-link:hover {
	background: #cdcff1;
}
.main-nav > .nav-item:nth-child(2) .nav-link:hover {
	background: #f0bdda;
}
.main-nav > .nav-item:nth-child(3) .nav-link:hover {
	background: #d5e5bc;
}
.main-nav > .nav-item:nth-child(4) .nav-link:hover {
	background: #b7daeb;
}
.main-nav > .nav-item:nth-child(5) .nav-link:hover {
	background: #fee794;
}
.main-nav > .nav-item:nth-child(6) .nav-link:hover {
	background: #cdcff1;
}
.main-nav > .nav-item:nth-child(7) .nav-link:hover {
	background: #f0bdda;
}
.main-nav > .nav-item:nth-child(8) .nav-link:hover {
	background: #d5e5bc;
}
.main-nav > .nav-item:nth-child(9) .nav-link:hover {
	background: #b7daeb;
}
.main-nav > .nav-item:nth-child(10) .nav-link:hover {
	background: #fee794;
}

.sub-menu .nav-item .nav-link {
	background-color: transparent !important;
}

.dropdown-arrow {
	transition: transform 0.2s;
	display: flex;
}

.dropdown-arrow img {
	height: 18px;
}

.nav-link:hover {
	background: #FFF1E6;
	color: #000000;
}

.nav-item.current_page_item > .nav-link {
	color: #E86A2C;
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: white;
	border-radius: 28px;
	padding: 12px 0;
	min-width: 220px;
	box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	z-index: 200;
	border: 1px solid rgba(232, 106, 44, 0.2);
	overflow: hidden;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu.show-on-click {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
	width: 100%;
}

.dropdown-menu a {
	display: block;
	padding: 10px 24px;
	color: #3a2a1c;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.2s;
	text-align: left;
	border-radius: 0;
}

.dropdown-menu a:hover {
	background: #FEF2E6;
	color: #E86A2C;
	padding-left: 28px;
}

.burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 12px;
	border-radius: 60px;
	transition: background 0.2s;
	z-index: 120;
}

.burger span {
	display: block;
	width: 26px;
	height: 2px;
	background: #2d2a24;
	margin: 5px 0;
	border-radius: 6px;
	transition: 0.25s;
}

.burger:hover {
	background: #f5ebe1;
}

.mobile-contact-block {
	display: none;
}

.site-footer {
	background: #ffffff;
	border-radius: 36px 36px 0 0;
	margin-top: 80px;
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.04);
}

.footer-content {
	padding: 48px 32px 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 48px;
}

.footer-col {
	display: flex;
    flex-direction: column;
    align-items: start;
	text-align: start;
}

.footer-col h3 {
	color: #E86A2C;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	margin-top: 0;
}

.footer-col h3:after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #E86A2C, #F4A261);
	border-radius: 4px;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 16px;
	display: inline-block;
}

.footer-logo img {
	height: 80px;
	width: auto;
}

.footer-desc {
	color: #6b5a4a;
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 0.9rem;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	color: #5a4a3a;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 0.9rem;
}

.footer-contact-item:hover {
	color: #E86A2C;
	transform: translateX(4px);
}

.footer-contact-item .icon {
	font-size: 1.2rem;
	min-width: 28px;
}

.footer-contact-item .icon img {
	height: 24px;
}

.footer-links {
	list-style: none;
	padding-left: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #6b5a4a;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer-links a:hover {
	color: #E86A2C;
	transform: translateX(4px);
}

.footer-social {
	display: flex;
	gap: 16px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.footer-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	transition: all 0.2s ease;
	text-decoration: none;
	color: #5a4a3a;
	font-size: 1.3rem;
}

.footer-social-icon img {
	width: 100%;
	height: 100%;
}

.footer-social-icon:hover {
	color: white;
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	padding-top: 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 0.8rem;
	color: #8e7a64;
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-bottom-links a {
	color: #8e7a64;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom-links a:hover {
	color: #E86A2C;
}

 .required-star {
	color: #E86A2C;
	margin-left: 4px;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	animation: fadeIn 0.3s ease;
}

.modal-overlay.showed {
	display: flex;
}

.modal {
	background: #ffffff;
	display: none;
	border-radius: 48px;
	max-width: 580px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	animation: slideUp 0.3s ease;
	position: relative;
}

.modal-scroller {
	height: 100%;
    overflow-y: auto;
}

.modal.showed {
	display: block;
}

.modal-body::-webkit-scrollbar {
	width: 6px;
}

.modal-body::-webkit-scrollbar-track {
	background: #f5f0ea;
	border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
	background: #E86A2C;
	border-radius: 10px;
}

.modal-header {
	background: #fbfbfb;
	padding: 32px 43px 24px 32px;
	border-radius: 48px 48px 0 0;
	position: relative;
	border-bottom: 2px solid rgba(232, 106, 44, 0.15);
}

.modal-header h2 {
	font-size: 1.8rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
	margin: 0;
}

.modal-header p {
	color: #7c6b58;
	font-size: 0.9rem;
	line-height: 1.5;
}

.modal-close {
	position: absolute;
	top: 24px;
	right: 24px;
	background: rgba(232, 106, 44, 0.1);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #E86A2C;
	font-size: 1.2rem;
}

.modal-close:hover {
	background: #E86A2C;
	color: white;
	transform: rotate(90deg);
}

.modal-body {
	padding: 32px;
	max-height: 50vh;
    overflow-y: auto;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: #2c241a;
	margin-bottom: 8px;
	font-size: 0.9rem;
}

.form-group label i {
	color: #E86A2C;
	margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid rgba(232, 106, 44, 0.2);
	border-radius: 60px;
	font-family: inherit;
	font-size: 0.95rem;
	transition: all 0.2s ease;
	background: #fbfbfb;
	outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #E86A2C;
	box-shadow: 0 0 0 3px rgba(232, 106, 44, 0.1);
}

.form-group textarea {
	border-radius: 28px;
	resize: vertical;
	min-height: 100px;
}

.service-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 8px;
}

.service-option {
	position: relative;
}

.service-option input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.service-option label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: #fefaf5;
	border: 2px solid rgba(232, 106, 44, 0.2);
	border-radius: 60px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 500;
	font-size: 0.85rem;
	margin-bottom: 0;
}

.service-option input:checked + label {
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	border-color: #E86A2C;
	color: white;
}

.service-option label i {
	font-size: 1rem;
}

.service-option input:checked + label i {
	color: white;
}

.btn-submit {
	width: 100%;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	border: none;
	padding: 16px 28px;
	border-radius: 60px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: inherit;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.3);
	margin-top: 8px;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(232, 106, 44, 0.35);
}

.modal-footer {
	background: #fbfbfb;
	padding: 20px 32px 28px;
	border-radius: 0 0 48px 48px;
	border-top: 1px solid rgba(232, 106, 44, 0.1);
	text-align: center;
}

.modal-footer p {
	font-size: 1rem;
	color: #8e7a64;
	margin-bottom: 12px;
}

.modal-footer a {
	color: #E86A2C;
	text-decoration: none;
	font-weight: 500;
}

.modal-footer a:hover {
	text-decoration: underline;
}

.modal-social {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 16px;
}

.modal-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #f0e8df;
	border-radius: 50%;
	color: #5a4a3a;
	transition: all 0.2s ease;
	font-size: 1rem;
}

.modal-social a:hover {
	background: #E86A2C;
	color: white;
	transform: translateY(-2px);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 20px 0 16px;
}

.checkbox-group input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: #E86A2C;
}

.checkbox-group label {
	margin-bottom: 0;
	font-size: 0.8rem;
	font-weight: 400;
	color: #7c6b58;
	line-height: 1.4;
}

.checkbox-group a {
	color: #E86A2C;
	text-decoration: none;
}

.success-message {
	text-align: center;
	padding: 20px;
}

.success-message i {
	font-size: 4rem;
	color: #E86A2C;
	margin-bottom: 20px;
}

.success-message h3 {
	font-size: 1.5rem;
	color: #2c241a;
	margin-bottom: 12px;
}

.success-message p {
	color: #7c6b58;
	margin-bottom: 24px;
}

.slider {
	position: relative;
	overflow: hidden;
}

.slider .slider-btn-next {
	right: 20px;
}
.slider .slider-btn-prev {
	left: 20px;
}

.slider .slider-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
}

.slider .slider-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
	flex-shrink: 0;
	width: 100%;
	position: relative;
}

.slide a {
	flex-shrink: 0;
    width: 100%;
    position: relative;
}

.slide-image {
	width: 100%;
	object-fit: cover;
	display: block;
}

.slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	padding: 40px 48px 32px;
	color: white;
}

.slide-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 8px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-desc {
	font-size: 0.95rem;
	opacity: 0.9;
	max-width: 80%;
	line-height: 1.5;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	background: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #E86A2C;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.slider-btn:hover {
	background: #E86A2C;
	color: white;
	transform: translateY(-50%) scale(1.05);
}

.slider-btn-prev {
	left: -20px;
}

.slider-btn-next {
	right: -20px;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 24px 0 32px;
	border-radius: 0 0 48px 48px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #e0d6cc;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	width: 28px;
	border-radius: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
}

.dot:hover {
	background: #E86A2C;
	transform: scale(1.2);
}

@keyframes fadeInSlider {
	from {
		opacity: 0;
		transform: scale(0.98);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.slide {
	animation: fadeInSlider 0.3s ease;
}

main {
	margin: 40px 0;
	display: flex;
	flex-direction: column;
	row-gap: 40px;
}

.events-slider {
	position: relative;
	background: transparent;
	overflow: visible; 
}

.events-slider .slider-wrapper {
	overflow: hidden;
	border-radius: 32px;
	padding: 20px 0;
}

.events-slider .slider-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	gap: 24px;
}

.event-card {
	flex-shrink: 0;
	background: transparent;
	perspective: 1000px;
	transition: transform 0.3s ease;
}

.card-inner {
	position: relative;
	width: 100%;
	padding-bottom: 140%; 
	transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
	transform-style: preserve-3d;
	border-radius: 28px;
}

.event-card:hover .card-inner {
	transform: rotateY(180deg);
}

.card-front, .card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 28px;
	overflow: hidden;
}

.card-front {
	background: #ffffff;
}

.card-front img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.event-card:hover .card-front img {
	transform: scale(1.05);
}

.card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 24px 20px;
	color: white;
}

.card-overlay h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 8px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-overlay p {
	font-size: 0.85rem;
	opacity: 0.95;
	display: flex;
	align-items: center;
	gap: 8px;
}

.card-overlay p i {
	font-size: 0.8rem;
}

.card-back {
	background: #ffffff;
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	overflow-y: auto; 
	overflow-x: hidden;
	scrollbar-width: thin;
	padding: 24px;
}

.card-back::-webkit-scrollbar {
	width: 5px;
}

.card-back::-webkit-scrollbar-track {
	background: #f0e8df;
	border-radius: 10px;
	margin: 10px 0;
}

.card-back::-webkit-scrollbar-thumb {
	background: #E86A2C;
	border-radius: 10px;
}

.card-back::-webkit-scrollbar-thumb:hover {
	background: #d45c1e;
}

.card-back-header {
	text-align: center;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.event-date {
	display: inline-block;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 8px 20px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(232, 106, 44, 0.2);
}

.card-back h3 {
	font-size: 1.3rem;
	font-weight: 800;
	color: #2c241a;
	margin-bottom: 16px;
	line-height: 1.3;
}

.card-back-description {
	color: #7c6b58;
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 24px;
	flex: 1;
	overflow-y: auto;
}

.card-back-footer {
	display: flex;
	justify-content: center;
	padding-top: 20px;
	border-top: 1px solid rgba(232, 106, 44, 0.15);
	flex-shrink: 0;
	margin-top: auto;
}

.btn-more {
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	border: none;
	padding: 10px 28px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 600;
	color: white;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
	box-shadow: 0 2px 8px rgba(232, 106, 44, 0.25);
}

.btn-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(232, 106, 44, 0.35);
}

@keyframes fadeInNews {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.event-card {
	animation: fadeInNews 0.5s ease forwards;
}

.title-header {
	text-align: center;
}

.title-header .title-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 8px 24px;
	border-radius: 60px;
	font-size: 0.9rem;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.title-header .title-title {
	font-size: 2.2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.title-header .title-subtitle {
	color: #7c6b58;
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
}

.cta-block {
	background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
	border-radius: 56px;
	overflow: hidden;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
	position: relative;
	transition: all 0.3s ease;
}

.cta-block::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(232, 106, 44, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.cta-block::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.cta-block .cta-content {
	position: relative;
	z-index: 2;
	padding: 56px 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.cta-block .cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 8px 24px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 28px;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.cta-block .cta-badge i {
	font-size: 1rem;
}

.cta-block .cta-title {
	font-size: 2.8rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	max-width: 800px;
}

.cta-block .cta-description {
	font-size: 1.1rem;
	color: #5a4a3a;
	max-width: 600px;
	margin: 0 auto 32px;
	line-height: 1.6;
}

.cta-block .cta-features {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.cta-block .feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(232, 106, 44, 0.08);
	padding: 10px 20px;
	border-radius: 60px;
	transition: all 0.2s ease;
}

.cta-block .feature-item:hover {
	background: rgba(232, 106, 44, 0.15);
	transform: translateY(-2px);
}

.cta-block .feature-item i {
	font-size: 1.2rem;
	color: #E86A2C;
}

.cta-block .feature-item span {
	font-size: 0.9rem;
	font-weight: 500;
	color: #3e2c1c;
}

.cta-block .cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	border: none;
	padding: 16px 42px;
	border-radius: 60px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(232, 106, 44, 0.35);
	text-decoration: none;
	font-family: inherit;
}

.cta-block .cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(232, 106, 44, 0.45);
}

.cta-block .cta-button i {
	font-size: 1.2rem;
	transition: transform 0.2s ease;
}

.cta-block .cta-button:hover i {
	transform: translateX(5px);
}

.cta-block .cta-note {
	font-size: 0.8rem;
	color: #b69472;
	margin-top: 20px;
}

.cta-block {
	animation: fadeInNews 0.6s ease forwards;
}

.btn-block {
	text-align: center;
}

.btn-block .btn-block-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	border: none;
	padding: 16px 42px;
	border-radius: 60px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(232, 106, 44, 0.35);
	text-decoration: none;
	font-family: inherit;
}

.btn-block .btn-block-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(232, 106, 44, 0.45);
}

.btn-block .btn-block-button i {
	font-size: 1.2rem;
	transition: transform 0.2s ease;
}

.btn-block .btn-block-button:hover i {
	transform: translateX(5px);
}

.breadcrumbs {
	background: #fff;
	backdrop-filter: blur(10px);
	border-radius: 60px;
	padding: 12px 24px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.breadcrumbs:hover {
	box-shadow: 0 6px 20px rgba(232, 106, 44, 0.1);
	border-color: rgba(232, 106, 44, 0.25);
}

.breadcrumbs .breadcrumb-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.breadcrumbs .breadcrumb-link a {
	text-decoration: none;
  	color: inherit;
	font-size: 0.9rem;
}

.breadcrumbs .breadcrumb-link {
	color: #7c6b58;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.breadcrumbs .breadcrumb-link:hover {
	color: #E86A2C;
	transform: translateX(2px);
}

.breadcrumbs .breadcrumb-link i {
	font-size: 0.8rem;
	color: #E86A2C;
}

.breadcrumbs .breadcrumb-current {
	color: #E86A2C;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.breadcrumbs .breadcrumb-current i {
	font-size: 0.8rem;
}

.breadcrumbs .breadcrumb-separator {
	color: #d4c5b5;
	font-size: 0.7rem;
	margin: 0 4px;
}

.breadcrumbs .home-icon {
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-size: 1rem;
}

article.wysiwyg {
	background-color: #fff;
	border-radius: 32px;
	padding: 24px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contacts-block {
	background: #ffffff;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(232, 106, 44, 0.12);
	transition: all 0.3s ease;
}

.contacts-block .contacts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.contacts-block .contacts-info {
	padding: 48px 40px;
	background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
	position: relative;
}

.contacts-block .contacts-map {
	background: #f5f0ea;
	min-height: 500px;
	position: relative;
}

.contacts-block .contacts-map > div {
	height: 100%;
}

.contacts-block .section-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 8px 24px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.contacts-block .section-title {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
	margin-top: 0;
}

.contacts-block .section-subtitle {
	color: #7c6b58;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 32px;
}

.contacts-block .contact-items {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-bottom: 40px;
}

.contacts-block .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	transition: all 0.2s ease;
}

.contacts-block .contact-item:hover {
	transform: translateX(5px);
}

.contacts-block .contact-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, #FFF1E6, #FFE8DC);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: #E86A2C;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.contacts-block .contact-item:hover .contact-icon {
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	transform: scale(1.05);
}

.contacts-block .contact-details {
	flex: 1;
}

.contacts-block .contact-details h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #2c241a;
	margin-bottom: 6px;
	margin-top: 0;
}

.contacts-block .contact-details p,
.contacts-block .contact-details a {
	font-size: 0.95rem;
	color: #7c6b58;
	text-decoration: none;
	line-height: 1.5;
	transition: color 0.2s ease;
}

.contacts-block .contact-details a:hover {
	color: #E86A2C;
}

.contacts-block .social-section {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid rgba(232, 106, 44, 0.15);
}

.contacts-block .social-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: #2c241a;
	margin-bottom: 16px;
}

.contacts-block .social-links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.contacts-block .social-link {
	width: 44px;
	height: 44px;
	background: #f5f0ea;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5a4a3a;
	font-size: 1.2rem;
	transition: all 0.2s ease;
	text-decoration: none;
}

.contacts-block .social-link:hover {
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	transform: translateY(-3px);
}

.contacts-block .social-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contacts-block .work-hours {
	background: rgba(232, 106, 44, 0.06);
	border-radius: 28px;
	padding: 20px 24px;
	margin-top: 32px;
}

.contacts-block .work-hours h4 {
	font-size: 0.9rem;
	font-weight: 700;
	color: #2c241a;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contacts-block .work-hours h4 i {
	color: #E86A2C;
}

.contacts-block .work-hours p {
	font-size: 0.9rem;
	color: #7c6b58;
	line-height: 1.6;
}

.contacts-block .route-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	border: none;
	padding: 14px 28px;
	border-radius: 60px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-top: 32px;
	font-family: inherit;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.contacts-block .route-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(232, 106, 44, 0.35);
}

.app-block {
	background: #ffffff;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(232, 106, 44, 0.12);
	transition: all 0.3s ease;
	position: relative;
}

.app-block::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(232, 106, 44, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.app-block::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(244, 162, 97, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.app-block .app-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	position: relative;
	z-index: 2;
}

.app-block .app-info {
	padding: 56px 48px;
	background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
}

.app-block .app-media {
	padding: 56px 48px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-left: 1px solid rgba(232, 106, 44, 0.1);
}

.app-block .app-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 8px 24px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.app-block .app-title {
	font-size: 2.2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.app-block .app-subtitle {
	color: #7c6b58;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 32px;
}

.app-block .app-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.app-block .feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.app-block .feature i {
	width: 28px;
	color: #E86A2C;
	font-size: 1.1rem;
}

.app-block .feature span {
	font-size: 0.95rem;
	color: #3e2c1c;
	font-weight: 500;
}

.app-block .store-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.app-block .store-link {
	display: inline-block;
	transition: transform 0.2s ease;
}

.app-block .store-link:hover {
	transform: translateY(-3px);
}

.app-block .store-badge {
	height: 52px;
	width: auto;
}

.app-block .qr-section {
	text-align: center;
	margin-top: 20px;
}

.app-block .qr-code {
	width: 140px;
	height: 140px;
	background: #ffffff;
	border-radius: 28px;
	padding: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 12px;
	display: inline-block;
}

.app-block .qr-code img {
	width: 100%;
	height: 100%;
}

.app-block .qr-text {
	font-size: 0.75rem;
	color: #b69472;
}

.app-block .phone-mockup {
	text-align: center;
	margin-bottom: 24px;
}

.app-block .phone-icon {
	font-size: 4rem;
	color: #E86A2C;
	margin-bottom: 16px;
}

.app-block .phone-mockup p {
	color: #7c6b58;
	font-size: 0.85rem;
}

.info-slider-block {
	background: #ffffff;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(232, 106, 44, 0.12);
	transition: all 0.3s ease;
	position: relative;
}

.info-slider-block::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(232, 106, 44, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.info-slider-block .block-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	position: relative;
	z-index: 2;
}

.info-slider-block .text-column {
	padding: 56px 48px;
	background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
}

.info-slider-block .slider-column {
	padding: 48px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-slider-block .block-grid.text-left .text-column {
	border-right: 1px solid rgba(232, 106, 44, 0.1);
}

.info-slider-block .block-grid.text-right .text-column {
	border-left: 1px solid rgba(232, 106, 44, 0.1);
}

.info-slider-block .section-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 8px 24px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.info-slider-block .block-title {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.info-slider-block .block-description {
	color: #7c6b58;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 28px;
}

.info-slider-block .block-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	border: none;
	padding: 14px 32px;
	border-radius: 60px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.info-slider-block .block-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(232, 106, 44, 0.35);
}
.info-slider-block .block-slider {
	position: relative;
	width: 100%;
	border-radius: 32px;
	overflow: hidden;
}

.info-slider-block .slider-wrapper {
	overflow: hidden;
	border-radius: 28px;
}

.info-slider-block .slider-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-slider-block .slider-slide {
	flex-shrink: 0;
	width: 100%;
	border-radius: 28px;
	overflow: hidden;
}

.info-slider-block .slider-slide img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
}

.info-slider-block .slider-nav {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 12px;
	z-index: 10;
}

.info-slider-block .slider-btn-nav {
	width: 40px;
	height: 40px;
	background: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: #E86A2C;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-slider-block .slider-btn-nav:hover {
	background: #E86A2C;
	color: white;
	transform: scale(1.05);
}

.info-slider-block .slider-dots {
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: flex;
	gap: 10px;
	z-index: 10;
}

.info-slider-block .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: all 0.3s ease;
}

.info-slider-block .dot.active {
	width: 24px;
	border-radius: 6px;
	background: white;
}

.gallery-block {
	background: #ffffff;
	border-radius: 56px;
	overflow: hidden;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(232, 106, 44, 0.12);
	transition: all 0.3s ease;
	position: relative;
}

.gallery-block::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(232, 106, 44, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.gallery-block::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(244, 162, 97, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.gallery-header {
	text-align: center;
	padding: 56px 48px 32px;
	position: relative;
	z-index: 2;
	background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 8px 24px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.section-subtitle {
	color: #7c6b58;
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.gallery-grid.single {
	padding: 10px 0 0;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	padding: 0 48px 56px;
	position: relative;
	z-index: 2;
}

.gallery-item {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 1 / 0.9;
	background: #f9f4ed;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 35px -12px rgba(232, 106, 44, 0.25);
}

.gallery-item a {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 24px 20px 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-overlay h4 {
	color: white;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.gallery-overlay p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.75rem;
}

.zoom-icon {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255, 255, 255, 0.9);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #E86A2C;
	font-size: 1rem;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
}

.gallery-item:hover .zoom-icon {
	opacity: 1;
	transform: scale(1.05);
}

.news-block {
	transition: all 0.3s ease;
	position: relative;
}

.news-block .news-header {
	text-align: center;
	padding: 56px 48px 32px;
	position: relative;
	z-index: 2;
	background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
}

.news-block .section-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 8px 24px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.news-block .section-title {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.news-block .section-subtitle {
	color: #7c6b58;
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.news-block .news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	position: relative;
	z-index: 2;
}

.news-block .news-card {
	background: #ffffff;
	border-radius: 32px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(232, 106, 44, 0.1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.news-block .news-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 35px -12px rgba(232, 106, 44, 0.2);
	border-color: rgba(232, 106, 44, 0.3);
}

.news-block .news-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	position: relative;
}

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

.news-block .news-card:hover .news-image img {
	transform: scale(1.05);
}

.news-block .news-category {
	position: absolute;
	top: 16px;
	left: 16px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 4px 14px;
	border-radius: 60px;
	font-size: 0.7rem;
	font-weight: 600;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-block .news-category a {
	text-decoration: none;
	color: white;
}

.news-block .news-content {
	padding: 24px 24px 28px;
}

.news-block .news-date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	color: #b69472;
	margin-bottom: 12px;
}

.news-block .news-date i {
	color: #E86A2C;
	font-size: 0.7rem;
}

.news-block .news-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #2c241a;
	margin-bottom: 12px;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.news-block .news-card:hover .news-title {
	color: #E86A2C;
}

.news-block .news-excerpt {
	font-size: 0.9rem;
	color: #7c6b58;
	line-height: 1.6;
	margin-bottom: 20px;
}

.news-block .news-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #E86A2C;
	text-decoration: none;
	transition: all 0.2s ease;
}

.news-block .news-link i {
	transition: transform 0.2s ease;
}

.news-block .news-link:hover {
	gap: 12px;
}

.news-block .news-link:hover i {
	transform: translateX(4px);
}

.pagination {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	padding: 20px 0;
}

.pagination ul {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.pagination li {
	display: inline-block;
}

.pagination a,
.pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 48px;
	padding: 0 12px;
	border-radius: 60px;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

.pagination a {
	background: transparent;
	color: #7c6b58;
	border: 2px solid rgba(232, 106, 44, 0.2);
}

.pagination a:hover {
	background: rgba(232, 106, 44, 0.1);
	border-color: #E86A2C;
	color: #E86A2C;
	transform: translateY(-2px);
}

.pagination .current span {
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	border: none;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.pagination .nav-prev,
.pagination .nav-next {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pagination .nav-prev i,
.pagination .nav-next i {
	font-size: 0.8rem;
}

.pagination .dots {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 48px;
	color: #b69472;
	font-size: 1rem;
	letter-spacing: 2px;
}

.pagination a:active {
	transform: scale(0.96);
}

.error-block {
	background: #ffffff;
	border-radius: 56px;
	overflow: hidden;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(232, 106, 44, 0.12);
	transition: all 0.3s ease;
	position: relative;
	text-align: center;
	padding: 64px 48px;
	margin-top: 40px;
}

.error-block::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(232, 106, 44, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.error-block::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(244, 162, 97, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.error-block .error-code {
	font-size: 8rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: -0.02em;
	line-height: 1;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
	text-shadow: 0 4px 15px rgba(232, 106, 44, 0.15);
}

.error-block .error-icon {
	font-size: 5rem;
	color: #E86A2C;
	margin-bottom: 24px;
	opacity: 0.7;
	position: relative;
	z-index: 2;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.error-block .error-title {
	font-size: 2rem;
	font-weight: 700;
	color: #2c241a;
	margin-bottom: 16px;
	position: relative;
	z-index: 2;
}

.error-block .error-description {
	font-size: 1rem;
	color: #7c6b58;
	max-width: 500px;
	margin: 0 auto 32px;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

.error-block .home-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	border: none;
	padding: 14px 36px;
	border-radius: 60px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
	margin-bottom: 32px;
	position: relative;
	z-index: 2;
}

.error-block .home-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(232, 106, 44, 0.35);
}

.error-block .decor-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 106, 44, 0.08), transparent);
	pointer-events: none;
	z-index: 0;
}

.error-block .decor-1 {
	width: 150px;
	height: 150px;
	top: 10%;
	left: 5%;
}

.error-block .decor-2 {
	width: 100px;
	height: 100px;
	bottom: 15%;
	right: 8%;
}

.error-block .decor-3 {
	width: 200px;
	height: 200px;
	top: 50%;
	left: -5%;
	transform: translateY(-50%);
}

.block-text {
	background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(232, 106, 44, 0.12);
    transition: all 0.3s ease;
    position: relative;
	padding: 56px 48px;
}

.block-image {
	border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(232, 106, 44, 0.12);
    transition: all 0.3s ease;
    position: relative;
}

.block-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.block-image a {
	display: flex;
}

.services-block {
	background: #ffffff;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(232, 106, 44, 0.12);
	transition: all 0.3s ease;
	position: relative;
}

.services-block .services-header {
	text-align: center;
	padding: 56px 48px 32px;
	position: relative;
	z-index: 2;
}

.services-block .section-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 8px 24px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.services-block .section-title {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.services-block .section-subtitle {
	color: #7c6b58;
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.services-block .services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	padding: 0 48px 56px;
	position: relative;
	z-index: 2;
}

.services-block .service-card {
	background: #ffffff;
	border-radius: 32px;
	padding: 32px 24px 28px;
	transition: all 0.3s ease;
	border: 1px solid rgba(232, 106, 44, 0.1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
	text-align: center;
}

.services-block .service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 35px -12px rgba(232, 106, 44, 0.2);
	border-color: rgba(232, 106, 44, 0.3);
}

.services-block .service-photo {
	width: 120px;
	height: 120px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 3px solid white;
	outline: 1px solid rgba(232, 106, 44, 0.2);
}

.services-block .service-card:hover .service-photo {
	transform: scale(1.05);
	box-shadow: 0 12px 25px rgba(232, 106, 44, 0.2);
	outline-color: #E86A2C;
}

.services-block .service-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.services-block .service-card:hover .service-photo img {
	transform: scale(1.1);
}

.services-block .photo-icon {
	position: absolute;
	bottom: 5px;
	right: 5px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.9rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.2s ease;
}

.services-block .service-card:hover .photo-icon {
	transform: scale(1.1);
}

.services-block .service-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #2c241a;
	margin-bottom: 12px;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.services-block .service-card:hover .service-title {
	color: #E86A2C;
}

.services-block .service-description {
	font-size: 0.85rem;
	color: #7c6b58;
	line-height: 1.6;
	margin-bottom: 20px;
}

.services-block .service-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 2px solid rgba(232, 106, 44, 0.3);
	padding: 8px 20px;
	border-radius: 60px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #E86A2C;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.services-block .service-btn:hover {
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	border-color: transparent;
	color: white;
	transform: translateY(-2px);
	gap: 12px;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.birthday-block {
	background: #ffffff;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(232, 106, 44, 0.12);
	position: relative;
}

.birthday-block::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(232, 106, 44, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.birthday-block::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(244, 162, 97, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.birthday-block .birthday-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	gap: 0;
	min-height: 650px;
	position: relative;
	z-index: 2;
}

.birthday-block .slider-column {
	padding: 40px 20px;
	background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.birthday-block .left-column {
	border-right: 1px solid rgba(232, 106, 44, 0.1);
}

.birthday-block .right-column {
	border-left: 1px solid rgba(232, 106, 44, 0.1);
}

.birthday-block .slider-header {
	text-align: center;
	margin-bottom: 20px;
	font-weight: 600;
	color: #E86A2C;
	font-size: 0.9rem;
	letter-spacing: 1px;
}

.birthday-block .vertical-slider-container {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 450px;
	overflow: hidden;
}

.birthday-block .vertical-slider {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	overflow: hidden;
	position: relative;
}

.birthday-block .service-slide {
	background: #ffffff;
	border-radius: 28px;
	padding: 16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(232, 106, 44, 0.1);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 16px;
	transform: translateX(0);
	opacity: 1;
	width: 100%;
	flex-direction: column;
}

.birthday-block .service-slide.slide-exit {
	animation: slideExit 0.3s ease forwards;
}

.birthday-block .service-slide.slide-enter {
	animation: slideEnter 0.3s ease forwards;
}

@keyframes slideExit {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(-15px);
	}
}

@keyframes slideEnter {
	from {
		opacity: 0;
		transform: translateX(15px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.birthday-block .right-column .service-slide.slide-exit {
	animation: slideExitRight 0.3s ease forwards;
}

.birthday-block .right-column .service-slide.slide-enter {
	animation: slideEnterRight 0.3s ease forwards;
}

@keyframes slideExitRight {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(15px);
	}
}

@keyframes slideEnterRight {
	from {
		opacity: 0;
		transform: translateX(-15px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.birthday-block .service-slide:hover {
	border-color: rgba(232, 106, 44, 0.3);
	box-shadow: 0 3px 10px rgba(232, 106, 44, 0.1);
}

.birthday-block .service-slide.hidden-slide {
	display: none !important;
}

.birthday-block .slide-image {
	border-radius: 12px;
	overflow: hidden;
	height: 150px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 2px solid white;
	outline: 1px solid rgba(232, 106, 44, 0.2);
	transition: all 0.2s ease;
}

.birthday-block .service-slide:hover .slide-image {
	transform: scale(1.05);
	outline-color: #E86A2C;
}

.birthday-block .slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.birthday-block .slide-info {
	flex: 1;
	width: 100%;
}

.birthday-block .slide-title {
	font-size: 1rem;
	font-weight: 700;
	color: #2c241a;
	margin-bottom: 6px;
	text-shadow: none;
}

.birthday-block .slide-desc {
	font-size: 0.75rem;
	color: #7c6b58;
	line-height: 1.4;
}

.birthday-block .slider-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}

.birthday-block .nav-btn {
	width: 36px;
	height: 36px;
	background: white;
	border: 1px solid rgba(232, 106, 44, 0.3);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #E86A2C;
	transition: all 0.2s ease;
}

.birthday-block .nav-btn:hover {
	background: #E86A2C;
	color: white;
	transform: scale(1.05);
}

.birthday-block .nav-btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.birthday-block .nav-btn.disabled:hover {
	background: white;
	color: #E86A2C;
	transform: none;
}

.birthday-block .slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.birthday-block .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #e0d6cc;
	cursor: pointer;
	transition: all 0.2s ease;
}

.birthday-block .dot.active {
	width: 20px;
	border-radius: 4px;
	background: #E86A2C;
}

.birthday-block .center-column {
	background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	text-align: center;
}

.birthday-block .center-content {
	max-width: 450px;
	width: 100%;
}

.birthday-block .center-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	padding: 6px 20px;
	border-radius: 60px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.birthday-block .center-title {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.birthday-block .center-description {
	font-size: 0.95rem;
	color: #7c6b58;
	line-height: 1.6;
	margin-bottom: 28px;
}

.birthday-block .center-image {
	width: 100%;
	border-radius: 32px;
	overflow: hidden;
	margin-bottom: 24px;
	box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
	aspect-ratio: 1 / 0.9;
}

.birthday-block .center-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.birthday-block .center-image:hover img {
	transform: scale(1.02);
}

.birthday-block .center-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #E86A2C, #F4A261);
	color: white;
	border: none;
	padding: 12px 32px;
	border-radius: 60px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
	box-shadow: 0 4px 12px rgba(232, 106, 44, 0.25);
}

.birthday-block .center-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(232, 106, 44, 0.35);
}

.info-slider-block iframe {
	max-width: 100%;
}

.wysiwyg .alignright {
	float: right;
}

.wysiwyg .alignleft {
	float: left;
}

.single-thumbnail {
	float: left;
	max-width: 100%;
	margin-right: 10px;
}

.header-container {
	position: sticky;
    top: -123px;
    z-index: 99;
}

@media (max-width: 1024px) {
	.birthday-block .birthday-layout {
		grid-template-columns: 1fr;
	}

	.birthday-block .left-column {
		border-right: none;
		border-bottom: 1px solid rgba(232, 106, 44, 0.1);
		order: 2;
	}

	.birthday-block .right-column {
		border-left: none;
		border-top: 1px solid rgba(232, 106, 44, 0.1);
		order: 3;
	}

	.birthday-block .center-column {
		order: 1;
		padding: 48px 32px;
	}

	.birthday-block .vertical-slider-container {
		overflow: visible;
		min-height: auto;
	}

	.birthday-block .vertical-slider {
		flex-direction: row;
		overflow-x: auto;
		overflow-y: visible;
		gap: 16px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		padding-bottom: 12px;
		width: 100%;
	}

	.birthday-block .vertical-slider::-webkit-scrollbar {
		height: 4px;
	}

	.birthday-block .vertical-slider::-webkit-scrollbar-track {
		background: #f0e8df;
		border-radius: 10px;
	}

	.birthday-block .vertical-slider::-webkit-scrollbar-thumb {
		background: #E86A2C;
		border-radius: 10px;
	}

	.birthday-block .service-slide {
		min-width: calc(30% - 40px);
		width: calc(30% - 40px);
		max-width: 320px;
		flex-shrink: 0;
		scroll-snap-align: start;
		margin: 0 auto;
	}

	.birthday-block .service-slide.hidden-slide {
		display: flex !important;
	}

	.birthday-block .slider-nav {
		display: none;
	}

	.birthday-block .slider-dots {
		display: none;
	}

	.birthday-block .slider-column {
		padding: 32px 20px;
	}

	.birthday-block .service-slide.slide-exit,
	.birthday-block .service-slide.slide-enter {
		animation: none;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		padding: 0 40px 48px;
	}
	.container, .nav-container {
		padding: 0 18px;
	}
	.top-panel {
		padding: 18px 24px;
		gap: 16px;
	}
	.nav-container {
		padding: 0 24px;
	}
	.nav-link {
		white-space: normal;
		font-size: 0.9rem;
		padding: 10px 6px;
	}
	.right-group {
		gap: 16px;
	}
	.social-icon {
		width: 30px;
		height: 30px;
		font-size: 1rem;
	}
	.slider-btn-prev {
		left: -10px;
	}
	.slider-btn-next {
		right: -10px;
	}
	.news-block .news-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
	.services-block .services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
		padding: 0 40px 48px;
	}
}

@media (max-width: 1100px) {
	.event-card {
		width: calc(33.333% - 16px);
	}
}

@media (max-width: 880px) {
	.block-text {
		padding: 40px 32px;
	}
	.app-block .app-grid {
		grid-template-columns: 1fr;
	}

	.info-slider-block .block-grid {
		grid-template-columns: 1fr;
	}

	.info-slider-block .block-grid.text-left .text-column {
		border-right: none;
		border-bottom: 1px solid rgba(232, 106, 44, 0.1);
	}

	.info-slider-block .block-grid.text-right .text-column {
		border-left: none;
		border-top: 1px solid rgba(232, 106, 44, 0.1);
		order: 2;
	}

	.info-slider-block .block-grid.text-right .slider-column {
		order: 1;
	}

	.info-slider-block .text-column {
		padding: 40px 32px;
	}

	.info-slider-block .slider-column {
		padding: 32px;
	}

	.info-slider-block .block-title {
		font-size: 1.6rem;
	}

	.info-slider-block .slider-slide img {
		height: 280px;
	}

	.app-block .app-info {
		padding: 40px 32px;
	}

	.app-block .app-media {
		padding: 40px 32px;
		border-left: none;
		border-top: 1px solid rgba(232, 106, 44, 0.1);
	}

	.app-block .app-title {
		font-size: 1.8rem;
	}

	.app-block .store-badge {
		height: 48px;
	}

	.contacts-block .contacts-grid {
		grid-template-columns: 1fr;
	}

	.contacts-block .contacts-info {
		padding: 40px 32px;
	}

	.contacts-block .contacts-map {
		min-height: 400px;
	}

	.contacts-block .section-title {
		font-size: 1.6rem;
	}
	.main-nav {
		flex-wrap: wrap;
		justify-content: center;
	}
	.nav-item {
		flex: auto;
	}
	.events-slider-container {
		padding: 30px 0;
	}

	.event-card {
		width: calc(50% - 12px);
	}

	.slider-btn-prev {
		left: -8px;
	}

	.slider-btn-next {
		right: -8px;
	}

	.slider-btn {
		width: 44px;
		height: 44px;
		font-size: 1.1rem;
	}

	.card-back {
		padding: 20px 18px;
	}

	.card-back h3 {
		font-size: 1.1rem;
	}

	.card-back-description {
		font-size: 0.8rem;
	}
}

@media (max-width: 768px) {
	.wysiwyg h1 {
		font-size: 1.8em !important;
	}
	.site-header {
		border-radius: 0 0 20px 20px;
	}

	.site-footer {
		border-radius: 20px 20px 0 0;
	}

	.news-block .news-card, .info-slider-block, .block-text, .services-block, .slider .slider-wrapper, .birthday-block, .block-image, .app-block, .contacts-block {
		border-radius: 20px;
	}

	.header-container {
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 99;
	}

	main {
		margin-top: 100px; 
	}

	.admin-bar .header-container {
		top: 46px;
	}

	.admin-bar main {
		margin-top: 100px;
	}

	.site-header {
		overflow: hidden;
	}

	.services-block .services-header {
		padding: 40px 32px 24px;
	}

	.services-block .section-title {
		font-size: 2rem;
	}

	.services-block .services-grid {
		padding: 0 32px 40px;
		gap: 24px;
	}

	.services-block .service-photo {
		width: 100px;
		height: 100px;
	}

	.services-block .service-title {
		font-size: 1.1rem;
	}

	.error-block {
		padding: 48px 32px;
	}

	.error-block .error-code {
		font-size: 5rem;
	}

	.error-block .error-icon {
		font-size: 3.5rem;
	}

	.error-block .error-title {
		font-size: 1.5rem;
	}

	.error-block .error-description {
		font-size: 0.9rem;
		padding: 0 16px;
	}

	.error-block .home-btn {
		padding: 12px 28px;
		font-size: 0.9rem;
	}

	.news-block .news-header {
		padding: 40px 32px 24px;
	}

	.news-block .section-title {
		font-size: 2rem;
	}

	.news-block .news-grid {
		gap: 24px;
	}

	.news-block .news-footer {
		padding: 0 32px 48px;
	}

	.gallery-header {
		padding: 40px 32px 24px;
	}

	.section-title {
		font-size: 2rem;
	}

	.gallery-grid {
		padding: 0 32px 40px;
		gap: 20px;
	}

	article.wysiwyg {
		padding: 12px 24px;
	}

	.btn-block .btn-block-button {
		padding: 14px 36px;
		font-size: 1rem;
	}

	.breadcrumbs {
		padding: 10px 18px;
	}

	.breadcrumbs .breadcrumb-item {
		font-size: 0.8rem;
	}

	.breadcrumbs .breadcrumb-separator {
		margin: 0 2px;
	}

	.cta-block .cta-content {
		padding: 40px 28px;
	}

	.cta-block .cta-title {
		font-size: 2rem;
	}

	.cta-block .cta-description {
		font-size: 0.95rem;
	}

	.cta-block .cta-features {
		gap: 16px;
		margin-bottom: 32px;
	}

	.cta-block .feature-item {
		padding: 6px 16px;
	}

	.cta-block .feature-item span {
		font-size: 0.8rem;
	}

	.cta-block .cta-button {
		padding: 14px 36px;
		font-size: 1rem;
	}

	.title-header .title-title {
		font-size: 2rem;
	}

	.title-header .title-subtitle {
		font-size: 0.95rem;
	}

	.top-panel {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 14px 20px;
		position: relative;
	}

	.nav-item.dropdown:hover .dropdown-menu, .nav-item.dropdown .dropdown-menu.show-on-click {
		transform: none;
	}

	.mobile-menu-wrapper:has(.main-nav.open) {
		padding-bottom: 1px;
	}

	.nav-fullwidth {
		padding: 0;
		max-height: 70vh;
		overflow-y: auto;
	}

	.address-block {
		display: none;
	}

	.right-group {
		display: none;
	}

	.logo-block {
		flex: 1;
	}

	.logo-block img {
		width: auto;
    	height: 47px;
	}

	.burger {
		display: block;
		position: relative;
		z-index: 110;
	}

	.main-nav {
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		margin-top: 16px;
		padding: 12px 0 0;
		flex-wrap: nowrap;
	}

	.main-nav.open {
		display: flex;
		animation: slideDown 0.3s ease;
	}

	.nav-item {
		width: 100%;
		text-align: left;
	}

	.nav-link {
		padding: 14px 18px;
		background: #fefaf7;
		border-radius: 60px;
		white-space: normal;
		justify-content: space-between;
		width: 100%;
	}

	.dropdown-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		display: none;
		box-shadow: none;
		background: #fffaf5;
		margin-top: 6px;
		margin-bottom: 6px;
		padding: 8px 0;
		border-radius: 28px;
		width: 100%;
		border: 1px solid #ffe1cc;
	}

	.dropdown-menu.show-mobile {
		display: block;
		animation: slideDown 0.2s ease;
	}

	.dropdown-menu a {
		padding: 12px 28px;
	}

	.nav-item.dropdown .dropdown-arrow {
		transition: transform 0.2s;
	}

	.nav-item.dropdown.open-mobile .dropdown-arrow {
		transform: rotate(180deg);
	}

	.mobile-contact-block {
		display: none;
		background: #fefaf5;
		border-radius: 28px;
		margin: 12px 0 16px;
		padding: 16px;
		border: 1px solid rgba(232, 106, 44, 0.2);
		animation: slideDown 0.3s ease;
	}

	.mobile-contact-block.show-mobile {
		display: block;
	}

	.mobile-contact-item {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 12px 0;
		color: #3e2c1c;
		text-decoration: none;
		font-weight: 500;
		font-size: 0.9rem;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}

	.mobile-contact-item:last-child {
		border-bottom: none;
	}

	.mobile-contact-item .icon {
		font-size: 1.2rem;
        min-width: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
	}

	.mobile-contact-item .icon img {
		height: 20px;
	}

	.mobile-contact-item .text {
		flex: 1;
	}

	.mobile-contact-item .text strong {
		color: #E86A2C;
	}

	.mobile-contact-item:hover {
		background: #fff5ec;
		border-radius: 40px;
		padding-left: 8px;
		margin-left: -8px;
	}

	.mobile-social {
		display: flex;
		justify-content: center;
		gap: 20px;
		padding: 16px 0 8px;
		margin-top: 8px;
		border-top: 1px solid rgba(0, 0, 0, 0.05);
	}

	.mobile-social .social-icon {
		width: 35px;
		height: 35px;
		font-size: 1.3rem;
	}

	.mobile-write-btn {
		background: #E86A2C;
		color: white;
		border: none;
		padding: 14px 20px;
		border-radius: 60px;
		font-weight: 600;
		font-size: 1rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 100%;
		cursor: pointer;
		margin-top: 12px;
		transition: all 0.2s;
	}

	.mobile-write-btn:hover {
		background: #d45c1e;
		transform: translateY(-2px);
	}

	.footer-content {
		padding: 40px 24px 28px;
	}
	.footer-grid {
		gap: 32px;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	.footer-bottom-links {
		justify-content: center;
	}

	.slide-content {
		padding: 24px 24px 20px;
	}

	.slide-title {
		font-size: 1.3rem;
	}

	.slide-desc {
		font-size: 0.8rem;
		max-width: 100%;
	}

	.slider-btn {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.slider-btn-prev {
		left: 12px;
	}

	.slider-btn-next {
		right: 12px;
	}

	.slider-dots {
		padding: 20px 0 24px;
	}
	#wpadminbar {
        position: fixed;
    }
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

 @media (max-width: 640px) {
	main {
		row-gap: 25px;
	}

	.block-text {
		padding: 32px 24px;
	}

	.birthday-block .center-title {
		font-size: 1.8rem;
	}

	.birthday-block .center-description {
		font-size: 0.85rem;
	}

	.birthday-block .service-slide {
		min-width: calc(100% - 30px);
		width: calc(100% - 30px);
		max-width: 300px;
	}

	.birthday-block .service-slide:hover .slide-image {
		transform: unset;
	}

	.birthday-block .center-column {
		padding: 32px 24px;
	}

	.birthday-block .slider-column {
		padding: 28px 16px;
	}

	.services-block .services-grid {
		grid-template-columns: 1fr;
		padding: 0 24px 40px;
		gap: 24px;
	}

	.services-block .services-header {
		padding: 32px 24px 20px;
	}

	.services-block .section-title {
		font-size: 1.6rem;
	}

	.services-block .section-subtitle {
		font-size: 0.9rem;
		padding: 0 16px;
	}

	.services-block .service-photo {
		width: 110px;
		height: 110px;
	}

	.gallery-header {
		padding: 32px 24px 20px;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.section-subtitle {
		font-size: 0.9rem;
		padding: 0 16px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		padding: 0 24px 32px;
		gap: 20px;
	}

	.zoom-icon {
		width: 36px;
		height: 36px;
		font-size: 0.9rem;
	}

	.info-slider-block .text-column {
		padding: 32px 24px;
	}

	.info-slider-block .slider-column {
		padding: 24px;
	}

	.info-slider-block .block-title {
		font-size: 1.4rem;
	}

	.info-slider-block .block-description {
		font-size: 0.9rem;
	}

	.info-slider-block .feature-item span {
		font-size: 0.85rem;
	}

	.info-slider-block .slider-slide img {
		height: 220px;
	}

	.info-slider-block .slider-btn-nav {
		width: 36px;
		height: 36px;
		font-size: 0.9rem;
	}

	.contacts-block .contacts-info {
		padding: 32px 24px;
	}

	.contacts-block .section-title {
		font-size: 1.4rem;
	}

	.contacts-block .contact-icon {
		width: 44px;
		height: 44px;
		font-size: 1.1rem;
	}

	.contacts-block .contact-details p,
	.contacts-block .contact-details a {
		font-size: 0.85rem;
	}

	.contacts-block .route-btn {
		width: 100%;
		justify-content: center;
		padding: 12px 20px;
	}

	.breadcrumbs {
		padding: 18px 25px;
        border-radius: 25px;
		flex-wrap: wrap;
		gap: 6px;
	}

	.breadcrumbs .breadcrumb-item {
		font-size: 0.75rem;
	}

	.cta-block .cta-content {
		padding: 32px 20px;
	}

	.cta-block .cta-title {
		font-size: 1.6rem;
	}

	.cta-block .cta-badge {
		font-size: 0.75rem;
		padding: 6px 18px;
		margin-bottom: 20px;
	}

	.cta-block .cta-features {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.cta-block .feature-item {
		width: 100%;
		justify-content: center;
	}

	.title-header .title-badge {
		font-size: 0.75rem;
		padding: 6px 18px;
	}

	.title-header .title-title {
		font-size: 1.6rem;
	}

	.modal {
		max-width: 95%;
		border-radius: 32px;
	}

	.modal-header {
		padding: 24px 24px 20px;
	}

	.modal-header h2 {
		font-size: 1.4rem;
	}

	.modal-body {
		padding: 24px;
	}

	.modal-footer {
		padding: 20px 24px 24px;
	}

	.service-options {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.modal-close {
		top: 20px;
		right: 20px;
		width: 36px;
		height: 36px;
	}
	.events-slider-container {
		padding: 20px 0;
	}

	.event-card {
		width: calc(100% - 0px);
	}

	.slider-title {
		font-size: 1.6rem;
	}

	.slider-subtitle {
		font-size: 0.85rem;
		padding: 0 16px;
	}

	.slider-btn {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.slider-btn-prev {
		left: 5px;
	}

	.slider-btn-next {
		right: 5px;
	}

	.card-overlay h3 {
		font-size: 1rem;
	}

	.card-back {
		padding: 18px 14px;
	}

	.event-date {
		font-size: 0.75rem;
		padding: 6px 16px;
	}

	.card-back h3 {
		font-size: 1rem;
	}

	.btn-more {
		padding: 8px 24px;
		font-size: 0.8rem;
	}

	.app-block .app-info {
		padding: 32px 24px;
	}

	.app-block .app-media {
		padding: 32px 24px;
	}

	.app-block .app-title {
		font-size: 1.5rem;
	}

	.app-block .app-subtitle {
		font-size: 0.9rem;
	}

	.app-block .feature span {
		font-size: 0.85rem;
	}

	.app-block .store-badge {
		height: 42px;
	}

	.app-block .qr-code {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 480px) {
	.birthday-block .service-slide {
		min-width: calc(100% - 20px);
		width: calc(100% - 20px);
		max-width: 280px;
	}

	.birthday-block .slide-title {
		font-size: 0.9rem;
	}

	.birthday-block .slide-desc {
		font-size: 0.7rem;
		max-width: 100%;
		opacity: 1;
	}

	.news-block .news-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.error-block {
		padding: 40px 24px;
	}

	.error-block .error-code {
		font-size: 4rem;
	}

	.error-block .error-icon {
		font-size: 3rem;
		margin-bottom: 16px;
	}

	.error-block .error-title {
		font-size: 1.3rem;
	}

	.pagination a,
	.pagination span {
		min-width: 40px;
		height: 40px;
		font-size: 0.85rem;
		padding: 0 8px;
	}

	.pagination .dots {
		min-width: 30px;
		height: 40px;
	}

	.pagination-nav-btn {
		padding: 8px 18px;
		font-size: 0.8rem;
	}

	.news-block .news-header {
		padding: 32px 24px 20px;
	}

	.news-block .section-title {
		font-size: 1.6rem;
	}

	.news-block .section-subtitle {
		font-size: 0.9rem;
		padding: 0 16px;
	}

	.news-block .news-footer {
		padding: 0 24px 40px;
	}

	.news-block .news-image {
		height: 200px;
	}

	.news-block .news-content {
		padding: 20px 20px 24px;
	}

	.news-block .news-title {
		font-size: 1.1rem;
	}

	.container, .nav-container {
		padding: 0 12px;
	}
	.top-panel {
		padding: 12px 16px;
	}
	.logo-main {
		font-size: 1.6rem;
	}
	.mobile-contact-item {
		font-size: 0.85rem;
	}
	.footer-content {
		padding: 32px 20px 24px;
	}
	.footer-col h3 {
		font-size: 1.1rem;
	}
	.footer-logo {
		font-size: 1.5rem;
	}

	.slide-title {
		font-size: 1.1rem;
	}

	.slide-desc {
		font-size: 0.7rem;
	}

	.slider-btn {
		width: 36px;
		height: 36px;
	}
}

@media (hover: none) and (pointer: coarse) {
	.event-card:hover .card-inner {
		transform: none;
	}
	.card-back {
		overflow-y: auto;
	}
}