:root {
	--soe-cigale-gold: #b7a06a;
	--soe-cigale-gold-strong: #a58b52;
	--soe-cigale-ink: #27231d;
	--soe-cigale-cream: #f7f4ed;
	--soe-cigale-paper: #fffdf8;
	--soe-cigale-border: rgba(87, 68, 27, 0.16);
	--soe-cigale-shadow: 0 18px 42px rgba(62, 46, 20, 0.14);
}

.soe-cigale-menu {
	position: relative;
	z-index: 9990;
	width: 100%;
}

.soe-cigale-menu__bar {
	position: relative;
	width: 100%;
}

.soe-cigale-menu__toggle {
	display: none;
	align-items: center;
	gap: 12px;
	min-height: 54px;
	padding: 0 18px;
	border: 0;
	background: var(--soe-cigale-gold);
	color: #fff;
	font-family: inherit;
	font-size: 20px;
	letter-spacing: 0.03em;
	cursor: pointer;
}

.soe-cigale-menu__toggle-icon {
	display: inline-grid;
	gap: 4px;
}

.soe-cigale-menu__toggle-icon span {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.soe-cigale-menu__panel {
	position: relative;
	background: transparent;
	box-shadow: none;
}

.soe-cigale-menu__close {
	display: none;
}

.soe-cigale-menu__list,
.soe-cigale-menu__submenu,
.soe-cigale-menu__item {
	list-style: none;
	margin: 0;
	padding: 0;
}

.soe-cigale-menu__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2px;
	padding: 10px 14px 0;
}

.soe-cigale-menu__item {
	position: relative;
}

.soe-cigale-menu__item-row {
	display: flex;
	align-items: center;
	min-height: 42px;
}

.soe-cigale-menu__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 9px;
	color: #fff !important;
	text-decoration: none;
	text-transform: uppercase;
	font-size: clamp(14px, 1vw, 17px);
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.05;
	transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
	position: relative;
}

.soe-cigale-menu__link::after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 5px;
	height: 1.5px;
	background: rgba(255, 255, 255, 0.85);
	transform: scaleX(0);
	transform-origin: center;
	opacity: 0;
	transition: transform 0.24s ease, opacity 0.24s ease, background-color 0.24s ease;
}

.soe-cigale-menu__link:hover,
.soe-cigale-menu__link:focus-visible {
	background: transparent;
	color: #fff !important;
	opacity: 1;
	transform: translateY(-1px);
}

.soe-cigale-menu__link:hover::after,
.soe-cigale-menu__link:focus-visible::after {
	transform: scaleX(1);
	opacity: 1;
}

.soe-cigale-menu__item.is-current > .soe-cigale-menu__item-row .soe-cigale-menu__link {
	background: transparent;
	color: #fff !important;
	opacity: 1;
}

.soe-cigale-menu__item.is-current > .soe-cigale-menu__item-row .soe-cigale-menu__link::after {
	transform: scaleX(1);
	opacity: 1;
	height: 2px;
	background: #ffffff;
	bottom: 2px;
}

.soe-cigale-menu__submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
}

.soe-cigale-menu__submenu-wrap {
	position: absolute;
	top: calc(100% - 2px);
	left: 0;
	min-width: 250px;
	padding-top: 8px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.16s ease;
	z-index: 9995;
}

.soe-cigale-menu__submenu {
	padding: 8px;
	background: var(--soe-cigale-paper);
	border: 1px solid var(--soe-cigale-border);
	box-shadow: var(--soe-cigale-shadow);
}

.soe-cigale-menu__submenu .soe-cigale-menu__item-row {
	justify-content: space-between;
}

.soe-cigale-menu__submenu .soe-cigale-menu__link {
	width: 100%;
	min-height: 38px;
	padding: 0 12px;
	color: var(--soe-cigale-ink) !important;
	font-size: 15px;
	font-weight: 700;
	background: transparent;
}

.soe-cigale-menu__submenu .soe-cigale-menu__link::after {
	left: 12px;
	right: 12px;
	bottom: 4px;
	background: rgba(39, 35, 29, 0.5);
}

.soe-cigale-menu__submenu .soe-cigale-menu__item.is-current > .soe-cigale-menu__item-row .soe-cigale-menu__link {
	color: var(--soe-cigale-ink) !important;
}

.soe-cigale-menu__submenu .soe-cigale-menu__submenu-toggle {
	color: var(--soe-cigale-ink);
}

.soe-cigale-menu__submenu .soe-cigale-menu__submenu-wrap {
	top: -8px;
	left: calc(100% - 6px);
	padding-top: 0;
	padding-left: 10px;
}

.soe-cigale-menu__item:hover > .soe-cigale-menu__submenu-wrap,
.soe-cigale-menu__item:focus-within > .soe-cigale-menu__submenu-wrap,
.soe-cigale-menu__item.is-submenu-open > .soe-cigale-menu__submenu-wrap {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.soe-cigale-lang {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 9998;
}

.soe-cigale-lang__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid var(--soe-cigale-border);
	background: rgba(255, 253, 248, 0.96);
	box-shadow: var(--soe-cigale-shadow);
	color: var(--soe-cigale-ink);
	font-family: inherit;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(6px);
}

.soe-cigale-lang__button {
	min-width: 150px;
	justify-content: center;
}

.soe-cigale-lang__button::after {
	content: "▾";
	font-size: 14px;
}

