/* Shady Tours global visual system — one source of truth for brand UI. */
:root {
	--st-nile: #20588f;
	--st-sky: #5c9fe1;
	--st-mist: #f1f6fb;
	--st-gold: #f7b856;
	--st-orange: #e48039;
	--st-orange-dark: #a8470d;
	--st-ink: #10263b;
	--st-text: #3d5368;
	--st-muted: #64788b;
	--st-white: #fff;
	--st-border: #d8e5f1;
	--st-shadow: 0 18px 48px rgba(32, 88, 143, .12);
	--st-radius: 18px;
	--st-shell: 1240px;
	--primary: var(--st-orange);
	--secondary: var(--st-nile);
	--heading: var(--st-ink);
	--text: var(--st-text);
	--border: var(--st-border);
	--first-background: var(--st-mist);
	--second-background: var(--st-mist);
	--third-background: var(--st-nile);
}

html { scroll-behavior: smooth; }

body {
	color: var(--st-text);
	background: var(--st-white);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

body.st-menu-lock { overflow: hidden; }

a { color: var(--st-nile); }
a:hover { color: var(--st-orange-dark); }

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--st-orange);
	outline-offset: 3px;
}

button, input, select, textarea { font: inherit; }

.st-shell {
	width: min(var(--st-shell), calc(100% - 40px));
	margin-inline: auto;
}

.st-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100000;
	padding: 12px 16px;
	border-radius: 10px;
	color: var(--st-white);
	background: var(--st-ink);
	transform: translateY(-160%);
}

.st-skip-link:focus { color: var(--st-white); transform: translateY(0); }

.st-site-header {
	position: relative;
	z-index: 9999;
	border-bottom: 1px solid rgba(32, 88, 143, .12);
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 8px 30px rgba(32, 88, 143, .07);
}

.st-header-inner {
	display: flex;
	min-height: 84px;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.st-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--st-ink);
	text-decoration: none;
}

.st-brand:hover { color: var(--st-ink); }

.st-brand-mark {
	display: grid;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	place-items: center;
	border-radius: 14px;
	color: var(--st-white);
	background: var(--st-nile);
	box-shadow: 0 9px 20px rgba(32, 88, 143, .2);
}

