/*
	Miniport by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

	:root {
		--rose-500: #e88b6b;   /* coral from logo */
		--rose-400: #f5b89e;   /* soft peach */
		--rose-300: #ffe6d6;   /* light cream-peach */
		--plum-600: #7a3b46;   /* warm deep accent */
		--hero-strong: #ff9a4d; /* brighter orange for hero emphasis */
		--cream: #fff6ee;
		--charcoal: #2d1c26;
	}

	html {
		box-sizing: border-box;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	body {
		padding-top: 7.5em;
		background: var(--cream);
		color: var(--charcoal);
		position: relative;
		min-height: 100%;
	}

	body:before {
		content: '';
		position: fixed;
		inset: 0;
		background:
			linear-gradient(180deg, rgba(255, 246, 238, 0.95) 0%, rgba(247, 205, 182, 0.55) 100%),
			url("../../images/background.webp") center center/cover fixed no-repeat;
		opacity: 1;
		z-index: -1;
	}

		body.is-preload *, body.is-preload *:before, body.is-preload *:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
		}

	body, input, textarea, select {
		font-family: 'Manrope', 'Open Sans', sans-serif;
		line-height: 1.85em;
		color: rgba(45, 28, 38, 0.86);
		font-weight: 400;
		font-size: 13pt;
	}

	a {
		-moz-transition: color .2s ease-in-out;
		-webkit-transition: color .2s ease-in-out;
		-ms-transition: color .2s ease-in-out;
		transition: color .2s ease-in-out;
		color: var(--rose-500);
		text-decoration: underline;
	}

		a:hover {
			color: var(--plum-600) !important;
		}

		a img {
			border: 0;
		}

b, strong {
	font-weight: 600;
	color: var(--charcoal);
}

	i, em {
		font-style: italic;
	}

	sub {
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}

	sup {
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}

	blockquote {
		border-left: solid 0.75em #eee;
		padding: 1em 0 1em 1.5em;
		font-style: italic;
	}

h1, h2, h3, h4, h5, h6 {
	color: var(--charcoal);
	margin: 0 0 0.75em 0;
}

	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
		text-decoration: none;
		color: inherit;
	}

	h2, h3, h4, h5, h6 {
		font-weight: 700;
	}

	h1 {
		font-size: 3.25em;
		letter-spacing: -0.025em;
		font-weight: 300;
	}

		h1 strong {
			font-weight: 700;
		}

	h2 {
		font-size: 2em;
		letter-spacing: -0.015em;
	}

	h3 {
		font-size: 1.5em;
		letter-spacing: -0.015em;
	}

	em, i {
		font-style: italic;
	}

	br.clear {
		clear: both;
	}

	hr {
		border: 0;
		border-top: solid 1px #444;
		border-top-color: rgba(0, 0, 0, 0.35);
		box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
		height: 1px;
		margin: 3em 0;
	}

	p, ul, ol, dl, table {
		margin-bottom: 2em;
	}

	header {
		margin: 0 0 3em 0;
	}

		header > p {
			font-size: 1.25em;
			margin: 0;
		}

	footer {
		margin: 3em 0 0 0;
	}

		footer > p {
			font-size: 1.25em;
		}

/* Container */

	.container {
		margin: 0 auto;
		max-width: calc(100% - 50px);
		width: 1200px;
	}

		.container.medium {
			width: 900px;
		}

		@media screen and (max-width: 1680px) {

			.container {
				width: 1200px;
			}

				.container.medium {
					width: 900px;
				}

		}

		@media screen and (max-width: 1280px) {

			.container {
				width: 960px;
			}

				.container.medium {
					width: 720px;
				}

		}

		@media screen and (max-width: 980px) {

			.container {
				width: 100%;
				max-width: calc(100% - 50px);
			}

				.container.medium {
					width: 75%;
				}

		}

		@media screen and (max-width: 736px) {

			.container {
				width: 100%;
				max-width: calc(100% - 30px);
			}

				.container.medium {
					width: 100%;
				}

		}

