:root {
	--white_bg: #F7F6EC;
	--blue_bg: #3F6275;
	--footer_bg: #2A404C;
	--dark_blue: #29354A;
	--font_base: 'Open Sans', sans-serif;
	--font_title: 'EB Garamond', serif;
	--size_base: 16px;
	--color_base: #3C3C38;
	--color_black: #000000;
	--color_white: #FFFFFF;
	--color_white_dark: #C8D0CE;
	--color_hover: #C9B8A8;
	--transition: all .3s ease;
}
.transition {
	transition: all .3s ease;
}
BODY {
	font-family: var(--font_base);
	margin: 0px;
	line-height: 1.5;
	background: var(--white_bg);
	font-size: var(--size_base);
	color: var(--color_base);
}
BODY.pages {
	background: var(--dark_blue);
	background: #212F3A;
}
* {
	box-sizing: border-box;
}
IMG {
	width: 100%;
	height: auto;
	display: block;
}
H1, H2, H3 {
	margin: 0px 0px 30px 0px;
}
H4, H5, H6 {
	margin: 0px 0px 15px 0px;
}
UL {
	margin: 0px 0px 15px 0px;
}
P {
	margin: 0px 0px 15px 0px;
}
A {
	color: var(--color_base);
	text-decoration: none;
	transition: var(--transition);
}
A:hover {
	color: var(--color_hover);
	text-decoration: none;
}
HEADER {
	background: var(--dark_blue);
	height: 126px;
	position: sticky;
	top: 0px;
	z-index: 2;
}
@media screen and (max-width: 680px) {
	HEADER {
		height: 156px;
		overflow: hidden;
	}
}
NAV {
	display: flex;
	justify-content: center;
	height: 126px;
	overflow: visible;
	position: relative;
	z-index: 30;
}
header {
	overflow: visible;
	position: relative;
	z-index: 30;
}
.menu_btn {
	background: var(--white_bg);
	height: 30px;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	display: none;
	position: relative;
	z-index: 2;
	cursor: pointer;
}
@media screen and (max-width: 680px) {
	.menu_btn {
		display: flex;
	}
}
.menu_btn DIV {
	background: var(--dark_blue);
	width: 40px;
	height: 2px;
}
.logo {
	position: relative;
	padding: 15px 15px 0px 15px;
	top: 4px;
}
@media screen and (max-width: 680px) {
	.logo {
		top: -88px;
	}
}
.logo.scroll {
	top: -88px;
}
.logo A {
	display: block;
	position: relative;
}
.logo_img {
	width: 334px;
}
.ornament {
	position: absolute;
	bottom: 15px;
	width: 85px;
}
.ornament_left {
	left: 15px;
}
.logo.scroll .ornament_left {
	left: 30px;
}
@media screen and (max-width: 680px) {
	.logo .ornament_left {
		left: 30px;
	}
}
.ornament_right {
	right: 15px;
}
.logo.scroll .ornament_right {
	right: 30px;
}
@media screen and (max-width: 680px) {
	.logo .ornament_right {
		right: 30px;
	}
}
.menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0px;
	margin: 0px;
	flex: 1;
	list-style-type: none;
	position: relative;
	z-index: 30;
	overflow: visible;
}
.menu_left {
	justify-content: flex-end;
	text-align: right;
}
.menu_left > LI:nth-last-child(-n+3) {
	display: none;
}
.menu_right > LI:nth-last-child(n+4) {
	display: none;
}
@media screen and (max-width: 680px) {
	.menu_right,
	.menu_left {
		display: none;
	}
}
.menu_mob {
	transition: var(--transition);
	display: none;
	position: fixed;
	top: calc(-100vh + 156px);
	left: 0px;
	height: calc(100vh - 156px);
	background: var(--dark_blue);
	overflow: auto;
	z-index: -1;
}
.menu_mob.open {
	top: 156px;
}
@media screen and (max-width: 680px) {
	.menu_mob {
		display: block;
		padding-top: 100px;
	}
}
.dropdown_menu {
	display: none;
	position: absolute;
}
@media screen and (max-width: 680px) {
	.dropdown_menu {
		position: relative;
	}
}
.menu UL {
	padding: 15px 0px;
	margin: 0px;
	list-style-type: none;
	background: var(--dark_blue);
	white-space: nowrap;
	z-index: 1;
}
@media screen and (max-width: 680px) {
	.menu UL {
		padding-top: 0px;
		padding-left: 15px;
		white-space: normal;
	}
}
.menu LI {
	position: relative;
}
@media screen and (max-width: 1207px) {
	.menu > LI {
		flex: 1 0 100%;
	}
}
.menu A {
	color: var(--color_white);
	padding: 0px 15px;
	font-size: 14px;
	display: block;
	text-decoration: none;
}
.menu LI UL LI A {
	text-align: left;
}
.menu.mob A {
	padding: 15px;
	text-align: center;
}
.menu.mob LI UL LI A {
	padding: 5px 15px;
}
.menu > LI > UL > LI > A:hover,
.menu > LI.active > UL > LI > A:hover,
.menu > LI.active > UL > LI.active > A,
.menu > LI.active > A,
.menu > LI > A:hover {
	color: var(--color_hover);
}
.menu > LI.active > UL > LI > A {
	color: var(--color_white);
}

