/*
 * Modern overlay navigation for Days In Georgia.
 * This file intentionally loads after the legacy theme stylesheet.
 */

:root {
	--daysin-accent: #ef6c00;
	--daysin-ink: #211d1a;
	--daysin-header-height: 84px;
}

/* Keep the sticky plugin wrapper out of document flow so the header overlays the hero. */
.sticky-wrapper {
	position: relative;
	z-index: 99990;
	height: 0 !important;
	background: transparent !important;
}

.daysin-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	min-height: var(--daysin-header-height);
	background: linear-gradient(180deg, rgba(9, 8, 7, 0.56) 0%, rgba(9, 8, 7, 0.2) 58%, rgba(9, 8, 7, 0) 100%);
	opacity: 1;
	-webkit-transition: background-color 0.3s ease, box-shadow 0.3s ease;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.daysin-header .daysin-header__inner {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: calc(100% - 72px) !important;
	max-width: 1380px;
	min-height: var(--daysin-header-height);
	margin: 0 auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.daysin-header .daysin-header__brand {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex: 0 0 100px;
	    -ms-flex: 0 0 100px;
	        flex: 0 0 100px;
	float: none;
	width: 100px;
	margin: 0 42px 0 0;
	padding: 0;
}

.daysin-header__brand-link {
	display: inline-block;
	position: relative;
	line-height: 0;
	-webkit-transition: opacity 0.18s ease, -webkit-transform 0.1s ease-out;
	transition: opacity 0.18s ease, transform 0.1s ease-out;
}

.daysin-header .site-logo {
	display: block;
	position: static;
	width: 96px;
	max-width: none;
	max-height: 66px;
	height: auto;
	-webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.76)) drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.76)) drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
	-webkit-transition: -webkit-filter 0.25s ease, opacity 0.2s ease;
	transition: filter 0.25s ease, opacity 0.2s ease;
}

.daysin-header__brand-link:hover,
.daysin-header__brand-link:focus {
	opacity: 0.88;
}

.daysin-header__brand-link:active {
	-webkit-transform: scale(0.96);
	        transform: scale(0.96);
}

.daysin-header .daysin-header__text-brand .site-title {
	font-size: 21px;
	letter-spacing: -0.02em;
	text-transform: none;
}

.daysin-header .daysin-header__text-brand .site-description {
	margin-top: 3px;
	font-size: 12px;
}

.daysin-header .main-navigation {
	display: block;
	-webkit-flex: 1 1 auto;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	float: none;
	width: auto;
}

.daysin-header .main-navigation > div > ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	float: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

.daysin-header .main-navigation > div > ul > li {
	float: none;
	padding: 0 3px;
	font-family: 'GTWalsheimRegular', 'Roboto', sans-serif;
	text-transform: capitalize;
}

.daysin-header .main-navigation > div > ul > li::before {
	content: none;
}

.daysin-header .main-navigation > div > ul > li > a {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	float: none;
	min-height: var(--daysin-header-height);
	padding: 3px 8px 0;
	border-radius: 0;
	color: #fff;
	font-family: 'GTWalsheimRegular', 'Roboto', sans-serif;
	font-size: 17px !important;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: capitalize;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.25);
	-webkit-transition: color 0.18s ease, background-color 0.18s ease, opacity 0.18s ease, -webkit-transform 0.1s ease-out;
	transition: color 0.18s ease, background-color 0.18s ease, opacity 0.18s ease, transform 0.1s ease-out;
}

.daysin-header .main-navigation > div > ul > li > a::after {
	display: none;
}

.daysin-header .main-navigation > div > ul > li > a:hover,
.daysin-header .main-navigation > div > ul > li > a:focus {
	background: transparent;
	color: var(--daysin-accent);
	opacity: 1;
}

.daysin-header .main-navigation > div > ul > li > a:active {
	-webkit-transform: scale(0.96);
	        transform: scale(0.96);
}

.daysin-header .daysin-header__brand-link:focus,
.daysin-header .main-navigation a:focus,
.daysin-header .menu-toggle:focus,
.daysin-header .language-switcher__button:focus {
	outline: none;
}

