/*
 | Table of Contents
 |==================
 |  - Normalize (minified)
 |  - Typography
 |  - Tags
 |  - Classes
 |  - Utility Classes
 |  - IDs
 |  - Media Queries
*/

/*** normalize.css v3.0.1 | MIT License | git.io/normalize ***/
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}



/* General Rule */

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body.home #main-content {
	scroll-margin-top: 0;
}

body.home #home-visitors,
body.home #home-groups,
body.home #home-practical {
	scroll-margin-top: clamp(5rem, 14vh, 8.5rem);
}

.skip-link {
	background: #fff8ef;
	border: 1px solid rgba(215, 129, 21, 0.45);
	border-radius: 0.35rem;
	box-shadow: 0 8px 24px rgba(32, 22, 16, 0.12);
	color: #2a1a12;
	font-size: 0.82rem;
	font-weight: 700;
	left: 0.75rem;
	letter-spacing: 0.06em;
	opacity: 0;
	padding: 0.55rem 0.9rem;
	position: absolute;
	text-decoration: none;
	text-transform: uppercase;
	top: 0.75rem;
	transform: translateY(-120%);
	transition:
		opacity 0.15s ease,
		transform 0.15s ease;
	z-index: 10000;
}

.skip-link:focus {
	opacity: 1;
	outline: 2px solid #d78115;
	outline-offset: 2px;
	transform: translateY(0);
}

body.home .home-hero__lead {
	grid-column: 1 / -1;
}

[data-theme='dark'] .skip-link {
	background: #1a1f1e;
	border-color: rgba(243, 164, 68, 0.45);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
	color: #f2ebdf;
}

.osd-sms-wrapper {
    border-top: 2px solid #d78115;
    padding-top: 20px;
    text-align: center;
}
.osd-sms-title {
	display: none;
}

.ubermenu.ubermenu-responsive.ubermenu-sticky {
	margin-top: 0 !important;
}

.bg-beige {
	background-color: #e8e7e0;
}

.acf-map {
	width: 100%;
	height: 400px;
	border: #ccc solid 1px;
	margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
   max-width: inherit !important;
}

/*** Typography ***/


body {
	font-family: 'Roboto Slab', serif;
	font-size: 16px;
	line-height: 1.7em;
}

code, pre, kbd, samp, tt {
	font-family: "Roboto Slab", monospace;
	tab-size: 4;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	-webkit-tab-size: 4;
}

code, kbd, samp, tt {
	vertical-align: baseline;
	background-color:#eee;
	white-space: pre-line;
	border-radius:2px;
	border:1px solid #ddd;
	border-bottom-color:#bbb;
	border-right-color:#ccc;
	padding:1px 4px;
	line-height:1.35em;
	display: inline-block;
}

code *, kbd *, samp *, tt * {
	white-space: pre-line;
}

h1, h1 *,
h2, h2 *,
h3, h3 *,
h4, h4 *,
h5, h5 *,
h6, h6 * {
	font-family: 'Roboto Slab', serif;
	font-weight: 300;
	margin-top: 0.4rem;
	margin-bottom: 0.9rem;
	color: #333;
	padding: 2px 0;
	line-height: normal;
	clear: both;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}


h3 a:hover {
	color: #d78115;
}

h3 {
	font-size: 1.6rem;
}

h4 {
	font-size: 1.4rem;
}

h5 {
	font-size: 1rem;
	font-weight: 400;
}

h6 {
	font-size: 0.92rem;
	font-weight: 300;
}

kbd {
	background-image:-moz-linear-gradient(#f1f1f1, #ddd);
	background-image:-webkit-linear-gradient(#f1f1f1, #ddd);
	background-image:linear-gradient(#f1f1f1, #ddd);
	background-repeat:repeat-x;
}

mark, ins {
	background-color: rgba(250, 250, 0, 0.45);
	text-decoration: none;
	padding-left: 0.2em;
	padding-right: 0.2em;
}

pre {
	background-color:#eee;
	padding: 0.4em 1em;
	border-radius:4px;
	border:1px solid #ddd;
	border-bottom-color:#bbb;
	border-right-color:#ccc;
	font-size: 14px;
	display: block;
	margin: 0 0 0 auto;
	white-space: pre-wrap;
	line-height: 1.6em;
}

pre code {
	white-space: pre-wrap;
	background: none;
	line-height: inherit;
	padding: 0;
	border: none;
	display: inline;
}

a { 
	/* Override */
	color: #d78115;
	font-weight: 300;
	text-decoration: none;
}

a:hover, a:focus, a:active { 
	/* Override */
	color: #333333;
}

a.inverted { /* Override */
	color: #FFFFFF;
	font-weight: 600;
	text-decoration: none;
}

a.inverted:hover, a.inverted:focus, a.inverted:active { /* Override */
	color: #878787;
}


/*** Tags ***/

html, body.mce-content-body {
	/* Fixes Post Editor */
	height: inherit !important;
}

blockquote {
	background-color: rgba(230, 230, 250, 0.25);
	border-left: 4px solid rgba(0, 0, 0, 0.15);
	padding: 0.5em 10px 0.5em 2.2em;
	quotes: "\201C""\201D""\201C""\201D";
	z-index: 10;
}

blockquote:before {
	font-family: 'Roboto Slab', serif;
	color: rgba(0, 0, 0, 0.15);
	content: open-quote;
	vertical-align: middle;
	position: absolute;
	margin: 0.45em 0 0 -0.45em;
	font-size: 64px;
	line-height: 0px;
	z-index: 5;
}

blockquote cite {
	display: block;
	margin-top: 0.8em;
	text-align: right;
}

blockquote p {
	display: inline;
}

figure.gallery-item {
	display: inline-block;
}

/*** Classes ***/

.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignleft {
	float:left;
}

.alignright {
	float:right;
}

.bypostauthor {
	/* I think this has to do with a comment's author??? */
}

.entry, .wp-widget {
	overflow: hidden;
}

.entry-media {
	position: relative !important;
	display: block;
	width:100%;
	padding: 0.5em 1em !important;
	margin: 0 0 0 -1em !important;
	border: none;
	box-sizing: content-box !important;
	z-index: 1;
}

.entry-media::before {
	content: "";
	background-image: url(../image/subtle-patterns/diagonal-noise.png);
	background-position: top center;
	opacity: 0.45;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: 5;
}

.entry-media > img {
	z-index: 10;
	display: block;
	margin: 0 auto;
	height: auto;
	width: auto;
	position: relative;
	max-height: 400px;
	max-width: 100%;
}

.entry-title {
	overflow: hidden;
	text-overflow: ellipsis;
}

.entry-summery,
.entry-content,
.entry-summery p,
.entry-content p,
.widget * {
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
}

.gallery-caption {
	/* [todo] style gallery captions */
}

.pad, td#prev, td#next {
	border-left: none;
	border-right: none;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.sticky {
	/* [todo] make sticky posts stick-out */
}

.tagcloud {
	text-align: center;
}

.wp-caption{
	max-width: 100%;
	width: auto !important;
	text-align: center;
}

.wp-caption-text{
	margin: 0 auto;
	padding: 0.25em 1em 0.25em 1.8em;
	max-width: 90%;
	font-size: 0.9em;
	border-radius: 0.3em;
	border: 1px solid #ccc;
	background: #fff;
}

/*** Utility Classes ***/

.centered {
	text-align: center;
}

.empty {
	display: block;
	width: 100%;
}

.empty.size-5 { height: 5px; }
.empty.size-10 { height: 10px; }
.empty.size-15 { height: 15px; }
.empty.size-20 { height: 20px; }
.empty.size-25 { height: 25px; }
.empty.size-30 { height: 30px; }
.empty.size-35 { height: 35px; }
.empty.size-40 { height: 40px; }
.empty.size-45 { height: 45px; }
.empty.size-50 { height: 50px; }
.empty.size-60 { height: 60px; }
.empty.size-70 { height: 70px; }
.empty.size-80 { height: 80px; }
.empty.size-90 { height: 90px; }
.empty.size-100 { height: 100px; }

.hidden {
	display: none;
}

/*** ID's ***/

#calendar_wrap {
	text-align: center;
	margin: 0;
	padding: 0;
}

#main-content-grid {
	background-color: #ffffff;
}

#main-header-grid {
	padding-top: 0;
}

#main-footer-grid {
	background-position: bottom center;
}

#suiwp-usage-tracker {
	display: block;
	z-index: -100;
	position: relative;
	margin: -1px 0 0 0;
	padding: 0;
	height: 1px;
	width: 1px;
}

#wp-calendar {
	display: inline-block;
	font-size: 1.05em;
}

#wp-calendar, .tagcloud {
	margin-top: 1em;
}


/*** Overrides ***/

.kh.content.title {
	font-size: 1.5rem;
}

.ubermenu .ubermenu-target-text {
	text-transform: initial !important;
}

.wcdp-tab {
	padding-top: 2rem !important;
}


.ubermenu-current_page_item a.ubermenu-target span.ubermenu-target-title{
	font-weight: bold;
}
.ubermenu.ubermenu-main {
	background: rgba(255, 255, 255, 1) !important;
	border-radius: 6px;
}
.ubermenu .ubermenu-item .ubermenu-submenu-drop {
	box-shadow: none !important;
}

body {
	background: #f5f0e4;
	color: #33241a;
}

#main-content-grid {
	background-color: #f7f1e6;
}

[data-theme='dark'] body {
	background: #0d1620;
	color: #f2ebdf;
}

header#header {
	width: 100% !important;
	max-width: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
	top: 0 !important;
	transition:
		transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 260ms ease;
	will-change: transform;
	z-index: 980;
}

header#header.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(calc(-100% - 1.75rem));
}

header#header .site-header-shell {
	margin-top: 0 !important;
	border-radius: 0 !important;
	padding: 0.75rem 1rem !important;
}

.mc4wp-alert.mc4wp-success {
	position: relative !important;
    min-height: 1em;
    margin: 1em 0;
    background: #f8f8f9 !important;
    padding: 1em 1.5em !important;
    line-height: 1.4285em;
    color: rgba(0,0,0,.87);
    -webkit-transition: opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;
    transition: opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;
    border-radius: .28571429rem;
    box-shadow: 0 0 0 1px rgba(34,36,38,.22) inset, 0 0 0 0 transparent;
}

.ubermenu .ubermenu-item-has-children > .ubermenu-target,
.ubermenu-horizontal .ubermenu-item.ubermenu-item-mini>.ubermenu-target {

	padding-top: 30px !important;
}

ul.ubermenu-submenu {

	border-radius: 6px !important;
}

/*** Media Queries ***/
@media only screen and (max-width: 750px) {

	.ubermenu-target-with-icon .ubermenu-target-title {
		display: none !important;
	}
	.ubermenu-sub-indicator-close {
		display: none !important;
	}
}

.ubermenu-search {
	margin: 0;
	outline: 0;
	-webkit-appearance: none;
	tap-highlight-color: rgba(255, 255, 255, 0);
	line-height: 1.21428571em;
	padding: .67857143em 1em;
	font-size: 1em;
	background: #fff;
	border: 1px solid rgba(34, 36, 38, .15);
	color: rgba(0, 0, 0, .87);
	border-radius: .28571429rem;
	box-shadow: 0 0 0 0 transparent inset;
	-webkit-transition: color .1s ease, border-color .1s ease;
	transition: color .1s ease, border-color .1s ease;
}

.ubermenu .ubermenu-submenu .ubermenu-search input.ubermenu-search-input {
	background: #fff !important;
	border-radius: 6px !important;
}

form.ubermenu-searchform {
	border-radius: 6px;
}

.breadcrumb, .breadcrumb a, .breadcrumb span {
	color: #fff;
	font-size: 1.3rem;
}

.article-title {
	line-height: 5rem !important;
	text-align: center !important;
}

p {
	line-height: 1.7em !important;
}

ul {
    list-style-image: url('https://www.vargamae.ee/wp-content/uploads/2017/03/list-item.png');
}