/* Row */

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

		.row > * {
			box-sizing: border-box;
		}

		.row.gtr-uniform > * > :last-child {
			margin-bottom: 0;
		}

		.row.aln-left {
			justify-content: flex-start;
		}

		.row.aln-center {
			justify-content: center;
		}

		.row.aln-right {
			justify-content: flex-end;
		}

		.row.aln-top {
			align-items: flex-start;
		}

		.row.aln-middle {
			align-items: center;
		}

		.row.aln-bottom {
			align-items: flex-end;
		}

		.row > .imp {
			order: -1;
		}

		.row > .col-1 {
			width: 8.33333%;
		}

		.row > .off-1 {
			margin-left: 8.33333%;
		}

		.row > .col-2 {
			width: 16.66667%;
		}

		.row > .off-2 {
			margin-left: 16.66667%;
		}

		.row > .col-3 {
			width: 25%;
		}

		.row > .off-3 {
			margin-left: 25%;
		}

		.row > .col-4 {
			width: 33.33333%;
		}

		.row > .off-4 {
			margin-left: 33.33333%;
		}

		.row > .col-5 {
			width: 41.66667%;
		}

		.row > .off-5 {
			margin-left: 41.66667%;
		}

		.row > .col-6 {
			width: 50%;
		}

		.row > .off-6 {
			margin-left: 50%;
		}

		.row > .col-7 {
			width: 58.33333%;
		}

		.row > .off-7 {
			margin-left: 58.33333%;
		}

		.row > .col-8 {
			width: 66.66667%;
		}

		.row > .off-8 {
			margin-left: 66.66667%;
		}

		.row > .col-9 {
			width: 75%;
		}

		.row > .off-9 {
			margin-left: 75%;
		}

		.row > .col-10 {
			width: 83.33333%;
		}

		.row > .off-10 {
			margin-left: 83.33333%;
		}

		.row > .col-11 {
			width: 91.66667%;
		}

		.row > .off-11 {
			margin-left: 91.66667%;
		}

		.row > .col-12 {
			width: 100%;
		}

		.row > .off-12 {
			margin-left: 100%;
		}

		.row.gtr-0 {
			margin-top: 0px;
			margin-left: 0px;
		}

			.row.gtr-0 > * {
				padding: 0px 0 0 0px;
			}

			.row.gtr-0.gtr-uniform {
				margin-top: 0px;
			}

				.row.gtr-0.gtr-uniform > * {
					padding-top: 0px;
				}

		.row.gtr-25 {
			margin-top: -6.25px;
			margin-left: -6.25px;
		}

			.row.gtr-25 > * {
				padding: 6.25px 0 0 6.25px;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -6.25px;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 6.25px;
				}

		.row.gtr-50 {
			margin-top: -12.5px;
			margin-left: -12.5px;
		}

			.row.gtr-50 > * {
				padding: 12.5px 0 0 12.5px;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -12.5px;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 12.5px;
				}

		.row {
			margin-top: -25px;
			margin-left: -25px;
		}

			.row > * {
				padding: 25px 0 0 25px;
			}

			.row.gtr-uniform {
				margin-top: -25px;
			}

				.row.gtr-uniform > * {
					padding-top: 25px;
				}

		.row.gtr-150 {
			margin-top: -37.5px;
			margin-left: -37.5px;
		}

			.row.gtr-150 > * {
				padding: 37.5px 0 0 37.5px;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -37.5px;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 37.5px;
				}

		.row.gtr-200 {
			margin-top: -50px;
			margin-left: -50px;
		}

			.row.gtr-200 > * {
				padding: 50px 0 0 50px;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -50px;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 50px;
				}

		@media screen and (max-width: 1680px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-xlarge {
					order: -1;
				}

				.row > .col-1-xlarge {
					width: 8.33333%;
				}

				.row > .off-1-xlarge {
					margin-left: 8.33333%;
				}

				.row > .col-2-xlarge {
					width: 16.66667%;
				}

				.row > .off-2-xlarge {
					margin-left: 16.66667%;
				}

				.row > .col-3-xlarge {
					width: 25%;
				}

				.row > .off-3-xlarge {
					margin-left: 25%;
				}

				.row > .col-4-xlarge {
					width: 33.33333%;
				}

				.row > .off-4-xlarge {
					margin-left: 33.33333%;
				}

				.row > .col-5-xlarge {
					width: 41.66667%;
				}

				.row > .off-5-xlarge {
					margin-left: 41.66667%;
				}

				.row > .col-6-xlarge {
					width: 50%;
				}

				.row > .off-6-xlarge {
					margin-left: 50%;
				}

				.row > .col-7-xlarge {
					width: 58.33333%;
				}

				.row > .off-7-xlarge {
					margin-left: 58.33333%;
				}

				.row > .col-8-xlarge {
					width: 66.66667%;
				}

				.row > .off-8-xlarge {
					margin-left: 66.66667%;
				}

				.row > .col-9-xlarge {
					width: 75%;
				}

				.row > .off-9-xlarge {
					margin-left: 75%;
				}

				.row > .col-10-xlarge {
					width: 83.33333%;
				}

				.row > .off-10-xlarge {
					margin-left: 83.33333%;
				}

				.row > .col-11-xlarge {
					width: 91.66667%;
				}

				.row > .off-11-xlarge {
					margin-left: 91.66667%;
				}

				.row > .col-12-xlarge {
					width: 100%;
				}

				.row > .off-12-xlarge {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -6.25px;
					margin-left: -6.25px;
				}

					.row.gtr-25 > * {
						padding: 6.25px 0 0 6.25px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -6.25px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 6.25px;
						}

				.row.gtr-50 {
					margin-top: -12.5px;
					margin-left: -12.5px;
				}

					.row.gtr-50 > * {
						padding: 12.5px 0 0 12.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -12.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 12.5px;
						}

				.row {
					margin-top: -25px;
					margin-left: -25px;
				}

					.row > * {
						padding: 25px 0 0 25px;
					}

					.row.gtr-uniform {
						margin-top: -25px;
					}

						.row.gtr-uniform > * {
							padding-top: 25px;
						}

				.row.gtr-150 {
					margin-top: -37.5px;
					margin-left: -37.5px;
				}

					.row.gtr-150 > * {
						padding: 37.5px 0 0 37.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -37.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 37.5px;
						}

				.row.gtr-200 {
					margin-top: -50px;
					margin-left: -50px;
				}

					.row.gtr-200 > * {
						padding: 50px 0 0 50px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -50px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 50px;
						}

		}

		@media screen and (max-width: 1280px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-large {
					order: -1;
				}

				.row > .col-1-large {
					width: 8.33333%;
				}

				.row > .off-1-large {
					margin-left: 8.33333%;
				}

				.row > .col-2-large {
					width: 16.66667%;
				}

				.row > .off-2-large {
					margin-left: 16.66667%;
				}

				.row > .col-3-large {
					width: 25%;
				}

				.row > .off-3-large {
					margin-left: 25%;
				}

				.row > .col-4-large {
					width: 33.33333%;
				}

				.row > .off-4-large {
					margin-left: 33.33333%;
				}

				.row > .col-5-large {
					width: 41.66667%;
				}

				.row > .off-5-large {
					margin-left: 41.66667%;
				}

				.row > .col-6-large {
					width: 50%;
				}

				.row > .off-6-large {
					margin-left: 50%;
				}

				.row > .col-7-large {
					width: 58.33333%;
				}

				.row > .off-7-large {
					margin-left: 58.33333%;
				}

				.row > .col-8-large {
					width: 66.66667%;
				}

				.row > .off-8-large {
					margin-left: 66.66667%;
				}

				.row > .col-9-large {
					width: 75%;
				}

				.row > .off-9-large {
					margin-left: 75%;
				}

				.row > .col-10-large {
					width: 83.33333%;
				}

				.row > .off-10-large {
					margin-left: 83.33333%;
				}

				.row > .col-11-large {
					width: 91.66667%;
				}

				.row > .off-11-large {
					margin-left: 91.66667%;
				}

				.row > .col-12-large {
					width: 100%;
				}

				.row > .off-12-large {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -6.25px;
					margin-left: -6.25px;
				}

					.row.gtr-25 > * {
						padding: 6.25px 0 0 6.25px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -6.25px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 6.25px;
						}

				.row.gtr-50 {
					margin-top: -12.5px;
					margin-left: -12.5px;
				}

					.row.gtr-50 > * {
						padding: 12.5px 0 0 12.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -12.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 12.5px;
						}

				.row {
					margin-top: -25px;
					margin-left: -25px;
				}

					.row > * {
						padding: 25px 0 0 25px;
					}

					.row.gtr-uniform {
						margin-top: -25px;
					}

						.row.gtr-uniform > * {
							padding-top: 25px;
						}

				.row.gtr-150 {
					margin-top: -37.5px;
					margin-left: -37.5px;
				}

					.row.gtr-150 > * {
						padding: 37.5px 0 0 37.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -37.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 37.5px;
						}

				.row.gtr-200 {
					margin-top: -50px;
					margin-left: -50px;
				}

					.row.gtr-200 > * {
						padding: 50px 0 0 50px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -50px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 50px;
						}

		}

		@media screen and (max-width: 980px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-medium {
					order: -1;
				}

				.row > .col-1-medium {
					width: 8.33333%;
				}

				.row > .off-1-medium {
					margin-left: 8.33333%;
				}

				.row > .col-2-medium {
					width: 16.66667%;
				}

				.row > .off-2-medium {
					margin-left: 16.66667%;
				}

				.row > .col-3-medium {
					width: 25%;
				}

				.row > .off-3-medium {
					margin-left: 25%;
				}

				.row > .col-4-medium {
					width: 33.33333%;
				}

				.row > .off-4-medium {
					margin-left: 33.33333%;
				}

				.row > .col-5-medium {
					width: 41.66667%;
				}

				.row > .off-5-medium {
					margin-left: 41.66667%;
				}

				.row > .col-6-medium {
					width: 50%;
				}

				.row > .off-6-medium {
					margin-left: 50%;
				}

				.row > .col-7-medium {
					width: 58.33333%;
				}

				.row > .off-7-medium {
					margin-left: 58.33333%;
				}

				.row > .col-8-medium {
					width: 66.66667%;
				}

				.row > .off-8-medium {
					margin-left: 66.66667%;
				}

				.row > .col-9-medium {
					width: 75%;
				}

				.row > .off-9-medium {
					margin-left: 75%;
				}

				.row > .col-10-medium {
					width: 83.33333%;
				}

				.row > .off-10-medium {
					margin-left: 83.33333%;
				}

				.row > .col-11-medium {
					width: 91.66667%;
				}

				.row > .off-11-medium {
					margin-left: 91.66667%;
				}

				.row > .col-12-medium {
					width: 100%;
				}

				.row > .off-12-medium {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -6.25px;
					margin-left: -6.25px;
				}

					.row.gtr-25 > * {
						padding: 6.25px 0 0 6.25px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -6.25px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 6.25px;
						}

				.row.gtr-50 {
					margin-top: -12.5px;
					margin-left: -12.5px;
				}

					.row.gtr-50 > * {
						padding: 12.5px 0 0 12.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -12.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 12.5px;
						}

				.row {
					margin-top: -25px;
					margin-left: -25px;
				}

					.row > * {
						padding: 25px 0 0 25px;
					}

					.row.gtr-uniform {
						margin-top: -25px;
					}

						.row.gtr-uniform > * {
							padding-top: 25px;
						}

				.row.gtr-150 {
					margin-top: -37.5px;
					margin-left: -37.5px;
				}

					.row.gtr-150 > * {
						padding: 37.5px 0 0 37.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -37.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 37.5px;
						}

				.row.gtr-200 {
					margin-top: -50px;
					margin-left: -50px;
				}

					.row.gtr-200 > * {
						padding: 50px 0 0 50px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -50px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 50px;
						}

		}

		@media screen and (max-width: 736px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-small {
					order: -1;
				}

				.row > .col-1-small {
					width: 8.33333%;
				}

				.row > .off-1-small {
					margin-left: 8.33333%;
				}

				.row > .col-2-small {
					width: 16.66667%;
				}

				.row > .off-2-small {
					margin-left: 16.66667%;
				}

				.row > .col-3-small {
					width: 25%;
				}

				.row > .off-3-small {
					margin-left: 25%;
				}

				.row > .col-4-small {
					width: 33.33333%;
				}

				.row > .off-4-small {
					margin-left: 33.33333%;
				}

				.row > .col-5-small {
					width: 41.66667%;
				}

				.row > .off-5-small {
					margin-left: 41.66667%;
				}

				.row > .col-6-small {
					width: 50%;
				}

				.row > .off-6-small {
					margin-left: 50%;
				}

				.row > .col-7-small {
					width: 58.33333%;
				}

				.row > .off-7-small {
					margin-left: 58.33333%;
				}

				.row > .col-8-small {
					width: 66.66667%;
				}

				.row > .off-8-small {
					margin-left: 66.66667%;
				}

				.row > .col-9-small {
					width: 75%;
				}

				.row > .off-9-small {
					margin-left: 75%;
				}

				.row > .col-10-small {
					width: 83.33333%;
				}

				.row > .off-10-small {
					margin-left: 83.33333%;
				}

				.row > .col-11-small {
					width: 91.66667%;
				}

				.row > .off-11-small {
					margin-left: 91.66667%;
				}

				.row > .col-12-small {
					width: 100%;
				}

				.row > .off-12-small {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -3.75px;
					margin-left: -3.75px;
				}

					.row.gtr-25 > * {
						padding: 3.75px 0 0 3.75px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -3.75px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 3.75px;
						}

				.row.gtr-50 {
					margin-top: -7.5px;
					margin-left: -7.5px;
				}

					.row.gtr-50 > * {
						padding: 7.5px 0 0 7.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -7.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 7.5px;
						}

				.row {
					margin-top: -15px;
					margin-left: -15px;
				}

					.row > * {
						padding: 15px 0 0 15px;
					}

					.row.gtr-uniform {
						margin-top: -15px;
					}

						.row.gtr-uniform > * {
							padding-top: 15px;
						}

				.row.gtr-150 {
					margin-top: -22.5px;
					margin-left: -22.5px;
				}

					.row.gtr-150 > * {
						padding: 22.5px 0 0 22.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -22.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 22.5px;
						}

				.row.gtr-200 {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row.gtr-200 > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 30px;
						}

		}

/* Form */

	form label {
		color: #3e3e3e;
		font-weight: 700;
		display: block;
		margin: 0 0 0.5em 0;
	}

	form input[type=text],
	form input[type=email],
	form input[type=password],
	form select,
	form textarea {
		-moz-transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
		-webkit-transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
		-ms-transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
		transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
		-webkit-appearance: none;
		display: block;
		border: 0;
		padding: 0.75em;
		font-size: 1em;
		border-radius: 8px;
		border: solid 1px #ddd;
		background: #fff;
		color: #bbb;
		box-shadow: inset 0px 2px 3px 1px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025);
		width: 100%;
	}

		form input[type=text]:focus,
		form input[type=email]:focus,
		form input[type=password]:focus,
	form select:focus,
	form textarea:focus {
		background: #fff9f4;
		box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025), inset 0px 0px 2px 1px var(--rose-500);
	}

	form textarea {
		height: 15em;
	}

	form .actions:last-child {
		margin-bottom: 0;
	}

	form ::-webkit-input-placeholder {
		color: #555 !important;
	}

	form :-moz-placeholder {
		color: #555 !important;
	}

	form ::-moz-placeholder {
		color: #555 !important;
	}

	form :-ms-input-placeholder {
		color: #555 !important;
	}

	form ::-moz-focus-inner {
		border: 0;
	}

/* Tables */

	table {
		width: 100%;
	}

		table.default {
			width: 100%;
		}

			table.default tr {
				border-top: solid 1px #eee;
			}

				table.default tr:first-child {
					border-top: 0;
				}

			table.default td {
				padding: 0.5em 1em 0.5em 1em;
			}

			table.default th {
				text-align: left;
				padding: 0.5em 1em 0.5em 1em;
				font-weight: 600;
				margin: 0 0 1em 0;
			}

			table.default thead {
				background: #4f4f4f;
				color: #fff;
			}

/* Section/Article */

	section, article {
		margin-bottom: 3em;
	}

	section > :last-child,
	article > :last-child,
	section:last-child,
	article:last-child {
		margin-bottom: 0;
	}

