:root {
	--primary: #263d2b;
	--secondary: #e9d8b4;
	--background: #f8eed8;
	--surface: #efe0bf;
	--text: #2a1e16;
	--muted-text: #6f7564;
	--accent: #b7ff3c;
	--accent-soft: rgba(183, 255, 60, 0.24);
	--shadow: rgba(42, 30, 22, 0.14);
	--border: rgba(42, 30, 22, 0.16);
	--text-xs: 0.875rem;
	--text-sm: 1rem;
	--text-md: 1.125rem;
	--text-lg: 1.5rem;
	--text-xl: 2rem;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 100%;
}

body {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	background:
		radial-gradient(circle at top left, rgba(183, 255, 60, 0.16), transparent 32rem),
		linear-gradient(180deg, var(--background), #f3e2c0);
	color: var(--text);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.1rem clamp(1rem, 4vw, 4rem) 1rem;
	background: rgba(248, 238, 216, 0.86);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 10;
}

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

.brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--primary);
}

.brand-desktop {
	grid-column: 1;
	justify-self: start;
}

.brand-logo-link {
	display: none;
}

.brand-mark {
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.brand-mark-image {
	width: auto;
	height: clamp(3.2rem, 7vw, 4.6rem);
	max-width: min(18rem, 42vw);
	object-fit: contain;
	object-position: left center;
	filter: drop-shadow(0 0.35rem 1rem rgba(42, 30, 22, 0.12));
}

.brand-mark-fallback {
	min-width: 3.25rem;
	height: 3.25rem;
	padding: 0 1rem;
	border-radius: 1.1rem;
	background: var(--primary);
	color: var(--accent);
	box-shadow: 0 0 0 0.35rem var(--accent-soft);
	font-family: Arial, sans-serif;
	font-size: var(--text-sm);
}

.brand-name-link {
	display: none;
	color: var(--primary);
	font-weight: 700;
	letter-spacing: 0.03em;
}

.brand-name {
	display: inline-block;
	font-size: var(--text-md);
	line-height: 1.1;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	grid-column: 2;
	justify-self: end;
	position: relative;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(42, 30, 22, 0.16);
	border-radius: 999px;
	background: rgba(239, 224, 191, 0.72);
	color: var(--primary);
	cursor: pointer;
}

.menu-toggle span {
	position: absolute;
	left: 50%;
	width: 1.15rem;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transform-origin: center;
	transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.menu-toggle span:nth-child(1) {
	transform: translate(-50%, -6px);
}

.menu-toggle span:nth-child(2) {
	transform: translate(-50%, 0);
}

.menu-toggle span:nth-child(3) {
	transform: translate(-50%, 6px);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.8rem 1.5rem;
	flex-wrap: wrap;
	width: 100%;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(42, 30, 22, 0.12);
	font-family: Arial, sans-serif;
	font-size: var(--text-sm);
	color: var(--muted-text);
}

.nav-panel-intro,
.nav-panel-cta {
	display: none;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.8rem 1.5rem;
	flex-wrap: wrap;
}

.nav a {
	position: relative;
	line-height: 1.3;
}

.nav a:hover {
	color: var(--primary);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 4rem);
	max-width: 1180px;
	margin: 0 auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.7rem;
	border: 1px solid rgba(38, 61, 43, 0.2);
	border-radius: 999px;
	background: rgba(239, 224, 191, 0.7);
	color: var(--primary);
	font-family: Arial, sans-serif;
	font-size: var(--text-xs);
	font-weight: 700;
}

.eyebrow::before {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 1rem var(--accent);
	border: 1px solid var(--muted-text);
}

h1 {
	margin: 1.25rem 0 1rem;
	max-width: 11ch;
	color: var(--primary);
	font-size: clamp(3rem, 7vw, 5.5rem);
	line-height: 0.96;
	letter-spacing: -0.055em;
}

.hero p {
	max-width: 40rem;
	margin: 0 0 1.75rem;
	color: var(--muted-text);
	font-family: Arial, sans-serif;
	font-size: var(--text-md);
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	align-items: center;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.85rem 1.25rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: Arial, sans-serif;
	font-weight: 700;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-copy {
	display: inline;
}

.button:hover {
	transform: translateY(-2px);
}

.button-primary {
	background: var(--primary);
	color: #fff8e8;
	box-shadow: 0 0.65rem 1.5rem rgba(38, 61, 43, 0.22);
}

.button-primary .button-highlight {
	color: var(--accent);
}

.button-secondary {
	border-color: rgba(38, 61, 43, 0.28);
	color: var(--primary);
	background: rgba(248, 238, 216, 0.5);
}

.card-stack {
	position: relative;
	min-height: 32rem;
}

.session-card {
	position: relative;
	z-index: 2;
	padding: 1.5rem;
	border: 1px solid var(--border);
	border-radius: 1.5rem;
	background: var(--surface);
	box-shadow: 0 1.25rem 3rem var(--shadow);
	overflow: hidden;
}

.session-card::before {
	content: "";
	position: absolute;
	inset: -8rem -8rem auto auto;
	width: 13rem;
	height: 13rem;
	border-radius: 50%;
	background: var(--accent-soft);
	filter: blur(1px);
}

.session-card h2 {
	position: relative;
	margin: 0 0 0.6rem;
	color: var(--primary);
	font-size: var(--text-xl);
	line-height: 1.1;
}

.session-card p {
	position: relative;
	margin: 0 0 1.25rem;
	font-size: var(--text-sm);
}

.map-panel {
	position: relative;
	padding: 1rem;
	border: 1px dashed rgba(42, 30, 22, 0.28);
	border-radius: 1.1rem;
	background:
		linear-gradient(90deg, rgba(42, 30, 22, 0.05) 1px, transparent 1px),
		linear-gradient(rgba(42, 30, 22, 0.05) 1px, transparent 1px),
		rgba(248, 238, 216, 0.68);
	background-size: 22px 22px;
}

.map-row {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	padding: 0.8rem 0;
	font-family: Arial, sans-serif;
}

.map-row:last-child {
	border-bottom: 0;
}

.map-icon {
	flex: 0 0 auto;
	width: 1.85rem;
	height: 1.85rem;
	display: grid;
	place-items: center;
	border-radius: 0.55rem;
	background: var(--primary);
	color: var(--accent);
	font-size: var(--text-xs);
	box-shadow: 0 0 1rem var(--accent-soft);
}

.map-row strong {
	display: block;
	color: var(--text);
	line-height: 1.2;
}

.map-row span {
	color: var(--muted-text);
	font-size: var(--text-xs);
}

.glow-orb {
	position: absolute;
	left: -1.5rem;
	bottom: 4rem;
	width: 10rem;
	height: 10rem;
	border-radius: 999px;
	background: radial-gradient(circle, var(--accent), transparent 68%);
	opacity: 0.32;
	filter: blur(6px);
}

.section {
	padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 4rem);
}

.section-inner {
	max-width: 1180px;
	margin: 0 auto;
}

.section-heading {
	max-width: 42rem;
	margin-bottom: 2rem;
}

.section-heading h2 {
	margin: 0 0 0.75rem;
	color: var(--primary);
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	line-height: 1.02;
	letter-spacing: 0;
}

.section-heading .eyebrow {
	margin-bottom: 1rem;
}

.section-heading .eyebrow + h2 {
	margin-top: 0;
}

.section-heading p {
	margin: 0;
	color: var(--muted-text);
	font-family: Arial, sans-serif;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.service-card {
	padding: 1.25rem;
	border-radius: 1.25rem;
	border: 1px solid var(--border);
	background: rgba(239, 224, 191, 0.7);
	box-shadow: 0 0.8rem 1.8rem rgba(42, 30, 22, 0.08);
}

.service-card h3 {
	margin: 0 0 0.45rem;
	color: var(--primary);
	font-size: var(--text-lg);
}

.service-card p {
	margin: 0;
	color: var(--muted-text);
	font-family: Arial, sans-serif;
	font-size: var(--text-sm);
}

.service-tag {
	display: inline-flex;
	margin-bottom: 1rem;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--primary);
	font-family: Arial, sans-serif;
	font-size: var(--text-xs);
	font-weight: 700;
}

.quote-band {
	max-width: 1180px;
	margin: 0 auto clamp(3rem, 7vw, 5rem);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: 1.6rem;
	background: var(--primary);
	color: var(--secondary);
	box-shadow: 0 1rem 2.5rem rgba(38, 61, 43, 0.2);
}

.quote-band blockquote {
	max-width: 62rem;
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.12;
	letter-spacing: 0;
}

.quote-band em {
	color: var(--accent);
	font-style: normal;
}

.page-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 4rem);
}