ul.home-activity-card__meta {
	list-style: none !important;
	list-style-image: none !important;
}


/* WooCommerce */
.wc-bookings-booking-form {
    border: 3px solid #efefef;
    padding: 1em 1em 0;
    border-radius: 10px;
    margin: 0 0 1em;
    background-color: #fffee8 !important;
    font-size: 1.3rem;
}

.wc_bookings_field_resource label {
	display: none;
}

.woocommerce div.product .product_title {
	text-align: center;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
	text-align: center;
	font-size: 2rem;
}

fieldset {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wc-bookings-booking-form legend {
	display: none !important;
}
.woocommerce div.product form.cart .button {
	float: right;
}

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
	background-color: #ccc !important;
}

.wc-bookings-booking-form label {
	font-size: 1.3rem;
	padding: 0.4rem;
	text-align: center;
}

.kh-price-per-person {
	display: block;
	font-size: 1.3rem;
	padding: 0.4rem;
	text-align: center;
	color: #21ba45;
}

/* 
   Modify the color styles of the WooCommerce Bookings datepicker calendar.
   Add any/all of these styles to your theme's custom CSS, but be sure to change
   the color hex codes to your choice. They're all black here.
*/

/* Month header background color */
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker-header {
	background: none !important;
	border-top: none !important;
	color: #000;
	text-transform: capitalize !important;
}

.ui-datepicker .ui-datepicker-header {
	padding: initial !important;
}

/* Previous/Next month arrow background color */
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker .ui-datepicker-next, 
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker .ui-datepicker-prev {
	background-color: #fff;
}

/* Previous/Next month arrows if not allowed, and calendar dates that are not available */
.ui-state-disabled, 
.ui-widget-content .ui-state-disabled, 
.ui-widget-header .ui-state-disabled {
	opacity: 0.35;
}

/* Days of the week header background color */
.ui-datepicker-calendar thead {
	background-color: #fff;
}

/* Days of the week header font color */
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker th {
	color: #000000;
}

/* Past calendar days background color (not available) */
.ui-datepicker-calendar tbody {
	background-color: #efefef;
}

/* Available calendar days background color */
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a {
	background-color: #fff !important;
	color: #000 !important;
}

/* Available calendar day hover background color */
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a:hover {
	background-color: #f2711c !important;
}

/* Fully booked calendar days */
.wc-bookings-date-picker .ui-datepicker td.fully_booked a, 
.wc-bookings-date-picker .ui-datepicker td.fully_booked span {
	background-color: #FF0000 !important;
}

/* Days not bookable based on the availability rules */
.wc-bookings-date-picker .ui-datepicker td.not_bookable {
	background-color: #FF0000 !important;
}

/* Today's date on calendar background color */ 
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-today a { 
	background-color: rgba(242, 113, 28, 0.12) !important; 
}

/* Partially Booked Red Triangle */
.wc-bookings-date-picker .ui-datepicker td.partial_booked a:before {
    border-top: none; /* This style removes the red triangle */
}

/* Time Blocks */
#wc-bookings-booking-form .block-picker li a {

}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
	background-color: #f2711c !important;
}

/* Time Blocks Hover */
#wc-bookings-booking-form .block-picker li a:hover {
	background-color: #efefef !important;
}

/* Selected Date*/ 
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a {
	background-color: #f2711c !important; 
}

label[for=wc_bookings_field_start_date] {
	display: none;
}

.wc-bookings-booking-form fieldset .picker.hasDatepicker {
	line-height: inherit !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	display: none;
}

.woocommerce table.shop_table {
	border: 3px solid #efefef !important;
    padding: 1em 1em 0 !important;
    border-radius: 10px !important; 
    margin: 0 0 1em !important;
    background-color: #fffee8 !important;
} 

#post-1583, #post-1581 {
	width: 100% !important;
}
#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img { 
	width: 100px !important;
    border-radius: 10px !important;
}
.woocommerce td.product-name .wc-item-meta p, .woocommerce td.product-name .wc-item-meta:last-child, .woocommerce td.product-name dl.variation p, .woocommerce td.product-name dl.variation:last-child {
    margin-bottom: 0;
    line-height: 1.7rem !important;
}
.woocommerce ul.order_details {
    margin: 0 0 3em;
    list-style: none;
    background: #efefef;
    border-radius: 10px;
    padding: 2rem;
}

.kh-content-product { 
	background: #efefef; 
	border-radius: 6px; 
	margin: 0rem 1rem;
}

.booking-callout__link {
	color: #e98537;
	text-decoration: underline;
}

.booking-callout__link:hover,
.booking-callout__link:focus {
	color: #d78115;
}

.map-section {
	background: #ffffed;
	margin-top: 10px;
	padding-bottom: 50px;
	border-top: #E98537 2px solid;
}

.mobile-search-box {
	border: #d78115 2px solid !important;
    border-radius: 6px !important;
    width: 96vw !important;
    margin-left: 2vw !important;
}

.news-box {

    margin: 0 20px !important;
}

.centered {
	text-align: center;
}

.no-padding {
	padding: 0 !important;
}

.br6 {
	border-radius: 6px;
}

.pb0 {
	padding-bottom: 0 !important;
}

.pb1 {
	padding-bottom: 1rem !important;
}

.pb3 {
	padding-bottom: 3rem !important;
}

.pt0 {
	padding-top: 0 !important;
}

.pt3 {
	padding-top: 3rem !important;
}

.pl0 {
	padding-left: 0 !important;
}

.pr0 {
	padding-right: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb02 {
	margin-bottom: 0.2rem !important;
}

.mb04 {
	margin-bottom: 0.4rem !important;
}

.mb1 {
	margin-bottom: 1rem !important;
}

.mt02 {
	margin-top: 0.2rem !important;
}

.mt04 {
	margin-top: 0.4rem !important;
}

.fc-header-toolbar {
	text-transform: capitalize;
}

#cookie-law-info-again {
	box-shadow: #e8e8e8 0 0 1px 1px !important;
}


.date-meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: #000;
  padding-top: 0.3rem;
}

a.ui-state-default:hover {
  background: #000;
  color: #fff !important;
}

.fc td,
.fc th {
  border-width: 1px;
}

.fc-unthemed tbody,
.fc-unthemed td,
.fc-unthemed th,
.fc-unthemed thead,
.fc-unthemed .fc-content,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-row {
  border-color: #000;
}

.fc-list-empty {
  display: none;
}

.fc-unthemed td.fc-today {
  background: transparent;
}

.fc-list-table td {
  border-width: 0;
  padding: 0;
}

.fc-list-heading-main {
  padding-top: 0.8rem;
}

.fc-list-item-title {
  padding-bottom: 0.8rem !important;
}

.fc-unthemed .fc-list-heading td,
.fc-unthemed .fc-list-view {
  border-color: transparent;
  background: transparent;
}

.fc-unthemed .fc-list-item:hover td {
  background-color: transparent;
}

.fc-list-item.fc-has-url {
  cursor: auto;
}

.fc-list-item-marker,
.fc-list-item-time {
  display: none;
}

.fc-list-heading {
  border-top: 3px #000 solid;
}

.fc-button-primary {
	background-color: #000;
    border-color: #000;
}

.fc button.fc-calendarButton-button {
  color: #d78115 !important;
}

.fc button:hover {
  color: #d78115 !important;
  text-decoration: underline;
}

.fc-event {
  background-color: #d78115 !important;
  border-color: #d78115 !important;
}

.fc-day-grid-event .fc-content {
  white-space: unset !important;
  padding-bottom: 0.3rem;
}

.fc-dayGrid-view .fc-day-number,
.fc-dayGrid-view .fc-week-number {
  padding: 2px 9px 0 5px;
  font-weight: 300 !important;
}

.calendar-label {
  margin: .4em 0;
  font-size: .6875rem;
  font-weight: 500;
  line-height: 1em;
  color: #000;
  text-transform: uppercase;
  word-wrap: break-word;
}

.fc-button-primary:not(:disabled).fc-button-active, 
.fc-button-primary:not(:disabled):active {
    color: #fff;
    background-color: #f2711c !important;
    border-color: #d78115 !important;
}

.fc-toolbar.fc-footer-toolbar {
    margin-top: 0.8rem !important;
}

body.single-story #cookie-law-info-bar,
body.single-story #cookie-law-info-again {
	display: none !important;
}

/* Legacy dark-mode coverage for stylesheets loaded after tailwind.css */
[data-theme='dark'] #main-content-grid,
[data-theme='dark'] .ubermenu.ubermenu-main {
	background: #101b27 !important;
}

[data-theme='dark'] h1,
[data-theme='dark'] h1 *,
[data-theme='dark'] h2,
[data-theme='dark'] h2 *,
[data-theme='dark'] h3,
[data-theme='dark'] h3 *,
[data-theme='dark'] h4,
[data-theme='dark'] h4 *,
[data-theme='dark'] h5,
[data-theme='dark'] h5 *,
[data-theme='dark'] h6,
[data-theme='dark'] h6 *,
[data-theme='dark'] .date-meta,
[data-theme='dark'] .calendar-label {
	color: #f2ebdf;
}

[data-theme='dark'] a:hover,
[data-theme='dark'] a:focus,
[data-theme='dark'] a:active {
	color: #d9c3a1;
}

[data-theme='dark'] code,
[data-theme='dark'] kbd,
[data-theme='dark'] samp,
[data-theme='dark'] tt,
[data-theme='dark'] pre {
	background-color: #172432;
	border-color: rgba(255, 255, 255, 0.12);
	border-bottom-color: rgba(255, 255, 255, 0.18);
	border-right-color: rgba(255, 255, 255, 0.18);
	color: #f2ebdf;
}

[data-theme='dark'] kbd {
	background-image: linear-gradient(#233445, #172432);
}

[data-theme='dark'] pre code {
	background: none;
	color: inherit;
}

[data-theme='dark'] mark,
[data-theme='dark'] ins {
	background-color: rgba(215, 129, 21, 0.28);
	color: #fff4df;
}

[data-theme='dark'] blockquote {
	background-color: rgba(209, 224, 241, 0.05);
	border-left-color: rgba(188, 162, 121, 0.7);
	color: #f2ebdf;
}

[data-theme='dark'] blockquote:before {
	color: rgba(243, 164, 68, 0.35);
}

[data-theme='dark'] .screen-reader-text:focus {
	background-color: #243446;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.35);
	color: #fffaf1;
}

[data-theme='dark'] .wp-caption-text,
[data-theme='dark'] .acf-map {
	background: #152230;
	border-color: rgba(255, 255, 255, 0.12);
	color: #f2ebdf;
}

[data-theme='dark'] .mc4wp-alert.mc4wp-success {
	background: #152230 !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
	color: #f2ebdf;
}

[data-theme='dark'] .ubermenu-search,
[data-theme='dark'] .ubermenu .ubermenu-submenu .ubermenu-search input.ubermenu-search-input {
	background: #101b27 !important;
	border-color: rgba(255, 255, 255, 0.12);
	color: #f2ebdf;
}

[data-theme='dark'] .ubermenu .ubermenu-submenu .ubermenu-search input.ubermenu-search-input::placeholder {
	color: rgba(242, 235, 223, 0.52);
}

[data-theme='dark'] .woocommerce div.product .product_title,
[data-theme='dark'] .woocommerce div.product p.price,
[data-theme='dark'] .woocommerce div.product span.price,
[data-theme='dark'] .wc-bookings-booking-form,
[data-theme='dark'] .woocommerce table.shop_table,
[data-theme='dark'] .woocommerce ul.order_details,
[data-theme='dark'] .kh-content-product {
	background-color: #152230 !important;
	border-color: rgba(255, 255, 255, 0.1) !important;
	color: #f2ebdf;
}

[data-theme='dark'] .wc-bookings-booking-form label,
[data-theme='dark'] .woocommerce table.shop_table td,
[data-theme='dark'] .woocommerce table.shop_table th,
[data-theme='dark'] .woocommerce td.product-name .wc-item-meta p,
[data-theme='dark'] .woocommerce td.product-name .wc-item-meta:last-child,
[data-theme='dark'] .woocommerce td.product-name dl.variation p,
[data-theme='dark'] .woocommerce td.product-name dl.variation:last-child,
[data-theme='dark'] .woocommerce ul.order_details li,
[data-theme='dark'] .woocommerce ul.order_details strong {
	color: #f2ebdf;
}

[data-theme='dark'] .kh-price-per-person {
	color: #8adf99;
}

[data-theme='dark'] #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker-header {
	color: #f2ebdf;
}