/* Image */

	.image {
		display: inline-block;
		position: relative;
	}

		.image img {
			display: block;
			width: 100%;
		}

		.image.fit {
			display: block;
			width: 100%;
		}

		.image.featured {
			display: block;
			width: 100%;
			margin: 0 0 2em 0;
		}

		.image.left {
			float: left;
			margin: 0 2em 2em 0;
		}

		.image.centered {
			display: block;
			margin: 0 0 2em 0;
		}

			.image.centered img {
				margin: 0 auto;
				width: auto;
			}

/* Button */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button,
	.button {
		-moz-transition: background-color .2s ease-in-out;
		-webkit-transition: background-color .2s ease-in-out;
		-ms-transition: background-color .2s ease-in-out;
		transition: background-color .2s ease-in-out;
		-webkit-appearance: none;
		position: relative;
		display: inline-block;
		color: #fff !important;
		text-decoration: none;
		font-weight: 700;
		border: 0;
		outline: 0;
		cursor: pointer;
		border-radius: 999px;
		overflow: hidden;
		background: linear-gradient(120deg, var(--rose-500), var(--rose-400));
		box-shadow: 0 10px 20px rgba(138, 63, 102, 0.22);
		padding: 0.9em 2.4em;
		font-size: 1.05em;
		max-width: 24em;
	}

		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		button:hover,
		.button:hover {
			background: linear-gradient(120deg, var(--plum-600), var(--rose-500));
			color: #fff !important;
		}

		input[type="button"]:active,
		input[type="submit"]:active,
		input[type="reset"]:active,
		button:active,
		.button:active {
			transform: translateY(1px);
		}

		input[type="button"].large,
		input[type="submit"].large,
		input[type="reset"].large,
		button.large,
		.button.large {
			font-size: 1.5em;
			letter-spacing: -0.025em;
		}

		input[type="button"].alt,
		input[type="submit"].alt,
		input[type="reset"].alt,
	button.alt,
	.button.alt {
		background: transparent;
		color: var(--plum-600) !important;
		box-shadow: inset 0 0 0 2px rgba(214, 107, 157, 0.45);
	}

		input[type="button"].alt:hover,
		input[type="submit"].alt:hover,
		input[type="reset"].alt:hover,
		button.alt:hover,
		.button.alt:hover {
			background: rgba(214, 107, 157, 0.12);
			color: var(--plum-600) !important;
		}

		input[type="button"].alt:active,
		input[type="submit"].alt:active,
		input[type="reset"].alt:active,
		button.alt:active,
		.button.alt:active {
			transform: translateY(1px);
		}

