/*
Theme completion note:
- Keep body scheme classes aligned with PHP, scripts, and tests.
- Preserve hooks and selector discipline while changing the composition completely.
*/

:root {
	--container-width: 1320px;
	--reading-width: 40rem;
	--radius-sm: 1rem;
	--radius-md: 1.8rem;
	--radius-lg: 2.8rem;
	--radius-pill: 999px;
	--field: #ebe3d6;
	--field-deep: #d9cfbf;
	--quiet-plane: rgba(255, 249, 241, 0.58);
	--raised-plane: rgba(250, 244, 236, 0.8);
	--emphasis-plane: rgba(119, 89, 63, 0.1);
	--nav-shell: rgba(243, 234, 224, 0.7);
	--nav-shell-solid: rgba(242, 234, 224, 0.92);
	--brand: #9d6541;
	--brand-strong: #7d4a2d;
	--secondary: #2e5047;
	--warm-counter: #c99161;
	--wood-earth: #7f6550;
	--text: #171b1d;
	--text-soft: rgba(23, 27, 29, 0.74);
	--text-dim: rgba(23, 27, 29, 0.54);
	--line: rgba(23, 27, 29, 0.12);
	--line-strong: rgba(23, 27, 29, 0.22);
	--hero-shadow: linear-gradient(180deg, rgba(11, 13, 16, 0.12) 0%, rgba(10, 12, 15, 0.82) 100%);
	--hero-overlay: linear-gradient(120deg, rgba(228, 220, 207, 0.16) 0%, rgba(12, 16, 21, 0.22) 56%, rgba(8, 11, 14, 0.78) 100%);
	--shadow-soft: 0 26px 72px rgba(28, 22, 18, 0.12);
	--shadow-deep: 0 46px 140px rgba(18, 14, 11, 0.18);
}

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

html {
	scroll-behavior: smooth;
}