[data-theme='dark'] #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker .ui-datepicker-next,
[data-theme='dark'] #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker .ui-datepicker-prev,
[data-theme='dark'] .ui-datepicker-calendar thead {
	background-color: #22302d;
}

[data-theme='dark'] #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker th {
	color: #f2ebdf;
}

[data-theme='dark'] .ui-datepicker-calendar tbody {
	background-color: #101715;
}

[data-theme='dark'] #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a {
	background-color: #22302d !important;
	color: #f2ebdf !important;
}

[data-theme='dark'] #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a:hover,
[data-theme='dark'] #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a {
	background-color: #d78115 !important;
	color: #fffaf1 !important;
}

[data-theme='dark'] #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-today a {
	background-color: rgba(215, 129, 21, 0.3) !important;
	color: #fff4df !important;
}

[data-theme='dark'] #cookie-law-info-again {
	box-shadow: rgba(0, 0, 0, 0.35) 0 0 1px 1px !important;
}

[data-theme='dark'] a.ui-state-default:hover {
	background: #f2ebdf;
	color: #101715 !important;
}

[data-theme='dark'] .fc-unthemed tbody,
[data-theme='dark'] .fc-unthemed td,
[data-theme='dark'] .fc-unthemed th,
[data-theme='dark'] .fc-unthemed thead,
[data-theme='dark'] .fc-unthemed .fc-content,
[data-theme='dark'] .fc-unthemed .fc-divider,
[data-theme='dark'] .fc-unthemed .fc-popover,
[data-theme='dark'] .fc-unthemed .fc-row {
	border-color: rgba(255, 255, 255, 0.16);
	color: #f2ebdf;
}

[data-theme='dark'] .fc-unthemed td.fc-today {
	background: rgba(255, 255, 255, 0.04);
}

[data-theme='dark'] .fc-unthemed .fc-list-heading td,
[data-theme='dark'] .fc-unthemed .fc-list-view,
[data-theme='dark'] .fc-list-table td {
	color: #f2ebdf;
}

[data-theme='dark'] .fc-unthemed .fc-list-item:hover td {
	background-color: rgba(255, 255, 255, 0.04);
}

[data-theme='dark'] .fc-list-heading {
	border-top-color: rgba(255, 255, 255, 0.18);
}

[data-theme='dark'] .fc-button-primary {
	background-color: #22302d;
	border-color: rgba(255, 255, 255, 0.14);
}

[data-theme='dark'] .fc button.fc-calendarButton-button,
[data-theme='dark'] .fc button:hover {
	color: #f3a444 !important;
}

[data-theme='dark'] .fc-event {
	color: #fffaf1;
}

[data-theme='dark'] .fc-dayGrid-view .fc-day-number,
[data-theme='dark'] .fc-dayGrid-view .fc-week-number {
	color: #f2ebdf;
}

[data-theme='dark'] .booking-callout__link {
	color: #f3a444;
}

.archive-year-group + .archive-year-group {
	margin-top: 2.5rem;
}