/* List */

	ul {
		list-style: disc;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
		}

	ol {
		list-style: decimal;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

/* Social */

	ul.social {
		cursor: default;
		margin: 0;
		list-style: none;
		padding-left: 0;
		text-align: center;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.7em;
	}

		ul.social li {
			position: relative;
			display: block;
			margin: 0;
			top: 0;
			padding-left: 0;
		}

			ul.social li a {
				display: inline-flex;
				align-items: center;
				gap: 0.55em;
				padding: 0.55em 1.1em;
				border-radius: 999px;
				background: linear-gradient(120deg, var(--social-color, rgba(232, 139, 107, 0.9)), rgba(122, 59, 70, 0.9));
				color: #fff;
				text-decoration: none;
				box-shadow: 0 10px 24px rgba(0,0,0,0.12);
				transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
			}

				ul.social li a:hover {
					transform: translateY(-1px);
					background: linear-gradient(120deg, var(--social-color, rgba(232, 139, 107, 1)), rgba(122, 59, 70, 1));
					box-shadow: 0 12px 28px rgba(0,0,0,0.16);
					color: #fff !important;
				}

			ul.social li img {
				width: 28px;
				height: 28px;
				object-fit: cover;
				display: block;
				border-radius: 999px;
				background: rgba(255, 255, 255, 0.92);
			}

			ul.social li .label {
				font-weight: 700;
				font-size: 1.05em;
			}

		ul.social.is-compact li a {
			width: 48px;
			height: 48px;
			padding: 0;
			justify-content: center;
		}

			ul.social.is-compact li .label {
				position: absolute;
				width: 1px;
				height: 1px;
				padding: 0;
				margin: -1px;
				overflow: hidden;
				clip: rect(0, 0, 0, 0);
				white-space: nowrap;
				border: 0;
			}

/* Actions */

	ul.actions {
		list-style: none;
		padding-left: 0;
	}

		ul.actions li {
			display: inline-block;
			margin: 0 0 0 1em;
			padding-left: 0;
		}

			ul.actions li:first-child {
				margin-left: 0;
			}

/* Box */

	.box {
		background: rgba(255, 246, 238, 0.9);
		box-shadow: 0 12px 28px rgba(136, 63, 80, 0.12);
		text-align: center;
		padding: 2em;
		border-radius: 18px;
	}

		.box.style1 {
			padding: 3em 2em 3.5em 2em;
		}

			.box.style1 h3 {
				margin-bottom: 0.5em;
			}

		.box.style2 h3 {
			margin-bottom: 0.25em;
		}

		.box.style2 .image {
			position: relative;
			left: 2em;
			top: 2em;
			margin: -4em 0 4em -4em;
			width: auto;
		}

/* Icons */

	.icon {
		text-decoration: none;
		text-decoration: none;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon:before {
			font-size: 1.25em;
		}

		.icon > .label {
			display: none;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

	.icon.featured {
		color: var(--rose-500);
			display: block;
			margin: 0 0 1.5em 0;
			cursor: default;
		}

			.icon.featured:before {
				font-size: 6em;
			}

/* Wrappers */

	.wrapper {
		background: transparent;
		box-shadow: none;
		padding: 8em 0 8em 0;
		text-align: center;
		position: relative;
	}

		.wrapper.style1 {
			background: transparent;
		}

		.wrapper.style2 {
			background-color: #fff9f4;
		}

		.wrapper.style3 {
			background-color: #fff3ea;
		}

		.wrapper.style4 {
			background: linear-gradient(180deg, rgba(255, 246, 238, 0.9), rgba(245, 184, 158, 0.4));
			color: var(--charcoal);
			text-shadow: none;
			position: relative;
			overflow: hidden;
		}

			.wrapper.style4:before {
				content: '';
				position: absolute;
				inset: 0;
				background: radial-gradient(circle at 20% 20%, rgba(232,139,107,0.12), transparent 32%),
				            radial-gradient(circle at 80% 10%, rgba(255,154,77,0.12), transparent 38%);
				pointer-events: none;
			}

			.wrapper.style4 h1, .wrapper.style4 h2, .wrapper.style4 h3, .wrapper.style4 h4, .wrapper.style4 h5, .wrapper.style4 h6 {
				color: var(--charcoal);
			}

			.wrapper.style4 form input[type=text],
			.wrapper.style4 form input[type=email],
			.wrapper.style4 form input[type=password],
			.wrapper.style4 form select,
			.wrapper.style4 form textarea {
				border: 1px solid rgba(122, 59, 70, 0.18);
				background: rgba(255, 255, 255, 0.92);
				color: var(--charcoal);
				box-shadow: 0 8px 20px rgba(0,0,0,0.05);
			}

				.wrapper.style4 form input[type=text]:focus,
				.wrapper.style4 form input[type=email]:focus,
				.wrapper.style4 form input[type=password]:focus,
				.wrapper.style4 form select:focus,
			.wrapper.style4 form textarea:focus {
				background: #fff;
				border-color: rgba(232, 139, 107, 0.8);
				box-shadow: 0 10px 26px rgba(232,139,107,0.18);
			}

			.wrapper.style4 hr {
				border: 0;
				border-top: 1px solid rgba(122, 59, 70, 0.18);
			}

/* Blog feed */

	.blog-section .section-heading {
		text-align: center;
		margin: 0 auto 3em;
		max-width: 760px;
	}

		.blog-section .section-heading .eyebrow {
			display: inline-block;
			padding: 0.35em 0.9em;
			border-radius: 999px;
			background: linear-gradient(120deg, rgba(232, 139, 107, 0.12), rgba(245, 184, 158, 0.24));
			color: var(--plum-600);
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0.08em;
			font-size: 0.85em;
		}

		.blog-section .section-heading h2 {
			margin: 0.4em 0 0.25em;
			color: var(--charcoal);
			font-size: clamp(2rem, 2vw + 1.1rem, 2.6rem);
			line-height: 1.2;
		}

		.blog-section .section-heading p {
			color: rgba(45, 28, 38, 0.75);
			margin: 0 auto;
			max-width: 680px;
		}

	.blog-carousel {
		display: flex;
		flex-direction: column;
		gap: 1.4em;
		align-items: center;
	}

		.carousel-viewport {
			width: 100%;
			max-width: 980px;
			overflow: hidden;
			border-radius: 22px;
		}

		.carousel-track {
			display: flex;
			width: 100%;
			transition: transform 0.45s ease;
		}

			.carousel-track .post-card {
				min-width: 100%;
				flex: 0 0 100%;
				margin-bottom: 18px;
			}

		.carousel-nav {
			display: flex;
			gap: 0.6em;
			justify-content: center;
			align-items: center;
		}

			.carousel-btn {
				width: 42px;
				height: 42px;
				border-radius: 50%;
				border: none;
				background: linear-gradient(120deg, var(--rose-500), var(--rose-400));
				color: #fff;
				font-size: 1.1rem;
				display: flex;
				align-items: center;
				justify-content: center;
				cursor: pointer;
				box-shadow: 0 10px 22px rgba(122, 59, 70, 0.16);
				transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
			}

				.carousel-btn:hover {
					background: linear-gradient(120deg, var(--rose-500), var(--plum-600));
					transform: translateY(-2px);
				}

				.carousel-btn:focus-visible {
					outline: 3px solid var(--rose-400);
					outline-offset: 2px;
				}

				.carousel-btn.disabled {
					opacity: 0.55;
					background: rgba(232, 139, 107, 0.28);
					color: rgba(255, 255, 255, 0.78);
					pointer-events: none;
				}

				.carousel-btn.hidden {
					display: none;
				}

		.blog-carousel .no-posts {
			color: rgba(45, 28, 38, 0.7);
			font-weight: 600;
		}

	.post-card {
		--post-media-size: clamp(22rem, 53vw, 33rem);
		background: #fff;
		border-radius: 22px;
		display: grid;
		grid-template-columns: minmax(0, var(--post-media-size)) minmax(0, 1fr);
		grid-template-rows: minmax(0, var(--post-media-size));
		overflow: hidden;
		text-align: left;
	}

	.post-card.single-image .hidden {
		display: none !important;
	}

	.post-slider {
		position: relative;
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 1;
		min-height: 0;
		background: linear-gradient(135deg, rgba(232, 139, 107, 0.2) 0%, rgba(245, 184, 158, 0.08) 40%, rgba(255, 230, 214, 0.4) 100%);
		overflow: hidden;
	}

		.post-slider .slides {
			position: relative;
			height: 100%;
			width: 100%;
		}

		.post-slider .slide {
			position: absolute;
			inset: 0;
			width: 100%;
			height: 100%;
			opacity: 0;
			transform: translateX(100%);
			transition: transform 0.45s ease, opacity 0.45s ease;
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 1.25em;
			background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 238, 0.92));
		}

		.post-slider .slide.active {
			opacity: 1;
			transform: translateX(0);
		}

			.post-slider .slide img {
				width: 100%;
				height: 100%;
				object-fit: contain;
				border-radius: 14px;
				background: #fff;
			}

		.slider-btn {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			width: 32px;
			height: 32px;
			aspect-ratio: 1 / 1;
			border-radius: 50%;
			border: none;
			background: rgba(45, 28, 38, 0.55);
			color: #fff;
			font-size: 0.95rem;
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 0;
			line-height: 1;
			cursor: pointer;
			box-shadow: 0 8px 18px rgba(45, 28, 38, 0.18);
			transition: background 0.2s ease, transform 0.2s ease, opacity 0.15s ease;
			opacity: 0;
			pointer-events: none;
			z-index: 4;
		}

			.post-slider:hover .slider-btn:not(.disabled),
			.post-slider:focus-within .slider-btn:not(.disabled) {
				opacity: 1;
				pointer-events: auto;
			}

			.slider-btn:hover {
				background: rgba(45, 28, 38, 0.75);
				transform: translateY(-50%) scale(1.05);
			}

			.slider-btn:focus-visible {
				outline: 3px solid var(--rose-400);
				outline-offset: 2px;
				opacity: 1;
				pointer-events: auto;
			}

			.slider-btn.prev { left: 14px; }
			.slider-btn.next { right: 14px; }

			.slider-btn.disabled {
				opacity: 0;
				pointer-events: none;
			}

		.slider-dots {
			position: absolute;
			left: 50%;
			bottom: 14px;
			transform: translateX(-50%);
			display: flex;
			gap: 0.4em;
			padding: 0.45em 0.75em;
			background: rgba(45, 28, 38, 0.34);
			backdrop-filter: blur(8px);
			border-radius: 999px;
			align-items: center;
		}

			.slider-dot {
				position: relative;
				width: 24px;
				height: 24px;
				border-radius: 999px;
				border: none;
				background: transparent;
				cursor: pointer;
				transition: width 0.18s ease;
				padding: 0;
			}

			.slider-dot::after {
				content: '';
				position: absolute;
				left: 50%;
				top: 50%;
				width: 10px;
				height: 10px;
				border-radius: 999px;
				border: 1px solid rgba(255, 255, 255, 0.6);
				background: rgba(255, 255, 255, 0.7);
				transform: translate(-50%, -50%);
				transition: width 0.18s ease, background 0.18s ease, border-color 0.18s ease;
			}

			.slider-dot.active {
				width: 32px;
			}

			.slider-dot.active::after {
				width: 22px;
				background: #fff;
				border-color: #fff;
			}

	.post-body {
		box-sizing: border-box;
		height: 100%;
		min-height: 0;
		padding: 2.35em 2.5em;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 0.9em;
		overflow: hidden;
	}

		.post-title {
			font-size: clamp(1.55rem, 1vw + 1.05rem, 2rem);
			color: var(--charcoal);
			margin: 0;
			letter-spacing: -0.01em;
			flex: 0 0 auto;
		}

		.post-text {
			margin: 0;
			color: rgba(45, 28, 38, 0.82);
			line-height: 1.25;
			flex: 1 1 auto;
			min-height: 0;
			overflow-y: auto;
			overscroll-behavior: auto;
			padding-right: 0.35em;
			scrollbar-width: thin;
			white-space: pre-line;
		}

	.post-return {
		margin: 2em auto 0;
		text-align: center;
	}

		.post-return .button {
			width: auto;
			min-width: 12em;
		}

	.post-card.is-loading {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		min-height: 340px;
		padding: 1.8em;
	}

		.post-skeleton {
			width: 100%;
			border-radius: 16px;
			background: linear-gradient(90deg, #f6cbb1 0%, #ffe6d6 45%, #f6cbb1 90%);
			background-size: 200% 100%;
			animation: shimmer 1.6s linear infinite;
		}

		.post-skeleton.media { min-height: 220px; }
		.post-skeleton.text { height: 16px; margin-top: 0.9em; }
		.post-skeleton.text.short { width: 70%; }

	.hidden {
		display: none !important;
	}

	@keyframes shimmer {
		from { background-position: 200% 0; }
		to { background-position: -200% 0; }
	}

/* Dashboard */

	.dashboard-section .section-heading {
		text-align: center;
		margin: 0 auto 3em;
		max-width: 820px;
	}

		.dashboard-section .section-heading .eyebrow {
			display: inline-block;
			padding: 0.35em 0.9em;
			border-radius: 999px;
			background: linear-gradient(120deg, rgba(232, 139, 107, 0.12), rgba(245, 184, 158, 0.24));
			color: var(--plum-600);
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0.08em;
			font-size: 0.85em;
		}

		.dashboard-section .section-heading h2 {
			margin: 0.4em 0 0.25em;
			color: var(--charcoal);
			font-size: clamp(2rem, 2vw + 1.1rem, 2.6rem);
			line-height: 1.2;
		}

		.dashboard-section .section-heading p {
			color: rgba(45, 28, 38, 0.75);
			margin: 0 auto;
			max-width: 700px;
		}

	.dashboard-grid {
		margin-top: 1.5em;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 1fr;
		gap: 1.25rem;
		align-items: stretch;
	}

		@media screen and (max-width: 768px) {
			.dashboard-grid {
				grid-template-columns: 1fr;
			}
		}

	.dash-card {
		position: relative;
		background: #fff;
		border: 1px solid rgba(122, 59, 70, 0.12);
		border-radius: 18px;
		padding: 1.3rem 1.4rem;
		box-shadow: 0 12px 35px rgba(45, 28, 38, 0.08);
		display: flex;
		flex-direction: column;
		gap: 0.85rem;
		text-align: left;
		overflow: hidden;
		height: 100%;
		min-height: 480px;
		max-height: 480px;
	}

		.dash-card.kind-cta {
			background: linear-gradient(135deg, rgba(255, 246, 238, 0.95), rgba(255, 225, 208, 0.9));
			border-color: rgba(232, 139, 107, 0.35);
		}

		.dash-card.kind-availability {
			border-color: rgba(122, 59, 70, 0.2);
		}

		.dash-card.kind-availability .dash-status {
			display: none !important;
		}

		.dash-card::after {
			content: '';
			position: absolute;
			inset: 0;
			pointer-events: none;
			background: linear-gradient(135deg, rgba(232, 139, 107, 0.03) 0%, rgba(245, 184, 158, 0.08) 50%, rgba(232, 139, 107, 0.03) 100%);
			opacity: 0.6;
		}

		.dash-card > * {
			position: relative;
			z-index: 1;
		}

		.dash-card.size-wide { grid-column: span 2; }
		.dash-card.size-tall { grid-row: span 2; }
		.dash-card.size-hero { grid-column: span 2; grid-row: span 2; }
		.dash-card.size-small { min-height: 200px; }
		.dash-card[data-card-id="documents"] { min-height: 240px; }
		.dash-card[data-card-id="documents"] .dash-actions { margin-top: auto; }

		@media screen and (min-width: 1024px) {
			.dash-card[data-card-id="documents"] { min-height: 260px; }
		}

		@media screen and (max-width: 960px) {
			.dash-card.size-wide,
			.dash-card.size-hero {
				grid-column: span 1;
				grid-row: span 1;
			}
		}

		.dash-card.skeleton {
			background: linear-gradient(90deg, #f6cbb1 0%, #ffe6d6 45%, #f6cbb1 90%);
			background-size: 200% 100%;
			animation: shimmer 1.6s linear infinite;
			border: none;
		}

		.dash-card.skeleton::after {
			display: none;
		}

	.dash-card__header {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.dash-card__titles {
		display: flex;
		flex-direction: column;
		gap: 0.2rem;
	}

	.dash-title {
		margin: 0;
		color: var(--charcoal);
		font-size: 1.25rem;
		line-height: 1.2;
	}

	.dash-description {
		margin: 0;
		color: rgba(45, 28, 38, 0.72);
		line-height: 1.6;
	}

	.dash-badge {
		display: inline-block;
		align-self: flex-start;
		padding: 0.25rem 0.75rem;
		border-radius: 999px;
		background: rgba(232, 139, 107, 0.15);
		color: var(--plum-600);
		font-weight: 700;
		font-size: 0.82rem;
		text-transform: uppercase;
		letter-spacing: 0.04em;
	}

	.dash-status {
		display: inline-flex;
		align-items: center;
		padding: 0.35rem 0.7rem;
		border-radius: 12px;
		background: rgba(122, 59, 70, 0.08);
		color: var(--plum-600);
		font-weight: 700;
		text-transform: uppercase;
		font-size: 0.82rem;
	}

		.dash-status.good {
			background: rgba(46, 160, 109, 0.1);
			color: #1d8f63;
		}

		.dash-status.bad {
			background: rgba(194, 68, 68, 0.1);
			color: #c24444;
		}

	.dash-body {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 0.55rem;
		color: rgba(45, 28, 38, 0.8);
		overflow-y: auto;
	}

	.dash-body--center {
		align-items: center;
		justify-content: center;
	}

	#downloads-intro {
		max-width: 26rem;
		width: 100%;
		text-align: justify;
		text-align-last: center;
		text-justify: inter-word;
		hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
	}

	.dash-placeholder {
		margin: 0;
		color: rgba(45, 28, 38, 0.48);
		font-style: italic;
	}

	.dash-list {
		padding-left: 1.1rem;
		margin: 0;
		list-style: disc;
		display: grid;
		gap: 0;
	}

		.dash-list li p {
			margin-bottom: 0;
			line-height: 1.4;
		}

	.dash-stat {
		font-size: clamp(1.8rem, 2vw + 1rem, 2.8rem);
		font-weight: 800;
		color: var(--plum-600);
		margin-top: auto;
	}

		.dash-stat.open {
			color: #1d8f63;
		}

	/* Capacity calendar */
	.capacity-calendar {
		display: flex;
		flex-direction: column;
		gap: 0.4rem;
	}

	.capacity-calendar__nav {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
	}

	.capacity-calendar__nav > .capacity-calendar__arrow {
		background: none;
		border: none;
		box-shadow: none;
		cursor: pointer;
		font-size: 1.3rem;
		line-height: 1;
		padding: 0.1rem 0.35rem;
		border-radius: 6px;
		color: var(--rose-500) !important;
		opacity: 0.7;
		transition: background 0.15s ease, opacity 0.15s ease;
	}

	.capacity-calendar__nav > .capacity-calendar__arrow:hover {
		background: var(--rose-300);
		color: var(--plum-600) !important;
		opacity: 1;
	}

	.capacity-calendar__year {
		font-size: 0.85rem;
		font-weight: 700;
		color: rgba(45, 28, 38, 0.55);
		letter-spacing: 0.04em;
		min-width: 3ch;
		text-align: center;
	}

	.capacity-calendar__grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 0.35rem;
	}

	.capacity-calendar__cell {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.15rem;
		min-height: 2.6rem;
		padding: 0.35rem 0.2rem;
		border-radius: 8px;
		font-size: 0.75rem;
		font-weight: 600;
		line-height: 1.2;
		transition: transform 0.15s ease, box-shadow 0.15s ease;
	}

	.capacity-calendar__cell.available {
		background: rgba(29, 143, 99, 0.12);
		color: #1d8f63;
	}

	.capacity-calendar__cell.unavailable {
		background: rgba(193, 55, 55, 0.10);
		color: #c13737;
	}

	.capacity-calendar__cell.na {
		background: rgba(45, 28, 38, 0.06);
		color: rgba(45, 28, 38, 0.35);
	}

	.capacity-calendar__cell.past {
		background: rgba(45, 28, 38, 0.04);
		color: rgba(45, 28, 38, 0.25);
	}

	.capacity-calendar__nav > .capacity-calendar__arrow:disabled {
		opacity: 0.2;
		cursor: default;
		pointer-events: none;
	}

	.capacity-calendar__cta {
		display: block;
		text-align: center;
		margin-top: 1rem;
		padding: 0.55rem 1.2rem;
		font-size: 0.85rem;
		font-weight: 600;
		color: #fff !important;
		background: linear-gradient(120deg, var(--rose-500), var(--rose-400));
		border-radius: 999px;
		text-decoration: none;
		transition: background 0.2s ease, transform 0.15s ease;
	}

	.capacity-calendar__cta:hover {
		background: linear-gradient(120deg, var(--plum-600), var(--rose-500));
		color: #fff !important;
		transform: translateY(-1px);
	}

	.capacity-calendar__cta.hidden {
		display: none;
	}

	.capacity-calendar__hint {
		display: block;
		margin-top: 0.35rem;
		font-size: 0.7rem;
		line-height: 1.3;
		text-align: center;
		color: rgba(45, 28, 38, 0.5);
	}

	.capacity-calendar__hint.hidden {
		display: none;
	}

	.capacity-calendar__cell.current {
		outline: 2px solid var(--plum-600, #6b2d5b);
		outline-offset: -1px;
		box-shadow: 0 0 0 3px rgba(107, 45, 91, 0.15);
	}

	.capacity-calendar__month {
		font-weight: 700;
	}

	.capacity-calendar__slots {
		font-size: 0.65rem;
		font-weight: 500;
		opacity: 0.8;
	}

	.capacity-calendar--empty {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 150px;
	}

	.capacity-calendar__no-data {
		color: rgba(45, 28, 38, 0.5);
		font-size: 1rem;
		font-style: italic;
		text-align: center;
		margin: 0;
	}

	#courses-card .dash-body {
		gap: 0.65rem;
		overflow-x: hidden;
		overflow-y: hidden;
		padding-right: 0.1rem;
		min-height: 0;
		flex: 1 1 auto;
	}

	.course-preview {
		display: flex;
		flex-direction: column;
		gap: 0.65rem;
		min-height: 0;
		height: 100%;
		flex: 1 1 auto;
	}

	.course-preview__courses {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		flex: 1 1 auto;
		min-height: 0;
		max-height: none;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0.18rem;
		border-radius: 22px;
		border: 1px solid rgba(232, 139, 107, 0.28);
		background:
			linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 239, 0.9)),
			radial-gradient(circle at top left, rgba(232, 139, 107, 0.16), transparent 45%);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.85),
			0 14px 30px rgba(45, 28, 38, 0.08);
		scrollbar-width: thin;
		scrollbar-color: rgba(122, 59, 70, 0.36) rgba(122, 59, 70, 0.08);
	}

		.course-preview__courses::-webkit-scrollbar {
			width: 0.42rem;
		}

		.course-preview__courses::-webkit-scrollbar-track {
			background: rgba(122, 59, 70, 0.06);
			border-radius: 999px;
		}

		.course-preview__courses::-webkit-scrollbar-thumb {
			background: rgba(122, 59, 70, 0.28);
			border-radius: 999px;
		}

	.course-preview__course-card {
		position: relative;
		flex: 0 0 auto;
		min-height: 0;
		margin-bottom: 0;
		padding: 0.72rem 0.78rem;
		border-radius: 16px;
		border: 0;
		background: transparent;
		color: var(--charcoal);
		overflow: hidden;
		box-shadow: none;
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		align-items: center;
		gap: 0.72rem;
		cursor: pointer;
		transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.15s ease;
	}

		.course-preview__course-card + .course-preview__course-card {
			margin-top: 0;
		}

		.course-preview__course-card + .course-preview__course-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0.7rem;
			right: 0.7rem;
			height: 1px;
			background: linear-gradient(90deg, transparent, rgba(122, 59, 70, 0.13), transparent);
		}

		.course-preview__course-card:hover {
			transform: translateY(-1px);
			box-shadow: 0 10px 22px rgba(122, 59, 70, 0.08);
			border-color: transparent;
			background: rgba(255, 255, 255, 0.64);
		}

		.course-preview__course-card:focus-visible,
		.course-preview__modal-close:focus-visible,
		.course-preview__modal-cta:focus-visible {
			outline: 2px solid rgba(122, 59, 70, 0.32);
			outline-offset: 2px;
		}

		.course-preview__course-card:focus-visible {
			background: rgba(255, 255, 255, 0.72);
			box-shadow: 0 10px 22px rgba(122, 59, 70, 0.08);
		}

	.course-preview__course-copy {
		display: grid;
		align-content: center;
		justify-items: start;
		gap: 0.34rem;
		min-width: 0;
	}

	.course-preview__course-title {
		font-size: 0.98rem;
		font-weight: 800;
		line-height: 1.16;
		color: inherit;
		text-align: left;
		display: block;
		min-height: 0;
		overflow-wrap: anywhere;
	}

	.course-preview__course-next {
		display: inline-block;
		max-width: 100%;
		padding: 0.18rem 0.52rem;
		border-radius: 999px;
		background: rgba(232, 139, 107, 0.14);
		color: var(--plum-600);
		font-size: 0.62rem;
		font-weight: 800;
		line-height: 1.25;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
		overflow-wrap: anywhere;
	}

	.course-preview__course-meta {
		display: flex;
		flex-wrap: wrap;
		gap: 0.32rem;
	}

	.course-preview__pill {
		display: inline-flex;
		align-items: center;
		padding: 0.25rem 0.48rem;
		border-radius: 999px;
		font-size: 0.62rem;
		font-weight: 800;
		line-height: 1;
		white-space: nowrap;
		background: rgba(232, 139, 107, 0.14);
		color: var(--plum-600);
	}

		.course-preview__pill.is-muted {
			background: rgba(45, 28, 38, 0.08);
			color: rgba(45, 28, 38, 0.68);
		}

		.course-preview__pill.is-open {
			background: rgba(112, 162, 102, 0.18);
			color: #49683f;
		}

		.course-preview__pill.is-limited {
			background: rgba(232, 139, 107, 0.18);
			color: #9a543a;
		}

		.course-preview__pill.is-waitlist {
			background: rgba(188, 145, 59, 0.16);
			color: #876522;
		}

		.course-preview__pill.is-booked {
			background: rgba(122, 59, 70, 0.16);
			color: var(--plum-600);
		}

	.course-preview__eyebrow {
		margin: 0;
		font-size: 0.68rem;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: rgba(45, 28, 38, 0.46);
	}

	.course-preview__modal[hidden] {
		display: none;
	}

	.course-preview__modal {
		position: fixed;
		inset: 0;
		z-index: 10050;
		display: grid;
		align-items: start;
		justify-items: center;
		padding: 8rem 1.2rem 1.4rem;
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.course-preview__modal-backdrop {
		position: absolute;
		inset: 0;
		background: rgba(45, 28, 38, 0.56);
		backdrop-filter: blur(6px);
	}

	.course-preview__modal-card {
		position: relative;
		z-index: 1;
		width: min(100%, 720px);
		max-height: min(calc(100vh - 9.4rem), 760px);
		overflow: auto;
		padding: 1.35rem 1.25rem 1.15rem;
		border-radius: 28px;
		background: linear-gradient(145deg, rgba(255, 251, 248, 0.99), rgba(255, 239, 230, 0.97));
		border: 1px solid rgba(232, 139, 107, 0.18);
		box-shadow: 0 34px 70px rgba(45, 28, 38, 0.26);
		display: grid;
		gap: 0.95rem;
	}

	.course-preview__modal-close {
		position: sticky;
		top: 0;
		justify-self: end;
		z-index: 3;
		width: 2rem;
		height: 2rem;
		margin: -0.35rem -0.25rem -2.55rem 0;
		padding: 0;
		max-width: none;
		border-radius: 999px;
		border: 1px solid rgba(122, 59, 70, 0.16);
		background: rgba(255, 255, 255, 0.96);
		color: #000 !important;
		font-size: 1rem;
		line-height: 1;
		display: grid;
		place-items: center;
		box-shadow: 0 10px 24px rgba(45, 28, 38, 0.14);
		transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
	}

		.course-preview__modal-close:hover {
			background: #fff;
			color: #000 !important;
			box-shadow: 0 14px 28px rgba(45, 28, 38, 0.18);
			transform: translateY(-1px) scale(1.04);
		}

	.course-preview__modal-header {
		display: grid;
		gap: 0.45rem;
		padding-right: 2.5rem;
	}

	.course-preview__modal-title {
		margin: 0;
		font-size: 1.35rem;
		font-weight: 800;
		line-height: 1.14;
		color: var(--charcoal);
	}

	.course-preview__modal-schedule {
		margin: 0;
		font-size: 0.88rem;
		font-weight: 700;
		line-height: 1.45;
		color: var(--plum-600);
	}

	.course-preview__modal-pills {
		display: flex;
		flex-wrap: wrap;
		gap: 0.4rem;
	}

	.course-preview__modal-description {
		display: grid;
		gap: 0.55rem;
	}

		.course-preview__modal-description:empty {
			display: none;
		}

	.course-preview__modal-copy {
		margin: 0;
		font-size: 0.84rem;
		line-height: 1.65;
		color: rgba(45, 28, 38, 0.72);
	}

	.course-preview__modal-content {
		display: grid;
		gap: 0.9rem;
		min-width: 0;
	}

	.course-preview__appointment-list {
		display: grid;
		align-self: start;
		gap: 0.34rem;
		min-width: 0;
		padding: 0.34rem;
		border-radius: 20px;
		border: 1px solid rgba(232, 139, 107, 0.28);
		background:
			linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 239, 0.9)),
			radial-gradient(circle at top left, rgba(232, 139, 107, 0.16), transparent 45%);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.85),
			0 14px 30px rgba(45, 28, 38, 0.08);
	}

	.course-preview__appointment-heading {
		position: sticky;
		top: 0.34rem;
		z-index: 1;
		justify-self: start;
		display: inline-flex;
		align-items: center;
		width: fit-content;
		max-width: 100%;
		margin: 0;
		padding: 0.46rem 0.76rem;
		border-radius: 999px;
		border: 1px solid rgba(232, 139, 107, 0.18);
		background:
			linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 245, 239, 0.94)),
			radial-gradient(circle at top left, rgba(232, 139, 107, 0.16), transparent 48%);
		font-size: 0.78rem;
		font-weight: 800;
		line-height: 1.2;
		color: var(--charcoal);
	}

	.course-preview__appointment-item {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		align-items: center;
		gap: 0.58rem;
		margin-bottom: 0;
		padding: 0.48rem;
		border-radius: 15px;
		background: rgba(255, 255, 255, 0.72);
		border: 1px solid rgba(232, 139, 107, 0.14);
		box-shadow: 0 8px 18px rgba(45, 28, 38, 0.04);
	}

	.course-preview__appointment-date {
		width: 3.25rem;
		min-height: 3.25rem;
		display: grid;
		place-items: center;
		gap: 0.08rem;
		padding: 0.34rem 0.22rem;
		border-radius: 14px;
		background: linear-gradient(145deg, var(--plum-600), var(--rose-500));
		color: #fff;
		text-align: center;
		box-shadow: 0 12px 24px rgba(122, 59, 70, 0.16);
	}

		.course-preview__appointment-date span {
			font-size: 0.54rem;
			font-weight: 800;
			line-height: 1;
			text-transform: uppercase;
		}

		.course-preview__appointment-date strong {
			font-size: 1.08rem;
			font-weight: 800;
			line-height: 1;
			color: #fff;
		}

	.course-preview__appointment-details {
		display: grid;
		gap: 0.15rem;
		min-width: 0;
	}

	.course-preview__appointment-title,
	.course-preview__appointment-time,
	.course-preview__appointment-note {
		margin: 0;
	}

	.course-preview__appointment-title {
		font-size: 0.86rem;
		font-weight: 800;
		line-height: 1.25;
		color: var(--charcoal);
	}

	.course-preview__appointment-time {
		font-size: 0.78rem;
		font-weight: 800;
		line-height: 1.3;
		color: var(--plum-600);
	}

	.course-preview__appointment-note {
		font-size: 0.74rem;
		font-weight: 700;
		line-height: 1.35;
		color: rgba(45, 28, 38, 0.62);
	}

	.course-preview__modal-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
	}

	.course-preview__info-card {
		margin-bottom: 0;
		padding: 0.78rem 0.84rem;
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.78);
		border: 1px solid rgba(232, 139, 107, 0.14);
	}

	.course-preview__info-label {
		margin: 0 0 0.18rem 0;
		font-size: 0.68rem;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: rgba(45, 28, 38, 0.48);
	}

	.course-preview__info-value {
		margin: 0;
		font-size: 0.82rem;
		font-weight: 700;
		line-height: 1.45;
		color: var(--charcoal);
	}

	.course-preview__modal-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.45rem;
		padding-top: 0.1rem;
	}

	.course-preview__modal-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0.9rem 1.1rem;
		border-radius: 999px;
		background: linear-gradient(135deg, var(--plum-600), var(--rose-500));
		color: #fff !important;
		font-size: 0.84rem;
		font-weight: 800;
		text-decoration: none;
		box-shadow: 0 14px 30px rgba(122, 59, 70, 0.18);
		transition: transform 0.15s ease, box-shadow 0.2s ease;
	}

		.course-preview__modal-cta:hover {
			color: #fff !important;
			text-decoration: none;
			transform: translateY(-1px);
			box-shadow: 0 18px 34px rgba(122, 59, 70, 0.22);
		}

		.course-preview__modal-cta.is-secondary {
			background: rgba(255, 255, 255, 0.82);
			border: 1px solid rgba(122, 59, 70, 0.16);
			color: var(--plum-600) !important;
			box-shadow: 0 12px 24px rgba(45, 28, 38, 0.08);
		}

		.course-preview__modal-cta.is-secondary:hover {
			background: #fff;
			color: var(--plum-600) !important;
			box-shadow: 0 16px 30px rgba(45, 28, 38, 0.12);
		}

		.course-preview__modal-cta.is-disabled,
		.course-preview__modal-cta.is-disabled:hover {
			background: linear-gradient(135deg, rgba(45, 28, 38, 0.22), rgba(45, 28, 38, 0.14));
			color: rgba(45, 28, 38, 0.52) !important;
			border: 1px solid rgba(45, 28, 38, 0.12);
			box-shadow: none;
			cursor: not-allowed;
			pointer-events: none;
			transform: none;
		}

	.course-preview__modal-hint {
		grid-column: 1 / -1;
		margin: 0;
		padding: 0.46rem 0.58rem;
		border-radius: 12px;
		background: rgba(122, 59, 70, 0.07);
		border: 1px solid rgba(122, 59, 70, 0.1);
		font-size: 0.76rem;
		line-height: 1.5;
		color: rgba(45, 28, 38, 0.72);
	}

	@media screen and (min-width: 900px) {
		.course-preview__modal-content.has-description {
			grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.86fr);
			align-items: start;
		}

		.course-preview__modal-content.has-description .course-preview__appointment-list {
			max-height: var(--course-appointment-list-max-height, none);
			overflow-y: auto;
			scrollbar-width: thin;
			scrollbar-color: rgba(122, 59, 70, 0.36) rgba(122, 59, 70, 0.08);
		}

		.course-preview__modal-content.has-description .course-preview__appointment-list::-webkit-scrollbar {
			width: 0.42rem;
		}

		.course-preview__modal-content.has-description .course-preview__appointment-list::-webkit-scrollbar-track {
			background: rgba(122, 59, 70, 0.06);
			border-radius: 999px;
		}

		.course-preview__modal-content.has-description .course-preview__appointment-list::-webkit-scrollbar-thumb {
			background: rgba(122, 59, 70, 0.28);
			border-radius: 999px;
		}
	}

	@media screen and (max-width: 640px) {
		.course-preview__courses {
			border-radius: 18px;
		}

		.course-preview__course-card {
			grid-template-columns: 1fr;
			gap: 0.58rem;
			padding: 0.68rem;
		}

		.course-preview__course-next {
			font-size: 0.58rem;
			padding: 0.16rem 0.46rem;
		}

		.course-preview__modal {
			padding: 6.4rem 0.75rem 0.75rem;
		}

		.course-preview__modal-card {
			width: 100%;
			max-height: calc(100vh - 7.15rem);
			padding: 1.05rem 1rem 1rem;
			border-radius: 22px;
		}

		.course-preview__modal-grid {
			grid-template-columns: 1fr;
		}

		.course-preview__modal-actions {
			grid-template-columns: 1fr;
		}
	}

	.dash-media {
		border-radius: 12px;
		overflow: hidden;
		background: #fff;
		box-shadow: 0 8px 20px rgba(45, 28, 38, 0.08);
	}

		.dash-media img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.dash-media figcaption {
			font-size: 0.95rem;
			padding: 0.75rem;
			color: rgba(45, 28, 38, 0.75);
			background: rgba(232, 139, 107, 0.08);
		}

	.dash-actions {
		display: flex;
		flex-wrap: wrap;
		gap: 0.55rem;
	}

	.dash-button {
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
		border: 1px solid var(--plum-600);
		color: var(--plum-600);
		text-decoration: none;
		background: #fff;
		border-radius: 999px;
		padding: 0.55rem 1rem;
		font-weight: 700;
		transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
	}

		.dash-button:hover {
			transform: translateY(-1px);
			box-shadow: 0 10px 22px rgba(122, 59, 70, 0.14);
		}

		.dash-button.primary {
			background: var(--plum-600);
			color: #fff;
			border-color: var(--plum-600);
		}

	.availability-form {
		display: flex;
		flex-wrap: wrap;
		gap: 0.7rem;
		align-items: center;
	}

		.availability-form input[type="date"] {
			padding: 0.55rem 0.75rem;
			border-radius: 12px;
			border: 1px solid rgba(122, 59, 70, 0.22);
			background: #fff9f4;
			color: var(--charcoal);
		}

	.availability-result {
		margin: 0.2rem 0 0;
		font-weight: 700;
	}

		.availability-result.good { color: #1d8f63; }
		.availability-result.bad { color: #c24444; }

	.dash-empty {
		color: rgba(45, 28, 38, 0.7);
		font-weight: 700;
		text-align: center;
		margin: 1rem auto;
	}

	.dashboard-warning {
		margin-top: 1.5rem;
		padding: 0.75rem 1.25rem;
		background: rgba(194, 68, 68, 0.14);
		border: 1px solid rgba(194, 68, 68, 0.42);
		border-radius: 10px;
		box-shadow: 0 10px 24px rgba(122, 59, 70, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
		text-align: center;
	}

	.dashboard-warning p {
		margin: 0;
		font-size: 0.95rem;
		font-weight: 800;
		line-height: 1.55;
		color: #7f1d1d;
	}

	.dashboard-warning strong {
		color: inherit;
		font-weight: 900;
		text-decoration: underline;
		text-decoration-thickness: 0.08em;
		text-underline-offset: 0.16em;
	}

	@media screen and (max-width: 980px) {
		.post-card {
			grid-template-rows: auto auto;
			grid-template-columns: 1fr;
		}

		.post-body {
			height: auto;
			max-height: 32rem;
			overflow: hidden;
			padding: 1.9em 1.75em 2.15em;
		}

		.post-slider {
			height: auto;
			min-height: 180px;
			max-width: 380px;
			margin: 0 auto;
		}

		.post-text {
			max-height: 25rem;
			overflow-y: auto;
			overscroll-behavior: auto;
		}

			.post-slider .slide {
				padding: 1.05em;
			}

			.post-slider .slide img {
				max-width: 98%;
				max-height: 98%;
			}
	}

	@media screen and (max-width: 736px) {
		.post-body {
			max-height: 28rem;
			overflow: hidden;
			padding: 1.7em 1.35em 1.85em;
		}

		.post-slider {
			min-height: 240px;
			max-width: 100%;
		}

		.post-text {
			max-height: 22rem;
			overflow-y: auto;
			overscroll-behavior: auto;
		}

		.post-slider .slide {
			padding: 1em;
		}

		.post-slider .slide img {
			max-width: 96%;
			max-height: 96%;
		}
	}

/* Nav */

	#nav {
		background: linear-gradient(120deg, rgba(232, 139, 107, 0.9) 0%, rgba(245, 184, 158, 0.88) 50%, rgba(255, 230, 214, 0.82) 100%);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		box-shadow: 0 18px 38px rgba(122, 59, 70, 0.2);
		transition: max-width .4s ease, top .35s ease, box-shadow .35s ease, border-radius .35s ease;
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		left: 50%;
		top: 1.25em;
		transform: translateX(-50%);
		width: calc(100% - 0.8rem);
		max-width: 1550px;
		border-radius: 999px;
		padding: 0 20px;
		border: none;
		z-index: 10000;
		cursor: default;
		height: 5.5em;
	}

	#nav.is-scrolled {
		max-width: 900px;
		top: 0.75em;
		box-shadow: 0 14px 26px rgba(122, 59, 70, 0.18);
	}

		#nav ul {
			margin-bottom: 0;
			list-style: none;
			padding-left: 0;
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr)) auto repeat(2, minmax(0, 1fr));
			width: 100%;
			align-items: center;
			column-gap: 0.75em;
			height: 100%;
		}

		#nav li {
			padding-left: 0;
			width: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
			text-align: center;
		}

			#nav li.logo {
				padding: 0;
				width: auto;
			}

			#nav li.logo a {
				padding: 0;
				height: 100%;
				display: flex;
				align-items: center;
			}

			#nav li.logo img {
				max-height: 4.25em;
				width: auto;
				display: block;
			}

		#nav a {
			-moz-transition: background-color .2s ease-in-out;
			-webkit-transition: background-color .2s ease-in-out;
			-ms-transition: background-color .2s ease-in-out;
			transition: background-color .2s ease-in-out;
			position: relative;
			color: #fff;
			text-decoration: none;
			outline: 0;
			font-weight: 600;
			font-size: 1.05em;
			border-radius: 999px;
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			min-height: 3.2em;
			padding: 0.65em 1.5em;
			line-height: 1.3;
			white-space: nowrap;
		}

			#nav a:hover {
				color: #fff !important;
				background: rgba(255, 255, 255, 0.12);
			}

			#nav a.active {
				background: rgba(255, 255, 255, 0.22);
			}

				#nav a.active:before {
					display: none !important;
					content: none !important;
				}