body.ejp {
	margin: 0;
	min-width: 320px;
	background:
		radial-gradient(circle at 12% 0%, rgba(157, 101, 65, 0.13), transparent 30%),
		radial-gradient(circle at 88% 14%, rgba(46, 80, 71, 0.08), transparent 26%),
		linear-gradient(180deg, #f5eee4 0%, #ece3d6 48%, #e0d5c5 100%);
	color: var(--text);
	font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
	font-size-adjust: 0.53;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.ejp.scheme-atrio-mineral {
	--field: #ebe3d6;
	--field-deep: #d9cfbf;
	--quiet-plane: rgba(255, 249, 241, 0.58);
	--raised-plane: rgba(250, 244, 236, 0.8);
	--emphasis-plane: rgba(119, 89, 63, 0.1);
	--nav-shell: rgba(243, 234, 224, 0.7);
	--nav-shell-solid: rgba(242, 234, 224, 0.92);
	--brand: #9d6541;
	--brand-strong: #7d4a2d;
	--secondary: #2e5047;
	--warm-counter: #c99161;
	--wood-earth: #7f6550;
	--text: #171b1d;
	--text-soft: rgba(23, 27, 29, 0.74);
	--text-dim: rgba(23, 27, 29, 0.54);
	--line: rgba(23, 27, 29, 0.12);
	--line-strong: rgba(23, 27, 29, 0.22);
}

body.ejp.scheme-nucleo-obsidiano {
	color-scheme: dark;
	--field: #0b1014;
	--field-deep: #121922;
	--quiet-plane: rgba(23, 30, 35, 0.56);
	--raised-plane: rgba(25, 32, 38, 0.74);
	--emphasis-plane: rgba(191, 129, 83, 0.12);
	--nav-shell: rgba(12, 18, 22, 0.72);
	--nav-shell-solid: rgba(14, 19, 24, 0.94);
	--brand: #bf8153;
	--brand-strong: #d39b6d;
	--secondary: #6e9184;
	--warm-counter: #d29a6c;
	--wood-earth: #8e705b;
	--text: #efe6d7;
	--text-soft: rgba(239, 230, 215, 0.76);
	--text-dim: rgba(239, 230, 215, 0.52);
	--line: rgba(239, 230, 215, 0.12);
	--line-strong: rgba(239, 230, 215, 0.22);
	--hero-shadow: linear-gradient(180deg, rgba(5, 8, 10, 0.18) 0%, rgba(4, 7, 10, 0.88) 100%);
	--hero-overlay: linear-gradient(120deg, rgba(191, 129, 83, 0.16) 0%, rgba(10, 13, 18, 0.28) 52%, rgba(5, 7, 10, 0.88) 100%);
	--shadow-soft: 0 26px 72px rgba(0, 0, 0, 0.32);
	--shadow-deep: 0 48px 140px rgba(0, 0, 0, 0.44);
	background:
		radial-gradient(circle at 12% 0%, rgba(191, 129, 83, 0.15), transparent 30%),
		radial-gradient(circle at 88% 14%, rgba(110, 145, 132, 0.08), transparent 26%),
		linear-gradient(180deg, #0a0f13 0%, #0d1318 54%, #0a1014 100%);
}

body.is-mobile-nav-open {
	overflow: hidden;
}

a {
	color: inherit;
}

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

.site-shell {
	position: relative;
	overflow: clip;
}

.site-main {
	position: relative;
}

.section-shell {
	position: relative;
	width: min(calc(100% - 2.5rem), var(--container-width));
	margin: 0 auto;
}

.section-shell--spaced {
	padding-block: clamp(5rem, 10vw, 8.5rem);
}

.section-kicker,
.eyebrow,
.hero-axis__label,
.structure-rail__eyebrow {
	margin: 0;
	color: var(--text-dim);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.section-title,
.hero-title,
.cta-title,
.legacy-page__title {
	margin: 0;
	font-family: "Newsreader", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
	font-size-adjust: 0.47;
	font-weight: 500;
	letter-spacing: -0.05em;
	line-height: 0.92;
	text-wrap: balance;
}

.hero-title {
	max-width: 5.8em;
	font-size: clamp(3.25rem, 8vw, 7rem);
	line-height: 0.9;
	color: #f4ede2;
	margin-bottom: 1.1rem;
	min-height: 0;
}

.section-title {
	font-size: clamp(2.6rem, 5vw, 4.9rem);
}

.hero-lead,
.section-copy,
.structure-rail__copy,
.protocol-card p,
.contact-panel__note,
.legacy-page__intro,
.site-footer__signature p,
.site-footer__legal p {
	margin: 0;
	font-size: clamp(0.98rem, 1.2vw, 1.08rem);
	color: var(--text-soft);
}

.hero-lead {
	max-width: 34rem;
	font-size: clamp(0.96rem, 1.08vw, 1.04rem);
	line-height: 1.45;
	color: rgba(244, 237, 226, 0.8);
	margin-bottom: 1.5rem;
	min-height: 0;
}

.section-head {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.82rem;
	min-height: 3.3rem;
	padding: 0.84rem 1.25rem;
	border: 1px solid transparent;
	border-radius: var(--radius-pill);
	color: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-decoration: none;
	overflow: hidden;
	isolation: isolate;
}

.button::before {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: 0;
	border-radius: inherit;
	opacity: 0;
	pointer-events: none;
}

.button__fill {
	position: absolute;
	inset: 0;
	z-index: -1;
	transition: transform 220ms ease, opacity 260ms ease, filter 420ms ease;
}

.button__label,
.button__icon {
	position: relative;
	z-index: 1;
}

.button__label {
	opacity: var(--button-label-opacity, 1);
	transition: opacity 260ms ease, color 260ms ease;
}

.button__icon svg {
	width: 1rem;
	height: 1rem;
	display: block;
}

.button--primary {
	--button-border-alpha: 0.12;
	--button-shadow-alpha: 0.22;
	--button-fill-opacity: 1;
	--button-fill-brightness: 1;
	--button-fill-saturate: 1;
	--button-label-opacity: 1;
	--button-icon-opacity: 0.94;
	--button-plaque-highlight-opacity: 0.12;
	--button-plaque-highlight-y: 0rem;
	color: #f5ede1;
	border-color: rgba(255, 255, 255, var(--button-border-alpha));
	box-shadow: 0 18px 40px rgba(0, 0, 0, var(--button-shadow-alpha));
}

.button--primary::before {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 24%, rgba(255, 255, 255, 0) 58%),
		radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.1), transparent 34%);
	opacity: var(--button-plaque-highlight-opacity);
	transform: translate3d(0, var(--button-plaque-highlight-y), 0);
	transition: opacity 420ms ease, transform 520ms ease;
}

.button--primary .button__fill {
	opacity: var(--button-fill-opacity);
	filter: saturate(var(--button-fill-saturate)) brightness(var(--button-fill-brightness));
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
}

.button--primary .button__icon {
	opacity: var(--button-icon-opacity);
	transition: opacity 260ms ease, color 260ms ease;
}

.has-motion .has-magnet:hover .button__fill,
.has-motion .has-magnet:focus-visible .button__fill {
	transform: scale(1.04);
}

.has-motion .button,
.has-motion .nav-link,
.has-motion .mobile-nav-link,
.has-motion .brand-mark,
.has-motion .language-switcher__item,
.has-motion .structure-rail__row,
.has-motion .contact-line,
.has-motion .mobile-overlay__contact {
	transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease, opacity 220ms ease;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 60;
	padding: 1rem 0 0;
	pointer-events: none;
}

.site-header::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 8.5rem;
	background: linear-gradient(180deg, rgba(6, 8, 10, 0.68) 0%, rgba(6, 8, 10, 0.26) 44%, transparent 100%);
	pointer-events: none;
}

