:root {
	--lakeshore-a11y-color: #0A2337;
	--lakeshore-a11y-accent: #F28228;
	--lakeshore-a11y-offset: 20px;
	--lakeshore-a11y-panel-width: min(340px, calc(100vw - 32px));
}

.lakeshore-a11y-root,
.lakeshore-a11y-root * {
	box-sizing: border-box;
}

.lakeshore-a11y-toggle {
	position: fixed;
	z-index: 2147483645;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 112px;
	height: 52px;
	padding: 0 14px;
	border: 2px solid #fff;
	border-radius: 8px;
	background: var(--lakeshore-a11y-color);
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	cursor: pointer;
	font: 700 15px/1 Arial, Helvetica, sans-serif;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lakeshore-a11y-toggle:hover,
.lakeshore-a11y-toggle:focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
	outline: 3px solid #f9c846;
	outline-offset: 3px;
}

.lakeshore-a11y-toggle svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.lakeshore-a11y-toggle-text {
	letter-spacing: 0;
}

.lakeshore-a11y-position-bottom-right .lakeshore-a11y-toggle {
	right: var(--lakeshore-a11y-offset);
	bottom: var(--lakeshore-a11y-offset);
}

.lakeshore-a11y-position-bottom-left .lakeshore-a11y-toggle {
	left: var(--lakeshore-a11y-offset);
	bottom: var(--lakeshore-a11y-offset);
}

.lakeshore-a11y-position-top-right .lakeshore-a11y-toggle {
	right: var(--lakeshore-a11y-offset);
	top: var(--lakeshore-a11y-offset);
}

.lakeshore-a11y-position-top-left .lakeshore-a11y-toggle {
	left: var(--lakeshore-a11y-offset);
	top: var(--lakeshore-a11y-offset);
}

.lakeshore-a11y-panel {
	position: fixed;
	z-index: 2147483646;
	width: var(--lakeshore-a11y-panel-width);
	max-height: min(620px, calc(100vh - 112px));
	display: none;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #d7dde4;
	border-radius: 8px;
	background: #fff;
	color: #16202a;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
	font: 16px/1.45 Arial, Helvetica, sans-serif;
}

.lakeshore-a11y-root.is-open .lakeshore-a11y-panel {
	display: flex;
}

.lakeshore-a11y-position-bottom-right .lakeshore-a11y-panel {
	right: var(--lakeshore-a11y-offset);
	bottom: 92px;
}

.lakeshore-a11y-position-bottom-left .lakeshore-a11y-panel {
	left: var(--lakeshore-a11y-offset);
	bottom: 92px;
}

.lakeshore-a11y-position-top-right .lakeshore-a11y-panel {
	right: var(--lakeshore-a11y-offset);
	top: 92px;
}

.lakeshore-a11y-position-top-left .lakeshore-a11y-panel {
	left: var(--lakeshore-a11y-offset);
	top: 92px;
}

.lakeshore-a11y-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	background: var(--lakeshore-a11y-color);
	color: #fff;
	border-bottom: 4px solid var(--lakeshore-a11y-accent);
}

.lakeshore-a11y-title {
	margin: 0;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: 0;
}

.lakeshore-a11y-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 2px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.lakeshore-a11y-close:hover,
.lakeshore-a11y-close:focus {
	background: rgba(255, 255, 255, 0.18);
	outline: 3px solid #f9c846;
	outline-offset: 2px;
}

.lakeshore-a11y-content {
	padding: 16px;
	overflow: auto;
}

.lakeshore-a11y-section {
	margin: 0 0 16px;
}

.lakeshore-a11y-section:last-child {
	margin-bottom: 0;
}

.lakeshore-a11y-heading {
	margin: 0 0 8px;
	color: #303a45;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.lakeshore-a11y-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.lakeshore-a11y-position-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.lakeshore-a11y-action {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 8px 10px;
	border: 1px solid #cfd7df;
	border-left: 4px solid var(--lakeshore-a11y-accent);
	border-radius: 6px;
	background: #f8fafc;
	color: #1d2a36;
	font: inherit;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}