/* Articles */

	body > article,
	#main > article {
		margin-bottom: 0;
	}

	#top {
		padding: 6em 0 8em 0;
		text-align: left;
	}

		#top .image {
			border-radius: 100%;
			width: 20em;
			height: 20em;
			margin: 0;
			padding: 0.65em;
			background: linear-gradient(145deg, rgba(232, 139, 107, 0.4), rgba(245, 184, 158, 0.6));
			box-shadow: 0 20px 40px rgba(122, 59, 70, 0.16);
		}

			#top .image img {
				border-radius: 100%;
				object-fit: cover;
				width: 100%;
				height: 100%;
				border: 5px solid #fff;
			}

	#top h1 {
		margin-top: 0.35em;
		color: var(--charcoal);
		font-size: clamp(2.3rem, 2.65vw + 1.1rem, 3.45rem);
		line-height: 1.06;
		letter-spacing: -0.02em;
		font-weight: 400;
	}

		#top h1 br {
			display: block;
			margin-bottom: 0.03em;
		}

		#top h1 strong,
		#top h2 strong,
		#top h3 strong {
			color: var(--hero-strong); /* fallback */
			display: inline;
			font-weight: 700;
			letter-spacing: -0.01em;
			line-height: 1.15;
			padding-bottom: 0.12em;
			background: linear-gradient(120deg, var(--plum-600), var(--rose-500));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
		}

		#top h1 .hero-subheading {
			display: block;
			margin-top: 0.16em;
			font-size: clamp(1.08rem, 0.8vw + 0.72rem, 1.5rem);
			font-weight: 600;
			letter-spacing: -0.01em;
			color: rgba(45, 28, 38, 0.78);
		}

		#top p {
			font-size: 1.05em;
			line-height: 1.42em;
			max-width: 68ch;
			margin: 0 auto 1em;
			text-align: justify;
			text-justify: inter-word;
			hyphens: auto;
			color: rgba(45, 28, 38, 0.8);
		}

			#top p a {
				color: inherit;
			}

	#contact footer {
		font-size: 0.9em;
	}

	#contact .actions {
		text-align: center;
	}