.page-intro-has-card {
	grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.75fr);
}

.page-intro h1 {
	max-width: 12ch;
}

.page-intro-summary {
	max-width: 42rem;
	color: var(--muted-text);
	font-family: Arial, sans-serif;
	font-size: var(--text-md);
}

.page-intro-summary p {
	margin: 0 0 1rem;
}

.page-intro-summary p:last-child {
	margin-bottom: 0;
}

.intro-card {
	position: relative;
	padding: 1.5rem;
	border: 1px solid var(--border);
	border-radius: 1.5rem;
	background: var(--surface);
	box-shadow: 0 1.25rem 3rem var(--shadow);
	overflow: hidden;
}

.intro-card::before {
	content: "";
	position: absolute;
	inset: -8rem -8rem auto auto;
	width: 13rem;
	height: 13rem;
	border-radius: 50%;
	background: var(--accent-soft);
	filter: blur(1px);
}

.intro-card h2,
.intro-card-text {
	position: relative;
}

.intro-card h2 {
	margin: 0 0 0.75rem;
	color: var(--primary);
	font-size: var(--text-xl);
	line-height: 1.1;
}

.intro-card-text {
	color: var(--muted-text);
	font-family: Arial, sans-serif;
	font-size: var(--text-sm);
}

.intro-card-text p {
	margin: 0 0 1rem;
}