.lakeshore-a11y-action:hover,
.lakeshore-a11y-action:focus {
	border-color: var(--lakeshore-a11y-color);
	background: #eef7fb;
	outline: 3px solid rgba(249, 200, 70, 0.75);
	outline-offset: 1px;
}

.lakeshore-a11y-action[aria-pressed="true"] {
	border-color: var(--lakeshore-a11y-color);
	border-left-color: var(--lakeshore-a11y-accent);
	background: var(--lakeshore-a11y-color);
	color: #fff;
}

.lakeshore-a11y-stepper {
	display: grid;
	grid-template-columns: 48px 1fr 48px;
	align-items: stretch;
	gap: 8px;
}

.lakeshore-a11y-stepper .lakeshore-a11y-action {
	justify-content: center;
	border-left-width: 1px;
}

.lakeshore-a11y-stepper-value {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid #d9e0e6;
	border-radius: 6px;
	background: #fff;
	font-weight: 700;
}

.lakeshore-a11y-footer {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 8px;
	padding: 0 16px 16px;
}

.lakeshore-a11y-link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 1px solid transparent;
	border-radius: 6px;
	color: var(--lakeshore-a11y-color);
	font-weight: 700;
	text-align: center;
	text-decoration: underline;
}

.lakeshore-a11y-link:focus {
	outline: 3px solid rgba(249, 200, 70, 0.75);
	outline-offset: 1px;
}

