: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-cookie-bg: #27231d;
	--soe-cigale-cookie-text: #fffdf8;
	--soe-cigale-cookie-accent: #b7a06a;
	--soe-cigale-cookie-border: #ffffff;
	--soe-cigale-cookie-choice-bg: #ffffff;
	--soe-cigale-cookie-button-text: #ffffff;
}

.soe-cigale-topbar {
	width: 100%;
	background: transparent;
	border-bottom: 0;
	color: var(--soe-cigale-menu-text, var(--soe-cigale-cookie-text));
}

.soe-cigale-topbar__inner {
	width: min(calc(100% - 48px), 1400px);
	min-height: 52px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.soe-cigale-topbar__left,
.soe-cigale-topbar__right {
	display: flex;
	align-items: center;
	gap: 14px;
}

.soe-cigale-topbar__right {
	margin-left: auto;
}

.soe-cigale-topbar__link {
	color: var(--soe-cigale-menu-text, var(--soe-cigale-cookie-text));
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.soe-cigale-topbar__link:hover,
.soe-cigale-topbar__link:focus-visible {
	color: var(--soe-cigale-menu-accent, var(--soe-cigale-cookie-accent));
	opacity: 1;
}

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

.soe-cigale-menu__bar {
	position: relative;
	z-index: 100101;
	overflow: visible;
	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-menu-accent);
	color: var(--soe-cigale-menu-text);
	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;
	z-index: 100102;
	overflow: visible;
}

.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: 0 14px;
}

.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: var(--soe-cigale-menu-text) !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: color-mix(in srgb, var(--soe-cigale-menu-text) 85%, transparent);
	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: var(--soe-cigale-menu-text) !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: var(--soe-cigale-menu-text) !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: var(--soe-cigale-menu-accent);
	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: var(--soe-cigale-menu-text);
	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: 100110;
	overflow: visible;
}

.soe-cigale-menu__submenu {
	padding: 8px;
	background: var(--soe-cigale-menu-bg);
	border: 1px solid color-mix(in srgb, var(--soe-cigale-menu-border) 28%, transparent);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.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-menu-text) !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: color-mix(in srgb, var(--soe-cigale-menu-accent) 70%, transparent);
}

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

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

.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: relative;
	display: inline-block !important;
	right: auto;
	bottom: auto;
	z-index: 9998;
	width: auto !important;
	max-width: 100% !important;
}

.soe-cigale-lang__button {
	all: unset;
	display: inline-flex !important;
	align-items: center;
	gap: 12px;
	min-width: 0;
	max-width: 100%;
	padding: 10px 14px;
	border: 1px solid rgba(117, 212, 223, 0.45);
	background: rgba(7, 28, 39, 0.92);
	box-shadow: none;
	color: #ffffff;
	font-family: inherit !important;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.1;
	cursor: pointer;
	backdrop-filter: blur(10px);
	box-sizing: border-box;
	text-align: left;
	white-space: nowrap;
}

.soe-cigale-lang__button::after {
	content: "";
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	margin-left: 2px;
	border-right: 1.5px solid #75d4df;
	border-bottom: 1.5px solid #75d4df;
	transform: rotate(45deg) translateY(-2px);
}

.soe-cigale-lang__panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: auto;
	bottom: auto;
	min-width: 100%;
	width: auto;
	max-width: min(260px, calc(100vw - 32px));
	padding: 6px 0;
	background: rgba(7, 28, 39, 0.96);
	border: 1px solid rgba(117, 212, 223, 0.45);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.16s ease;
	overflow: hidden;
	box-sizing: border-box;
}

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

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

.soe-cigale-lang__button::before,
.soe-cigale-lang__button span::before,
.soe-cigale-lang__button span::after,
.soe-cigale-lang__panel::before,
.soe-cigale-lang__panel::after,
.soe-cigale-lang__item::before,
.soe-cigale-lang__item::after,
.soe-cigale-lang__link::before,
.soe-cigale-lang__link::after,
.soe-cigale-lang__link span::before,
.soe-cigale-lang__link span::after {
	content: none !important;
}

.soe-cigale-lang__name,
.soe-cigale-lang__link span {
	all: unset;
	display: block;
	margin: 0;
	padding: 0;
	background: transparent !important;
	color: inherit !important;
	font-family: inherit !important;
	font-size: inherit !important;
	font-weight: 400 !important;
	line-height: inherit;
	white-space: nowrap;
}