.archive-year-heading {
	border-bottom: 1px solid rgba(33, 23, 18, 0.14);
	color: #413025;
	font-size: clamp(1.45rem, 2.2vw, 1.95rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	margin: 0 0 1rem;
	padding-bottom: 0.65rem;
}

.archive-year-group .home-news-list {
	gap: 0;
}

.archive-shell .home-news-item__image {
	min-height: 11rem;
}

@media (min-width: 768px) {
	.archive-shell .home-news-item--with-image {
		grid-template-columns: minmax(0, 1.2fr) minmax(12rem, 0.8fr);
	}
}

[data-theme='dark'] .archive-year-heading {
	border-bottom-color: rgba(255, 255, 255, 0.14);
	color: #f2ebdf;
}

body.home .home-cta-link::after,
body.home .home-path__link::after,
body.home .home-journeys__lane-link::after,
body.home .home-hero__slat-label::after,
body.home .home-game-cta__clip-label::after {
	content: none;
}

body.home .home-hero__fence {
	grid-column: 1 / -1;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.home .home-hero__story-cta {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 0;
}

body.home .home-hero__story-cta--intro {
	grid-column: 1 / -1;
	margin-top: 0.4rem;
}

body.home .home-hero__story-cta--intro .home-hero__story-meta {
	line-height: 1.55;
	max-width: 40rem;
}

body.home .home-hero__story-meta {
	margin: 0;
	max-width: 32rem;
}

@media (min-width: 768px) {
	body.home .home-hero__story-cta,
	body.home .home-hero__story-cta--intro {
		align-items: center;
		grid-column: 1 / -1;
		text-align: center;
	}

	body.home .home-hero__story-cta--intro .home-hero__story-meta {
		margin-left: auto;
		margin-right: auto;
	}

	body.home .home-game-cta__media {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

.search-results-shell {
	width: 100%;
}

.search-results-header {
	border-bottom: 1px solid rgba(33, 23, 18, 0.14);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
}

.search-results-eyebrow {
	color: #8b6345;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
}

.search-results-header h1 {
	margin: 0;
}

.search-results-summary {
	color: #6d5648;
	font-size: 1rem;
	margin: 0.5rem 0 0;
	word-break: break-word;
}

.search-results-group + .search-results-group {
	margin-top: 2.5rem;
}

.search-results-group__header {
	align-items: flex-end;
	border-bottom: 1px solid rgba(33, 23, 18, 0.14);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 0.65rem;
}

.search-results-group__header h2 {
	margin: 0;
}

.search-results-group__count {
	color: #6d5648;
	font-size: 0.95rem;
	font-weight: 700;
}

.search-results-group__items {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.search-result-card {
	align-items: start;
	border-top: 1px solid rgba(33, 23, 18, 0.1);
	display: grid;
	gap: 1.25rem;
	padding-top: 1.5rem;
}

.search-results-group__items .search-result-card:first-child {
	border-top: 0;
	padding-top: 0;
}

.search-result-card__media {
	display: block;
	overflow: hidden;
}

.search-result-card__image {
	aspect-ratio: 4 / 3;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.search-result-card__body {
	min-width: 0;
}

.search-result-card__meta {
	color: #7a5c48;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.search-result-card__title {
	margin: 0;
}

.search-result-card__title a {
	color: inherit;
	text-decoration: none;
}

.search-result-card__title a:hover {
	text-decoration: underline;
}

.search-result-card__excerpt {
	margin: 0.75rem 0 0;
	max-width: 58ch;
}

.site-mobile-nav__summary {
	align-items: flex-start;
	padding: 0.95rem 1rem !important;
}

.site-mobile-nav__summary-copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.site-mobile-nav__summary-label {
	display: block;
}

.site-mobile-nav__summary-detail {
	color: #6d5648;
	display: block;
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.4;
	text-transform: none;
}

.site-mobile-nav__summary-icon,
.site-mobile-nav__branch-icon {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(33, 23, 18, 0.1);
	border-radius: 999px;
	height: 2rem;
	width: 2rem;
}

.site-mobile-nav__panel {
	padding: 0.95rem 1rem 1rem !important;
}

.site-mobile-nav__utility-shell {
	border-bottom: 1px solid rgba(33, 23, 18, 0.08);
	display: grid;
	gap: 0.75rem;
	margin-bottom: 0.9rem;
	padding-bottom: 0.9rem;
}

.site-mobile-nav__search {
	align-items: center;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(33, 23, 18, 0.1);
	border-radius: 0.8rem;
	display: grid;
	gap: 0.55rem;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 0.4rem;
}

.site-mobile-nav__search-input {
	background: transparent;
	border: 0;
	color: #211712;
	font-size: 0.95rem;
	line-height: 1.4;
	min-width: 0;
	outline: 0;
	padding: 0.5rem 0.6rem;
}

.site-mobile-nav__search-button {
	background: #d78115;
	border: 0;
	border-radius: 0.6rem;
	color: #fffaf1;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	padding: 0.75rem 0.95rem;
	text-transform: uppercase;
}

.site-mobile-nav__tools {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.site-mobile-nav__donate {
	background: linear-gradient(135deg, rgba(255, 242, 241, 0.98), rgba(255, 233, 231, 0.95));
	border: 1px solid rgba(240, 201, 198, 0.95);
	border-radius: 999px;
	color: #2f2b28;
	display: inline-flex;
	font-size: 0.76rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.12em;
	padding: 0.8rem 1rem;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
}

.site-mobile-nav__language-list {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.site-mobile-nav__language-link {
	align-items: center;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(33, 23, 18, 0.08);
	border-radius: 999px;
	color: #6d5648;
	display: inline-flex;
	font-size: 0.76rem;
	font-weight: 700;
	justify-content: center;
	min-height: 2.5rem;
	min-width: 3rem;
	padding: 0.45rem 0.8rem;
	text-decoration: none;
}

.site-mobile-nav__language-link.is-active {
	background: #f6efe4;
	border-color: rgba(215, 129, 21, 0.26);
	color: #d78115;
}

.site-mobile-nav__theme-toggle {
	flex: 0 0 auto;
}

.site-mobile-nav__list,
.site-mobile-nav__submenu {
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.site-mobile-nav__link,
.site-mobile-nav__branch-summary,
.site-mobile-nav__overview {
	font-size: 0.98rem !important;
	line-height: 1.45 !important;
	padding: 0.85rem 0.95rem !important;
}

.site-mobile-nav__overview {
	margin-bottom: 0.45rem !important;
}

.site-mobile-nav__branch-panel {
	border-left: 1px solid rgba(215, 129, 21, 0.14) !important;
	margin-left: 0.55rem;
	padding-left: 0.8rem !important;
	padding-top: 0.5rem !important;
}

.site-mobile-nav__copy {
	font-size: 0.92rem !important;
	line-height: 1.55 !important;
}

@media (max-width: 1023px) {
	header#header .site-header-shell {
		gap: 0.85rem !important;
	}

	.site-header__brand {
		display: flex !important;
		flex: 1 1 100% !important;
		width: 100% !important;
	}

	.site-header__brand-image {
		max-width: clamp(13rem, 58vw, 18rem) !important;
	}

	.site-header__mobile {
		flex: 1 1 100% !important;
		width: 100% !important;
	}

	.site-mobile-nav {
		display: block;
		width: 100%;
	}
}

@media (min-width: 768px) {
	.search-result-card--with-image {
		grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
	}
}

[data-theme='dark'] .search-results-header,
[data-theme='dark'] .search-results-group__header,
[data-theme='dark'] .search-result-card {
	border-color: rgba(255, 255, 255, 0.14);
}

[data-theme='dark'] .search-results-eyebrow,
[data-theme='dark'] .search-results-summary,
[data-theme='dark'] .search-results-group__count,
[data-theme='dark'] .search-result-card__meta {
	color: #d9c7b7;
}

[data-theme='dark'] .site-mobile-nav__summary-detail,
[data-theme='dark'] .site-mobile-nav__language-link {
	color: #d9c7b7;
}

[data-theme='dark'] .site-mobile-nav__summary-icon,
[data-theme='dark'] .site-mobile-nav__branch-icon,
[data-theme='dark'] .site-mobile-nav__language-link,
[data-theme='dark'] .site-mobile-nav__search {
	background: rgba(20, 28, 27, 0.88);
	border-color: rgba(255, 255, 255, 0.12);
}

[data-theme='dark'] .site-mobile-nav__search-input {
	color: #f2ebdf;
}

[data-theme='dark'] .site-mobile-nav__donate {
	background: linear-gradient(135deg, rgba(54, 31, 29, 0.98), rgba(73, 43, 41, 0.95));
	border-color: rgba(213, 58, 58, 0.28);
	color: #fff1ee;
}

[data-theme='dark'] .site-mobile-nav__language-link.is-active {
	background: rgba(54, 42, 29, 0.92);
	border-color: rgba(243, 164, 68, 0.26);
	color: #f3a444;
}

[data-theme='dark'] .site-mobile-nav__utility-shell {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-scroll-footer-cta {
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	opacity: 0;
	padding: 0 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
	pointer-events: none;
	position: fixed;
	transform: translateY(calc(100% + 0.65rem));
	transition:
		opacity 180ms ease,
		transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
	width: 100%;
	z-index: 950;
}

.site-scroll-footer-cta.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.site-scroll-footer-cta__inner {
	align-items: center;
	background: rgba(255, 248, 240, 0.96);
	border: 1px solid rgba(76, 44, 22, 0.12);
	border-radius: 1rem;
	box-shadow:
		0 14px 30px rgba(36, 24, 16, 0.16),
		inset 0 0 0 1px rgba(255, 255, 255, 0.42);
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin: 0 auto;
	max-width: min(calc(100vw - 1.5rem), 30rem);
	padding: 0.7rem 0.75rem;
	width: fit-content;
}

.site-scroll-footer-cta__label {
	color: #6d5648;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-scroll-footer-cta__actions {
	display: flex;
	gap: 0.55rem;
	justify-content: center;
	width: auto;
}

.site-scroll-footer-cta__link {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.7rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.12em;
	line-height: 1.3;
	min-height: 2.75rem;
	padding: 0.7rem 0.85rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	width: auto;
}

.site-scroll-footer-cta__link-text--short {
	display: none;
}

.site-scroll-footer-cta__link--secondary {
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(76, 44, 22, 0.12);
	color: #4c2c16;
}

.site-scroll-footer-cta__link--primary {
	background: linear-gradient(135deg, #d78115, #e98537);
	border: 1px solid rgba(117, 63, 14, 0.22);
	color: #fffaf1;
}

.site-scroll-footer-cta__link--secondary:hover,
.site-scroll-footer-cta__link--secondary:focus {
	background: #ffffff;
	color: #2f1a0d;
}

.site-scroll-footer-cta__link--primary:hover,
.site-scroll-footer-cta__link--primary:focus {
	background: linear-gradient(135deg, #c87411, #df7b2d);
	color: #fffaf1;
}

@media (min-width: 768px) {
	.site-scroll-footer-cta {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.site-scroll-footer-cta__inner {
		border-radius: 1rem;
		flex-direction: row;
		gap: 0.65rem;
		justify-content: center;
		max-width: 34rem;
		padding: 0.75rem 0.85rem 0.75rem 0.95rem;
	}

	.site-scroll-footer-cta__label {
		font-size: 0.66rem;
		letter-spacing: 0.16em;
	}

	.site-scroll-footer-cta__actions {
		flex: 0 0 auto;
		gap: 0.5rem;
		min-width: 0;
	}

	.site-scroll-footer-cta__link {
		font-size: 0.72rem;
		letter-spacing: 0.12em;
		min-height: 2.75rem;
		min-width: 0;
		padding: 0.75rem 1rem;
	}
}

@media (max-width: 639px) {
	.site-scroll-footer-cta {
		padding: 0 0.35rem calc(0.3rem + env(safe-area-inset-bottom, 0px));
	}

	.site-scroll-footer-cta__inner {
		border-radius: 0.8rem;
		gap: 0.3rem;
		max-width: calc(100vw - 0.7rem);
		padding: 0.35rem 0.45rem;
	}

	.site-scroll-footer-cta__label {
		display: none;
	}

	.site-scroll-footer-cta__actions {
		gap: 0.3rem;
	}

	.site-scroll-footer-cta__link {
		font-size: 0.6rem;
		min-height: 2rem;
		padding: 0.4rem 0.55rem;
		letter-spacing: 0.08em;
	}

	.site-scroll-footer-cta__link-text--full {
		display: none;
	}

	.site-scroll-footer-cta__link-text--short {
		display: inline;
	}
}

@media (max-width: 479px) {
	.site-scroll-footer-cta {
		padding: 0 0.25rem calc(0.25rem + env(safe-area-inset-bottom, 0px));
	}

	.site-scroll-footer-cta__inner {
		border-radius: 0.75rem;
		gap: 0.25rem;
		max-width: calc(100vw - 0.5rem);
		padding: 0.3rem 0.4rem;
	}

	.site-scroll-footer-cta__link {
		font-size: 0.58rem;
		min-height: 1.9rem;
		padding: 0.35rem 0.5rem;
		letter-spacing: 0.06em;
	}
}

[data-theme='dark'] .site-scroll-footer-cta__inner {
	background: rgba(16, 23, 21, 0.94);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.36),
		inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

[data-theme='dark'] .site-scroll-footer-cta__label {
	color: #d9c7b7;
}

[data-theme='dark'] .site-scroll-footer-cta__link--secondary {
	background: rgba(34, 48, 45, 0.92);
	border-color: rgba(255, 255, 255, 0.12);
	color: #f2ebdf;
}

[data-theme='dark'] .site-scroll-footer-cta__link--secondary:hover,
[data-theme='dark'] .site-scroll-footer-cta__link--secondary:focus {
	background: rgba(43, 60, 56, 0.98);
	color: #fffaf1;
}

.site-footer-links--comprehensive {
	box-sizing: border-box;
	display: block;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem) 0;
	width: 100vw;
}

.site-footer-links__panel--comprehensive {
	background: #efe6d3;
	background-image: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
	max-width: none;
	padding: clamp(1.4rem, 3.5vw, 2.6rem);
	width: 100%;
}

.site-footer-links__grid {
	align-items: start;
	display: grid;
	gap: 1.2rem;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	width: 100%;
}

.site-footer-links__block {
	background: transparent;
	border: 0;
	border-radius: 0;
	min-width: 0;
	padding: 0;
}

.site-footer-links__title {
	color: #2f1a0d;
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.9rem;
}

.site-footer-links__title a {
	color: inherit;
	text-decoration: none;
}

.site-footer-links__copy {
	color: #4f3a2a;
	font-size: 0.98rem;
	line-height: 1.65;
}

.site-footer-links__copy p {
	margin: 0 0 0.95rem;
}

.site-footer-links__copy p:last-child {
	margin-bottom: 0;
}

.site-footer-links__copy a {
	color: #2f1a0d;
	font-weight: 600;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

.site-footer-links__prices {
	display: grid;
	gap: 0.65rem;
	margin: 0 0 1rem;
}

.site-footer-links__price-row {
	align-items: baseline;
	border-bottom: 1px solid rgba(76, 44, 22, 0.1);
	column-gap: 1rem;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	padding-bottom: 0.6rem;
}

.site-footer-links__price-row dt,
.site-footer-links__price-row dd {
	margin: 0;
}

.site-footer-links__price-row dd {
	color: #2f1a0d;
	font-weight: 700;
	white-space: nowrap;
}

.site-footer-links__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1rem;
}

.site-footer-links__socials .site-social-button {
	align-items: center;
	background: rgba(47, 26, 13, 0.06);
	border: 1px solid rgba(76, 44, 22, 0.1);
	border-radius: 999px;
	color: #2f1a0d;
	display: inline-flex;
	gap: 0.45rem;
	padding: 0.65rem 0.9rem;
	text-decoration: none;
}

.site-footer-links__socials .site-social-button svg {
	flex: 0 0 auto;
	height: 1rem;
	width: 1rem;
}

.site-footer-links__copy--newsletter {
	display: grid;
	gap: 0.9rem;
}

.site-footer-links__copy--newsletter .site-newsletter__form {
	margin-top: 0;
}

.site-footer-links__copy--newsletter input[type='email'],
.site-footer-links__copy--newsletter input[type='text'] {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(76, 44, 22, 0.14);
	border-radius: 999px;
	min-height: 3rem;
	padding: 0.7rem 1rem;
	width: 100%;
}

.site-footer-links__copy--newsletter input[type='submit'],
.site-footer-links__copy--newsletter button,
.site-footer-links__copy--newsletter .button,
.site-footer-links__copy--newsletter .mc4wp-form-fields button {
	background: #111;
	border: 1px solid #111;
	border-radius: 999px;
	color: #fffaf1;
	min-height: 3rem;
	padding: 0.75rem 1.2rem;
	text-transform: uppercase;
}

@media (min-width: 700px) {
	.site-footer-links__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.site-footer-links__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 639px) {
	.site-footer-links__panel--comprehensive {
		padding: 1rem;
	}

	.site-footer-links__block {
		padding: 0;
	}

	.site-footer-links__price-row {
		grid-template-columns: 1fr;
		row-gap: 0.25rem;
	}
}

[data-theme='dark'] .site-footer-links__panel--comprehensive {
	background: #111a24;
	background-image: none;
	box-shadow: none;
}

[data-theme='dark'] .site-footer-links__block {
	background: transparent;
	border-color: transparent;
}

[data-theme='dark'] .site-footer-links__title,
[data-theme='dark'] .site-footer-links__copy a,
[data-theme='dark'] .site-footer-links__price-row dd,
[data-theme='dark'] .site-footer-links__socials .site-social-button {
	color: #f2ebdf;
}

[data-theme='dark'] .site-footer-links__copy {
	color: #d2c4b5;
}

[data-theme='dark'] .site-footer-links__price-row {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme='dark'] .site-footer-links__socials .site-social-button {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] .site-footer-links__copy--newsletter input[type='email'],
[data-theme='dark'] .site-footer-links__copy--newsletter input[type='text'] {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	color: #f2ebdf;
}

[data-theme='dark'] .site-footer-links__copy--newsletter input[type='submit'],
[data-theme='dark'] .site-footer-links__copy--newsletter button,
[data-theme='dark'] .site-footer-links__copy--newsletter .button,
[data-theme='dark'] .site-footer-links__copy--newsletter .mc4wp-form-fields button {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(255, 255, 255, 0.92);
	color: #111;
}

.site-header-shell {
	border-radius: 0 !important;
	color: #2b1d15;
	display: flex !important;
	flex-direction: column !important;
	gap: 1rem !important;
	background: rgba(255, 255, 255, 0.96) !important;
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 233, 0.96)) !important;
	box-shadow: 0 18px 45px rgba(57, 37, 22, 0.12), 0 0 48px rgba(231, 195, 132, 0.12) !important;
	isolation: isolate;
	padding: 1rem 1rem 1.1rem !important;
	position: relative;
	z-index: 1100;
}

.site-header__toprow {
	align-items: center;
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	width: 100%;
}

.site-header__toprow-side {
	display: flex;
	min-width: 0;
}

.site-header__toprow-side--start {
	justify-content: flex-start;
}

.site-header__toprow-side--end {
	justify-content: flex-end;
}

.site-header__toolbar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.site-header__toolbar--tools {
	justify-content: flex-end;
	margin-left: auto;
}

.site-header__toolbar--cta {
	justify-content: flex-end;
}

.site-header__utilities {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem !important;
	justify-content: flex-end;
}

.site-header__brand {
	display: inline-flex !important;
	justify-content: center;
	justify-self: center;
	text-align: center;
}

.site-header__brand-image {
	max-width: clamp(14rem, 24vw, 18rem) !important;
}

.site-header__brand-image--light {
	display: block !important;
}

.site-header__brand-image--dark {
	display: none !important;
}

.site-header__bottomrow {
	border-top: 1px solid rgba(76, 44, 22, 0.12);
	padding-top: 0.95rem;
	position: relative;
	width: 100%;
	z-index: 1105;
}

.site-header__desktop {
	position: relative;
	width: 100%;
	z-index: 1110;
}

.site-megamenu {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem;
	position: relative;
	z-index: 1115;
}

.site-megamenu__list {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 0.35rem 0.45rem !important;
	justify-content: center;
	min-width: 0;
	position: relative;
}

.site-megamenu__meta {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	flex-wrap: nowrap;
	gap: 0.75rem;
	justify-content: flex-end;
	margin-left: auto;
}

.site-megamenu__contact {
	position: relative;
}

.site-megamenu__contact > summary {
	list-style: none;
}

.site-megamenu__contact > summary::-webkit-details-marker {
	display: none;
}

.site-megamenu__contact-summary {
	align-items: center;
	background: rgba(255, 250, 244, 0.78);
	border: 1px solid rgba(76, 44, 22, 0.08);
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	gap: 0.45rem;
	padding: 0.48rem 0.7rem 0.48rem 0.85rem;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease;
}

.site-megamenu__contact-summary:hover,
.site-megamenu__contact-summary:focus-visible,
.site-megamenu__contact[open] .site-megamenu__contact-summary {
	background: rgba(255, 250, 244, 0.96);
	border-color: rgba(243, 164, 68, 0.38);
	box-shadow: 0 10px 24px rgba(111, 82, 43, 0.12);
	outline: none;
}

.site-megamenu__contact-summary-label {
	color: #473a32;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-megamenu__contact-summary-caret {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	color: #6b5a50;
	display: inline-block;
	height: 0.5rem;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.2s ease;
	width: 0.5rem;
}

.site-megamenu__contact[open] .site-megamenu__contact-summary-caret {
	transform: rotate(225deg) translateY(1px);
}

.site-megamenu__contact-panel {
	background: rgba(255, 250, 244, 0.98);
	border: 1px solid rgba(44, 34, 26, 0.12);
	border-radius: 1rem;
	box-shadow: 0 16px 32px rgba(17, 17, 17, 0.12);
	display: grid;
	gap: 0.6rem;
	min-width: 18rem;
	opacity: 0;
	padding: 0.8rem;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: calc(100% + 0.55rem);
	transform: translateY(0.35rem);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s ease;
	visibility: hidden;
	z-index: 25;
}

.site-megamenu__contact[open] .site-megamenu__contact-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.site-megamenu__contact-heading {
	color: #6b5a50;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0;
	text-transform: uppercase;
}

.site-megamenu__contact-items {
	display: grid;
	gap: 0.35rem;
}

.site-megamenu__contact-item {
	align-items: baseline;
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid rgba(44, 34, 26, 0.07);
	border-radius: 0.8rem;
	color: #473a32;
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem 0.45rem;
	padding: 0.55rem 0.7rem;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.site-megamenu__contact-item:hover,
.site-megamenu__contact-item:focus-visible {
	background: rgba(243, 164, 68, 0.16);
	border-color: rgba(243, 164, 68, 0.38);
	color: #2b1d15;
}

.site-megamenu__contact-label,
.site-mobile-nav__contact-heading,
.site-mobile-nav__contact-label {
	color: #6b5a50;
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.1;
	text-transform: uppercase;
}

.site-megamenu__contact-value {
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.2;
}

.site-megamenu__contact-link {
	color: #624615;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding-right: 0.2rem;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-megamenu__contact-link:hover,
.site-megamenu__contact-link:focus-visible {
	color: #2b1d15;
	text-decoration: underline;
}

.site-megamenu__item {
	position: relative;
}

.site-megamenu__toplink {
	color: rgba(43, 29, 21, 0.82) !important;
	font-size: 0.96rem !important;
	letter-spacing: 0.12em !important;
	padding: 0.78rem 1.1rem !important;
	text-transform: uppercase !important;
}

.site-megamenu__item:hover > .site-megamenu__toplink,
.site-megamenu__item:focus-within > .site-megamenu__toplink,
.site-megamenu__item.is-active > .site-megamenu__toplink,
.site-megamenu__item.is-mega-current > .site-megamenu__toplink {
	background: linear-gradient(135deg, rgba(244, 232, 203, 0.92), rgba(236, 222, 192, 0.88));
	box-shadow: 0 10px 24px rgba(111, 82, 43, 0.12);
	color: #2b1d15 !important;
}

.site-header__search {
	align-items: center;
	background: rgba(255, 250, 244, 0.96) !important;
	border: 1px solid rgba(76, 44, 22, 0.12) !important;
	border-radius: 999px !important;
	box-shadow: 0 10px 22px rgba(86, 62, 34, 0.08) !important;
	display: inline-flex;
	gap: 0.45rem;
	min-height: 2.9rem;
	overflow: hidden;
	padding: 0.22rem 0.24rem 0.22rem 0.85rem !important;
}

.site-header__search:focus-within {
	border-color: rgba(143, 99, 69, 0.24) !important;
	box-shadow: 0 12px 24px rgba(86, 62, 34, 0.12) !important;
}

.site-header__search-input {
	color: #2b1d15 !important;
	font-size: 0.76rem !important;
	letter-spacing: 0.04em;
	line-height: 1;
	width: 10rem !important;
}

.site-header__search-button {
	background: rgba(43, 29, 21, 0.08) !important;
	border: 0 !important;
	border-radius: 999px !important;
	color: #fffaf1 !important;
	font-size: 0.72rem !important;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1;
	min-height: 2.35rem;
	padding: 0.68rem 0.95rem !important;
	text-transform: uppercase;
}

.site-header__search:focus-within .site-header__search-button {
	background: #111 !important;
	color: #fffaf1 !important;
}

.site-header__lang-summary,
.site-theme-toggle,
.site-header__tickets,
.site-header__donate {
	align-items: center;
	background: rgba(255, 250, 244, 0.96) !important;
	border: 1px solid rgba(76, 44, 22, 0.12) !important;
	border-radius: 999px !important;
	box-shadow: 0 10px 22px rgba(86, 62, 34, 0.08) !important;
	color: #3b2a1d !important;
	display: inline-flex !important;
	font-size: 0.72rem;
	font-weight: 700;
	gap: 0.55rem;
	justify-content: center;
	letter-spacing: 0.16em;
	line-height: 1;
	min-height: 2.9rem;
	padding: 0.72rem 1rem !important;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-header__lang-summary {
	list-style: none;
	padding-right: 0.9rem !important;
}

.site-header__lang-summary::-webkit-details-marker {
	display: none;
}

.site-theme-toggle {
	height: auto !important;
	width: auto !important;
}

.site-theme-toggle__icons {
	height: 1rem;
	position: relative;
	width: 1rem;
}

.site-theme-toggle__icon {
	align-items: center;
	display: inline-flex;
	height: 1rem;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 0;
	width: 1rem;
}

.site-theme-toggle__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1;
	text-transform: uppercase;
}

.site-header__lang-panel {
	background: rgba(255, 250, 244, 0.98) !important;
	border-color: rgba(76, 44, 22, 0.1) !important;
}

.site-header__lang-link {
	color: #2b1d15 !important;
}

.site-header__tickets,
.site-header__donate {
	padding-inline: 1.05rem !important;
}

.site-header__donate {
	color: #2b1d15 !important;
	ring-color: transparent !important;
}

.site-header__tickets {
	background: #111 !important;
	border-color: #111 !important;
	box-shadow: 0 10px 22px rgba(32, 22, 16, 0.18) !important;
	color: #111;
	color: #fffaf1 !important;
}

.site-header__tickets:hover,
.site-header__tickets:focus {
	background: #221712 !important;
	color: #fffaf1 !important;
}

.site-header__donate-icon,
.site-header__tickets-icon {
	align-items: center;
	background: rgba(43, 29, 21, 0.08) !important;
	border-radius: 999px;
	display: inline-flex;
	height: 1.8rem;
	justify-content: center;
	width: 1.8rem;
}

.site-header__donate-icon {
	color: #8f5a50 !important;
}

.site-header__tickets-icon svg {
	height: 0.95rem;
	width: 0.95rem;
}

.site-header__tickets-icon {
	background: rgba(255, 255, 255, 0.12) !important;
}

@media (min-width: 1024px) {
	.site-megamenu__panel {
		left: 50% !important;
		position: absolute;
		right: auto !important;
		width: fit-content;
		min-width: min(48rem, calc(100vw - 4rem));
		max-width: calc(100vw - 4rem);
		transform: translateX(-50%) translateY(0.75rem);
		z-index: 1200;
	}

	.site-megamenu__panel-inner {
		margin: 0 auto;
		width: fit-content;
		max-width: calc(100vw - 4rem);
	}

	.site-megamenu__panel-grid {
		column-gap: 1rem;
		grid-template-columns: minmax(18rem, 21rem) repeat(auto-fit, minmax(12rem, 15rem));
		justify-content: start;
		width: fit-content;
	}

	.site-megamenu.is-mega-open .site-megamenu__item.is-mega-current > .site-megamenu__panel,
	.site-megamenu__item:focus-within > .site-megamenu__panel,
	.site-megamenu__item:hover > .site-megamenu__panel {
		transform: translateX(-50%) translateY(0);
	}

	.site-megamenu.is-mega-open .site-megamenu__item.is-mega-current,
	.site-megamenu__item:focus-within,
	.site-megamenu__item:hover {
		z-index: 1210;
	}
}

@media (max-width: 1023px) {
	.site-header-shell {
		gap: 0.85rem !important;
	}

	.site-header__toprow {
		display: block;
	}

	.site-header__toprow-side,
	.site-header__bottomrow {
		display: none;
	}

	.site-header__brand {
		display: flex !important;
		width: 100%;
	}

	.site-header__brand-image {
		margin: 0 auto;
		max-width: clamp(13rem, 58vw, 18rem) !important;
	}
}

@media (min-width: 1024px) {
	.site-header__mobile {
		display: none !important;
	}

	.site-header__desktop {
		display: block !important;
	}
}

[data-theme='dark'] .site-header__bottomrow {
	border-top-color: rgba(255, 255, 255, 0.12);
}

[data-theme='dark'] .site-header-shell {
	color: #f5efe5;
	background: #0e1621 !important;
	background-image: linear-gradient(180deg, rgba(15, 24, 35, 0.98), rgba(9, 15, 23, 0.97)) !important;
	box-shadow: 0 18px 45px rgba(2, 6, 12, 0.38), 0 0 56px rgba(118, 154, 197, 0.14) !important;
}

[data-theme='dark'] .site-header__brand-image--light {
	display: none !important;
}

[data-theme='dark'] .site-header__brand-image--dark {
	display: block !important;
}

[data-theme='dark'] .site-megamenu__toplink {
	color: rgba(245, 239, 229, 0.84) !important;
}

[data-theme='dark'] .site-header__search {
	background: rgba(211, 226, 242, 0.08) !important;
	border-color: rgba(211, 226, 242, 0.14) !important;
	box-shadow: none !important;
}

[data-theme='dark'] .site-header__search:focus-within {
	border-color: rgba(215, 194, 160, 0.26) !important;
	box-shadow: 0 0 0 1px rgba(215, 194, 160, 0.1) !important;
}

[data-theme='dark'] .site-header__search-input {
	color: #f5efe5 !important;
}

[data-theme='dark'] .site-header__search-button {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #eff3f7 !important;
}

[data-theme='dark'] .site-header__search:focus-within .site-header__search-button {
	background: #d7c2a0 !important;
	color: #15202d !important;
}

[data-theme='dark'] .site-header__lang-summary,
[data-theme='dark'] .site-theme-toggle,
[data-theme='dark'] .site-header__donate {
	background: rgba(211, 226, 242, 0.08) !important;
	border-color: rgba(211, 226, 242, 0.14) !important;
	box-shadow: none !important;
	color: #eff3f7 !important;
}

[data-theme='dark'] .site-header__lang-panel {
	background: rgba(12, 20, 30, 0.98) !important;
	border-color: rgba(211, 226, 242, 0.1) !important;
}

[data-theme='dark'] .site-header__lang-link {
	color: #f5efe5 !important;
}

[data-theme='dark'] .site-header__donate-icon {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #f1d9d2 !important;
}

[data-theme='dark'] .site-megamenu__group--overview {
	background: linear-gradient(160deg, rgba(18, 18, 18, 0.96), rgba(36, 36, 36, 0.92));
}

[data-theme='dark'] .site-megamenu__group--overview.site-megamenu__group--has-image {
	background-image:
		linear-gradient(160deg, rgba(8, 8, 8, 0.46), rgba(20, 20, 20, 0.18)),
		var(--site-megamenu-overview-image) !important;
	background-position: center;
	background-size: cover;
}

[data-theme='dark'] .site-megamenu__links-grid {
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
	justify-content: start;
}

[data-theme='dark'] .site-megamenu__feature-link {
	line-height: 1.45;
	min-height: 100%;
	padding: 1rem 1rem !important;
}

[data-theme='dark'] .site-megamenu__link-copy {
	line-height: 1.55;
}

body.home .home-hero {
	--section-parallax-offset: 0px;
	background-color: #f7f1e6;
	background-image: none;
	box-shadow: none;
	will-change: background-position;
}

body.home .home-journeys {
	--section-parallax-offset: 0px;
	background-color: #f4eadc;
	background-image: url("../home-journeys-light.svg");
	background-position: center calc(50% + var(--section-parallax-offset));
	background-repeat: no-repeat;
	background-size: cover;
	border-top: 1px solid rgba(76, 44, 22, 0.08);
	box-shadow: none;
	will-change: background-position;
}

body.home .home-practical {
	--section-parallax-offset: 0px;
	background-color: #dfe6df;
	background-image: url("../home-practical-light.svg");
	background-position: center calc(50% + var(--section-parallax-offset));
	background-repeat: no-repeat;
	background-size: cover;
	border-top: 1px solid rgba(33, 23, 18, 0.08);
	box-shadow: none;
	will-change: background-position;
}

body.home .home-game-cta {
	--section-parallax-offset: 0px;
	background-color: #18110d;
	background-image: url("../home-game-light.svg");
	background-position: center calc(50% + var(--section-parallax-offset));
	background-repeat: no-repeat;
	background-size: cover;
	border-top: 1px solid rgba(215, 129, 21, 0.16);
	box-shadow: none;
	will-change: background-position;
}

body.home .home-hero::before {
	background:
		linear-gradient(115deg, rgba(247, 241, 230, 0.96) 0%, rgba(240, 231, 215, 0.84) 42%, rgba(247, 241, 230, 0) 42.1%),
		radial-gradient(circle at top right, rgba(214, 122, 37, 0.16), transparent 28%),
		repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.52) 0, rgba(255, 250, 242, 0.52) 1px, transparent 1px, transparent calc(14.285% - 2px), rgba(120, 90, 60, 0.08) calc(14.285% - 2px), rgba(120, 90, 60, 0.08) 14.285%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

body.home .home-hero__video {
	filter: brightness(1.12) saturate(0.88) contrast(0.9);
	transition:
		opacity 180ms ease,
		transform 260ms ease,
		filter 220ms ease;
}

body.home .home-hero__slat-link:hover .home-hero__video,
body.home .home-hero__slat-link:focus-visible .home-hero__video {
	filter: none;
}

body.home .home-journeys::before {
	content: none;
}

body.home .home-practical::before {
	content: none;
}

body.home .home-game-cta::before {
	content: none;
}

@media (min-width: 1024px) {
	body.home .home-game-cta__actions {
		align-items: center;
		grid-column: 1 / -1;
		margin-top: 0.35rem;
		text-align: center;
	}

	body.home .home-game-cta__actions .home-game-cta__meta {
		max-width: 32rem;
	}
}

[data-theme='dark'] body.home .home-hero {
	background-color: #050505;
	background-image: none;
	box-shadow: none;
}

[data-theme='dark'] body.home .home-hero__video {
	filter: none;
}

[data-theme='dark'] body.home .home-hero::before {
	background:
		linear-gradient(115deg, rgba(8, 11, 11, 0.96) 0%, rgba(17, 25, 23, 0.84) 42%, rgba(8, 11, 11, 0) 42.1%),
		radial-gradient(circle at top right, rgba(243, 164, 68, 0.14), transparent 28%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0, rgba(255, 255, 255, 0.11) 1px, transparent 1px, transparent calc(14.285% - 2px), rgba(0, 0, 0, 0.14) calc(14.285% - 2px), rgba(0, 0, 0, 0.14) 14.285%);
}

[data-theme='dark'] body.home .home-journeys {
	background-color: #161c1b;
	background-image: url("../home-journeys-dark.svg");
	border-top-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

[data-theme='dark'] body.home .home-practical {
	background-color: #1b2221;
	background-image: url("../home-practical-dark.svg");
	border-top-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

[data-theme='dark'] body.home .home-game-cta {
	background-color: #050505;
	background-image: url("../home-game-dark.svg");
	border-top-color: rgba(243, 164, 68, 0.18);
	box-shadow: none;
}

body.home .home-journeys__lane--events {
	background: rgba(244, 231, 203, 0.94);
	border-left: 4px solid rgba(194, 135, 55, 0.64);
	box-shadow: none;
	padding: 1.15rem;
}

body.home .home-journeys__lane--groups {
	background: rgba(220, 232, 214, 0.94);
	border-left: 4px solid rgba(86, 112, 74, 0.48);
	box-shadow: none;
	padding: 1.15rem;
}

body.home .home-journeys__lane--business {
	background: rgba(224, 233, 238, 0.94);
	border-left: 4px solid rgba(78, 108, 126, 0.5);
	box-shadow: none;
	padding: 1.15rem;
}

body.home .home-journeys__news-row {
	display: grid;
	gap: 0.85rem;
	margin-top: 0.35rem;
}

body.home .home-journeys__news-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

[data-theme='dark'] body.home .home-journeys__lane--events {
	background: rgba(33, 27, 24, 0.96);
	border-left-color: rgba(214, 183, 136, 0.62);
	box-shadow: none;
}

[data-theme='dark'] body.home .home-journeys__lane--groups {
	background: rgba(23, 32, 39, 0.96);
	border-left-color: rgba(145, 174, 173, 0.48);
	box-shadow: none;
}

[data-theme='dark'] body.home .home-journeys__lane--business {
	background: rgba(24, 31, 38, 0.96);
	border-left-color: rgba(151, 181, 198, 0.46);
	box-shadow: none;
}

body.home .home-journeys--big-titles {
	gap: 2.25rem;
}

body.home .home-journeys--big-titles .home-journeys__lane {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
}

body.home .home-journeys--big-titles .home-journeys__lane-intro {
	border-bottom: 1px solid rgba(215, 129, 21, 0.18);
	max-width: 44rem;
	padding-bottom: 1rem;
	position: static;
}

body.home .home-journeys--big-titles .home-journeys__lane-label--section {
	color: #2f2b28;
	display: block;
	font-size: clamp(2.4rem, 4.8vw, 5rem);
	font-weight: 700;
	letter-spacing: -0.08em;
	line-height: 0.92;
	margin-bottom: 0;
	max-width: 14ch;
	text-transform: none;
}

body.home .home-journeys--big-titles .home-journeys__lane-title {
	font-size: clamp(1.2rem, 2vw, 1.85rem);
	line-height: 1.1;
	max-width: 28ch;
}

body.home .home-journeys--big-titles .home-journeys__lane--groups {
	margin-left: 0;
}

body.home .home-journeys--big-titles .home-journeys__lane--groups .home-journeys__lane-intro,
body.home .home-journeys--big-titles .home-journeys__lane--groups .home-journeys__cards {
	order: 0;
}

[data-theme='dark'] body.home .home-journeys--big-titles .home-journeys__lane-intro {
	border-bottom-color: rgba(243, 164, 68, 0.18);
}

[data-theme='dark'] body.home .home-journeys--big-titles .home-journeys__lane-label--section {
	color: #fff8ef;
}

body.home .home-practical__intro {
	margin-left: 0;
	max-width: none;
}

body.home .home-practical__title {
	max-width: none;
}

body.home .site-newsletter::before,
body.home .site-footer-links::before {
	content: none;
}

[data-theme='dark'] .site-header__tickets {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 236, 231, 0.96));
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
	color: #111;
}

[data-theme='dark'] .site-header__tickets:hover,
[data-theme='dark'] .site-header__tickets:focus {
	background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(247, 244, 239, 0.98));
	color: #111;
}

[data-theme='dark'] .site-header__tickets-icon {
	background: rgba(17, 17, 17, 0.08);
}

body.home .home-news-list {
	align-items: stretch;
	display: grid;
	gap: 0.75rem;
	grid-auto-columns: minmax(10.5rem, 12.5rem);
	grid-auto-flow: column;
	grid-auto-rows: 12rem;
	overflow-x: auto;
	padding-bottom: 0.2rem;
	scroll-snap-type: x proximity;
}

body.home .home-news-item {
	align-content: start;
	background: rgba(255, 255, 255, 0.52);
	border: 1px solid rgba(76, 44, 22, 0.08);
	border-top: 0;
	gap: 0.4rem;
	height: 100%;
	min-height: 12.5rem;
	padding: 0.65rem;
	position: relative;
	scroll-snap-align: start;
}

body.home .home-news-item:first-child {
	padding-top: 0.65rem;
}

body.home .home-news-item--with-image {
	background: #1b1715;
	border: 0;
	grid-template-columns: 1fr;
	overflow: hidden;
	padding: 0;
}

body.home .home-news-item__main {
	display: grid;
	gap: 0.2rem;
}

body.home .home-news-item--with-image .home-news-item__main {
	align-content: end;
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.82) 72%, rgba(8, 8, 8, 0.94));
	bottom: 0;
	left: 0;
	padding: 0.75rem;
	position: absolute;
	right: 0;
	z-index: 2;
}

body.home .home-news-item__title {
	display: -webkit-box;
	font-size: clamp(0.82rem, 0.95vw, 0.95rem);
	line-height: 1.15;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body.home .home-news-item--with-image .home-news-item__title,
body.home .home-news-item--with-image .home-news-item__title a {
	color: #fff8ef;
}

body.home .home-news-item__meta {
	font-size: 0.62rem;
	letter-spacing: 0.14em;
	margin: 0.2rem 0 0;
}

body.home .home-news-item--with-image .home-news-item__meta {
	color: rgba(255, 230, 190, 0.82);
	margin-top: 0.15rem;
}

body.home .home-news-item__excerpt {
	display: none;
}

body.home .home-news-item__media {
	min-height: 0;
}

body.home .home-news-item--with-image .home-news-item__media,
body.home .home-news-item--with-image .home-news-item__image-link {
	align-items: center;
	background: #120f0d;
	display: flex;
	height: 100%;
	inset: 0;
	justify-content: center;
	position: absolute;
	width: 100%;
}

body.home .home-news-item__image {
	height: 100%;
	min-height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 0.35rem;
	width: 100%;
}

body.home .home-practical__news-footer {
	padding-top: 0.45rem;
}

body.home .home-practical__news {
	gap: 0.75rem;
	padding: 0.85rem;
}

body.home .home-practical__heading {
	margin-bottom: 0.1rem;
}

body.home .home-practical__news-title {
	max-width: none;
}

body.home .home-practical__news,
body.home .home-practical__stack {
	grid-column: 1 / -1;
}

@media (min-width: 1024px) {
	body.home .home-practical__stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-left: 0;
	}

	body.home .home-practical__panel--location {
		margin-left: 0;
	}
}

body.home .home-practical__panel--location {
	align-content: stretch;
	gap: 0;
	min-height: clamp(22rem, 42vw, 30rem);
	overflow: hidden;
	padding: 0;
	position: relative;
}

body.home .home-practical__map-wrap--location {
	height: 100%;
	isolation: isolate;
	min-height: inherit;
	position: relative;
}

body.home .home-practical__map-wrap--location .acf-map {
	border: 0;
	height: 100%;
	margin: 0;
	min-height: inherit;
	width: 100%;
}

body.home .home-practical__map-wrap--location .acf-map > div {
	height: 100%;
}

body.home .home-practical__map-overlay {
	align-content: end;
	background:
		linear-gradient(180deg, rgba(13, 18, 19, 0.08) 0%, rgba(13, 18, 19, 0.26) 32%, rgba(13, 18, 19, 0.82) 100%);
	display: grid;
	gap: 0.85rem;
	inset: 0;
	padding: clamp(1.1rem, 3vw, 1.7rem);
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

body.home .home-practical__map-overlay a {
	pointer-events: auto;
}

/* Google Maps short link: pin icon + label (shared with map-section) */
.home-google-maps-link {
	align-items: center;
	gap: 0.65rem;
}

.home-google-maps-link::after {
	content: none;
}

.home-google-maps-link__pin {
	flex-shrink: 0;
	height: 1.1rem;
	position: relative;
	width: auto;
	z-index: 1;
}

.home-google-maps-link span {
	position: relative;
	z-index: 1;
}

body.home .home-practical__map-overlay .home-google-maps-link {
	align-self: start;
	margin-top: 0.15rem;
}

.map-section__panel--location .home-google-maps-link {
	margin-top: 0.85rem;
}

body.home .home-practical__panel--location .home-practical__panel-head {
	max-width: 22rem;
}

body.home .home-practical__panel--location .home-practical__panel-copy {
	color: rgba(244, 236, 224, 0.92);
	max-width: 28rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.home .home-practical__panel--location .home-practical__panel-title,
body.home .home-practical__panel--location .home-practical__panel-title a {
	color: #fff7ed;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

[data-theme='dark'] body.home .home-practical__panel--location {
	background: #101821;
}

[data-theme='dark'] body.home .home-practical__map-overlay {
	background:
		linear-gradient(180deg, rgba(8, 14, 22, 0.04) 0%, rgba(8, 14, 22, 0.22) 28%, rgba(8, 14, 22, 0.86) 100%);
}

[data-theme='dark'] body.home .home-practical__panel--location .home-practical__panel-copy {
	color: rgba(239, 232, 220, 0.88);
}

[data-theme='dark'] body.home .home-news-item {
	background: rgba(34, 48, 45, 0.74);
	border-color: rgba(255, 255, 255, 0.08);
}

[data-theme='dark'] body.home .home-news-item--with-image {
	background: #050505;
}

/* Journeys: compact cards in Üksikkülastajale lane only; groups lane uses default card styling */
body.home .home-journeys__lane--events .home-journeys__cards,
body.home .home-journeys__lane--groups .home-journeys__cards {
	align-items: stretch;
	grid-template-columns: 1fr;
}

body.home .home-journeys__lane--events .home-journeys__cards {
	gap: 1.15rem;
}

body.home .home-journeys__lane--groups .home-journeys__cards {
	gap: 1rem;
}

body.home .home-journeys__cards > *:nth-child(2n),
body.home .home-journeys__cards > *:nth-child(3n) {
	margin-left: 0;
	margin-top: 0;
}

body.home .home-journeys__lane--events .home-event-card,
body.home .home-journeys__lane--events .home-activity-card--news {
	background: linear-gradient(165deg, #fffefb 0%, #faf5ec 48%, #f3ede2 100%);
	border: 1px solid rgba(194, 135, 55, 0.22);
	border-left: 1px solid rgba(194, 135, 55, 0.22);
	border-radius: clamp(0.8rem, 2.4vw, 1.1rem);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.75) inset,
		0 14px 36px rgba(59, 42, 28, 0.07),
		0 4px 14px rgba(59, 42, 28, 0.04);
	overflow: hidden;
	transition:
		border-color 220ms ease,
		box-shadow 220ms ease,
		transform 220ms ease;
}

body.home .home-journeys__lane--events .home-event-card:hover,
body.home .home-journeys__lane--events .home-event-card:focus-within,
body.home .home-journeys__lane--events .home-activity-card--news:hover,
body.home .home-journeys__lane--events .home-activity-card--news:focus-within {
	border-color: rgba(215, 129, 21, 0.38);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85) inset,
		0 22px 48px rgba(59, 42, 28, 0.08),
		0 8px 22px rgba(215, 129, 21, 0.09);
	transform: translateY(-3px);
}

body.home .home-journeys__lane--events .home-event-card {
	grid-template-rows: minmax(6.25rem, 7.25rem) auto;
}

body.home .home-journeys__lane--events .home-event-card__media,
body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__media {
	background-position: center;
	background-size: cover;
	min-height: 6.5rem;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home .home-journeys__lane--events .home-event-card:hover .home-event-card__media,
body.home .home-journeys__lane--events .home-event-card:focus-within .home-event-card__media,
body.home .home-journeys__lane--events .home-activity-card--news:hover .home-activity-card__media,
body.home .home-journeys__lane--events .home-activity-card--news:focus-within .home-activity-card__media {
	transform: scale(1.045);
}

body.home .home-journeys__lane--events .home-event-card__content {
	align-items: start;
	display: grid;
	gap: 0.55rem;
	grid-template-columns: 1fr;
	padding: 0.85rem 0.95rem 1rem;
}

body.home .home-journeys__lane--events .home-event-card__date {
	align-items: baseline;
	background: linear-gradient(135deg, rgba(255, 248, 238, 0.98), rgba(245, 228, 205, 0.92));
	border: 1px solid rgba(194, 135, 55, 0.22);
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(59, 42, 28, 0.06);
	color: #7a4f2e;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.35rem;
	justify-content: flex-start;
	line-height: 1.2;
	padding: 0.25rem 0.65rem;
	width: fit-content;
}

body.home .home-journeys__lane--events .home-event-card__day {
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
}

body.home .home-journeys__lane--events .home-event-card__month {
	font-size: 0.52rem;
	letter-spacing: 0.1em;
	max-width: 12rem;
}

body.home .home-journeys__lane--events .home-event-card__copy {
	display: grid;
	gap: 0.35rem;
}

body.home .home-journeys__lane--events .home-event-card__meta {
	display: none;
}

body.home .home-journeys__lane--events .home-event-card__title,
body.home .home-journeys__lane--events .home-event-card__title a {
	color: #2a1a12;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: clamp(0.86rem, 1.15vw, 1.02rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-clamp: 2;
	line-height: 1.28;
	margin: 0;
	overflow: hidden;
	text-decoration: none;
}

body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__media {
	min-height: 6.5rem;
}

body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__content {
	gap: 0.5rem;
	padding: 0.85rem 0.95rem 1rem;
}

body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__title,
body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__title a {
	color: #2a1a12;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: clamp(0.86rem, 1.15vw, 1.02rem) !important;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-clamp: 2;
	line-height: 1.28;
	margin: 0;
	overflow: hidden;
}

body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__body {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: rgba(58, 44, 36, 0.82);
	display: -webkit-box;
	font-size: 0.82rem !important;
	line-clamp: 3;
	line-height: 1.45;
	margin: 0;
	overflow: hidden;
}

body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__meta {
	font-size: 0.58rem !important;
	gap: 0.35rem;
	letter-spacing: 0.1em;
}

body.home .home-journeys__news-row {
	gap: 0.65rem;
}

body.home .home-journeys__news-grid {
	gap: 0.65rem;
	grid-template-columns: 1fr;
}

[data-theme='dark'] body.home .home-journeys__lane--events .home-event-card,
[data-theme='dark'] body.home .home-journeys__lane--events .home-activity-card--news {
	background: linear-gradient(165deg, rgba(38, 34, 31, 0.98) 0%, rgba(28, 26, 24, 0.96) 100%);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.06) inset,
		0 16px 40px rgba(0, 0, 0, 0.35),
		0 4px 14px rgba(0, 0, 0, 0.2);
}

[data-theme='dark'] body.home .home-journeys__lane--events .home-event-card:hover,
[data-theme='dark'] body.home .home-journeys__lane--events .home-event-card:focus-within,
[data-theme='dark'] body.home .home-journeys__lane--events .home-activity-card--news:hover,
[data-theme='dark'] body.home .home-journeys__lane--events .home-activity-card--news:focus-within {
	border-color: rgba(243, 164, 68, 0.28);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.08) inset,
		0 22px 52px rgba(0, 0, 0, 0.42),
		0 8px 20px rgba(243, 164, 68, 0.08);
}

[data-theme='dark'] body.home .home-journeys__lane--events .home-event-card__date {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	color: #e8d4c4;
}

[data-theme='dark'] body.home .home-journeys__lane--events .home-event-card__title,
[data-theme='dark'] body.home .home-journeys__lane--events .home-event-card__title a,
[data-theme='dark'] body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__title,
[data-theme='dark'] body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__title a {
	color: #f2ebdf;
}

[data-theme='dark'] body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__body {
	color: rgba(226, 216, 204, 0.82);
}

/* Journeys cards: grid children need min-width 0 so text wraps instead of clipping under overflow:hidden */
body.home .home-journeys .home-event-card,
body.home .home-journeys .home-activity-card {
	min-width: 0;
}

body.home .home-journeys .home-activity-card__content,
body.home .home-journeys .home-event-card__content {
	min-width: 0;
}

body.home .home-journeys .home-activity-card__title,
body.home .home-journeys .home-activity-card__title a {
	hyphens: auto;
	line-height: 1.18;
	overflow-wrap: anywhere;
	word-break: normal;
}

body.home .home-journeys .home-activity-card__body {
	hyphens: auto;
	line-height: 1.55;
	overflow-wrap: anywhere;
	word-break: normal;
}

body.home .home-journeys .home-activity-card__meta {
	max-width: 100%;
	min-width: 0;
}

/* Same rules without body.home — static front pages often omit the .home class */
#home-visitors .home-activity-card__meta li,
#home-groups .home-activity-card__meta li,
.home-journeys .home-activity-card__meta li,
body.home .home-journeys .home-activity-card__meta li,
body.home .home-journeys__lane--events .home-activity-card--news .home-activity-card__meta li,
body.home .home-journeys__lane--groups .home-activity-card__meta li {
	background-image: none !important;
	border: 0 !important;
	border-bottom: 0 !important;
	border-bottom-width: 0 !important;
	box-shadow: none !important;
	padding-bottom: 0 !important;
}

@media (min-width: 760px) {
	body.home .home-journeys__lane--events .home-journeys__cards,
	body.home .home-journeys__lane--groups .home-journeys__cards,
	body.home .home-journeys__news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	body.home .home-journeys__lane--events .home-journeys__cards,
	body.home .home-journeys__lane--groups .home-journeys__cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.home .home-journeys__news-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	body.home .home-journeys__news-row {
		grid-column: 2;
	}
}

.frontpage-variant-switcher {
	position: relative;
	width: auto;
	max-width: 100%;
}

.frontpage-variant-switcher > summary {
	list-style: none;
}

.frontpage-variant-switcher > summary::-webkit-details-marker {
	display: none;
}

.frontpage-variant-switcher__summary {
	align-items: center;
	background: rgba(255, 250, 244, 0.94);
	border: 1px solid rgba(44, 34, 26, 0.12);
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
	cursor: pointer;
	display: inline-flex;
	gap: 0.55rem;
	max-width: 100%;
	padding: 0.32rem 0.55rem 0.32rem 0.32rem;
	backdrop-filter: blur(8px);
}

.frontpage-variant-switcher__summary-text {
	display: grid;
	gap: 0.04rem;
}

.frontpage-variant-switcher__current {
	color: #2f2b28;
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
}

.frontpage-variant-switcher__caret {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	flex: 0 0 auto;
	height: 0.55rem;
	margin-left: 0.12rem;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.2s ease;
	width: 0.55rem;
}

.frontpage-variant-switcher[open] .frontpage-variant-switcher__caret {
	transform: rotate(225deg) translateY(1px);
}

.frontpage-variant-switcher__panel {
	background: rgba(255, 250, 244, 0.98);
	border: 1px solid rgba(44, 34, 26, 0.12);
	border-radius: 1rem;
	box-shadow: 0 16px 32px rgba(17, 17, 17, 0.12);
	display: grid;
	gap: 0.35rem;
	left: 0;
	min-width: 17rem;
	opacity: 0;
	padding: 0.55rem;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 0.5rem);
	transform: translateY(0.35rem);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s ease;
	visibility: hidden;
	z-index: 25;
}

.frontpage-variant-switcher[open] .frontpage-variant-switcher__panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.frontpage-variant-switcher--menu {
	margin-left: 0.25rem;
}

.frontpage-variant-switcher--mobile {
	width: 100%;
}

.frontpage-variant-switcher--mobile .frontpage-variant-switcher__summary {
	justify-content: space-between;
	width: 100%;
}

.frontpage-variant-switcher--mobile .frontpage-variant-switcher__summary-text {
	display: grid;
	gap: 0.04rem;
}

.frontpage-variant-switcher--mobile .frontpage-variant-switcher__label {
	flex-basis: 100%;
}

.frontpage-variant-switcher--mobile .frontpage-variant-switcher__panel {
	background: transparent;
	border: 0;
	box-shadow: none;
	min-width: 0;
	opacity: 1;
	padding: 0.5rem 0 0;
	pointer-events: auto;
	position: static;
	transform: none;
	visibility: visible;
	width: 100%;
}

.site-megamenu__frontpage-switcher {
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
	margin-top: 0;
}

.site-mobile-nav__frontpage-switcher {
	display: flex;
}

.site-mobile-nav__contact {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(33, 23, 18, 0.08);
	border-radius: 0.9rem;
	display: grid;
	gap: 0.6rem;
	padding: 0.8rem 0.9rem;
}

.site-mobile-nav__contact-heading {
	margin: 0;
}

.site-mobile-nav__contact-items {
	display: grid;
	gap: 0.45rem;
}

.site-mobile-nav__contact-item {
	align-items: baseline;
	color: #2b1d15;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	text-decoration: none;
}

.site-mobile-nav__contact-value {
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.35;
}

.site-mobile-nav__contact-link {
	color: #624615;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-mobile-nav__contact-link:hover,
.site-mobile-nav__contact-link:focus-visible {
	color: #2b1d15;
	text-decoration: underline;
}

.frontpage-variant-switcher__label {
	color: #6b5a50;
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.frontpage-variant-switcher__button {
	align-items: center;
	background: rgba(255, 250, 244, 0.92);
	border: 1px solid rgba(44, 34, 26, 0.08);
	border-radius: 0.75rem;
	color: #473a32;
	display: flex;
	font-size: 0.72rem;
	justify-content: space-between;
	line-height: 1.1;
	padding: 0.55rem 0.75rem;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
	white-space: nowrap;
	width: 100%;
}

.frontpage-variant-switcher__button:hover,
.frontpage-variant-switcher__button:focus-visible {
	border-color: rgba(243, 164, 68, 0.42);
	background: rgba(243, 164, 68, 0.16);
	transform: translateX(0.08rem);
}

.frontpage-variant-switcher__button.is-active {
	border-color: rgba(243, 164, 68, 0.9);
	background: #f3a444;
	color: #17110d;
	font-weight: 700;
}

body.home .home-main--single-video {
	padding-top: clamp(1.25rem, 3vw, 2rem);
}

body.home .home-hero--single-video-ctas .home-hero__lead {
	grid-column: auto;
	max-width: none;
}

body.home .home-hero--single-video-ctas .home-hero__paths {
	margin-left: 0;
	max-width: none;
}

body.home .home-hero--single-video-ctas .home-path--groups {
	margin-left: 0;
}

body.home .frontpage-single-video-header {
	width: min(100% - 1rem, 1680px);
	margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}

body.home .frontpage-single-video-header__inner {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 7;
	border-radius: 0;
	background: #000;
	box-shadow:
		0 24px 60px rgba(23, 17, 13, 0.18),
		inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

body.home .frontpage-single-video-header__inner iframe,
body.home .frontpage-single-video-header__inner video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	object-fit: cover;
}

body.home .frontpage-single-video-header__sound-toggle {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.75rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(19, 13, 10, 0.82);
	backdrop-filter: blur(10px);
	color: #fff4e8;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

body.home .frontpage-single-video-header__sound-toggle:hover,
body.home .frontpage-single-video-header__sound-toggle:focus-visible {
	background: rgba(36, 23, 15, 0.92);
	border-color: rgba(255, 228, 197, 0.5);
	transform: translateY(-1px);
}

body.home .frontpage-single-video-header__sound-toggle.is-active {
	background: rgba(243, 164, 68, 0.96);
	border-color: rgba(243, 164, 68, 0.96);
	color: #17110d;
}

body.home .frontpage-single-video-header__sound-icon {
	display: inline-flex;
	width: 1rem;
	height: 1rem;
}

body.home .frontpage-single-video-header__sound-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

body.home .frontpage-single-video-header__caption {
	margin: 0.8rem 0 0;
	color: #57483f;
	font-size: 0.95rem;
	line-height: 1.5;
}

[data-theme='dark'] .frontpage-variant-switcher__summary {
	background: rgba(22, 16, 13, 0.92);
	border-color: rgba(243, 164, 68, 0.18);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
	color: #f2ebdf;
}

[data-theme='dark'] .frontpage-variant-switcher__label {
	color: rgba(242, 235, 223, 0.7);
}

[data-theme='dark'] .frontpage-variant-switcher__current {
	color: #fff8ef;
}

[data-theme='dark'] .frontpage-variant-switcher__panel {
	background: rgba(18, 14, 12, 0.98);
	border-color: rgba(243, 164, 68, 0.18);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

[data-theme='dark'] .frontpage-variant-switcher__button {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.08);
	color: #f2ebdf;
}

[data-theme='dark'] .frontpage-variant-switcher__button:hover,
[data-theme='dark'] .frontpage-variant-switcher__button:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(243, 164, 68, 0.42);
	color: #fff8ef;
}

[data-theme='dark'] .frontpage-variant-switcher__button.is-active {
	background: #f3a444;
	color: #17110d;
}

[data-theme='dark'] .site-megamenu__contact,
[data-theme='dark'] .site-mobile-nav__contact {
	background: rgba(18, 14, 12, 0.82);
	border-color: rgba(243, 164, 68, 0.12);
}

[data-theme='dark'] .site-megamenu__contact-summary {
	background: rgba(18, 14, 12, 0.82);
	border-color: rgba(243, 164, 68, 0.12);
}

[data-theme='dark'] .site-megamenu__contact-summary:hover,
[data-theme='dark'] .site-megamenu__contact-summary:focus-visible,
[data-theme='dark'] .site-megamenu__contact[open] .site-megamenu__contact-summary {
	background: rgba(18, 14, 12, 0.95);
	border-color: rgba(243, 164, 68, 0.32);
}

[data-theme='dark'] .site-megamenu__contact-summary-label,
[data-theme='dark'] .site-megamenu__contact-summary-caret {
	color: #f2ebdf;
}

[data-theme='dark'] .site-megamenu__contact-panel {
	background: rgba(18, 14, 12, 0.98);
	border-color: rgba(243, 164, 68, 0.18);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

[data-theme='dark'] .site-megamenu__contact-item {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.08);
	color: #f2ebdf;
}

[data-theme='dark'] .site-megamenu__contact-item:hover,
[data-theme='dark'] .site-megamenu__contact-item:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(243, 164, 68, 0.32);
	color: #fff8ef;
}

[data-theme='dark'] .site-megamenu__contact-heading,
[data-theme='dark'] .site-megamenu__contact-label,
[data-theme='dark'] .site-mobile-nav__contact-heading,
[data-theme='dark'] .site-mobile-nav__contact-label {
	color: rgba(242, 235, 223, 0.66);
}

[data-theme='dark'] .site-megamenu__contact-link,
[data-theme='dark'] .site-mobile-nav__contact-link {
	color: #f3c67c;
}

[data-theme='dark'] .site-mobile-nav__contact-item,
[data-theme='dark'] .site-mobile-nav__contact-value {
	color: #f2ebdf;
}

[data-theme='dark'] body.home .frontpage-single-video-header__caption {
	color: rgba(242, 235, 223, 0.78);
}

[data-theme='dark'] body.home .frontpage-single-video-header__sound-toggle {
	background: rgba(10, 8, 7, 0.84);
	border-color: rgba(243, 164, 68, 0.28);
	color: #f2ebdf;
}

[data-theme='dark'] body.home .frontpage-single-video-header__sound-toggle:hover,
[data-theme='dark'] body.home .frontpage-single-video-header__sound-toggle:focus-visible {
	background: rgba(18, 14, 12, 0.94);
	border-color: rgba(243, 164, 68, 0.46);
	color: #fff8ef;
}

[data-theme='dark'] body.home .frontpage-single-video-header__sound-toggle.is-active {
	background: #f3a444;
	border-color: #f3a444;
	color: #17110d;
}

@media (max-width: 767px) {
	.frontpage-variant-switcher--menu {
		margin-left: 0;
	}

	body.home .frontpage-single-video-header {
		width: min(100% - 0.5rem, 1680px);
	}

	.frontpage-variant-switcher__label {
		font-size: 0.54rem;
	}

	.frontpage-variant-switcher__summary {
		padding: 0.28rem 0.45rem 0.28rem 0.28rem;
	}

	.frontpage-variant-switcher__current {
		font-size: 0.7rem;
		white-space: normal;
	}

	.frontpage-variant-switcher__button {
		font-size: 0.68rem;
		padding: 0.48rem 0.65rem;
	}

	.site-mobile-nav__contact-value {
		font-size: 0.88rem;
	}

	body.home .frontpage-single-video-header__inner {
		aspect-ratio: 16 / 9;
	}

	body.home .frontpage-single-video-header__sound-toggle {
		right: 0.75rem;
		bottom: 0.75rem;
		gap: 0.45rem;
		padding: 0.65rem 0.75rem;
		font-size: 0.62rem;
		letter-spacing: 0.12em;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.site-mobile-nav__search {
		grid-column: 1 / -1;
	}

	.site-mobile-nav__contact {
		grid-column: 1 / -1;
	}

	.site-mobile-nav__frontpage-switcher {
		justify-content: flex-end;
		justify-self: end;
		width: fit-content;
	}

	.site-mobile-nav__tools {
		justify-content: flex-end;
		justify-self: end;
		width: fit-content;
	}

	.site-mobile-nav__donate {
		width: auto;
	}

	.frontpage-variant-switcher--mobile {
		width: fit-content;
	}

	.frontpage-variant-switcher--mobile .frontpage-variant-switcher__summary {
		justify-content: flex-start;
		width: auto;
	}

	.frontpage-variant-switcher--mobile .frontpage-variant-switcher__summary-text {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 0.3rem;
		min-width: 0;
	}

	.frontpage-variant-switcher--mobile .frontpage-variant-switcher__label {
		flex-basis: auto;
	}

	.frontpage-variant-switcher--mobile .frontpage-variant-switcher__current {
		white-space: nowrap;
	}
}

@media (min-width: 1024px) {
	.site-megamenu__frontpage-switcher {
		margin-top: 0;
	}

	.frontpage-variant-switcher--menu {
		flex-shrink: 0;
	}

	.frontpage-variant-switcher--menu .frontpage-variant-switcher__summary {
		justify-content: flex-start;
	}

	.frontpage-variant-switcher--menu .frontpage-variant-switcher__summary-text {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 0.3rem;
		min-width: 0;
	}

	.frontpage-variant-switcher--menu .frontpage-variant-switcher__current {
		white-space: nowrap;
	}

	.frontpage-variant-switcher--menu .frontpage-variant-switcher__panel {
		left: auto;
		right: 0;
	}
}

@media (min-width: 768px) {
	body.home .home-hero--single-video-ctas .home-hero__inner {
		grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
	}
}

@media (min-width: 1024px) {
	body.home .home-hero--single-video-ctas .home-hero__inner {
		align-items: start;
		grid-template-columns: minmax(0, 1.16fr) minmax(22rem, 0.84fr);
	}

	body.home .home-hero--single-video-ctas .home-hero__paths {
		gap: 1rem;
		margin-bottom: 0;
	}

	body.home .home-hero--single-video-ctas .home-path {
		padding: 1rem;
	}
}