.intro-card-text p:last-child {
	margin-bottom: 0;
}

.page-hero,
.rich-text {
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 4rem);
}

.page-hero h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.rich-text {
	max-width: 760px;
	padding-top: 0;
	color: var(--muted-text);
	font-family: Arial, sans-serif;
}

.rich-text p {
	margin-top: 0;
}

.section-rich-text .rich-text {
	max-width: 42rem;
	margin: 0;
	padding: 0;
}

.section-insight-grid,
.section-statement {
	padding-top: 0;
}

.section-statement .quote-band {
	max-width: none;
	margin: 0;
}

.section-image {
	padding-top: 0;
}

.content-image {
	max-width: 860px;
	margin: 0 auto;
}

.content-image img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--border);
	border-radius: 1.5rem;
	background: rgba(239, 224, 191, 0.45);
	box-shadow: 0 1.1rem 2.5rem rgba(42, 30, 22, 0.12);
}

.content-image figcaption {
	margin-top: 0.85rem;
	color: var(--muted-text);
	font-family: Arial, sans-serif;
	font-size: var(--text-xs);
	text-align: center;
}

.contact-section {
	padding-top: 0;
}

.contact-panel {
	max-width: 760px;
	padding: 1.5rem;
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	background: rgba(239, 224, 191, 0.65);
	box-shadow: 0 0.8rem 1.8rem rgba(42, 30, 22, 0.08);
}

.contact-intro {
	margin-bottom: 1rem;
	color: var(--muted-text);
	font-family: Arial, sans-serif;
}

.contact-form {
	display: grid;
	gap: 1rem;
}

.contact-field {
	display: grid;
	gap: 0.4rem;
}

.contact-field label {
	font-family: Arial, sans-serif;
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--primary);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
	width: 100%;
	padding: 0.7rem 0.8rem;
	border: 1px solid rgba(38, 61, 43, 0.25);
	border-radius: 0.75rem;
	background: rgba(248, 238, 216, 0.8);
	color: var(--text);
	font-family: Arial, sans-serif;
}

.contact-field textarea {
	min-height: 8rem;
	resize: vertical;
}

.contact-checkbox {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-family: Arial, sans-serif;
	font-size: var(--text-sm);
	color: var(--muted-text);
}

.contact-checkbox input {
	width: auto;
}