.lakeshore-a11y-status {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.lakeshore-a11y-guide {
	position: fixed;
	left: 0;
	right: 0;
	top: 50%;
	z-index: 2147483644;
	display: none;
	height: 12px;
	border-top: 2px solid #17202a;
	border-bottom: 2px solid #17202a;
	background: rgba(249, 200, 70, 0.88);
	pointer-events: none;
}

html.lakeshore-a11y-reading-guide .lakeshore-a11y-guide {
	display: block;
}

html.lakeshore-a11y-readable-font body,
html.lakeshore-a11y-readable-font body *:not(.lakeshore-a11y-root):not(.lakeshore-a11y-root *) {
	font-family: Arial, Verdana, Helvetica, sans-serif !important;
}

html.lakeshore-a11y-line-height body,
html.lakeshore-a11y-line-height body *:not(.lakeshore-a11y-root):not(.lakeshore-a11y-root *) {
	line-height: 1.8 !important;
}

html.lakeshore-a11y-letter-spacing body,
html.lakeshore-a11y-letter-spacing body *:not(.lakeshore-a11y-root):not(.lakeshore-a11y-root *) {
	letter-spacing: 0.08em !important;
}

html.lakeshore-a11y-underline-links a {
	text-decoration: underline !important;
	text-decoration-thickness: 0.12em !important;
	text-underline-offset: 0.16em !important;
}

html.lakeshore-a11y-highlight-headings h1,
html.lakeshore-a11y-highlight-headings h2,
html.lakeshore-a11y-highlight-headings h3,
html.lakeshore-a11y-highlight-headings h4,
html.lakeshore-a11y-highlight-headings h5,
html.lakeshore-a11y-highlight-headings h6,
html.lakeshore-a11y-highlight-headings [role="heading"] {
	outline: 3px solid #f9c846 !important;
	outline-offset: 3px !important;
}

html.lakeshore-a11y-hide-images img,
html.lakeshore-a11y-hide-images picture,
html.lakeshore-a11y-hide-images svg:not(.lakeshore-a11y-toggle svg) {
	visibility: hidden !important;
}

html.lakeshore-a11y-pause-motion *,
html.lakeshore-a11y-pause-motion *::before,
html.lakeshore-a11y-pause-motion *::after {
	animation-duration: 0.001ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.001ms !important;
}

html.lakeshore-a11y-high-contrast body {
	background: #000 !important;
	color: #fff !important;
}

html.lakeshore-a11y-high-contrast body *:not(.lakeshore-a11y-root):not(.lakeshore-a11y-root *) {
	background-color: #000 !important;
	color: #fff !important;
	border-color: #fff !important;
	box-shadow: none !important;
}

html.lakeshore-a11y-high-contrast a {
	color: #ffff66 !important;
}

html.lakeshore-a11y-light-contrast body,
html.lakeshore-a11y-light-contrast body *:not(.lakeshore-a11y-root):not(.lakeshore-a11y-root *) {
	background-color: #fffbe8 !important;
	color: #151515 !important;
}

html.lakeshore-a11y-grayscale {
	filter: grayscale(1) !important;
}

html.lakeshore-a11y-invert {
	filter: invert(1) hue-rotate(180deg) !important;
}

html.lakeshore-a11y-focus-outline a:focus,
html.lakeshore-a11y-focus-outline button:focus,
html.lakeshore-a11y-focus-outline input:focus,
html.lakeshore-a11y-focus-outline select:focus,
html.lakeshore-a11y-focus-outline textarea:focus,
html.lakeshore-a11y-focus-outline [tabindex]:focus {
	outline: 4px solid #f9c846 !important;
	outline-offset: 3px !important;
}

#top-menu ul.menu li.lakeshore-a11y-menu-open > ul,
#top-menu ul.wp-megamenu li.lakeshore-a11y-menu-open > ul,
#top-menu ul.wp-megamenu-sub-menu li.lakeshore-a11y-menu-open > ul,
#topmenu ul.menu li.lakeshore-a11y-menu-open > ul,
#topmenu ul.sub-menu li.lakeshore-a11y-menu-open > ul,
nav ul.wp-megamenu li.lakeshore-a11y-menu-open > ul,
nav ul.wp-megamenu-sub-menu li.lakeshore-a11y-menu-open > ul,
nav ul.menu li.lakeshore-a11y-menu-open > ul {
	display: block !important;
}

body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer > .wrapper > .row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer > .wrapper > .row > .box-25 {
	float: none !important;
	width: 18% !important;
}

body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer > .wrapper > .row > .box-50 {
	float: none !important;
	width: 64% !important;
}

body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer .box-50 > .box-padding > .row {
	display: flex;
	gap: 24px;
}

body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer .box-50 > .box-padding > .row > .box-50 {
	float: none !important;
	flex: 1 1 0;
	width: auto !important;
	min-width: 0;
}

body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer .box-padding,
body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer .box-paddingS {
	padding-left: 10px;
	padding-right: 10px;
}

@media (max-width: 767px) {
	body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer > .wrapper > .row,
	body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer .box-50 > .box-padding > .row {
		display: block;
	}

	body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer > .wrapper > .row > .box-25,
	body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer > .wrapper > .row > .box-50,
	body[data-lakeshore-a11y-text-size]:not([data-lakeshore-a11y-text-size="0"]) #footer .box-50 > .box-padding > .row > .box-50 {
		width: 100% !important;
	}
}

@media (max-width: 480px) {
	:root {
		--lakeshore-a11y-offset: 12px;
	}

	.lakeshore-a11y-toggle {
		height: 54px;
		min-width: 104px;
	}

	.lakeshore-a11y-position-bottom-right .lakeshore-a11y-panel,
	.lakeshore-a11y-position-bottom-left .lakeshore-a11y-panel {
		right: 8px;
		left: 8px;
		bottom: 76px;
		width: auto;
	}

	.lakeshore-a11y-position-top-right .lakeshore-a11y-panel,
	.lakeshore-a11y-position-top-left .lakeshore-a11y-panel {
		right: 8px;
		left: 8px;
		top: 76px;
		width: auto;
	}

	.lakeshore-a11y-grid,
	.lakeshore-a11y-position-grid,
	.lakeshore-a11y-footer {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lakeshore-a11y-toggle {
		transition: none;
	}
}