/* Keep the language trigger visually consistent with the primary links. */
.daysin-header .main-navigation .language-switcher {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0;
	padding: 0 3px;
	text-transform: none;
}

.daysin-header .language-switcher__button {
	min-width: 0;
	min-height: var(--daysin-header-height);
	height: auto;
	padding: 3px 8px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.25);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	-webkit-transition: color 0.18s ease, background-color 0.18s ease, -webkit-transform 0.1s ease-out;
	transition: color 0.18s ease, background-color 0.18s ease, transform 0.1s ease-out;
}

.daysin-header .language-switcher__button:hover,
.daysin-header .language-switcher__button:focus,
.daysin-header .language-switcher.is-open .language-switcher__button {
	border: 0;
	background: transparent;
	color: var(--daysin-accent);
}

.daysin-header .language-switcher__button:active {
	-webkit-transform: scale(0.96);
	        transform: scale(0.96);
}

.daysin-header .language-switcher__globe {
	display: none;
}

.daysin-header .language-switcher__current-code {
	color: inherit;
}

.daysin-header .main-navigation .language-switcher__menu {
	top: calc(100% - 10px);
	bottom: auto;
	margin: 8px 0 0;
	-webkit-transform: translateY(-6px) scale(0.98);
	        transform: translateY(-6px) scale(0.98);
	-webkit-transform-origin: top right;
	        transform-origin: top right;
}

.daysin-header .main-navigation .language-switcher.is-open .language-switcher__menu {
	-webkit-transform: translateY(0) scale(1);
	        transform: translateY(0) scale(1);
}

/* Sticky state: light, compact and legible over page content. */
.sticky-wrapper.is-sticky {
	position: relative;
	z-index: 99999;
	background: transparent;
}

.sticky-wrapper.is-sticky .daysin-header {
	background: #fff;
	box-shadow: 0 1px 0 rgba(27, 23, 20, 0.08), 0 10px 30px rgba(27, 23, 20, 0.08);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.sticky-wrapper.is-sticky .daysin-header .daysin-header__inner {
	border: 0;
	background: transparent;
	box-shadow: none;
}

.sticky-wrapper.is-sticky .daysin-header .site-logo {
	-webkit-filter: invert(1);
	filter: invert(1);
}

.sticky-wrapper.is-sticky .daysin-header .main-navigation > div > ul > li > a,
.sticky-wrapper.is-sticky .daysin-header .site-title a {
	color: var(--daysin-ink);
	text-shadow: none;
}

.sticky-wrapper.is-sticky .daysin-header .main-navigation > div > ul > li > a:hover,
.sticky-wrapper.is-sticky .daysin-header .main-navigation > div > ul > li > a:focus {
	background: transparent;
	color: var(--daysin-accent);
}

.sticky-wrapper.is-sticky .daysin-header .language-switcher__button {
	border: 0;
	background: transparent;
	color: var(--daysin-ink);
	text-shadow: none;
}

.sticky-wrapper.is-sticky .daysin-header .language-switcher__button:hover,
.sticky-wrapper.is-sticky .daysin-header .language-switcher__button:focus,
.sticky-wrapper.is-sticky .daysin-header .language-switcher.is-open .language-switcher__button {
	background: transparent;
	color: var(--daysin-accent);
}

.admin-bar .daysin-header {
	top: 0;
}

.admin-bar .sticky-wrapper.is-sticky .daysin-header {
	top: 32px !important;
	margin-top: 0 !important;
}

/*
 * Inner pages do not have the homepage slider to establish the first block in
 * normal flow. Isolate their page wrapper so the legacy content margin cannot
 * collapse onto the body and pull the overlay header away from the viewport.
 */
body:not(.home) #page {
	display: flow-root;
}

body:not(.home) #content {
	margin-top: 0;
	padding-top: var(--daysin-header-height);
}

/* Give the homepage slideshow a cinematic hero crop under the overlay header. */
.home #masthead {
	position: relative;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
}

.admin-bar.home #masthead {
	height: calc(100vh - 32px);
	height: calc(100svh - 32px);
}