/* Copyright */

	#copyright {
		color: #666;
		font-size: 1em;
		line-height: 1em;
		list-style: none;
		padding-left: 0;
		margin-bottom: 0;
	}

		#copyright li {
			display: inline-block;
			border-left: solid 1px rgba(0, 0, 0, 0.5);
			box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1);
			padding: 0 0 0 1em;
			margin: 0 0 0 1em;
		}

			#copyright li:first-child {
				border: 0;
				box-shadow: none;
				padding-left: 0;
				margin-left: 0;
			}

		#copyright a {
			-moz-transition: color .2s ease-in-out;
			-webkit-transition: color .2s ease-in-out;
			-ms-transition: color .2s ease-in-out;
			transition: color .2s ease-in-out;
			color: inherit;
		}

			#copyright a:hover {
				color: #777;
			}

/* Large */

	@media screen and (max-width: 1280px) {

		/* Basic */

			body {
				font-size: 11pt;
			}

			input, textarea, select {
				font-size: 11pt;
			}

			header {
				margin: 0 0 4em 0;
			}

		/* Wrappers */

			.wrapper {
				padding: 5em 0 5em 0;
				text-align: center;
			}

				.wrapper.style4 .row-special {
					margin: 2em 0 0 0;
					padding: 2em 0 2em 0;
				}

		/* Articles */

			#top {
				padding: 8em 0;
			}

				#top .image {
					width: 24em;
					height: 24em;
					margin: 0;
				}

	}