.st-brand-mark svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.st-brand-copy { display: grid; line-height: 1.05; }
.st-brand-copy strong { color: inherit; font-size: 21px; letter-spacing: -.02em; }
.st-brand-copy small { margin-top: 6px; color: var(--st-muted); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.st-primary-nav { display: flex; align-items: center; gap: 26px; }
.st-primary-nav ul { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.st-primary-nav li { margin: 0; }
.st-primary-nav li a { display: flex; min-height: 44px; align-items: center; padding: 8px 12px; border-radius: 10px; color: var(--st-ink); font-size: 15px; font-weight: 700; text-decoration: none; }
.st-primary-nav li a:hover,
.st-primary-nav li a[aria-current="page"] { color: var(--st-nile); background: var(--st-mist); }

.st-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border: 2px solid transparent;
	border-radius: 12px;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.st-button:hover { transform: translateY(-2px); }
.st-button-primary { color: var(--st-ink); background: var(--st-orange); box-shadow: 0 12px 26px rgba(168, 71, 13, .2); }
.st-button-primary:hover { color: var(--st-ink); background: var(--st-gold); }
.st-button-secondary { border-color: var(--st-border); color: var(--st-nile); background: var(--st-white); }
.st-menu-toggle { display: none; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 10px 12px; border: 1px solid var(--st-border); border-radius: 12px; color: var(--st-ink); background: var(--st-white); font-weight: 800; }
.st-menu-icon { display: grid; gap: 4px; }
.st-menu-icon i { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.st-site-footer {
	position: relative;
	overflow: hidden;
	padding: 76px 0 22px;
	color: rgba(255, 255, 255, .78);
	background: var(--st-nile);
}

.st-footer-route { position: absolute; top: -95px; right: -60px; width: 390px; height: 240px; border: 2px dashed rgba(247, 184, 86, .28); border-radius: 50%; transform: rotate(-14deg); }
.st-footer-grid { position: relative; display: grid; grid-template-columns: 1.5fr .75fr .75fr 1.15fr; gap: 48px; }
.st-site-footer .st-brand { color: var(--st-white); }
.st-site-footer .st-brand-mark { color: var(--st-nile); background: var(--st-gold); box-shadow: none; }
.st-site-footer .st-brand-copy small { color: rgba(255, 255, 255, .66); }
.st-footer-intro p { max-width: 360px; margin: 22px 0 0; color: rgba(255, 255, 255, .76); line-height: 1.75; }
.st-site-footer h2 { margin: 4px 0 20px; color: var(--st-white); font-size: 16px; letter-spacing: .02em; }
.st-site-footer ul { margin: 0; padding: 0; list-style: none; }
.st-site-footer li + li { margin-top: 11px; }
.st-site-footer a:not(.st-button):not(.st-brand) { color: rgba(255, 255, 255, .78); text-decoration: none; }
.st-site-footer a:not(.st-button):not(.st-brand):hover { color: var(--st-gold); }
.st-footer-cta { padding: 26px; border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--st-radius); background: rgba(255, 255, 255, .07); }
.st-footer-cta p { margin: -8px 0 20px; color: rgba(255, 255, 255, .74); }
.st-footer-cta .st-button { width: 100%; color: var(--st-ink); background: var(--st-gold); box-shadow: none; }
.st-footer-cta .st-button:hover { color: var(--st-ink); background: #ffd083; }
.st-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); }
.st-footer-bottom p { margin: 0; color: rgba(255, 255, 255, .66); font-size: 13px; }

/* Production-safe page foundations. */
.st-main { overflow: hidden; }
.st-section { padding: clamp(72px, 9vw, 112px) 0; }
.st-section-soft { background: var(--st-mist); }
.st-eyebrow { display: block; margin-bottom: 12px; color: var(--st-orange-dark); font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.st-section-heading { max-width: 750px; margin: 0 0 42px; }
.st-section-heading h2 { margin: 0; color: var(--st-ink); font-size: clamp(32px, 5vw, 54px); line-height: 1.08; letter-spacing: -.035em; }
.st-section-heading p { max-width: 650px; margin: 18px 0 0; color: var(--st-text); font-size: 18px; line-height: 1.7; }
.st-hero { position: relative; display: grid; min-height: min(720px, calc(100vh - 84px)); align-items: center; color: var(--st-white); background: linear-gradient(118deg, rgba(12, 42, 70, .97), rgba(32, 88, 143, .76)), var(--st-nile); }
.st-hero::after { content: ""; position: absolute; right: -10vw; bottom: -180px; width: 55vw; height: 390px; border: 2px dashed rgba(247, 184, 86, .35); border-radius: 50%; transform: rotate(-12deg); }
.st-hero-content { position: relative; z-index: 1; padding-block: 92px; }
.st-hero h1 { max-width: 850px; margin: 0; color: var(--st-white); font-size: clamp(48px, 8vw, 92px); line-height: .98; letter-spacing: -.055em; }
.st-hero p { max-width: 650px; margin: 24px 0 0; color: rgba(255, 255, 255, .82); font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }
.st-hero .st-eyebrow { color: var(--st-gold); }
.st-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.st-hero .st-button-secondary { border-color: rgba(255, 255, 255, .42); color: var(--st-white); background: transparent; }
.st-hero .st-button-secondary:hover { background: rgba(255, 255, 255, .1); }
.st-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.st-tour-card { overflow: hidden; border: 1px solid var(--st-border); border-radius: var(--st-radius); background: var(--st-white); box-shadow: 0 12px 34px rgba(32, 88, 143, .08); }
.st-tour-card-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(145deg, var(--st-nile), var(--st-sky)); }
.st-tour-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.st-tour-card:hover .st-tour-card-media img { transform: scale(1.04); }
.st-tour-card-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: rgba(255, 255, 255, .84); font-weight: 800; }
.st-tour-card-body { padding: 24px; }
.st-tour-card-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; min-height: 24px; margin-bottom: 12px; color: var(--st-muted); font-size: 13px; font-weight: 700; }
.st-tour-card h2, .st-tour-card h3 { margin: 0; color: var(--st-ink); font-size: 22px; line-height: 1.25; letter-spacing: -.02em; }
.st-tour-card h2 a, .st-tour-card h3 a { color: inherit; text-decoration: none; }
.st-tour-card p { margin: 14px 0 0; color: var(--st-text); line-height: 1.65; }
.st-card-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 16px; color: var(--st-nile); font-weight: 900; text-decoration: none; }
.st-card-link span { margin-left: 7px; transition: transform .2s ease; }
.st-card-link:hover span { transform: translateX(4px); }
.st-empty { padding: 32px; border: 1px solid var(--st-border); border-radius: var(--st-radius); background: var(--st-white); }