.soe-cigale-lang__link {
	all: unset;
	display: flex !important;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 9px 14px;
	background: transparent;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	box-sizing: border-box;
	white-space: nowrap;
	cursor: pointer;
}

.soe-cigale-lang__item.is-active .soe-cigale-lang__link,
.soe-cigale-lang__link:hover,
.soe-cigale-lang__link:focus-visible {
	background: rgba(117, 212, 223, 0.12);
	color: #ffffff;
}

.soe-cigale-lang__flag {
	all: unset;
	flex: 0 0 auto;
	display: inline-block !important;
	display: block !important;
	width: 18px !important;
	height: 12px !important;
	min-width: 18px !important;
	min-height: 12px !important;
	object-fit: cover !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 2px !important;
	box-shadow: none !important;
	max-width: none !important;
	background: transparent !important;
	border: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
	position: static !important;
	float: none !important;
	transform: none !important;
	filter: none !important;
	clip-path: none !important;
	overflow: hidden !important;
}


.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%, 720px);
	padding: 16px 18px;
	background: color-mix(in srgb, var(--soe-cigale-cookie-bg) 96%, transparent);
	border: 1px solid color-mix(in srgb, var(--soe-cigale-cookie-border) 12%, transparent);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
	color: var(--soe-cigale-cookie-text);
	backdrop-filter: blur(8px);
}

.soe-cigale-cookie__title {
	margin: 0 0 8px;
	padding: 0 !important;
	color: var(--soe-cigale-cookie-accent);
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 24px;
	line-height: 1.05;
}

.soe-cigale-cookie__text {
	margin: 0;
	padding: 0 !important;
	font-size: 13px;
	line-height: 1.45;
}

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

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

.soe-cigale-cookie__button {
	padding: 9px 12px;
	border: 1px solid color-mix(in srgb, var(--soe-cigale-cookie-border) 16%, transparent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
}

.soe-cigale-cookie__button.is-light {
	background: transparent;
	color: var(--soe-cigale-cookie-button-text);
}

.soe-cigale-cookie__button.is-primary {
	background: var(--soe-cigale-cookie-accent);
	border-color: var(--soe-cigale-cookie-accent);
	color: var(--soe-cigale-cookie-button-text);
}

@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-menu-bg) !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: var(--soe-cigale-menu-text);
		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: var(--soe-cigale-menu-text) !important;
	}

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

@media (max-width: 640px) {

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

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

	.soe-cigale-cookie__actions {
		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;
}

@media (max-width: 640px) {
	.soe-cigale-topbar__inner {
		width: calc(100% - 32px);
		min-height: 46px;
		gap: 10px;
	}

	.soe-cigale-topbar__left,
	.soe-cigale-topbar__right {
		gap: 10px;
	}

	.soe-cigale-topbar__link {
		font-size: 11px;
	}
}

.soe-cigale-gallery {
	column-count: 4;
	column-gap: 18px;
	width: 100%;
}

.soe-cigale-gallery__item {
	break-inside: avoid;
	margin: 0 0 18px;
}

.soe-cigale-gallery__media {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	background: #f4f1ea;
}

.soe-cigale-gallery__image {
	display: block;
	width: 100%;
	height: auto;
	transform: scale(1);
	transition: transform 0.65s ease;
}

.soe-cigale-gallery__media:hover .soe-cigale-gallery__image,
.soe-cigale-gallery__media:focus-within .soe-cigale-gallery__image {
	transform: scale(1.045);
}

.soe-cigale-video {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: var(--soe-cigale-video-height, 70vh);
	overflow: hidden;
	background: #000;
}

.soe-cigale-video__stage {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.35s ease;
	will-change: width, height, transform;
}

.soe-cigale-video.is-ready .soe-cigale-video__stage {
	opacity: 1;
}

.soe-cigale-video__iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	transform: scale(var(--soe-cigale-video-zoom, 2));
	transform-origin: center center;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.soe-cigale-gallery {
		column-count: 3;
	}
}

@media (max-width: 840px) {
	.soe-cigale-gallery {
		column-count: 2;
		column-gap: 14px;
	}

	.soe-cigale-gallery__item {
		margin-bottom: 14px;
	}
}

@media (max-width: 540px) {
	.soe-cigale-gallery {
		column-count: 1;
		column-gap: 0;
	}
}