/* Nav – responsive scaling for smaller viewports */

	@media screen and (max-width: 1280px) {

				#nav ul {
					column-gap: 0.4em;
				}

				#nav a {
					padding: 0.55em 0.8em;
					min-height: 3em;
				}

	}

/* Medium */

	@media screen and (max-width: 980px) {

		/* Basic */

			body {
				padding-top: 80px;
			}

		/* Nav */

				#nav {
					padding: 0 4px;
					width: calc(100% - 8px);
				}

				#nav ul {
					column-gap: 0.15em;
				}

				#nav a {
					padding: 0.5em 0.7em;
					min-height: 2.9em;
					font-size: 1em;
					white-space: nowrap;
				}

				#nav li.logo img {
					max-height: 3.2em;
				}

		/* Articles */

			#top {
				text-align: center;
				padding: 5em 0;
			}

				#top .image {
					margin: 0 auto 2em auto;
				}

				#top p {
					font-size: 1.15em;
				}

	}

/* Small */

	@media screen and (max-width: 736px) {

		/* Nav */

				#nav {
					padding: 0 2px;
					width: calc(100% - 4px);
				}

				#nav ul {
					column-gap: 0;
				}

				#nav a {
					padding: 0.45em 0.6em;
					min-height: 2.7em;
					font-size: 0.95em;
					white-space: nowrap;
				}

				#nav li.logo img {
					max-height: 2.8em;
				}

		/* Basic */

			body {
				padding-top: 80px;
			}

			body, input, textarea, select {
				line-height: 1.75em;
				font-size: 10pt;
				letter-spacing: 0;
			}

			h1, h2, h3, h4, h5, h6 {
				font-size: 1.25em;
				margin: 0 0 0.4em 0;
			}

			h1 {
				font-size: 2.25em;
				line-height: 1.25em;
			}

			#top h1 {
				font-size: 2.05em;
				line-height: 1.12em;
				letter-spacing: -0.015em;
			}

			#top h1 strong {
				margin-top: 0.18em;
			}

			header {
				margin: 0 0 2em 0;
			}

				header > p {
					font-size: 1.25em;
				}

			footer {
				margin: 2.5em 0 0 0;
			}

				footer > p {
					font-size: 1.25em;
				}

			hr {
				margin: 1.5em 0 2em 0;
			}

		/* Section/Article */

			section, article {
				clear: both;
			}

		/* Button */

			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				text-align: center;
				font-size: 1.2em;
				width: 100%;
				padding: 1em 0 1em 0;
			}

				input[type="button"].large,
				input[type="submit"].large,
				input[type="reset"].large,
				button.large,
				.button.large {
					font-size: 1.2em;
					letter-spacing: 0;
				}

		/* Social */

			ul.social {
				padding: 1em 0.5em 0 0.5em;
			}

				ul.social li {
					margin: 0.5em 0.5em 0.5em 0.5em;
				}

					ul.social li a {
						top: 0 !important;
					}

						ul.social li a:before {
							background-color: transparent !important;
						}

		/* Actions */

			ul.actions {
				margin: 0;
			}

				ul.actions li {
					display: block;
					margin: 15px 0 0 0;
				}

					ul.actions li:first-child {
						margin-top: 0;
					}

		/* Box */

			.box {
				padding: 30px 20px 30px 20px;
				margin: 0 0 20px 0 !important;
			}

				.box h3 {
					margin-bottom: 0.25em;
				}

				.box .image.centered {
					margin-bottom: 1em;
				}

				.box .image.featured {
					position: relative;
					left: 20px;
					top: 20px;
					margin: -50px 0 50px -40px;
					width: auto;
				}

				.box.style1 {
					max-width: 32em;
					margin-left: auto !important;
					margin-right: auto !important;
				}

				.box.style2 {
					max-width: 32em;
					margin-left: auto !important;
					margin-right: auto !important;
				}

		/* Wrappers */

			.wrapper {
				padding: 3em 0;
				text-align: center;
			}

		/* Articles */

			#top {
				padding: 3em 0;
			}

				#top .image {
					width: 15em;
					height: 15em;
					margin-bottom: 0;
				}

				#top p {
					font-size: 1.15em;
					line-height: 1.42em;
					max-width: 90%;
					margin: 0 auto 1.5em;
					text-align: justify;
					text-justify: inter-word;
				}

	#contact footer {
		margin: 0;
	}

	#contact .container {
		position: relative;
		z-index: 1;
	}