.contact-checkbox-group {
	display: grid;
	gap: 0.55rem;
}

.contact-notice {
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 0.9rem;
	font-family: Arial, sans-serif;
}

.contact-notice p {
	margin: 0 0 0.5rem;
}

.contact-notice ul {
	margin: 0;
	padding-left: 1.1rem;
}

.contact-notice-success {
	border: 1px solid rgba(38, 61, 43, 0.26);
	background: rgba(183, 255, 60, 0.18);
}

.contact-notice-error {
	border: 1px solid rgba(132, 23, 23, 0.25);
	background: rgba(180, 43, 43, 0.1);
}

.contact-hp {
	position: absolute;
	left: -10000px;
	opacity: 0;
}

.site-footer {
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 4rem) 1.5rem;
	background: var(--primary);
	color: var(--secondary);
	border-top: 1px solid rgba(42, 30, 22, 0.22);
}

.footer-inner {
	max-width: 1180px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.75fr));
	gap: 2rem;
	padding-bottom: 2.5rem;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-weight: 700;
	color: #fff8e8;
}

.footer-brand .brand-mark-image {
	height: clamp(3rem, 6vw, 4rem);
	max-width: min(16rem, 45vw);
	filter: drop-shadow(0 0.35rem 1rem rgba(0, 0, 0, 0.18));
}

.footer-brand .brand-mark-fallback {
	background: var(--secondary);
	color: var(--primary);
	box-shadow: 0 0 0 0.35rem rgba(183, 255, 60, 0.16);
}

.footer-summary {
	max-width: 24rem;
	margin: 0;
	color: rgba(233, 216, 180, 0.82);
	font-family: Arial, sans-serif;
	font-size: var(--text-sm);
}

.footer-column h2,
.footer-column h3 {
	margin: 0 0 0.8rem;
	color: #fff8e8;
	font-size: var(--text-sm);
	line-height: 1.2;
}

.footer-column ul {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: Arial, sans-serif;
	font-size: var(--text-sm);
	color: rgba(233, 216, 180, 0.82);
}

.footer-column a:hover, .manual-link-green {
	color: var(--accent);
}

.manual-link:hover{
	color: var(--primary);
}

.footer-contact {
	display: inline-flex;
	margin-top: 0.4rem;
	color: var(--accent);
	font-family: Arial, sans-serif;
	font-weight: 700;
}

.footer-note {
	padding: 1rem;
	border: 1px solid rgba(233, 216, 180, 0.22);
	border-radius: 1rem;
	background: rgba(248, 238, 216, 0.08);
	color: rgba(233, 216, 180, 0.86);
	font-family: Arial, sans-serif;
	font-size: var(--text-sm);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(233, 216, 180, 0.2);
	color: rgba(233, 216, 180, 0.72);
	font-family: Arial, sans-serif;
	font-size: var(--text-xs);
}

.footer-bottom-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-bottom a:hover {
	color: var(--accent);
}

@media (min-width: 821px) {
	html {
		font-size: 112.5%;
	}
}