.floating-island {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: start;
	gap: 0.9rem;
	width: min(calc(100% - 2rem), var(--container-width));
	margin: 0 auto;
	padding: 0;
}

.site-header.is-scrolled .floating-island {
	transform: translateY(-0.1rem);
}

.brand-mark {
	display: inline-grid;
	gap: 0.24rem;
	color: #f2e8d8;
	text-decoration: none;
	pointer-events: auto;
}

.brand-mark__title {
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: 0.34em;
	text-transform: uppercase;
}

.brand-mark__subtitle {
	color: rgba(242, 232, 216, 0.46);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.desktop-actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	justify-content: flex-end;
	pointer-events: auto;
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.22rem;
	border: 1px solid rgba(242, 232, 216, 0.12);
	border-radius: var(--radius-pill);
	background: rgba(8, 10, 12, 0.4);
	backdrop-filter: blur(18px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.language-switcher__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.44rem 0.72rem;
	border-radius: var(--radius-pill);
	color: rgba(242, 232, 216, 0.54);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.language-switcher__item.is-current {
	background: rgba(242, 232, 216, 0.08);
	color: #f2e8d8;
}

.language-switcher__label--short,
.site-header__contact-label--short {
	display: none;
}

.site-header__contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.82rem;
	padding: 0.72rem 1.08rem;
	border: 1px solid rgba(201, 145, 97, 0.42);
	border-radius: var(--radius-pill);
	background:
		radial-gradient(circle at 50% 0%, rgba(201, 145, 97, 0.18), transparent 70%),
		linear-gradient(180deg, rgba(38, 24, 16, 0.62) 0%, rgba(18, 12, 8, 0.32) 100%);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
	color: #f2e8d8;
	font-size: 0.69rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.has-motion .site-header__contact:hover,
.has-motion .site-header__contact:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(201, 145, 97, 0.64);
}

.hero-shell {
	position: relative;
	min-height: 100svh;
	overflow: clip;
}

.hero-shell__media,
.hero-shell__veil,
.hero-shell__grid,
.hero-shell__flare {
	position: absolute;
	inset: 0;
}

.hero-shell__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.12) saturate(0.76) contrast(1.04) brightness(0.82);
	transform: scale(1.06);
}

.hero-shell__veil {
	background: var(--hero-shadow), var(--hero-overlay);
}

.hero-shell__grid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 11rem 11rem;
	opacity: 0.12;
	mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.44) 16%, rgba(0, 0, 0, 1) 100%);
}