/* Desktop: hover / focus dropdowns (no click accordion) */
@media screen and (min-width: 681px) {
	.menu > LI {
		overflow: visible;
	}
	.menu > LI > A {
		padding: 10px 14px;
		letter-spacing: 0.02em;
		transition: color .2s ease;
	}
	.menu > LI.dropdown > A.dropdown_toggle {
		position: relative;
		z-index: 2;
	}
	.menu > LI.dropdown > A.dropdown_toggle::after {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		margin-left: 6px;
		vertical-align: middle;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 5px solid currentColor;
		opacity: 0.7;
	}
	.menu > LI.dropdown > .dropdown_menu {
		top: calc(100% - 2px);
		min-width: 280px;
		max-width: 360px;
		padding: 8px 0;
		margin: 0;
		background: #243744;
		border-top: 2px solid var(--color_hover);
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
		white-space: normal;
		z-index: 100;
	}
	/* Keep pointer inside the LI while moving into the panel */
	.menu > LI.dropdown > .dropdown_menu::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: -18px;
		height: 18px;
	}
	.menu_left > LI.dropdown > .dropdown_menu {
		right: 0;
		left: auto;
		text-align: right;
	}
	.menu_right > LI.dropdown > .dropdown_menu {
		left: 0;
		right: auto;
		text-align: left;
	}
	.menu > LI.dropdown > .dropdown_menu > LI {
		flex: none;
		display: block;
		width: 100%;
	}
	.menu > LI.dropdown > .dropdown_menu > LI > A {
		padding: 11px 18px;
		font-size: 13px;
		line-height: 1.4;
		white-space: normal;
		transition: background .15s ease, color .15s ease;
	}
	.menu > LI.dropdown > .dropdown_menu > LI > A:hover,
	.menu > LI.dropdown > .dropdown_menu > LI.active > A {
		background: rgba(255, 255, 255, 0.06);
		color: var(--color_hover);
	}
	.menu > LI.dropdown:hover > .dropdown_menu,
	.menu > LI.dropdown:focus-within > .dropdown_menu {
		display: block;
	}
}
.menu_mob
.carousel_wrap {
	background: url(../images/slider_bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.owl-carousel {
	height: calc(100vh - 126px);
}
@media screen and (max-width: 680px) {
	.owl-carousel {
		height: 60vh;
	}
}
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
    height: 100%;
}
.owl-carousel .owl-item IMG {
	height: 100%;
	width: auto;
	margin: auto;
}
.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 5px;
}
.page_section {
	display: flex;
	flex-wrap: wrap;
	padding: 120px 0px 90px 0px;
}
.page_section_wrap {
	max-width: 1260px;
	width: 100%;
	margin: auto;
}
.page_section_top {
	padding: 0px 15px;
}
.page_section_top > DIV {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-bottom: 3px solid var(--color_black);
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.page_section_top_title {
	font-size: 32px;
	font-family: var(--font_title);
}
.section_title {
	padding: 0px 15px;
	font-family: var(--font_title);
	color: var(--color_black);
	margin-bottom: 60px;
}
.title {
	font-family: var(--font_title);
	margin-bottom: 30px;
}
.arrow {
	width: 65px;
	margin-left: 15px;
}
.welcome {
	max-width: 1390px;
	width: 100%;
	margin: auto;
	font-size: 24px;
	text-align: center;
}
.welcome .section_title {
	flex: 0 0 100%;
	font-size: 58px;
}
.welcome > DIV {
	flex: 1;
	align-self: flex-end;
	padding: 0px 15px;
}
.welcome .image {
	flex: 0 0 30%;
}
@media screen and (max-width: 680px) {
	.welcome .image {
		flex: 0 0 100%;
	}
}
.welcome .more {
	flex: 0 0 100%;
	margin-top: 15px;
}
.more A {
	font-size: 14px;
	font-weight: 600;
	color: var(--color_black);
	display: flex;
	justify-content: center;
	align-items: center;
}
.more A:hover {
	color: var(--color_hover);
	transition: var(--transition);
}
.page_section.blue_bg {
	background: var(--blue_bg);
	color: var(--color_white_dark);
}
.page_section.blue_bg .page_section_top > DIV {
	border-bottom: 3px solid var(--color_white);
}
.page_section.blue_bg .page_section_top_title,
.page_section.blue_bg .title {
	color: var(--color_white);
}
.page_section.blue_bg .list_item .title {
	font-size: 26px;
	margin-top: 10px;
}
.page_section.blue_bg .more A {
	color: var(--color_white);
}
.page_section.blue_bg .more A:hover {
	color: var(--color_hover);
}
.page_section.blue_bg .arrow {
	filter: invert(1);
}
.poet_life {
	max-width: 1760px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	font-size: 21px;
}
.poet_life .more A {
	margin-top: 90px;
	justify-content: flex-start;
}
.poet_life .title {
	font-size: 40px;
}
.poet_life_inner {
	flex: 1 0 50%;
	display: flex;
}
@media screen and (max-width: 991px) {
	.poet_life_inner {
		flex: 1 0 100%;
		margin-bottom: 75px;
	}
}
@media screen and (max-width: 680px) {
	.poet_life_inner {
		flex-wrap: wrap;
	}
}
.poet_life_inner > DIV {
	padding: 0px 15px;
}
.poet_life_inner .image {
	flex: 0 0 30%;
}
@media screen and (max-width: 680px) {
	.poet_life_inner .image {
		flex: 0 0 100%;
	}
}
.poet_life_inner:last-child .image {
	order: 2;
}
@media screen and (max-width: 991px) {
	.poet_life_inner:last-child .image {
		order: unset;
	}
}
.poet_house_inner {
	font-size: 22px;
	text-align: center;
}
.poet_house_inner > DIV:last-child DIV {
	padding: 0px 15px;

}
.poet_house_inner .title {
	font-size: 32px;
}
.poet_house_images {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.poet_house_images > DIV {
	flex: 1 0 33.33333%;
	padding: 0px 15px;
}
.exhibits .more,
.exhibits .title {
	display: none;
}
.exhibits .page_section_top_title {
	width: 100%;
	text-align: center;
}
.exhibits .poet_house_images > DIV {
	flex: 1 0 25%;
}
.union .more,
.union .title {
	display: none;
}
.union .page_section_top_title {
	width: 100%;
	text-align: center;
}
.union .poet_house_images > DIV {
	flex: 1 0 25%;
}
.union .poet_house_images > DIV:nth-child(2) {
	flex: 1 0 50%;
}
.list_wrap {
	display: flex;
	flex-wrap: wrap;
}
.list_item {
	flex: 1 0 33.33333%;
	padding: 0px 15px;
	margin-bottom: 30px;
}
.list_title {
	font-size: 20px;
	padding-bottom: 5px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--color_white_dark);
}
.list_title .arrow {
	float: right;
	width: 50px;
}
/* .list_item .title {
	font-size: 26px;
	margin-bottom: 15px;
} */
.carousel_wrap_bottom {
	padding: 0px 15px;
}
.carousel_wrap_bottom .owl-carousel {
	height: auto;
}
.carousel_wrap_bottom .owl-carousel .owl-item IMG {
	width: 100%;
	height: auto;
}
FOOTER {
	background: var(--footer_bg);
	padding: 50px 0px 0px 0px;
	color: var(--color_white);
}
FOOTER .page_section_wrap {
	display: flex;
	flex-wrap: wrap;
}
.footer_panel {
	padding: 0px 15px;
	flex: 1 0 25%;
}
FOOTER .title {
	color: var(--color_hover);
	font-size: 32px;
}
FOOTER A {
	color: var(--color_white);
}
FOOTER UL LI.active A,
FOOTER A:hover {
	color: var(--color_hover);
}
FOOTER UL {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	line-height: 2.2;
}
FOOTER UL UL {
	display: none;
}
FOOTER .psz {
	color: var(--color_white_dark);
	font-size: 11px;
	margin-top: 100px;
}
.copyright {
	flex: 1 0 100%;
	margin-top: 80px;
	padding: 0px 15px;
	font-size: 11px;
}
.copyright > DIV {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 30px 0px;
	border-top: 1px dotted var(--color_white);
}
.copyright > DIV > DIV {
	flex: 0 0 25%;
	padding: 0px 15px;
}
.social A {
	display: flex;
	align-items: center;
	margin-right: 15px;
}
.social IMG {
	width: 20px;
	margin-right: 15px;
}
.pages MAIN {
	max-width: 80%;
	padding: 30px;
	margin: 120px auto 100px auto;
	background: var(--white_bg);
}
@media screen and (max-width: 991px) {
	.pages MAIN {
		max-width: 95%;
		padding: 15px;
	}
}
.pagetitle {
	font-family: var(--font_title);
	font-size: 36px;
	padding-bottom: 15px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--color_white_dark);
}
.content {
	column-count: 2;
	column-gap: 70px;
	column-rule: 1px solid var(--color_white_dark);
}
@media screen and (max-width: 991px) {
	.content {
		column-count: 1;
	}
}
.content * {
	break-inside: avoid;
}
.wrap_images {
	margin-top: 100px;
	border: 20px solid var(--blue_bg);
}
@media screen and (max-width: 680px) {
	.wrap_images {
		border: 10px solid var(--blue_bg);
	}
}
.wrap_images_inner {
	display: flex;
	flex-wrap: wrap;
}
.wrap_images_inner .img_gal {
	flex: 1 0 25%;
	border-right: 1px solid var(--color_white);
	border-bottom: 1px solid var(--color_white);
}
.wrap_images_inner .img_gal:nth-child(4n) {
	border-right: none;
}
.wrap_images_inner .img_gal:nth-last-child(-n+4) {
	border-bottom: none;
}
.img_gal A {
	display: block;
	overflow: hidden;
}
.img_gal A IMG {
	height: 100%;
	object-fit: cover;
}
EMBED {
	min-height: 60vh;
	display: block;
}
IFRAME {
	width: 100%;
	height: 50vh;
}
.form_field_wrap {
	margin-bottom: 15px;
}
.form_control {
	width: 100%;
	border: 1px solid var(--color_white_dark);
	padding: 10px 15px;
}
.form_field_wrap BUTTON {
	transition: var(--transition);
	float: right;
	background: var(--dark_blue);
	color: var(--color_white);
	border: 1px solid var(--color_white_dark);
	padding: 10px 30px;
	cursor: pointer;
}
.form_field_wrap BUTTON:hover {
	background: var(--white_bg);
	color: var(--color_base);
}
.welcome .image IMG,
.poet_house_images .image IMG,
.list_item .image IMG {
    object-fit: cover;
}
P {
    text-indent: 20px;
}
/* ========== Mobile navigation (flat drawer, no accordion) ========== */
.menu_backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(10, 16, 22, 0.45);
	z-index: 45;
	opacity: 0;
	transition: opacity .25s ease;
}
.menu_backdrop.is-visible {
	display: block;
	opacity: 1;
}