.home #masthead::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 3;
	background: linear-gradient(180deg, rgba(13, 11, 10, 0.25) 0%, rgba(13, 11, 10, 0.015) 38%, rgba(13, 11, 10, 0.04) 58%, rgba(13, 11, 10, 0.2) 100%);
	pointer-events: none;
}

.home #masthead > .site-header,
.home #metaslider-id-2534,
.home #metaslider_container_2534,
.home #metaslider_2534,
.home #metaslider_2534 > li {
	height: 100% !important;
	max-height: none !important;
}

.home #metaslider-id-2534 {
	width: 100% !important;
	max-width: none !important;
}

.home #metaslider_2534 > li > img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

/*
 * MetaSlider captions echo the logo's striped sun without baking decoration
 * into editable caption content.
 */
.home .metaslider .caption-wrap {
	top: auto !important;
	right: auto !important;
	bottom: 0 !important;
	left: 0 !important;
	z-index: 4;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	width: min(1080px, 88vw) !important;
	min-height: clamp(220px, 31vh, 270px);
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none;
	opacity: 1 !important;
	isolation: isolate;
}

.home .metaslider .caption-wrap::before {
	--daysin-stripe-base: 35%;
	--daysin-stripe-edge: clamp(44px, 3.8vw, 55px);
	--daysin-stripe-outer: clamp(58px, 5.6vw, 81px);
	--daysin-stripe-inner: clamp(76px, 6.5vw, 94px);
	--daysin-stripe-center: clamp(86px, 7vw, 101px);
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	color: rgba(255, 255, 255, 0.11);
	background:
		linear-gradient(currentColor 0 0) 0 7% / calc(var(--daysin-stripe-base) + var(--daysin-stripe-edge)) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 calc(7% + 2px) / var(--daysin-stripe-base) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 19% / calc(var(--daysin-stripe-base) + var(--daysin-stripe-outer)) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 calc(19% + 2px) / var(--daysin-stripe-base) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 31% / calc(var(--daysin-stripe-base) + var(--daysin-stripe-inner)) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 calc(31% + 2px) / var(--daysin-stripe-base) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 43% / calc(var(--daysin-stripe-base) + var(--daysin-stripe-center)) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 calc(43% + 2px) / var(--daysin-stripe-base) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 55% / calc(var(--daysin-stripe-base) + var(--daysin-stripe-center)) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 calc(55% + 2px) / var(--daysin-stripe-base) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 67% / calc(var(--daysin-stripe-base) + var(--daysin-stripe-inner)) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 calc(67% + 2px) / var(--daysin-stripe-base) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 79% / calc(var(--daysin-stripe-base) + var(--daysin-stripe-outer)) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 calc(79% + 2px) / var(--daysin-stripe-base) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 91% / calc(var(--daysin-stripe-base) + var(--daysin-stripe-edge)) 2px no-repeat,
		linear-gradient(currentColor 0 0) 0 calc(91% + 2px) / var(--daysin-stripe-base) 2px no-repeat;
	opacity: 0.16;
	-webkit-mask-image: linear-gradient(to top, #000 0%, #000 68%, transparent 100%);
	mask-image: linear-gradient(to top, #000 0%, #000 68%, transparent 100%);
	pointer-events: none;
}

.home .metaslider .caption-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -2;
	background: linear-gradient(90deg, rgba(18, 15, 13, 0.74) 0%, rgba(18, 15, 13, 0.62) 40%, rgba(18, 15, 13, 0.32) 68%, rgba(18, 15, 13, 0.08) 88%, rgba(18, 15, 13, 0) 100%);
	-webkit-mask-image: linear-gradient(to top, #000 0%, #000 68%, transparent 100%);
	mask-image: linear-gradient(to top, #000 0%, #000 68%, transparent 100%);
}

.home .metaslider .caption {
	position: relative;
	z-index: 1;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: min(300px, calc(100vw - 72px));
	max-width: min(620px, calc(100vw - 64px));
	margin-left: max(32px, calc((100vw - 1360px) / 2 + 16px));
	padding: 28px 0 clamp(44px, 6vh, 56px) !important;
	color: #fff;
	font-family: GTWalsheimRegular, Roboto, sans-serif;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.55;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.home .metaslider .caption::before {
	content: '';
	display: block;
	width: 52px;
	height: 3px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: var(--daysin-accent);
	box-shadow: 0 0 18px rgba(239, 108, 0, 0.45);
}

.home .metaslider .caption h1,
.home .metaslider .caption h2,
.home .metaslider .caption h3,
.home .metaslider .caption h4,
.home .metaslider .caption h5,
.home .metaslider .caption h6 {
	color: inherit;
	font-family: inherit;
	font-weight: 650;
	letter-spacing: -0.035em;
	line-height: 1.05;
	margin-top: 0;
	margin-bottom: 12px;
	text-wrap: balance;
}

.home .metaslider .caption h1 {
	font-size: clamp(40px, 3.7vw, 56px);
	letter-spacing: -0.045em;
}

.home .metaslider .caption h2 {
	font-size: clamp(35px, 3.2vw, 48px);
	letter-spacing: -0.04em;
}

.home .metaslider .caption h3 {
	font-size: clamp(29px, 2.6vw, 40px);
	letter-spacing: -0.035em;
}

.home .metaslider .caption h4 {
	font-size: clamp(24px, 2.1vw, 32px);
	letter-spacing: -0.025em;
}

.home .metaslider .caption h5 {
	font-size: clamp(20px, 1.7vw, 26px);
	letter-spacing: -0.015em;
}

.home .metaslider .caption h6 {
	font-size: clamp(18px, 1.4vw, 21px);
	letter-spacing: -0.01em;
}

.home .metaslider .caption p,
.home .metaslider .caption ul,
.home .metaslider .caption ol {
	margin-top: 0;
	margin-bottom: 12px;
}

.home .metaslider .caption ul,
.home .metaslider .caption ol {
	padding-left: 1.2em;
}

.home .metaslider .caption a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--daysin-accent);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.home .metaslider .caption a:hover,
.home .metaslider .caption a:focus {
	color: var(--daysin-accent);
}

/* MetaSlider's editable CTA keeps its chosen background color, while the
 * theme supplies consistent button geometry and interaction feedback. */
.home .metaslider .caption .ms-custom-button {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 10px;
	max-width: 100%;
	min-height: 42px;
	margin-top: 14px;
	padding: 11px 16px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 12px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
	color: #fff !important;
	font-size: 15px;
	font-weight: 650;
	letter-spacing: 0;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	-webkit-transition: filter 0.18s ease, box-shadow 0.18s ease, -webkit-transform 0.1s ease-out;
	transition: filter 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease-out;
}

.home .metaslider .caption .ms-custom-button::after {
	width: 16px;
	height: 16px;
	-webkit-flex: 0 0 16px;
	    -ms-flex: 0 0 16px;
	        flex: 0 0 16px;
	background: currentColor;
	content: '';
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 11h10.17l-3.58-3.59L13 6l6 6-6 6-1.41-1.41L15.17 13H5z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 11h10.17l-3.58-3.59L13 6l6 6-6 6-1.41-1.41L15.17 13H5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home .metaslider .caption .ms-custom-button:hover,
.home .metaslider .caption .ms-custom-button:focus {
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	color: #fff !important;
	filter: brightness(1.07) saturate(1.04);
	text-decoration: none;
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
}

.home .metaslider .caption .ms-custom-button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.86);
	outline-offset: 3px;
}

.home .metaslider .caption .ms-custom-button:active {
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
	filter: brightness(0.98);
	-webkit-transform: scale(0.97);
	        transform: scale(0.97);
}

.home .metaslider .caption > :first-child {
	margin-top: 0;
}

.home .metaslider .caption > :last-child {
	margin-bottom: 0;
}

.home #metaslider_2534 > li.rslides1_on .caption {
	-webkit-animation: daysin-caption-reveal 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) both;
	animation: daysin-caption-reveal 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@-webkit-keyframes daysin-caption-reveal {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px) scale(0.995);
		transform: translateY(10px) scale(0.995);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes daysin-caption-reveal {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px) scale(0.995);
		transform: translateY(10px) scale(0.995);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.home .metaslider .rslides_nav {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	z-index: 5;
	width: 46px;
	height: 46px;
	margin-top: -23px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 50%;
	background: rgba(24, 21, 19, 0.3);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
	-webkit-backdrop-filter: saturate(140%) blur(16px);
	backdrop-filter: saturate(140%) blur(16px);
	color: transparent;
	font-size: 0;
	text-indent: 0;
	-webkit-transition: background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home .metaslider .rslides_nav::before {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.home .metaslider .rslides_nav.prev {
	left: 28px;
}

.home .metaslider .rslides_nav.next {
	right: 28px;
}

.home .metaslider .rslides_nav.prev::before {
	-webkit-transform: rotate(-135deg) translate(-1px, 1px);
	        transform: rotate(-135deg) translate(-1px, 1px);
}

.home .metaslider .rslides_nav.next::before {
	-webkit-transform: rotate(45deg) translate(-1px, 1px);
	        transform: rotate(45deg) translate(-1px, 1px);
}

.home .metaslider .rslides_nav:hover,
.home .metaslider .rslides_nav:focus {
	border-color: rgba(255, 255, 255, 0.58);
	background: rgba(24, 21, 19, 0.52);
}

.home .metaslider .rslides_nav:active {
	-webkit-transform: scale(0.92);
	        transform: scale(0.92);
	-webkit-transition-duration: 0.1s;
	        transition-duration: 0.1s;
}

.menu-toggle {
	display: none;
}

@media screen and (max-width: 1220px) and (min-width: 1051px) {
	.daysin-header .daysin-header__inner {
		width: calc(100% - 40px) !important;
	}

	.daysin-header .daysin-header__brand {
		margin-right: 24px;
	}

	.daysin-header .main-navigation > div > ul > li {
		padding-right: 3px;
		padding-left: 3px;
	}

	.daysin-header .main-navigation > div > ul > li > a {
		padding-right: 6px;
		padding-left: 6px;
		font-size: 15px !important;
	}

	.daysin-header .main-navigation .language-switcher {
		margin-left: 0;
		padding-right: 3px;
		padding-left: 3px;
	}
}

/* Compact desktop rhythm for short laptop viewports without switching to mobile navigation. */
@media screen and (min-width: 1051px) and (max-height: 900px) {
	:root {
		--daysin-header-height: 72px;
	}

	.daysin-header .daysin-header__brand {
		-webkit-flex-basis: 88px;
		    -ms-flex-preferred-size: 88px;
		        flex-basis: 88px;
		width: 88px;
		margin-right: 30px;
	}

	.daysin-header .site-logo {
		width: 84px;
		max-height: 56px;
	}

	.home #masthead {
		height: clamp(600px, 82svh, 720px);
	}

	.admin-bar.home #masthead {
		height: min(calc(82svh - 32px), 688px);
		min-height: 568px;
	}

	.home .metaslider .caption-wrap {
		min-height: 200px;
	}

	.home .metaslider .caption {
		padding-top: 20px !important;
		padding-bottom: 36px !important;
		font-size: 16px;
	}

	.home .metaslider .caption::before {
		margin-bottom: 14px;
	}

	.home .metaslider .caption h1 {
		font-size: clamp(36px, 3.4vw, 48px);
	}

	.home .metaslider .rslides_nav {
		width: 42px;
		height: 42px;
		margin-top: -21px;
	}
}

@media screen and (min-width: 1051px) and (max-width: 1220px) and (max-height: 900px) {
	.daysin-header .main-navigation > div > ul > li > a,
	.daysin-header .language-switcher__button {
		font-size: 15px !important;
	}
}

@media screen and (min-width: 1221px) and (max-height: 900px) {
	.daysin-header .main-navigation > div > ul > li > a,
	.daysin-header .language-switcher__button {
		font-size: 16px !important;
	}
}

@media screen and (max-width: 1050px) {
	:root {
		--daysin-header-height: 70px;
	}

	.daysin-header,
	.top-bar {
		position: absolute !important;
		min-height: var(--daysin-header-height);
	}

	.sticky-wrapper.is-sticky .daysin-header {
		position: fixed !important;
	}

	.daysin-header.is-menu-open {
		background: transparent;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.sticky-wrapper.is-sticky .daysin-header.is-menu-open .daysin-header__inner {
		background: transparent;
	}

	.daysin-header .daysin-header__inner {
		position: relative;
		width: calc(100% - 24px) !important;
		min-height: var(--daysin-header-height);
		margin-top: 0;
		padding: 0;
		border-radius: 0;
	}

	.daysin-header .daysin-header__brand {
		-webkit-flex-basis: 80px;
		    -ms-flex-preferred-size: 80px;
		        flex-basis: 80px;
		width: 80px;
		margin-right: auto;
	}

	.daysin-header .site-logo {
		width: 78px;
		max-height: 48px;
	}

	.daysin-header .menu-toggle {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-align-items: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		float: none;
		width: 42px;
		min-width: 42px;
		height: 42px;
		margin: 0;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.34);
		border-radius: 50%;
		background: rgba(12, 11, 10, 0.34);
		box-shadow: none;
		color: #fff;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		-webkit-transition: background-color 0.18s ease, -webkit-transform 0.1s ease-out;
		transition: background-color 0.18s ease, transform 0.1s ease-out;
	}

	.daysin-header .menu-toggle:active {
		-webkit-transform: scale(0.92);
		        transform: scale(0.92);
	}

	.menu-toggle__icon {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 6px;
		width: 18px;
	}

	.menu-toggle__icon > span {
		display: block;
		width: 100%;
		height: 2px;
		border-radius: 2px;
		background: currentColor;
		-webkit-transition: -webkit-transform 0.2s ease;
		transition: transform 0.2s ease;
	}

	.menu-toggle[aria-expanded='true'] .menu-toggle__icon > span:first-child {
		-webkit-transform: translateY(4px) rotate(45deg);
		        transform: translateY(4px) rotate(45deg);
	}

	.menu-toggle[aria-expanded='true'] .menu-toggle__icon > span:last-child {
		-webkit-transform: translateY(-4px) rotate(-45deg);
		        transform: translateY(-4px) rotate(-45deg);
	}

	.sticky-wrapper.is-sticky .daysin-header .menu-toggle {
		border-color: rgba(33, 29, 26, 0.14);
		background: rgba(33, 29, 26, 0.04);
		color: var(--daysin-ink);
	}

	.daysin-header .main-navigation,
	.daysin-header .main-navigation.toggled {
		visibility: hidden;
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		left: auto;
		z-index: 100000;
		width: min(380px, 100%);
		max-height: calc(100svh - 104px);
		margin: 0;
		padding: 10px;
		overflow-y: auto;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 22px;
		background: #171914;
		box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		opacity: 0;
		-webkit-transform: translateY(-10px) scale(0.985);
		        transform: translateY(-10px) scale(0.985);
		-webkit-transform-origin: top right;
		        transform-origin: top right;
		pointer-events: none;
		-webkit-transition: opacity 0.2s ease, visibility 0s linear 0.2s, -webkit-transform 0.2s ease;
		transition: opacity 0.2s ease, visibility 0s linear 0.2s, transform 0.2s ease;
	}

	.daysin-header .main-navigation.toggled {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translateY(0) scale(1);
		        transform: translateY(0) scale(1);
		pointer-events: auto;
		-webkit-transition-delay: 0s;
		        transition-delay: 0s;
	}

	.daysin-header .main-navigation > div > ul,
	.daysin-header .main-navigation.toggled .nav-menu {
		display: block;
		float: none;
		width: 100%;
	}

	.daysin-header .main-navigation > div > ul > li,
	.daysin-header .main-navigation > div > ul > li:first-child {
		width: 100%;
		margin: 0;
		padding: 0 !important;
		border: 0;
		text-align: left;
	}

	.daysin-header .main-navigation > div > ul > li > a {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		float: none;
		width: 100%;
		min-height: 46px;
		padding: 0 14px;
		border-radius: 12px;
		color: #fff;
		font-size: 18px !important;
		text-shadow: none;
	}

	.daysin-header .main-navigation > div > ul > li > a::after {
		display: none;
	}

	.daysin-header .main-navigation > div > ul > li > a:hover,
	.daysin-header .main-navigation > div > ul > li > a:focus,
	.sticky-wrapper.is-sticky .daysin-header .main-navigation > div > ul > li > a,
	.sticky-wrapper.is-sticky .daysin-header .main-navigation > div > ul > li > a:hover,
	.sticky-wrapper.is-sticky .daysin-header .main-navigation > div > ul > li > a:focus {
		background: transparent;
		color: #fff;
	}

	.daysin-header .main-navigation > div > ul > li > a:hover,
	.daysin-header .main-navigation > div > ul > li > a:focus {
		background: rgba(255, 255, 255, 0.13);
		color: var(--daysin-accent);
	}

	.daysin-header .main-navigation .language-switcher {
		display: block;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 0 !important;
		border-top: 0;
	}

	.daysin-header .language-switcher__button {
		width: 100%;
		min-height: 46px;
		height: auto;
		padding: 0 14px;
		border: 0;
		border-radius: 12px;
		background: transparent;
		color: #fff;
		font-size: 18px;
		letter-spacing: 0;
		text-transform: capitalize;
		text-shadow: none;
	}

	.sticky-wrapper.is-sticky .daysin-header .language-switcher__button {
		border: 0;
		background: transparent;
		color: #fff;
	}

	.daysin-header .language-switcher__button:hover,
	.daysin-header .language-switcher__button:focus,
	.daysin-header .language-switcher.is-open .language-switcher__button,
	.sticky-wrapper.is-sticky .daysin-header .language-switcher__button:hover,
	.sticky-wrapper.is-sticky .daysin-header .language-switcher__button:focus,
	.sticky-wrapper.is-sticky .daysin-header .language-switcher.is-open .language-switcher__button {
		background: rgba(255, 255, 255, 0.13);
		color: var(--daysin-accent);
	}

	.daysin-header .language-switcher__globe,
	.daysin-header .language-switcher__current-code {
		display: none;
	}

	.daysin-header .language-switcher__current-name {
		display: inline;
	}

	.daysin-header .main-navigation .language-switcher__menu {
		position: static;
		top: auto;
		bottom: auto;
		width: 100%;
		max-height: 0;
		margin: 0;
		padding: 0 8px;
		border: 0;
		background: #fff;
		box-shadow: none;
		opacity: 0;
		-webkit-transform: none;
		        transform: none;
	}

	.daysin-header .main-navigation .language-switcher.is-open .language-switcher__menu {
		max-height: min(60vh, 480px);
		margin-top: 8px;
		padding-top: 8px;
		padding-bottom: 8px;
		overflow-y: auto;
		opacity: 1;
	}

	body.daysin-menu-open {
		overflow: hidden;
	}

	.home #masthead {
		height: clamp(500px, 72svh, 640px);
		min-height: 0;
	}

	.home .metaslider .caption-wrap {
		bottom: 0 !important;
		left: 0 !important;
		width: 100vw !important;
		min-height: 260px;
		border-radius: 0;
	}

	.home .metaslider .caption-wrap::after {
		background: linear-gradient(90deg, rgba(18, 15, 13, 0.78) 0%, rgba(18, 15, 13, 0.66) 58%, rgba(18, 15, 13, 0.34) 84%, rgba(18, 15, 13, 0.08) 100%);
	}

	.home .metaslider .caption {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		min-width: min(300px, calc(100vw - 48px));
		max-width: min(620px, calc(100vw - 48px));
		margin-left: 24px;
		padding: 30px 0 58px !important;
		font-size: 16px;
	}

	.home .metaslider .caption::before {
		width: 44px;
		margin-bottom: 20px;
	}

	.home .metaslider .caption h1 {
		font-size: clamp(36px, 8vw, 50px);
	}

	.home .metaslider .caption h2 {
		font-size: clamp(31px, 7vw, 43px);
	}

	.home .metaslider .caption h3 {
		font-size: clamp(27px, 6vw, 37px);
	}

	.home .metaslider .caption h4 {
		font-size: clamp(23px, 5vw, 31px);
	}

	.home .metaslider .caption h5 {
		font-size: clamp(20px, 4.4vw, 25px);
	}

	.home .metaslider .caption h6 {
		font-size: clamp(17px, 4vw, 21px);
	}

	.home .metaslider .rslides_nav {
		top: auto !important;
		bottom: 10px;
		width: 42px;
		height: 42px;
		margin-top: 0;
	}

	.home .metaslider .rslides_nav.prev {
		left: 14px;
	}

	.home .metaslider .rslides_nav.next {
		right: 14px;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .sticky-wrapper.is-sticky .daysin-header {
		top: 46px !important;
	}

	.admin-bar.home #masthead {
		height: clamp(454px, calc(72svh - 46px), 594px);
	}
}