.hero-shell__flare {
	background:
		radial-gradient(circle at 82% 24%, rgba(201, 145, 97, 0.2), transparent 20rem),
		radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.08), transparent 16rem);
}

.hero-shell__content {
	position: relative;
	z-index: 2;
	min-height: 100svh;
	display: flex;
	align-items: flex-start;
	padding-top: max(6.4rem, 8.5vh);
	padding-bottom: clamp(2.4rem, 4.4vh, 3.2rem);
}

.hero-poster {
	--hero-side-measure: 21rem;
	display: grid;
	grid-template-columns: minmax(0, 1.16fr) var(--hero-side-measure);
	gap: clamp(1.25rem, 4vw, 3.4rem);
	row-gap: clamp(1.4rem, 2.3vw, 1.95rem);
	align-items: center;
	margin-top: clamp(4.5rem, 10vh, 6rem);
	min-height: auto;
	width: 100%;
}

.hero-poster__copy {
	position: relative;
	display: grid;
	align-content: start;
	gap: 0;
	max-width: 44rem;
	min-height: auto;
	padding-top: clamp(1.8rem, 3.2vh, 2.6rem);
}

.hero-poster__copy .eyebrow {
	margin-bottom: 0.85rem;
	min-height: 1.2em;
}

.hero-poster__actions {
	display: grid;
	gap: 1rem;
	width: 100%;
	max-width: 44rem;
}

.hero-poster__actions .button {
	align-self: start;
	width: min(29rem, 100%);
}

.has-motion .hero-title[data-hero-text-reveal] {
	opacity: 0.78;
	transform: translate3d(0, 0.72rem, 0);
}

.has-motion .eyebrow[data-hero-text-reveal],
.has-motion .hero-lead[data-hero-text-reveal] {
	opacity: 0.68;
	transform: translate3d(0, 0.92rem, 0);
}

.has-motion [data-hero-panel] {
	opacity: 0.76;
	transform: translate3d(0, 1rem, 0);
}

.has-motion [data-hero-cta] {
	--button-border-alpha: 0.08;
	--button-shadow-alpha: 0.18;
	--button-fill-opacity: 0.9;
	--button-fill-brightness: 0.9;
	--button-fill-saturate: 0.88;
	--button-label-opacity: 0.9;
	--button-icon-opacity: 0.8;
	--button-plaque-highlight-opacity: 0.04;
	--button-plaque-highlight-y: 0.62rem;
}

.hero-monogram {
	position: absolute;
	top: -1.6rem;
	left: -0.12em;
	margin: 0;
	font-size: clamp(4.5rem, 18vw, 12rem);
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 0.9;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.1);
}

.hero-axis {
	display: grid;
	gap: 0.9rem;
	align-self: start;
	margin-top: clamp(2rem, 4.2vh, 2.9rem);
	margin-bottom: 0;
	width: 100%;
	max-width: var(--hero-side-measure);
	padding-left: clamp(1rem, 2vw, 1.6rem);
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	color: #f4ede2;
}

.hero-axis__track {
	display: grid;
	gap: 0.65rem;
}

body.ejp.scheme-atrio-mineral .hero-axis__label {
	color: rgba(236, 225, 211, 0.74);
}

.hero-axis__row {
	display: grid;
	gap: 0.28rem;
	padding-top: 0.65rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-axis__row span {
	color: rgba(244, 237, 226, 0.64);
	font-size: 0.76rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-axis__row strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
	min-height: 0;
}

.hero-axis__note {
	display: block;
	color: rgba(244, 237, 226, 0.78);
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	line-height: 1.4;
	min-height: 0;
	text-transform: none;
}

.structure-scene {
	display: grid;
	gap: clamp(2.25rem, 4vw, 3rem);
}

.structure-scene__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.6fr);
	gap: 1.6rem;
	align-items: end;
}

.structure-scene__lead {
	display: grid;
	gap: 0.95rem;
	max-width: 36rem;
}

.structure-scene__head .section-copy {
	max-width: 24rem;
	justify-self: end;
}

.structure-rail {
	border-top: 1px solid var(--line-strong);
}