.st-filter-bar { display: grid; grid-template-columns: 1.2fr .8fr .8fr auto; gap: 14px; align-items: end; margin-bottom: 36px; padding: 22px; border: 1px solid var(--st-border); border-radius: var(--st-radius); background: var(--st-white); box-shadow: var(--st-shadow); }
.st-field label { display: block; margin-bottom: 8px; color: var(--st-ink); font-size: 14px; font-weight: 800; }
.st-field input, .st-field select, .st-contact-form input:not([type="submit"]), .st-contact-form textarea, .st-contact-form select { width: 100%; min-height: 50px; padding: 11px 14px; border: 1px solid #b9ccde; border-radius: 10px; color: var(--st-ink); background: var(--st-white); }
.st-filter-actions { display: flex; gap: 8px; }
.st-filter-actions .st-button { border: 0; cursor: pointer; }
.st-destination-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.st-destination-list a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--st-border); border-radius: 999px; color: var(--st-ink); background: var(--st-white); font-weight: 800; text-decoration: none; }
.st-destination-list a:hover { border-color: var(--st-sky); color: var(--st-nile); }
.st-destination-list span { color: var(--st-muted); font-size: 13px; }

.st-page-hero { padding: 82px 0 72px; background: var(--st-mist); }
.st-page-hero h1 { max-width: 820px; margin: 0; color: var(--st-ink); font-size: clamp(42px, 7vw, 72px); line-height: 1.03; letter-spacing: -.045em; }
.st-page-hero p { max-width: 670px; margin: 20px 0 0; font-size: 19px; line-height: 1.7; }
.st-contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(38px, 7vw, 88px); }
.st-contact-panel { padding: 32px; border-radius: var(--st-radius); color: var(--st-white); background: var(--st-nile); }
.st-contact-panel h2 { margin-top: 0; color: var(--st-white); font-size: 30px; }
.st-contact-panel p { color: rgba(255, 255, 255, .78); line-height: 1.75; }
.st-contact-fact { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .18); }
.st-contact-fact strong { display: block; color: var(--st-gold); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.st-contact-form label { display: block; margin-bottom: 18px; color: var(--st-ink); font-weight: 800; }
.st-contact-form textarea { min-height: 150px; resize: vertical; }
.st-contact-form input[type="submit"] { min-height: 50px; padding: 12px 22px; border: 0; border-radius: 12px; color: var(--st-ink); background: var(--st-orange); cursor: pointer; font-weight: 900; }

/* Elementor-native canonical page layouts. */
.elementor .st-elementor-section > .elementor-container,
.elementor .st-elementor-hero > .elementor-container { width: min(var(--st-shell), calc(100% - 40px)); }
.elementor .st-elementor-section { padding: clamp(72px, 9vw, 112px) 0; }
.elementor .st-elementor-hero { min-height: min(720px, calc(100vh - 84px)); padding: 92px 0; }
.elementor .st-elementor-section .elementor-widget-heading h2 { color: var(--st-ink) !important; font-size: clamp(32px, 5vw, 54px); line-height: 1.08; letter-spacing: -.035em; }
.elementor .st-elementor-section .elementor-widget-text-editor { max-width: 680px; color: var(--st-text); font-size: 18px; line-height: 1.7; }
.elementor .st-elementor-hero .elementor-widget-heading h1 { max-width: 850px; color: var(--st-white) !important; font-size: clamp(48px, 8vw, 92px); line-height: .98; letter-spacing: -.055em; }
.elementor .st-elementor-hero .elementor-widget-text-editor { max-width: 650px; color: rgba(255,255,255,.82); font-size: clamp(18px,2vw,22px); line-height: 1.65; }
.elementor .st-page-hero.st-elementor-section { padding: 82px 0 72px; }
.elementor .st-page-hero.st-elementor-section .elementor-widget-heading h1 { max-width: 820px; color: var(--st-ink) !important; font-size: clamp(42px,7vw,72px); line-height: 1.03; letter-spacing: -.045em; }
.elementor .st-page-hero.st-elementor-section .elementor-widget-text-editor { max-width: 670px; color: var(--st-text); font-size: 19px; }
.elementor .st-eyebrow .elementor-heading-title { color: var(--st-orange-dark) !important; font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.elementor .st-elementor-hero .st-eyebrow .elementor-heading-title { color: var(--st-gold) !important; }
.elementor .st-elementor-button-primary .elementor-button,
.elementor .st-elementor-button-secondary .elementor-button { min-height: 48px; padding: 14px 20px; border-radius: 12px; font-weight: 800; }
.elementor .st-elementor-button-primary .elementor-button { color: var(--st-ink) !important; background: var(--st-orange) !important; box-shadow: 0 12px 26px rgba(168,71,13,.2); }
.elementor .st-elementor-button-primary .elementor-button:hover { color: var(--st-ink) !important; background: var(--st-gold) !important; }
.elementor .st-elementor-button-secondary .elementor-button { border: 2px solid var(--st-border); color: var(--st-nile) !important; background: var(--st-white) !important; }
.elementor .st-elementor-hero .st-elementor-button-secondary .elementor-button { border-color: rgba(255,255,255,.42); color: var(--st-white) !important; background: transparent !important; }
.elementor .st-elementor-button-primary,
.elementor .st-elementor-button-secondary { display: inline-block !important; width: auto !important; max-width: max-content; margin: 22px 8px 0 0; }
.elementor .st-legal-content .elementor-widget-text-editor { max-width: 820px; }

/* Remove leftover template artifacts when a legacy Elementor page is encountered. */
.woo-multi-currency.wmc-shortcode,
.woo-multi-currency-layout9,
body > .woo-multi-currency { display: none !important; }

@media (max-width: 960px) {
	.st-menu-toggle { display: inline-flex; }
	.st-primary-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; max-height: calc(100vh - 84px); overflow: auto; align-items: stretch; padding: 20px; border-top: 1px solid var(--st-border); background: var(--st-white); box-shadow: var(--st-shadow); }
	.st-site-header.is-menu-open .st-primary-nav { display: grid; }
	.st-primary-nav ul { display: grid; gap: 4px; }
	.st-primary-nav li a { min-height: 48px; padding-inline: 14px; }
	.st-nav-cta { width: 100%; }
	.st-site-header.is-menu-open .st-menu-icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.st-site-header.is-menu-open .st-menu-icon i:nth-child(2) { opacity: 0; }
	.st-site-header.is-menu-open .st-menu-icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
	.st-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
	.st-footer-cta { grid-column: 1 / -1; }
	.st-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
	.st-shell { width: min(100% - 28px, var(--st-shell)); }
	.st-header-inner { min-height: 74px; }
	.st-brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
	.st-brand-copy small { display: none; }
	.st-menu-toggle > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
	.st-primary-nav { max-height: calc(100vh - 74px); }
	.st-hero { min-height: 600px; }
	.st-card-grid, .st-contact-layout, .st-filter-bar { grid-template-columns: 1fr; }
	.st-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
	.st-footer-intro, .st-footer-cta { grid-column: 1 / -1; }
	.st-footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* Global header and footer saved as native, reusable Elementor templates. */
.elementor .st-elementor-global-header {
	position: relative;
	z-index: 9999;
	border-bottom: 1px solid rgba(32, 88, 143, .12);
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 8px 30px rgba(32, 88, 143, .07);
}
.elementor .st-elementor-global-header > .elementor-container {
	display: grid;
	width: min(var(--st-shell), calc(100% - 40px));
	min-height: 84px;
	grid-template-columns: minmax(190px, .8fr) minmax(480px, 1.6fr) auto;
	gap: 28px;
	align-items: center;
}
.elementor .st-elementor-global-header .elementor-column { width: auto !important; min-width: 0; }
.elementor .st-elementor-global-header .elementor-widget-wrap { padding: 0; }
.elementor .st-eh-brand .elementor-widget-heading { margin: 0; }
.elementor .st-eh-brand .elementor-heading-title { margin: 0; color: var(--st-ink); font-size: 22px; line-height: 1.05; letter-spacing: -.025em; }
.elementor .st-eh-brand .elementor-heading-title a { color: inherit; }
.elementor .st-eh-brand .elementor-widget-text-editor { margin-top: 5px; color: var(--st-muted); font-size: 10px; font-weight: 800; letter-spacing: .11em; line-height: 1.2; text-transform: uppercase; }
.elementor .st-eh-brand .elementor-widget-text-editor p { margin: 0; }
.elementor .st-eh-menu .elementor-widget-container { display: flex; justify-content: center; }
.elementor .st-eh-menu .main-navigation { width: 100%; }
.elementor .st-eh-menu .menu-toggle { display: none; }
.elementor .st-eh-menu .primary-navigation > ul { display: flex; justify-content: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.elementor .st-eh-menu .primary-navigation > ul > li { margin: 0; }
.elementor .st-eh-menu .primary-navigation > ul > li > a { display: flex; min-height: 44px; align-items: center; padding: 8px 12px; border-radius: 10px; color: var(--st-ink); font-size: 14px; font-weight: 750; text-decoration: none; }
.elementor .st-eh-menu .primary-navigation > ul > li > a:hover,
.elementor .st-eh-menu .primary-navigation > ul > li.current-menu-item > a { color: var(--st-nile); background: var(--st-mist); }
.elementor .st-eh-action .elementor-widget-wrap { justify-content: flex-end; }
.elementor .st-eh-action .st-elementor-button-primary { width: auto !important; margin: 0; }
.elementor .st-eh-action .elementor-button { white-space: nowrap; }

.elementor .st-elementor-global-footer { color: rgba(255, 255, 255, .78); background: var(--st-nile); }
.elementor .st-elementor-global-footer > .elementor-container { width: min(var(--st-shell), calc(100% - 40px)); }
.elementor .st-elementor-global-footer-main { padding: 76px 0 52px; }
.elementor .st-elementor-global-footer-main > .elementor-container { display: grid; grid-template-columns: 1.45fr .72fr .72fr 1.05fr; gap: 46px; align-items: start; }
.elementor .st-elementor-global-footer .elementor-column { width: auto !important; min-width: 0; }
.elementor .st-elementor-global-footer .elementor-widget-wrap { padding: 0; }
.elementor .st-elementor-global-footer .elementor-heading-title { margin: 0; color: var(--st-white); }
.elementor .st-ef-intro .elementor-widget-heading:first-child .elementor-heading-title { font-size: 25px; letter-spacing: -.03em; }
.elementor .st-ef-intro h6.elementor-heading-title { margin-top: 7px; color: var(--st-gold); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.elementor .st-ef-intro .elementor-widget-text-editor { max-width: 350px; margin-top: 20px; color: rgba(255,255,255,.75); line-height: 1.75; }
.elementor .st-elementor-global-footer .elementor-widget-text-editor p { margin: 0; }
.elementor .st-ef-links h3.elementor-heading-title,
.elementor .st-ef-cta h3.elementor-heading-title { margin: 2px 0 18px; font-size: 16px; }
.elementor .st-ef-links .elementor-icon-list-items { margin: 0; padding: 0; }
.elementor .st-ef-links .elementor-icon-list-item { margin: 0 0 11px; }
.elementor .st-ef-links .elementor-icon-list-icon { width: 12px; color: var(--st-gold); font-size: 10px; }
.elementor .st-ef-links .elementor-icon-list-text { color: rgba(255,255,255,.78); font-size: 14px; }
.elementor .st-ef-cta { padding: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--st-radius); background: rgba(255,255,255,.07); }
.elementor .st-ef-cta .elementor-widget-text-editor { color: rgba(255,255,255,.75); line-height: 1.65; }
.elementor .st-ef-cta .st-elementor-button-primary { display: block !important; width: 100% !important; max-width: none; margin: 20px 0 0; }
.elementor .st-ef-cta .elementor-button { width: 100%; background: var(--st-gold) !important; box-shadow: none; }
.elementor .st-elementor-global-footer-bottom { padding: 0 0 22px; }
.elementor .st-elementor-global-footer-bottom > .elementor-container { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.elementor .st-elementor-global-footer-bottom .elementor-widget-text-editor { color: rgba(255,255,255,.65); font-size: 13px; }
.elementor .st-ef-place .elementor-widget-wrap { text-align: right; }


@media (max-width: 960px) {
  .elementor .st-elementor-global-header > .elementor-container { grid-template-columns: minmax(180px, 1fr) auto; }
  .elementor .st-eh-menu { justify-self: end; }
  .elementor .st-eh-action { display: none; }
  .elementor .st-eh-menu .menu-toggle { display: inline-flex; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; padding: 10px 14px; border: 1px solid var(--st-border); border-radius: 12px; color: var(--st-ink); background: var(--st-white); font-weight: 800; }
  .elementor .st-eh-menu .primary-navigation { position: absolute; top: 100%; left: 0; right: 0; display: none; max-height: calc(100vh - 84px); overflow: auto; padding: 18px 20px 22px; border-top: 1px solid var(--st-border); background: var(--st-white); box-shadow: var(--st-shadow); }
  .elementor .st-eh-menu .main-navigation.toggled .primary-navigation { display: block; }
  .elementor .st-eh-menu .primary-navigation > ul { display: grid; justify-content: stretch; }
  .elementor .st-eh-menu .primary-navigation > ul > li > a { min-height: 48px; }
  .elementor .st-elementor-global-footer-main > .elementor-container { grid-template-columns: 1.35fr 1fr 1fr; }
  .elementor .st-ef-cta { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .elementor .st-elementor-global-header > .elementor-container,
  .elementor .st-elementor-global-footer > .elementor-container { width: min(100% - 28px, var(--st-shell)); }
  .elementor .st-elementor-global-header > .elementor-container { min-height: 74px; }
  .elementor .st-eh-brand .elementor-widget-text-editor { display: none; }
  .elementor .st-eh-menu .primary-navigation { max-height: calc(100vh - 74px); }
  .elementor .st-elementor-global-footer-main > .elementor-container { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .elementor .st-ef-intro, .elementor .st-ef-cta { grid-column: 1 / -1; }
  .elementor .st-elementor-global-footer-bottom > .elementor-container { grid-template-columns: 1fr; }
  .elementor .st-ef-place .elementor-widget-wrap { text-align: left; }
}


@media (max-width: 960px) {
  .elementor .st-eh-menu .menu-toggle { font-size: 0; }
  .elementor .st-eh-menu .menu-toggle::before { content: "☰"; font-family: Arial, sans-serif; font-size: 22px; line-height: 1; }
}

@media (max-width: 960px) { .elementor .st-eh-menu .primary-navigation { left: auto; right: 0; width: 100vw; } }


/* Editable Elementor header logo image. */
.elementor .st-eh-logo img { display: block; width: min(230px, 100%); max-height: 62px; object-fit: contain; object-position: left center; }
@media (max-width: 680px) { .elementor .st-eh-logo img { width: min(190px, 100%); max-height: 50px; } }

/* Crop uploaded logo whitespace while preserving the editable source image. */
.elementor .st-eh-logo img { width: min(230px, 100%); height: 62px; max-height: none; object-fit: cover; object-position: center; }
@media (max-width: 680px) { .elementor .st-eh-logo img { width: min(190px, 100%); height: 50px; max-height: none; } }

/* Present the uploaded logo at a readable size without altering the source file. */
.elementor .st-eh-logo .elementor-widget-container { width: min(230px, 100%); height: 62px; overflow: hidden; }
.elementor .st-eh-logo img { width: 230px; max-width: none; height: 131px; max-height: none; object-fit: contain; transform: translateY(-34px); }
@media (max-width: 680px) {
  .elementor .st-eh-logo .elementor-widget-container { width: min(190px, 100%); height: 50px; }
  .elementor .st-eh-logo img { width: 190px; height: 107px; transform: translateY(-28px); }
}

/* Keep the editable logo inside the premium header height. */
.elementor .st-elementor-global-header > .elementor-container { height: 84px; max-height: 84px; }
.elementor .st-eh-brand, .elementor .st-eh-brand .elementor-widget-wrap, .elementor .st-eh-logo { height: 62px; align-content: center; margin: 0 !important; }
@media (max-width: 680px) {
  .elementor .st-elementor-global-header > .elementor-container { height: 74px; max-height: 74px; }
  .elementor .st-eh-brand, .elementor .st-eh-brand .elementor-widget-wrap, .elementor .st-eh-logo { height: 50px; }
}