@media screen and (max-width: 600px) {
	.admin-bar .sticky-wrapper.is-sticky .daysin-header {
		top: 0 !important;
	}

	.home #masthead {
		height: clamp(400px, 105vw, 460px);
	}

	.admin-bar.home #masthead {
		height: clamp(354px, calc(105vw - 46px), 414px);
	}

	.home .metaslider .caption {
		width: calc(100vw - 48px);
		min-width: 0;
		max-width: calc(100vw - 48px);
	}

}

@media screen and (max-width: 420px) {
	.daysin-header .daysin-header__inner {
		width: calc(100% - 24px) !important;
	}

	.daysin-header .main-navigation,
	.daysin-header .main-navigation.toggled {
		padding: 10px;
		border-radius: 20px;
	}

	.home #masthead {
		height: clamp(390px, 105vw, 440px);
		min-height: 0;
	}

	.home .metaslider .caption-wrap {
		bottom: 0 !important;
		left: 0 !important;
		width: 100vw !important;
		min-height: 240px;
		border-radius: 0;
	}

	.home .metaslider .caption {
		width: calc(100vw - 40px);
		max-width: calc(100vw - 40px);
		margin-left: 20px;
		padding: 28px 0 56px !important;
		font-size: 16px;
	}

	.home .metaslider .caption h1 {
		font-size: clamp(32px, 9vw, 38px);
	}

	.home .metaslider .caption h2 {
		font-size: clamp(29px, 8vw, 34px);
	}

	.home .metaslider .caption h3 {
		font-size: clamp(26px, 7vw, 31px);
	}

	.home .metaslider .caption h4 {
		font-size: clamp(22px, 6vw, 27px);
	}

	.home .metaslider .caption h5 {
		font-size: clamp(19px, 5vw, 23px);
	}

	.home .metaslider .caption h6 {
		font-size: clamp(17px, 4.5vw, 20px);
	}
}