@media screen and (max-width: 680px) {
	body.menu-open {
		overflow: hidden;
	}

	.lang-switcher-bar {
		position: sticky;
		top: 0;
		z-index: 40;
		background: var(--dark_blue);
		padding: 8px 56px 8px 16px;
		justify-content: flex-start;
	}
	body:not(.pages) .lang-switcher-bar {
		background: var(--white_bg);
	}

	NAV {
		height: auto;
		min-height: 72px;
		align-items: center;
		padding: 8px 16px;
		position: relative;
		z-index: 30;
	}

	.menu_btn {
		position: fixed;
		top: 10px;
		right: 14px;
		z-index: 60;
		width: 44px;
		height: 44px;
		border-radius: 4px;
		background: var(--white_bg);
		box-shadow: 0 1px 4px rgba(0,0,0,.18);
	}
	.menu_btn DIV {
		width: 22px;
		transition: transform .25s ease, opacity .2s ease;
	}
	body.menu-open .menu_btn DIV:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	body.menu-open .menu_btn DIV:nth-child(2) {
		opacity: 0;
	}
	body.menu-open .menu_btn DIV:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.logo {
		top: 0 !important;
		padding: 8px 48px 8px 0;
		margin: 0 auto;
	}
	.logo.scroll {
		top: 0 !important;
	}
	.logo_img {
		width: min(220px, 58vw);
	}
	.ornament {
		display: none;
	}

	/* Right-side sheet with flat sections */
	.menu_mob {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		width: min(100vw, 360px);
		height: 100%;
		padding: 72px 0 28px;
		background: #18242d;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 55;
		transform: translateX(105%);
		transition: transform .28s ease;
		box-shadow: -8px 0 28px rgba(0, 0, 0, 0.35);
	}
	.menu_mob.open {
		top: 0;
		transform: translateX(0);
	}

	.menu.mob {
		display: block;
		flex: none;
		width: 100%;
		margin: 0;
		padding: 0 0 24px;
	}

	.menu.mob > LI {
		flex: none;
		margin: 0 12px 10px;
		border: 0;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.04);
		overflow: hidden;
	}

	/* Section titles — not accordion triggers */
	.menu.mob > LI.dropdown > A.dropdown_toggle {
		pointer-events: none;
		cursor: default;
		padding: 14px 16px 6px;
		font-family: var(--font_title);
		font-size: 12px;
		letter-spacing: .14em;
		text-transform: uppercase;
		color: var(--color_hover);
		text-align: left;
		opacity: .95;
	}

	/* Always-open nested links (flat) */
	.menu.mob .dropdown_menu,
	.menu.mob UL.dropdown_menu {
		display: block !important;
		position: static !important;
		background: transparent;
		padding: 0 0 8px;
		margin: 0;
		box-shadow: none;
		border: 0;
	}

	.menu.mob > LI > A:not(.dropdown_toggle) {
		padding: 14px 16px;
		font-size: 16px;
		text-align: left;
		color: #fff;
	}

	.menu.mob LI UL LI A {
		padding: 11px 16px 11px 16px;
		font-size: 15px;
		text-align: left;
		color: rgba(255,255,255,.9);
		border-top: 1px solid rgba(255,255,255,.06);
	}

	.menu.mob > LI > A:not(.dropdown_toggle):active,
	.menu.mob LI UL LI A:active,
	.menu.mob > LI.active > UL > LI.active > A,
	.menu.mob > LI.active > A:not(.dropdown_toggle) {
		color: var(--color_hover);
	}

	/* Content breathing room under sticky chrome */
	.owl-carousel {
		height: 50vh;
	}
	.page_section {
		padding: 64px 0 48px;
	}
	.wrap {
		padding-left: 16px;
		padding-right: 16px;
	}
	.pagetitle {
		font-size: 1.6rem;
		line-height: 1.25;
	}
	.content IMG {
		max-width: 100%;
		height: auto;
	}
	.footer_panel {
		flex: 1 0 100%;
		padding: 16px;
	}
	IFRAME {
		height: 40vh;
	}
}
