:root {
	--cheri-bg: #120d0b;
	--cheri-bg-alt: #1c1512;
	--cheri-surface: #2a2018;
	--cheri-text: #f7efe4;
	--cheri-text-soft: #d8c7ae;
	--cheri-gold: #c6a664;
	--cheri-pink: #e7c7ba;
	--cheri-footer: #0c0908;
	--cheri-focus: #f5cf7d;
	--cheri-border: rgb(198 166 100 / 32%);
	--cheri-shadow: 0 18px 50px rgb(0 0 0 / 38%);
	--cheri-container: 67.5rem;
	--cheri-header-height: 4.25rem;
	--cheri-font-en: Georgia, "Times New Roman", serif;
	--cheri-font-jp: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

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

html {
	color-scheme: dark;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--cheri-header-height) + 1.5rem);
}

body {
	min-width: 20rem;
	margin: 0;
	color: var(--cheri-text);
	background: var(--cheri-bg);
	font-family: var(--cheri-font-jp);
	font-size: 1rem;
	line-height: 1.9;
	letter-spacing: 0.04em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
	outline: 0.1875rem solid var(--cheri-focus);
	outline-offset: 0.25rem;
}

::selection {
	color: var(--cheri-bg);
	background: var(--cheri-gold);
}

.container,
.content-shell {
	width: min(calc(100% - 3rem), var(--cheri-container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
	z-index: 100000;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	padding: 0.75rem 1.25rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	color: var(--cheri-bg);
	background: var(--cheri-gold);
	font-weight: 700;
	text-decoration: none;
}

/* Header */
.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	transition: background-color 0.45s ease, box-shadow 0.45s ease;
}

.admin-bar .site-header {
	top: 2rem;
}

.site-header.is-scrolled,
.site-header:focus-within,
.menu-open .site-header {
	background: rgb(18 13 11 / 94%);
	box-shadow: 0 0.125rem 1.25rem rgb(0 0 0 / 42%);
	backdrop-filter: blur(0.65rem);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: var(--cheri-header-height);
	padding: 0.75rem 1.5rem;
	gap: 1.5rem;
}

.header-logo {
	position: relative;
	z-index: 102;
	color: var(--cheri-gold);
	font-family: var(--cheri-font-en);
	font-size: 1.625rem;
	letter-spacing: 0.12em;
	line-height: 1;
	text-decoration: none;
}

.site-navigation__list {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	gap: 1.375rem;
	list-style: none;
}

.site-navigation a {
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	color: var(--cheri-text-soft);
	font-size: 0.875rem;
	text-decoration: none;
	transition: color 0.25s ease;
}

.site-navigation a:hover,
.site-navigation a[aria-current="true"] {
	color: var(--cheri-gold);
}

.menu-toggle {
	display: none;
	position: relative;
	z-index: 102;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid var(--cheri-border);
	border-radius: 50%;
	color: var(--cheri-text);
	background: rgb(18 13 11 / 72%);
	cursor: pointer;
}

.menu-toggle__lines {
	display: grid;
	width: 1.125rem;
	gap: 0.25rem;
}

.menu-toggle__lines span {
	display: block;
	width: 100%;
	height: 1px;
	background: currentcolor;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(1) {
	transform: translateY(0.3125rem) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(3) {
	transform: translateY(-0.3125rem) rotate(-45deg);
}

/* Hero */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100svh;
	overflow: hidden;
	text-align: center;
}

.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__background {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__overlay {
	z-index: 1;
	background: linear-gradient(rgb(18 13 11 / 72%), rgb(18 13 11 / 88%));
}

.hero__inner {
	position: relative;
	z-index: 2;
	max-width: 100%;
	padding: 6.25rem 1.5rem 7.5rem;
}

.js .hero__inner {
	animation: cheri-hero-fade 1.5s ease both;
}

@keyframes cheri-hero-fade {
	from {
		opacity: 0;
		transform: translateY(1rem);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero__logo {
	width: 10.625rem;
	height: auto;
	margin: 0 auto 1.75rem;
	border-radius: 50%;
	box-shadow: 0 0 3.75rem rgb(198 166 100 / 35%);
}

.hero__eyebrow,
.section__eyebrow {
	margin: 0;
	color: var(--cheri-gold);
	font-family: var(--cheri-font-en);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.42em;
	line-height: 1.9;
}

.hero__eyebrow {
	margin-bottom: 0.625rem;
	letter-spacing: 0.5em;
}

.hero__title {
	margin: 0;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.9;
}

.hero__title-prefix {
	display: block;
	font-size: 1.625rem;
}

.hero__name {
	display: block;
	margin-top: 0.25rem;
	color: var(--cheri-gold);
	font-family: var(--cheri-font-en);
	font-size: 2.5rem;
	letter-spacing: 0.05em;
}

.hero__copy {
	margin: 1.375rem 0 0;
	font-size: 1.125rem;
}

.hero__info {
	margin: 0.875rem 0 0;
	color: var(--cheri-text-soft);
	font-size: 0.875rem;
}

.hero__buttons {
	display: flex;
	justify-content: center;
	margin-top: 2.125rem;
	gap: 1rem;
	flex-wrap: wrap;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 2.125rem;
	border: 0;
	border-radius: 999px;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.9;
	text-align: center;
	text-decoration: none;
	transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.button--gold {
	color: var(--cheri-bg);
	background: linear-gradient(135deg, #d9bc7e, var(--cheri-gold));
}

.button--outline {
	border: 1px solid var(--cheri-gold);
	color: var(--cheri-gold);
	background: rgb(18 13 11 / 35%);
}

@media (hover: hover) {
	.button:hover {
		transform: translateY(-0.125rem);
	}

	.button--gold:hover {
		background: #d8bc7c;
	}

	.button--outline:hover {
		color: var(--cheri-bg);
		background: var(--cheri-gold);
	}
}

/* Shared sections */
.section {
	padding: 6rem 0;
	background: var(--cheri-bg);
	scroll-margin-top: calc(var(--cheri-header-height) + 1.5rem);
}

.section--dark {
	background: var(--cheri-bg-alt);
}

.section__title {
	margin: 0.5rem 0 2.5rem;
	font-size: clamp(1.75rem, 4vw, 2rem);
	font-weight: 500;
	line-height: 1.45;
}

.reveal {
	opacity: 1;
	transform: none;
}

.js .reveal.is-reveal-pending {
	opacity: 0;
	transform: translateY(1.625rem);
}

.js .reveal.is-reveal-pending,
.js .reveal.is-visible {
	transition: opacity 0.9s ease, transform 0.9s ease;
}

.js .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Concept */
.concept__text {
	max-width: 45rem;
	color: var(--cheri-text-soft);
}

.concept__text p {
	margin: 0 0 1.25rem;
}

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

.concept-card,
.system-card {
	padding: 1.75rem;
	border: 1px solid var(--cheri-border);
	border-radius: 0.75rem;
	background: var(--cheri-surface);
	box-shadow: 0 0.75rem 2.5rem rgb(0 0 0 / 18%);
}

.concept-card h3,
.system-card h3 {
	margin: 0 0 0.75rem;
	color: var(--cheri-gold);
	font-size: 1.0625rem;
	font-weight: 600;
}

.concept-card p,
.system-card p {
	margin: 0;
	color: var(--cheri-text-soft);
	font-size: 0.9375rem;
}

/* Gallery */
.gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.125rem;
}

.gallery__item {
	display: block;
	position: relative;
	height: 16.25rem;
	overflow: hidden;
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: 0.75rem;
	background: var(--cheri-surface);
	box-shadow: var(--cheri-shadow);
}

.gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

@media (hover: hover) {
	.gallery__item:hover .gallery__image {
		transform: scale(1.04);
	}
}

.gallery__note {
	margin: 1.25rem 0 0;
	color: var(--cheri-text-soft);
	font-size: 0.8125rem;
	text-align: center;
}

/* Split sections */
.split-layout,
.access-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 3rem;
}

.feature-photo,
.access-photo {
	width: 100%;
	border-radius: 1rem;
	box-shadow: var(--cheri-shadow);
	object-fit: cover;
}

.feature-photo {
	aspect-ratio: 3 / 4;
}

.split-layout__content > p {
	margin: 0 0 1.25rem;
	color: var(--cheri-text-soft);
}

.split-layout__content .section__eyebrow {
	margin-bottom: 0;
}

.split-layout__content .section__title {
	color: var(--cheri-text);
}

.split-layout__content .button {
	margin-top: 0.75rem;
}

.greeting__signature {
	padding-top: 0.75rem;
	color: var(--cheri-gold) !important;
	text-align: right;
}

/* System and information */
.system-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 47.5rem;
	gap: 1.25rem;
}

.system-card {
	text-align: center;
}

.system-card p {
	color: var(--cheri-text);
	font-family: var(--cheri-font-en);
	font-size: 1.375rem;
	font-weight: 600;
}

/* News */
.news-list {
	max-width: 47.5rem;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgb(216 199 174 / 16%);
	list-style: none;
}

.news-list__item {
	padding: 1.25rem 0;
	border-bottom: 1px solid rgb(216 199 174 / 16%);
}

.news-entry {
	display: grid;
	gap: 0.5rem 1.5rem;
}

.news-entry__date {
	color: var(--cheri-gold);
	font-family: var(--cheri-font-en);
	font-size: 0.875rem;
	letter-spacing: 0.08em;
}

.news-entry__body {
	min-width: 0;
}

.news-entry__title {
	margin: 0 0 0.375rem;
	color: var(--cheri-text);
	font-size: 1rem;
	font-weight: 600;
	overflow-wrap: anywhere;
}

.news-entry__excerpt {
	margin: 0;
	color: var(--cheri-text-soft);
	font-size: 0.9375rem;
	overflow-wrap: anywhere;
}

@media (min-width: 34rem) {
	.news-entry {
		grid-template-columns: 8rem minmax(0, 1fr);
	}
}

.information-list {
	display: grid;
	grid-template-columns: 8.125rem minmax(0, 1fr);
	max-width: 40rem;
	margin: 0;
}

.information-list dt,
.information-list dd {
	padding: 0.875rem 0;
	border-bottom: 1px solid rgb(216 199 174 / 16%);
}

.information-list dt {
	color: var(--cheri-gold);
	font-weight: 600;
}

.information-list dd {
	min-width: 0;
	margin: 0;
	color: var(--cheri-text-soft);
	overflow-wrap: anywhere;
}

.information-list a {
	color: var(--cheri-text);
	text-underline-offset: 0.2em;
}

.information-note {
	max-width: 47.5rem;
	margin: 1.25rem 0 0;
	color: var(--cheri-text-soft);
	font-size: 0.8125rem;
}

/* Recruitment */
.recruit__text {
	max-width: 45rem;
	margin: 0;
	color: var(--cheri-text-soft);
}

.recruit__action {
	margin: 2rem 0 0;
}

/* Access and consent map */
.access-layout {
	align-items: start;
}

.map-consent {
	min-height: 18.75rem;
	border: 1px solid var(--cheri-border);
	border-radius: 0.875rem;
	overflow: hidden;
	background: var(--cheri-surface);
	box-shadow: var(--cheri-shadow);
}

.map-consent__frame {
	display: grid;
	min-height: 18.75rem;
	padding: 2rem;
	place-content: center;
	justify-items: center;
	background:
		linear-gradient(rgb(18 13 11 / 62%), rgb(18 13 11 / 88%)),
		radial-gradient(circle at 25% 20%, rgb(198 166 100 / 22%), transparent 38%),
		var(--cheri-surface);
	text-align: center;
}

.map-consent__frame p {
	max-width: 25rem;
	margin: 0.25rem 0;
	color: var(--cheri-text-soft);
	font-size: 0.875rem;
}

.map-consent__frame .map-consent__title {
	margin: 0 0 0.25rem;
	color: var(--cheri-gold);
	font-family: var(--cheri-font-en);
	font-size: 1.5rem;
	letter-spacing: 0.12em;
}

.map-consent__button {
	display: none;
	margin-top: 1rem;
	cursor: pointer;
}

.map-consent.is-map-enhanced .map-consent__button {
	display: inline-flex;
}

.map-consent iframe {
	display: block;
	width: 100%;
	height: 18.75rem;
	border: 0;
}

.access-list {
	padding: 0;
	margin: 1.75rem 0;
	color: var(--cheri-text-soft);
	list-style: none;
}

.access-list li {
	position: relative;
	padding-left: 1rem;
	overflow-wrap: anywhere;
}

.access-list li::before {
	position: absolute;
	left: 0;
	color: var(--cheri-gold);
	content: "・";
}

.access-photo {
	aspect-ratio: 3 / 4;
}

/* Footer */
.site-footer {
	padding: 3.5rem 0 6.875rem;
	color: var(--cheri-text-soft);
	background: var(--cheri-footer);
	text-align: center;
}

.fixture-notice {
	max-width: 48rem;
	padding: 0.75rem 1rem;
	margin: 0 auto 2.25rem;
	border: 1px solid var(--cheri-border);
	border-radius: 0.5rem;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", sans-serif;
	font-size: 0.75rem;
	line-height: 1.6;
}

.fixture-notice span {
	display: block;
	margin-bottom: 0.125rem;
	color: var(--cheri-gold);
	font-family: var(--cheri-font-en);
	font-weight: 700;
	letter-spacing: 0.16em;
}

.footer-name {
	margin: 0;
	color: var(--cheri-gold);
	font-family: var(--cheri-font-en);
	font-size: 2rem;
	letter-spacing: 0.12em;
}

.footer-address {
	margin: 0.75rem 0 0;
	font-size: 0.875rem;
}

.footer-notes {
	display: inline-block;
	padding: 0;
	margin: 2rem auto 0;
	font-size: 0.75rem;
	list-style: none;
	text-align: left;
}

.footer-social ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.625rem 1.375rem;
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.footer-social a {
	color: var(--cheri-gold);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
}

.system-card__description {
	margin-top: 0.5rem;
	color: var(--cheri-text-soft);
	font-size: 0.9rem;
}

.footer-privacy,
.footer-copy {
	margin: 1.5rem 0 0;
	font-size: 0.75rem;
}

.footer-privacy a {
	text-underline-offset: 0.2em;
}

.footer-copy {
	color: #8a7a66;
}

.mobile-cta {
	display: none;
}

/* Lightbox */
.lightbox {
	width: 100vw;
	max-width: none;
	height: 100dvh;
	max-height: none;
	padding: 0;
	border: 0;
	margin: 0;
	color: var(--cheri-text);
	background: rgb(5 4 4 / 96%);
	overflow: hidden;
}

.lightbox::backdrop {
	background: rgb(5 4 4 / 96%);
}

.lightbox[open] {
	display: grid;
	place-items: center;
}

.lightbox__stage {
	display: grid;
	width: min(calc(100% - 8rem), 56.25rem);
	height: calc(100dvh - 4rem);
	place-items: center;
}

.lightbox__figure {
	display: grid;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	place-items: center;
}

.lightbox__image {
	max-width: 100%;
	max-height: 76dvh;
	border-radius: 0.5rem;
	box-shadow: 0 1.25rem 4rem rgb(0 0 0 / 55%);
	object-fit: contain;
	touch-action: pan-y;
}

.lightbox__caption {
	margin-top: 0.75rem;
	color: var(--cheri-text-soft);
	font-size: 0.8125rem;
	text-align: center;
}

.lightbox__close,
.lightbox__previous,
.lightbox__next {
	position: fixed;
	z-index: 2;
	display: grid;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgb(247 239 228 / 35%);
	border-radius: 50%;
	color: var(--cheri-text);
	background: rgb(18 13 11 / 72%);
	font-family: sans-serif;
	font-size: 1.75rem;
	line-height: 1;
	place-items: center;
	cursor: pointer;
}

.lightbox__close {
	top: 1.25rem;
	right: 1.25rem;
	font-size: 1.125rem;
}

.lightbox__previous,
.lightbox__next {
	top: 50%;
	transform: translateY(-50%);
}

.lightbox__previous {
	left: 1.25rem;
}

.lightbox__next {
	right: 1.25rem;
}

/* Standard WordPress templates */
.site-main {
	min-height: 60vh;
}

.content-shell {
	padding-top: calc(var(--cheri-header-height) + 5rem);
	padding-bottom: 6rem;
}

.entry,
.not-found {
	max-width: 45rem;
}

.entry__title,
.entry__archive-title,
.not-found h1 {
	margin: 0 0 1.5rem;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 500;
}

.entry__archive-title {
	margin-bottom: 2.5rem;
}

.entry__title a {
	color: var(--cheri-text);
	text-decoration: none;
}

.entry__content,
.entry__summary,
.not-found p {
	color: var(--cheri-text-soft);
}

.not-found .button {
	margin-top: 1rem;
}

/* Tablet */
@media (max-width: 64rem) {
	.site-navigation__list {
		gap: 0.9rem;
	}

	.site-navigation a {
		font-size: 0.8125rem;
	}
}

@media (max-width: 51.25rem) {
	.split-layout,
	.access-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 2rem;
	}

	.split-layout--greeting .split-layout__media {
		order: -1;
	}

	.feature-photo,
	.access-photo {
		max-height: 42rem;
	}

	.access-layout__media {
		max-width: 32rem;
	}
}

/* Mobile navigation and layouts */
@media (max-width: 45rem) {
	body {
		padding-bottom: calc(3.375rem + env(safe-area-inset-bottom));
	}

	.container,
	.content-shell {
		width: min(calc(100% - 2rem), var(--cheri-container));
	}

	.admin-bar .site-header {
		top: 2.875rem;
	}

	.nav-enhanced .menu-toggle {
		display: inline-flex;
	}

	.nav-enhanced .site-navigation {
		position: fixed;
		z-index: 101;
		inset: 0;
		display: grid;
		padding: calc(var(--cheri-header-height) + 2rem) 1.5rem 2rem;
		background:
			radial-gradient(circle at 50% 10%, rgb(198 166 100 / 14%), transparent 34%),
			rgb(18 13 11 / 98%);
		opacity: 0;
		overflow-y: auto;
		overscroll-behavior: contain;
		place-items: center;
		pointer-events: none;
		transition: opacity 0.25s ease, visibility 0.25s ease;
		visibility: hidden;
	}

	.admin-bar .site-navigation {
		top: 2.875rem;
	}

	.nav-enhanced .site-navigation.is-open {
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
	}

	.nav-enhanced .site-navigation__list {
		align-items: stretch;
		flex-direction: column;
		width: min(100%, 20rem);
		gap: 0.25rem;
		text-align: center;
	}

	.nav-enhanced .site-navigation a {
		justify-content: center;
		min-height: 3rem;
		font-size: 1rem;
	}

	html:not(.nav-enhanced) .site-header {
		position: relative;
		background: var(--cheri-bg);
	}

	html:not(.nav-enhanced) .site-header__inner {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	html:not(.nav-enhanced) .site-navigation {
		width: 100%;
	}

	html:not(.nav-enhanced) .site-navigation__list {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
	}

	html:not(.nav-enhanced) .hero {
		min-height: calc(100svh - var(--cheri-header-height));
	}

	.section {
		padding: 4.5rem 0;
	}

	.section__title {
		margin-bottom: 2rem;
	}

	.concept__cards,
	.system-cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.gallery {
		display: flex;
		padding: 0 0.125rem 0.75rem;
		overflow-x: auto;
		gap: 0.875rem;
		scroll-padding-inline: 0.125rem;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.gallery__item {
		width: 76%;
		height: 20rem;
		flex: 0 0 76%;
		scroll-snap-align: start;
	}

	.information-list {
		grid-template-columns: 7rem minmax(0, 1fr);
	}

	.site-footer {
		padding-bottom: 4.5rem;
	}

	.mobile-cta {
		position: fixed;
		z-index: 90;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding-bottom: env(safe-area-inset-bottom);
		border-top: 1px solid var(--cheri-border);
		background: rgb(12 9 8 / 96%);
		box-shadow: 0 -0.25rem 1.5rem rgb(0 0 0 / 35%);
		backdrop-filter: blur(0.75rem);
	}

	.mobile-cta a {
		display: grid;
		min-width: 0;
		padding: 0.875rem 0.25rem;
		color: var(--cheri-text);
		font-size: 0.8125rem;
		line-height: 1.9;
		place-items: center;
		text-align: center;
		text-decoration: none;
	}

	.mobile-cta a + a {
		border-left: 1px solid rgb(216 199 174 / 15%);
	}

	.mobile-cta a:first-child {
		color: var(--cheri-bg-alt);
		background: linear-gradient(135deg, #d9bc7e, var(--cheri-gold));
		font-weight: 600;
	}

	.lightbox__stage {
		width: calc(100% - 2rem);
		height: calc(100dvh - 7rem);
	}

	.lightbox__image {
		max-height: 68dvh;
	}

	.lightbox__previous,
	.lightbox__next {
		top: auto;
		bottom: max(1rem, env(safe-area-inset-bottom));
		transform: none;
	}

	.lightbox__previous {
		left: calc(50% - 4rem);
	}

	.lightbox__next {
		right: calc(50% - 4rem);
	}
}

@media (max-width: 26.25rem) {
	.information-list {
		grid-template-columns: minmax(0, 1fr);
	}

	.information-list dt {
		padding-bottom: 0.125rem;
		border-bottom: 0;
	}

	.information-list dd {
		padding-top: 0.125rem;
	}
}

@media (max-width: 45rem) and (max-height: 52rem) {
	.hero__inner {
		padding: 5rem 1.25rem 6rem;
	}

	.hero__logo {
		width: 9.375rem;
		margin-bottom: 1.375rem;
	}

	.hero__title {
		line-height: 1.8;
	}

	.hero__name {
		line-height: 1.8;
	}

	.hero__copy {
		margin-top: 1.125rem;
		font-size: 1.0625rem;
	}

	.hero__info {
		margin-top: 0.625rem;
		font-size: 0.8125rem;
	}

	.hero__buttons {
		margin-top: 1.625rem;
		gap: 0.75rem;
	}

	.hero__buttons .button {
		padding: 0.75rem 1.875rem;
		line-height: 1.8;
	}
}

@media (max-width: 45rem) and (max-height: 45rem) {
	.hero__inner {
		padding: 3.5rem 1rem 4.5rem;
	}

	.hero__logo {
		width: 7.5rem;
		margin-bottom: 1rem;
	}

	.hero__eyebrow {
		margin-bottom: 0.25rem;
		font-size: 0.6875rem;
	}

	.hero__title {
		font-size: 1.375rem;
		line-height: 1.6;
	}

	.hero__name {
		font-size: 2.125rem;
		line-height: 1.6;
	}

	.hero__copy {
		margin-top: 0.75rem;
		font-size: 0.9375rem;
	}

	.hero__info {
		margin-top: 0.375rem;
		font-size: 0.75rem;
	}

	.hero__buttons {
		margin-top: 1rem;
		gap: 0.625rem;
	}

	.hero__buttons .button {
		padding: 0.625rem 1.5rem;
		font-size: 0.875rem;
		line-height: 1.6;
	}
}

@media (max-height: 26rem) and (orientation: landscape) {
	body {
		padding-bottom: 0;
	}

	.mobile-cta {
		display: none;
	}

	.hero__inner {
		padding-top: 5rem;
		padding-bottom: 3rem;
	}

	.hero__logo {
		width: 6rem;
		height: 6rem;
		margin-bottom: 0.75rem;
	}

	.hero__copy {
		margin-top: 0.75rem;
	}

	.hero__buttons {
		margin-top: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.js .reveal.is-reveal-pending,
	.js .reveal.is-visible {
		opacity: 1;
		transform: none;
	}
}

@media (forced-colors: active) {
	.button,
	.menu-toggle,
	.lightbox__close,
	.lightbox__previous,
	.lightbox__next {
		border: 1px solid ButtonText;
	}
}