/* Copyright */

			#copyright {
				font-size: 1em;
				margin: 0;
			}

				#copyright li {
					display: block;
					margin: 1em 0 0 0;
					padding: 0;
					box-shadow: none;
					border-left: 0;
				}

		#copyright li:first-child {
			margin-top: 0;
		}

}

/* ==================== Downloads page ==================== */

.downloads-page .wrapper {
	text-align: left;
}

.downloads-hero {
	text-align: center;
	padding: 5em 0 3em;
}

.downloads-hero h1 {
	margin-bottom: 0.35em;
}

.downloads-hero__meta {
	display: inline-flex;
	gap: 0.75em;
	flex-wrap: wrap;
	justify-content: center;
}

.downloads-section .section-heading {
	text-align: center;
}

.downloads-section .section-heading h2 {
	line-height: 1.2;
}

.downloads-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25em;
	margin-top: 2em;
	align-items: stretch;
}

.download-card {
	background: #fff;
	border-radius: 16px;
	padding: 1.35em 1.5em;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	gap: 0.4em;
	height: 100%;
	justify-content: flex-start;
}

.download-card__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.6em;
}

.download-card__labels {
	display: inline-flex;
	gap: 0.5em;
	align-items: center;
	flex-wrap: wrap;
}

.download-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6em;
	margin-top: auto;
}

.download-title {
	margin: 0.1em 0;
	font-size: 1.25em;
}

.download-desc {
	margin: 0;
	color: rgba(45, 28, 38, 0.8);
	flex: 1 1 auto;
}

.download-meta {
	font-size: 0.9em;
	color: rgba(45, 28, 38, 0.65);
}

.download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35em;
	padding: 0.55em 1.05em;
	border-radius: 10px;
	background: var(--rose-500);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid transparent;
	transition: transform .12s ease, box-shadow .18s ease, background .2s ease;
}

.download-btn:hover {
	background: var(--plum-600);
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(122, 59, 70, 0.2);
}

.download-tags {
	display: flex;
	gap: 0.4em;
	flex-wrap: wrap;
	margin-top: 0.4em;
}

.pill {
	display: inline-flex;
	align-items: center;
	padding: 0.25em 0.65em;
	border-radius: 999px;
	font-size: 0.9em;
	font-weight: 600;
	background: rgba(232, 139, 107, 0.15);
	color: var(--plum-600);
	border: 1px solid rgba(232, 139, 107, 0.25);
}

.pill-soft {
	background: rgba(255, 154, 77, 0.15);
	border-color: rgba(255, 154, 77, 0.28);
	color: #b85a2b;
}

.pill-ghost {
	background: rgba(45, 28, 38, 0.04);
	border-color: rgba(45, 28, 38, 0.08);
	color: rgba(45, 28, 38, 0.85);
}

.pill.tiny {
	padding: 0.2em 0.55em;
	font-size: 0.8em;
}

.downloads-empty {
	text-align: center;
	color: rgba(45, 28, 38, 0.7);
}

.download-card.skeleton {
	min-height: 160px;
}

.skeleton-bar {
	height: 12px;
	background: linear-gradient(90deg, rgba(232,139,107,0.08), rgba(255,255,255,0.6), rgba(232,139,107,0.08));
	background-size: 200% 100%;
	animation: shimmer 1.3s ease-in-out infinite;
	border-radius: 12px;
	margin-top: 12px;
}

.skeleton-bar.short { width: 50%; }
.skeleton-bar.tiny { width: 30%; height: 10px; }

@keyframes shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.slim-footer {
	padding: 1.8em 0 1.2em;
	text-align: center;
}

.downloads-hero .eyebrow {
	display: inline-block;
	margin-bottom: 0.35em;
	padding: 0.35em 0.9em;
	border-radius: 999px;
	background: linear-gradient(120deg, rgba(232, 139, 107, 0.12), rgba(245, 184, 158, 0.24));
	color: var(--plum-600);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85em;
}

.downloads-section .section-heading .eyebrow {
	display: inline-block;
	padding: 0.35em 0.9em;
	border-radius: 999px;
	background: linear-gradient(120deg, rgba(232, 139, 107, 0.12), rgba(245, 184, 158, 0.24));
	color: var(--plum-600);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85em;
}

.leistungen-hero .eyebrow {
	display: inline-block;
	margin-bottom: 0.35em;
	padding: 0.35em 0.9em;
	border-radius: 999px;
	background: linear-gradient(120deg, rgba(232, 139, 107, 0.12), rgba(245, 184, 158, 0.24));
	color: var(--plum-600);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85em;
}

.fa-twitter::before {
  content: "𝕏";
  font-family: system-ui, -apple-system, sans-serif !important;
  font-weight: normal;
}

.downloads-page .wrapper.slim-footer, .legal-page .wrapper.slim-footer {
	text-align: center;
}


/* Osteopathie Action Button */
.osteopathie-btn {
	display: inline-flex !important;
	align-items: center;
	background-color: #ffffff !important;
	border-radius: 50px !important;
	padding: 10px 25px !important;
	text-decoration: none !important;
	color: #333333 !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease !important;
	border: 1px solid #f0f0f0 !important;
    height: 100% !important;
    line-height: normal !important;
}
.osteopathie-btn:hover {
	transform: translateY(-4px) scale(1.03) !important;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
	border-color: #e0e0e0 !important;
    background-color: #ffffff !important;
    color: #333333 !important;
}
.osteopathie-btn-icon {
	width: 45px;
	height: auto;
	margin-right: 15px;
	object-fit: contain;
}
.osteopathie-btn-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}
.osteopathie-btn-text .title1 {
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.2;
	color: #222;
	margin-bottom: 2px;
    letter-spacing: -0.01em;
}
.osteopathie-btn-text .title2 {
	font-weight: 400;
	font-size: 0.85rem;
	line-height: 1.2;
	color: #666;
}

#hero-actions {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}
#hero-actions li {
    margin: 0 !important;
    display: flex;
}
#hero-actions li a.button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100% !important; /* Allow stretch */
}

@media screen and (max-width: 980px) {
    #hero-actions {
        justify-content: center;
    }
}

@media screen and (max-width: 736px) {
    #hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    #hero-actions li {
        width: 100%;
        justify-content: center;
    }
    #hero-actions li a.button,
    #hero-actions li .osteopathie-btn {
        width: 100% !important;
        max-width: 350px !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .osteopathie-btn {
        height: auto !important;
    }
}

/* Fix iOS buggy fixed background and tablet overflow */
@media screen and (max-width: 980px) {
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 736px) {
    body:before {
        background-attachment: scroll !important;
    }
}

/* Match subpage header spacing to main page */
.downloads-hero {
    padding-top: 10em !important;
}
.leistungen-hero {
    padding-top: 10em !important;
}
.legal-hero {
    padding-top: 3em !important;
}

@media screen and (max-width: 980px) {
    .downloads-hero, .leistungen-hero {
        padding-top: 7em !important;
    }
    .legal-hero {
        padding-top: 1em !important;
    }
}

@media screen and (max-width: 736px) {
    .downloads-hero, .leistungen-hero {
        padding-top: 5em !important;
    }
    .legal-hero {
        padding-top: 1em !important;
    }
}

/* Fix legal content heading and text alignment */
.legal-content h1 {
    font-size: 1.75em !important;
    text-align: left !important;
    margin-bottom: 0.5rem !important;
    margin-left: 0 !important;
}
.legal-content, .legal-content > div {
    text-align: left !important;
}
.legal-content p {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Legal Content Box Styling */
.legal-content {
    background: #ffffff;
    padding: 3rem 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 900px;
}

@media screen and (max-width: 736px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
}

/* Fix text alignment and indentation in subpage heroes */
.downloads-hero, .leistungen-hero {
    text-align: left !important;
}
.downloads-hero header, .leistungen-hero header {
    text-align: left !important;
}
.downloads-hero h1, .leistungen-hero h1 {
    text-align: left !important;
    margin-left: 0 !important;
}
.downloads-hero p, .leistungen-hero p {
    text-align: left !important;
    margin-left: 0 !important;
    max-width: 100% !important;
}
.downloads-hero .downloads-hero__meta {
    justify-content: flex-start !important;
}