.soe-cigale-lang__panel {
	position: absolute;
	right: 0;
	bottom: calc(100% + 10px);
	min-width: 180px;
	padding: 8px;
	background: var(--soe-cigale-paper);
	border: 1px solid var(--soe-cigale-border);
	box-shadow: var(--soe-cigale-shadow);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.16s ease;
}

.soe-cigale-lang.is-open .soe-cigale-lang__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.soe-cigale-lang__list,
.soe-cigale-lang__item {
	list-style: none;
	margin: 0;
	padding: 0;
}

.soe-cigale-lang__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	color: var(--soe-cigale-ink);
	text-decoration: none;
	font-size: 18px;
}

.soe-cigale-lang__item.is-active .soe-cigale-lang__link,
.soe-cigale-lang__link:hover,
.soe-cigale-lang__link:focus-visible {
	background: var(--soe-cigale-cream);
}

.soe-cigale-lang__flag {
	display: block;
	width: 18px;
	height: 12px;
	object-fit: cover;
}

.soe-cigale-cookie {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 9997;
	display: flex;
	justify-content: center;
}

.soe-cigale-cookie[hidden] {
	display: none !important;
}

.soe-cigale-cookie__dialog {
	width: min(100%, 980px);
	padding: 22px 24px;
	background: rgba(39, 35, 29, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
	color: #fffdf8;
	backdrop-filter: blur(8px);
}

.soe-cigale-cookie__title {
	margin: 0 0 10px;
	color: var(--soe-cigale-gold);
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 32px;
	line-height: 1;
}

.soe-cigale-cookie__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.soe-cigale-cookie__text a {
	color: var(--soe-cigale-gold);
}

.soe-cigale-cookie__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.soe-cigale-cookie__choice {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.06);
}

.soe-cigale-cookie__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.soe-cigale-cookie__button {
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
}

.soe-cigale-cookie__button.is-light {
	background: transparent;
	color: #fff;
}

.soe-cigale-cookie__button.is-primary {
	background: var(--soe-cigale-gold);
	border-color: var(--soe-cigale-gold);
	color: #fff;
}

@media (max-width: 1100px) {
	.soe-cigale-menu {
		--soe-cigale-mobile-top: 0px;
	}

	.soe-cigale-menu__toggle {
		display: inline-flex;
	}

	.soe-cigale-menu__panel {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100vw;
		height: 100dvh;
		padding: max(18px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom)) 20px;
		background: var(--soe-cigale-gold) !important;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		max-height: 100dvh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 2147483646;
	}

	.soe-cigale-menu.is-open .soe-cigale-menu__panel,
	.soe-cigale-menu__panel.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.soe-cigale-menu__panel.is-teleported {
		margin: 0;
	}

	.soe-cigale-menu__close {
		display: flex;
		position: sticky;
		top: 0;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
		margin-left: auto;
		margin-bottom: 12px;
		border: 0;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.12);
		color: #fff;
		font-size: 34px;
		line-height: 1;
		cursor: pointer;
		z-index: 2;
	}

	.soe-cigale-menu__list,
	.soe-cigale-menu__submenu {
		display: block;
		padding: 0;
	}

	.soe-cigale-menu__item-row {
		justify-content: space-between;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.soe-cigale-menu__item:first-child > .soe-cigale-menu__item-row {
		border-top: 0;
	}

	.soe-cigale-menu__link {
		flex: 1 1 auto;
		padding: 16px 6px;
		font-size: 24px;
		font-weight: 700;
		justify-content: flex-start;
	}

	.soe-cigale-menu__link::after {
		left: 6px;
		right: 18px;
		bottom: 10px;
		transform-origin: left center;
	}


	.soe-cigale-menu__submenu-toggle {
		width: 40px;
		height: 40px;
	}

	.soe-cigale-menu__submenu-wrap,
	.soe-cigale-menu__submenu .soe-cigale-menu__submenu-wrap {
		position: static;
		min-width: 0;
		padding: 0 0 0 14px;
		max-height: 0;
		overflow: hidden;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		box-shadow: none;
	}

	.soe-cigale-menu__item.is-submenu-open > .soe-cigale-menu__submenu-wrap {
		max-height: 1000px;
		padding-bottom: 10px;
	}

	.soe-cigale-menu__submenu {
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.soe-cigale-menu__submenu .soe-cigale-menu__link,
	.soe-cigale-menu__submenu .soe-cigale-menu__submenu-toggle {
		color: #fff !important;
	}

	body.soe-cigale-menu-open {
		overflow: hidden;
		touch-action: none;
	}
}

@media (max-width: 640px) {
	.soe-cigale-lang {
		right: 12px;
		left: 12px;
		bottom: 12px;
	}

	.soe-cigale-lang__button {
		width: 100%;
	}

	.soe-cigale-cookie {
		left: 12px;
		right: 12px;
		bottom: 78px;
	}

	.soe-cigale-cookie__dialog {
		padding: 18px;
	}

	.soe-cigale-cookie__actions,
	.soe-cigale-cookie__choices {
		flex-direction: column;
	}
}
.soe-cigale-cookie-link {
	display: inline;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: inherit;
	font: inherit;
	line-height: inherit;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	cursor: pointer;
}

.soe-cigale-cookie-link:hover,
.soe-cigale-cookie-link:focus-visible {
	color: var(--soe-cigale-gold);
}

.soe-copyright {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	color: inherit;
	font: inherit;
}

.soe-copyright__text,
.soe-copyright__separator,
.soe-copyright__link {
	color: inherit;
	font: inherit;
}

.soe-copyright__link {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}