.structure-rail__row {
	display: grid;
	grid-template-columns: minmax(0, 0.22fr) minmax(0, 0.42fr) minmax(0, 0.36fr);
	gap: 1.4rem;
	align-items: start;
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--line);
}

.structure-rail__title {
	margin: 0;
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	font-weight: 600;
	line-height: 1.18;
}

.has-motion .structure-rail__row:hover,
.has-motion .structure-rail__row:focus-within {
	transform: translateX(0.3rem);
}

.intersection-chamber {
	position: relative;
	min-height: clamp(38rem, 74vw, 54rem);
	color: #efe6d8;
	overflow: clip;
}

.intersection-chamber__media,
.intersection-chamber__veil,
.intersection-chamber__grid {
	position: absolute;
	inset: 0;
}

.intersection-chamber__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.5) brightness(0.5) contrast(1.05) sepia(0.1);
	transform: scale(1.04);
}

.intersection-chamber__veil {
	background:
		linear-gradient(90deg, rgba(8, 11, 14, 0.9) 0%, rgba(8, 11, 14, 0.4) 44%, rgba(8, 11, 14, 0.82) 100%),
		radial-gradient(circle at 72% 34%, rgba(201, 145, 97, 0.16), transparent 22rem);
}

.intersection-chamber__grid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 9rem 9rem;
	opacity: 0.16;
	mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 18%, rgba(0, 0, 0, 1) 100%);
}

.intersection-chamber__frame {
	position: relative;
	z-index: 1;
	min-height: inherit;
	display: flex;
	align-items: flex-end;
	padding-block: clamp(4rem, 7vw, 6rem);
}

.intersection-chamber__copy {
	display: grid;
	gap: 1.1rem;
	width: min(35rem, 100%);
	margin-left: auto;
	padding-left: clamp(1.2rem, 2.8vw, 2rem);
	border-left: 1px solid rgba(239, 230, 215, 0.18);
}

.intersection-chamber__copy .section-copy,
.intersection-chamber__signal {
	color: rgba(239, 230, 215, 0.78);
}

.intersection-chamber__signal {
	margin: 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(239, 230, 215, 0.16);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.criteria-scene {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4.6rem);
	align-items: start;
}

.criteria-scene__intro {
	position: sticky;
	top: max(6rem, 12vh);
	display: grid;
	gap: 1rem;
	max-width: 24rem;
}

.criteria-steps {
	border-top: 1px solid var(--line-strong);
}

.criteria-step {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1.4rem;
	align-items: start;
	padding: 1.9rem 0;
	border-bottom: 1px solid var(--line);
	opacity: 0.58;
	transform: translateX(0);
}

.criteria-step__index {
	margin: 0;
	min-width: 3.8rem;
	font-family: "Newsreader", serif;
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	line-height: 0.9;
	letter-spacing: -0.06em;
	color: var(--text-dim);
}

.criteria-step__body {
	display: grid;
	gap: 0.45rem;
}

.protocol-card h3 {
	margin: 0;
	font-size: clamp(1.55rem, 2vw, 2.05rem);
	font-weight: 600;
	line-height: 1;
}

.protocol-card.is-active {
	opacity: 1;
	transform: translateX(0.5rem);
}

.protocol-card.is-active .criteria-step__index,
.protocol-card.is-active h3 {
	color: var(--brand);
}

.contact-chamber {
	position: relative;
	min-height: 40rem;
	color: #f2e8d8;
	overflow: clip;
}

.contact-chamber__field,
.contact-chamber__grid,
.contact-chamber__glow {
	position: absolute;
	inset: 0;
}

.contact-chamber__field {
	background:
		linear-gradient(180deg, rgba(8, 11, 14, 0.94) 0%, rgba(5, 8, 10, 1) 100%);
}

.contact-chamber__grid {
	background-image:
		linear-gradient(rgba(242, 232, 216, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(242, 232, 216, 0.08) 1px, transparent 1px);
	background-size: 7rem 7rem;
	opacity: 0.16;
	mask-image: radial-gradient(circle at 76% 58%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.84) 38%, transparent 100%);
}