@media (max-width: 820px) {
	.site-header {
		padding: 0.9rem 1rem;
	}

	.site-header-top {
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		gap: 0.5rem;
	}

	.brand-desktop {
		display: none;
	}

	.brand-logo-link {
		display: flex;
		grid-column: 2;
		justify-self: center;
	}

	.brand-name-link {
		display: inline-flex;
		min-width: 0;
		grid-column: 1;
		justify-self: start;
	}

	.menu-toggle {
		grid-column: 3;
	}

	.brand-mark-image {
		height: 3.5rem;
		max-width: min(12rem, 48vw);
	}

	.brand-mark-fallback {
		min-width: 3.35rem;
		height: 3.35rem;
		padding: 0 1rem;
		font-size: var(--text-sm);
	}

	.brand-name {
		font-size: var(--text-sm);
		line-height: 1.05;
	}

	.js .menu-toggle {
		display: inline-flex;
		flex-direction: column;
		width: 2.8rem;
		height: 2.8rem;
	}

	.js .nav {
		position: fixed;
		inset: 0;
		display: none;
		padding: 6.5rem 1.25rem 1.5rem;
		width: auto;
		max-width: 100%;
		height: 100vh;
		min-height: 100dvh;
		background:
			radial-gradient(circle at top right, rgba(183, 255, 60, 0.22), transparent 16rem),
			radial-gradient(circle at bottom left, rgba(233, 216, 180, 0.08), transparent 20rem),
			linear-gradient(180deg, var(--primary), #1d3122);
		border-top: 0;
		color: #fff8e8;
		font-size: var(--text-md);
		z-index: 20;
		overflow-y: auto;
	}

	.js .nav.nav-open {
		display: block;
	}

	.js .nav-panel-intro {
		display: grid;
		gap: 0.75rem;
		width: 100%;
		padding: 0 0.2rem 1rem;
		margin-bottom: 1rem;
		border-bottom: 1px solid rgba(255, 248, 232, 0.14);
	}

	.js .nav-panel-kicker {
		display: inline-flex;
		align-items: center;
		gap: 0.45rem;
		font-family: Arial, sans-serif;
		font-size: var(--text-xs);
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: var(--accent);
	}

	.js .nav-panel-kicker::before {
		content: "";
		width: 0.5rem;
		height: 0.5rem;
		border-radius: 999px;
		background: var(--accent);
		box-shadow: 0 0 0.9rem rgba(183, 255, 60, 0.55);
	}

	.js .nav-panel-intro p {
		max-width: 24rem;
		margin: 0;
		color: rgba(255, 248, 232, 0.86);
		font-family: Arial, sans-serif;
		font-size: var(--text-sm);
		line-height: 1.5;
	}

	.js .nav-links {
		display: flex;
		flex-direction: column;
		gap: 0.8rem;
		width: 100%;
		padding: 0;
	}

	.js .nav a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 0.95rem 1rem;
		border: 1px solid rgba(255, 248, 232, 0.14);
		border-radius: 1.1rem;
		background: rgba(255, 248, 232, 0.05);
		color: #fff8e8;
		font-size: clamp(1.25rem, 4.8vw, 1.5rem);
		line-height: 1.15;
		box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
		transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
	}

	.js .nav-links a {
		width: 100%;
	}

	.js .nav a::after {
		content: "↗";
		font-size: var(--text-sm);
		color: rgba(255, 248, 232, 0.65);
		transition: color 180ms ease, transform 180ms ease;
	}

	.js .nav a:hover,
	.js .nav a:focus-visible {
		background: var(--accent);
		border-color: var(--accent);
		color: var(--primary);
		transform: translateX(0.2rem);
	}

	.js .nav a:hover::after,
	.js .nav a:focus-visible::after {
		color: var(--primary);
		transform: translateX(0.15rem);
	}

	.js .nav-panel-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin-top: 1rem;
		padding: 1rem 1.2rem;
		border-radius: 999px;
		background: rgba(255, 248, 232, 0.1);
		border: 1px solid rgba(255, 248, 232, 0.18);
		color: #fff8e8;
		font-family: Arial, sans-serif;
		font-size: var(--text-sm);
		font-weight: 700;
		letter-spacing: 0.02em;
		text-align: center;
		transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
	}

	.js .nav-panel-cta:hover,
	.js .nav-panel-cta:focus-visible {
		background: var(--accent);
		border-color: var(--accent);
		color: var(--primary);
	}

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

	.js .site-header {
		z-index: 30;
	}

	.js .site-header.menu-active .site-header-top {
		position: relative;
		z-index: 31;
	}

	.js .menu-toggle[aria-expanded="true"] {
		background: rgba(239, 224, 191, 0.2);
		color: #fff8e8;
		border-color: rgba(255, 248, 232, 0.28);
	}

	.js .menu-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translate(-50%, 0) rotate(45deg);
	}

	.js .menu-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.js .menu-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translate(-50%, 0) rotate(-45deg);
	}

	.hero {
		grid-template-columns: 1fr;
	}

	.page-intro,
	.page-intro-has-card {
		grid-template-columns: 1fr;
	}

	.card-stack {
		min-height: auto;
	}

	.glow-orb {
		display: none;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
	}
}