@media (prefers-reduced-transparency: reduce) {
	.daysin-header .main-navigation,
	.daysin-header .main-navigation.toggled,
	.home .metaslider .rslides_nav {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.daysin-header .main-navigation,
	.daysin-header .main-navigation.toggled {
		background: #171914;
	}

	.sticky-wrapper.is-sticky .daysin-header .daysin-header__inner {
		background: transparent;
	}
}

@media (prefers-contrast: more) {
	.daysin-header .main-navigation,
	.daysin-header .main-navigation.toggled {
		border-color: rgba(255, 255, 255, 0.72);
		background: #171914;
	}

	.sticky-wrapper.is-sticky .daysin-header {
		box-shadow: 0 2px 0 var(--daysin-ink);
	}
}

@media (prefers-reduced-motion: reduce) {
	.daysin-header,
	.daysin-header .site-logo,
	.daysin-header .main-navigation,
	.daysin-header .main-navigation > div > ul > li > a,
	.daysin-header .main-navigation > div > ul > li > a::after,
	.daysin-header .menu-toggle,
	.daysin-header .menu-toggle__icon > span,
	.home .metaslider .caption .ms-custom-button,
	.home .metaslider .rslides_nav,
	.home #metaslider_2534 > li.rslides1_on .caption {
		-webkit-transition: none;
		transition: none;
		-webkit-animation: none;
		animation: none;
	}
}