.contact-chamber__glow {
	background:
		radial-gradient(circle at 76% 58%, rgba(201, 145, 97, 0.22), transparent 18rem),
		radial-gradient(circle at 28% 24%, rgba(110, 145, 132, 0.12), transparent 16rem);
}

.contact-chamber__frame {
	position: relative;
	z-index: 1;
	min-height: inherit;
	display: flex;
	align-items: flex-end;
	padding-block: clamp(5rem, 10vw, 8rem);
}

.contact-chamber__lane {
	display: grid;
	gap: 0.9rem;
	width: min(34rem, 100%);
	margin-left: auto;
}

.contact-chamber__label {
	margin: 0;
	color: rgba(242, 232, 216, 0.56);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.contact-chamber__content {
	display: grid;
	gap: 0.9rem;
}

.contact-chamber__content .section-copy,
.contact-panel__note {
	color: rgba(242, 232, 216, 0.76);
	max-width: 24rem;
}

.contact-line {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(242, 232, 216, 0.18);
	border-bottom: 1px solid rgba(242, 232, 216, 0.18);
	text-decoration: none;
}

.contact-line__label {
	color: rgba(242, 232, 216, 0.56);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.contact-line__value {
	flex: 1;
	font-size: clamp(1.25rem, 2.8vw, 1.95rem);
	font-weight: 600;
	letter-spacing: 0.01em;
}

.contact-line__icon svg {
	width: 1rem;
	height: 1rem;
}

.has-motion .contact-line:hover,
.has-motion .contact-line:focus-visible {
	transform: translateX(0.3rem);
}

.site-footer {
	position: relative;
	margin-top: -1px;
	padding: 0 0 2rem;
	background:
		radial-gradient(circle at 68% 18%, rgba(201, 145, 97, 0.12), transparent 20rem),
		linear-gradient(180deg, #06090c 0%, #05080a 100%);
	color: rgba(242, 232, 216, 0.68);
}

.site-footer__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	flex-wrap: wrap;
	width: min(calc(100% - 2rem), var(--container-width));
	margin: 0 auto;
	padding-top: 1.15rem;
	border-top: 1px solid rgba(242, 232, 216, 0.1);
}

.site-footer__inner::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 14rem;
	height: 1px;
	background: linear-gradient(90deg, rgba(201, 145, 97, 0.82), transparent);
	opacity: 0.9;
}

.site-footer__signature {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	margin: 0;
	color: rgba(242, 232, 216, 0.46);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-footer__title {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #f2e8d8;
}

.site-footer__motto {
	opacity: 0.72;
}

.site-footer__legal {
	margin: 0;
	color: rgba(242, 232, 216, 0.46);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-align: right;
	text-transform: uppercase;
}

.site-main--legacy,
.site-main--fallback {
	padding-top: max(7rem, 14vh);
	padding-bottom: 4rem;
}

.legacy-page,
.site-main--fallback .section-head {
	max-width: 58rem;
}

.legacy-page__header {
	display: grid;
	gap: 0.9rem;
	margin-bottom: 1.6rem;
}

.legacy-page__content {
	padding: clamp(1.5rem, 3vw, 2.35rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: linear-gradient(180deg, var(--quiet-plane) 0%, var(--raised-plane) 100%);
	box-shadow: var(--shadow-soft);
}

.entry-content > * + * {
	margin-top: 1.1em;
}

.entry-content a {
	color: var(--brand);
}

.entry-content blockquote {
	margin: 1.6rem 0;
	padding-left: 1.2rem;
	border-left: 2px solid var(--brand);
	color: var(--text-soft);
}

.has-motion [data-hero-text-reveal],
.has-motion [data-hero-panel],
.has-motion [data-scene-reveal] {
	will-change: transform, opacity;
}

@media (max-width: 1080px) {
	.hero-poster,
	.structure-scene__head,
	.criteria-scene {
		grid-template-columns: 1fr;
	}

	.hero-poster {
		align-items: start;
		margin-top: 0;
		min-height: auto;
	}

	.hero-poster__copy {
		min-height: auto;
	}

	.hero-poster__actions {
		order: 1;
		max-width: 32rem;
	}

	.hero-poster__actions .button {
		width: min(29rem, 100%);
	}

	.hero-axis {
		margin-top: 0;
		margin-bottom: 0;
		order: 2;
		max-width: 32rem;
	}

	.intersection-chamber__copy,
	.contact-chamber__lane {
		margin-left: 0;
	}

	.criteria-scene__intro {
		position: relative;
		top: 0;
	}

}

@media (min-width: 641px) {
	.desktop-actions {
		grid-column: 3;
		justify-self: end;
		width: max-content;
	}

	.language-switcher__item {
		min-width: 4.75rem;
	}

	.site-header__contact {
		min-width: 10.75rem;
	}
}

@media (min-width: 1081px) {
	.hero-shell__content {
		padding-top: calc(max(6.4rem, 8.5vh) + 2rem);
		padding-bottom: calc(clamp(2.4rem, 4.4vh, 3.2rem) - 2rem);
	}

	.hero-poster__copy {
		padding-top: clamp(0.35rem, 1.2vh, 0.9rem);
	}

	.hero-poster {
		align-items: start;
	}

	.hero-poster__copy .eyebrow,
	.hero-poster__copy .hero-title {
		grid-column: 1 / -1;
	}

	.hero-monogram {
		top: -8rem;
	}

	.hero-title {
		min-height: 2.7em;
	}

	.hero-lead {
		margin-bottom: 0;
		min-height: 5.8em;
	}

	.hero-poster__actions {
		grid-column: 1 / -1;
		max-width: none;
		grid-template-columns: minmax(0, 1fr) var(--hero-side-measure);
		column-gap: clamp(1rem, 2vw, 1.75rem);
		align-items: end;
	}

	.hero-poster__actions .hero-lead {
		max-width: 34rem;
	}

	.hero-poster__actions .button {
		width: 100%;
		min-width: 0;
		justify-self: stretch;
	}

	.hero-axis {
		margin-top: clamp(5.75rem, 10vh, 6.45rem);
	}
}

@media (max-width: 820px) {
	.section-shell {
		width: min(calc(100% - 1.5rem), var(--container-width));
	}

	.floating-island {
		width: min(calc(100% - 1rem), var(--container-width));
	}

	.brand-mark__subtitle {
		font-size: 0.58rem;
	}

	.hero-shell__content {
		padding-top: max(6.2rem, 11vh);
	}

	.hero-title {
		max-width: 5.45em;
		font-size: clamp(2.85rem, 14vw, 4.9rem);
		min-height: 3.6em;
	}

	.hero-monogram {
		font-size: clamp(3.4rem, 22vw, 6rem);
	}

	.structure-rail__row {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.intersection-chamber {
		min-height: 33rem;
	}

	.intersection-chamber__frame,
	.contact-chamber__frame {
		align-items: flex-end;
	}
}

@media (max-width: 640px) {
	.floating-island {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.desktop-actions {
		gap: 0.35rem;
	}

	.language-switcher__item {
		padding-inline: 0.5rem;
		font-size: 0.58rem;
		letter-spacing: 0.08em;
	}

	.site-header__contact {
		min-height: 2.42rem;
		padding-inline: 0.74rem;
		font-size: 0.6rem;
		letter-spacing: 0.12em;
	}

	.language-switcher__label--full,
	.site-header__contact-label--full {
		display: none;
	}

	.language-switcher__label--short,
	.site-header__contact-label--short {
		display: inline;
	}

	.hero-poster__copy {
		padding-top: 2.6rem;
	}

	.hero-lead {
		min-height: 5.8em;
	}

	.hero-axis {
		padding-left: 0.95rem;
	}

	.criteria-step {
		grid-template-columns: 1fr;
		gap: 0.65rem;
	}

	.contact-line {
		display: grid;
	}

	.contact-line__value {
		font-size: 1.2rem;
	}

	.site-footer__inner {
		align-items: flex-start;
	}

	.site-footer__signature {
		flex-wrap: wrap;
		gap: 0.4rem 0.7rem;
	}

	.site-footer__legal {
		text-align: left;
	}

	.button {
		width: 100%;
	}
}

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

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