:root {
	--ink: #0b0d12;
	--ink-soft: #171921;
	--paper: #f3f1ec;
	--paper-deep: #e9e6de;
	--white: #ffffff;
	--violet: #392d91;
	--violet-bright: #5445d0;
	--violet-pale: #ddd8ff;
	--red: #ca1528;
	--yellow: #ffd900;
	--muted: #686972;
	--line: rgba(11, 13, 18, 0.14);
	--line-light: rgba(255, 255, 255, 0.16);
	--container: 1240px;
	--header-height: 78px;
	--radius: 3px;
	--shadow: 0 24px 80px rgba(11, 13, 18, 0.14);
	--sans: "Aptos", "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
	--mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

body.admin-bar .site-header {
	top: 32px;
}

body.admin-bar .scroll-progress {
	top: 32px;
}

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

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

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

button {
	cursor: pointer;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	text-wrap: balance;
}

p {
	text-wrap: pretty;
}

::selection {
	background: var(--violet);
	color: var(--white);
}

.container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

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

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	background: var(--white);
	color: var(--ink);
	font-weight: 700;
	transform: translateY(-160%);
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid var(--yellow);
	outline-offset: 4px;
}

.scroll-progress {
	position: fixed;
	z-index: 1001;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	pointer-events: none;
}

.scroll-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--violet-bright), var(--red), var(--yellow));
}

.eyebrow {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 20px;
	color: var(--violet);
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.25;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 26px;
	height: 1px;
	background: currentColor;
}

.eyebrow-light {
	color: var(--violet-pale);
}

.button {
	display: inline-flex;
	gap: 28px;
	align-items: center;
	justify-content: space-between;
	min-height: 54px;
	padding: 14px 20px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 760;
	line-height: 1;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease;
}

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

.button-primary {
	background: var(--violet);
	color: var(--white);
}

.button-primary:hover {
	background: var(--violet-bright);
}

.button-ghost {
	border-color: var(--line);
	background: rgba(255, 255, 255, 0.35);
	color: var(--ink);
}

.button-ghost:hover {
	border-color: var(--ink);
	background: var(--white);
}

.button-light {
	background: var(--white);
	color: var(--ink);
}

.button-light:hover {
	background: var(--yellow);
}

.text-link {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	border-bottom: 1px solid currentColor;
	color: var(--violet);
	font-size: 14px;
	font-weight: 750;
	transition: gap 180ms ease;
}

.text-link:hover {
	gap: 18px;
}

.text-link-light {
	color: var(--white);
}

/* Header */
.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	height: var(--header-height);
	border-bottom: 1px solid var(--line);
	background: rgba(243, 241, 236, 0.92);
	backdrop-filter: blur(18px);
	transition:
		background-color 200ms ease,
		box-shadow 200ms ease;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 32px rgba(11, 13, 18, 0.07);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.site-branding {
	position: relative;
	z-index: 3;
	width: 174px;
}

.site-logo,
.custom-logo-link {
	display: block;
	padding: 5px 6px;
	background: var(--white);
}

.site-logo img,
.custom-logo {
	width: 100%;
	max-height: 48px;
	object-fit: contain;
}

.header-tools {
	position: relative;
	z-index: 4;
	display: flex;
	gap: 8px;
	align-items: center;
}

.language-switcher {
	position: relative;
}

.language-switcher summary {
	display: flex;
	gap: 7px;
	align-items: center;
	min-width: 78px;
	height: 42px;
	padding: 0 10px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.58);
	cursor: pointer;
	list-style: none;
	transition:
		border-color 180ms ease,
		background-color 180ms ease;
}

.language-switcher summary::-webkit-details-marker {
	display: none;
}

.language-switcher summary:hover,
.language-switcher[open] summary {
	border-color: var(--ink);
	background: var(--white);
}

.language-flag {
	font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
	font-size: 19px;
	line-height: 1;
}

.language-code {
	font-family: var(--mono);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.language-chevron {
	margin-left: auto;
	font-size: 13px;
	transition: transform 180ms ease;
}

.language-switcher[open] .language-chevron {
	transform: rotate(180deg);
}

.language-menu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	display: grid;
	width: 264px;
	padding: 8px;
	border: 1px solid var(--line);
	background: var(--white);
	box-shadow: 0 24px 60px rgba(11, 13, 18, 0.18);
}

.language-menu::before {
	position: absolute;
	top: -7px;
	right: 26px;
	width: 12px;
	height: 12px;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
	background: var(--white);
	content: "";
	transform: rotate(45deg);
}

.language-menu a {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr) auto;
	gap: 8px;
	align-items: center;
	min-height: 44px;
	padding: 7px 10px;
	font-size: 12px;
	transition:
		background-color 150ms ease,
		color 150ms ease;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
	background: var(--paper);
	color: var(--violet);
}

.language-menu a[aria-current="true"]::after {
	position: absolute;
	top: 50%;
	right: 36px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--violet);
	content: "";
	transform: translateY(-50%);
}

.language-menu small {
	color: var(--muted);
	font-family: var(--mono);
	font-size: 8px;
}

.primary-navigation {
	display: flex;
	gap: clamp(18px, 2.5vw, 38px);
	align-items: center;
	font-size: 13px;
	font-weight: 680;
}

.primary-navigation > a:not(.nav-cta) {
	position: relative;
	padding-block: 10px;
}

.primary-navigation > a:not(.nav-cta)::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 1px;
	background: var(--violet);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-navigation > a:not(.nav-cta):hover::after,
.primary-navigation > a.is-active::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-cta {
	padding: 11px 15px;
	background: var(--ink);
	color: var(--white);
}

.nav-cta:hover {
	background: var(--violet);
}

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 1px;
	margin: 7px auto;
	background: var(--ink);
	transition: transform 180ms ease;
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	padding-top: calc(var(--header-height) + 52px);
	background:
		radial-gradient(circle at 14% 30%, rgba(84, 69, 208, 0.09), transparent 30%),
		var(--paper);
}

.hero-grid-lines,
.calculator-grid-bg {
	position: absolute;
	inset: 0;
	opacity: 0.45;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(57, 45, 145, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(57, 45, 145, 0.08) 1px, transparent 1px);
	background-position: center;
	background-size: 80px 80px;
	mask-image: linear-gradient(to bottom, black, transparent 82%);
	-webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
	gap: clamp(36px, 6vw, 88px);
	align-items: center;
	min-height: min(780px, calc(100vh - 50px));
	padding-block: 48px 84px;
}

.hero-copy {
	padding-block: 24px;
}

.hero-copy h1 {
	max-width: 760px;
	margin-bottom: 30px;
	font-size: clamp(58px, 6.25vw, 94px);
	font-weight: 760;
	letter-spacing: -0.062em;
	line-height: 0.93;
}

.hero-copy h1 em {
	display: block;
	color: var(--violet);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.92em;
	font-weight: 500;
	letter-spacing: -0.05em;
}

.hero-intro {
	max-width: 650px;
	margin-bottom: 34px;
	color: #45464d;
	font-size: clamp(18px, 1.65vw, 22px);
	line-height: 1.55;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 60px;
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: 700px;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.hero-proof li {
	padding: 18px 18px 0 0;
}

.hero-proof li + li {
	padding-left: 18px;
	border-left: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
	display: block;
}

.hero-proof strong {
	margin-bottom: 4px;
	font-family: var(--mono);
	font-size: 13px;
	letter-spacing: -0.02em;
}

.hero-proof span {
	color: var(--muted);
	font-size: 12px;
}

.hero-visual {
	position: relative;
	min-height: 590px;
	overflow: hidden;
	background: var(--ink);
	box-shadow: var(--shadow);
	isolation: isolate;
}

.hero-visual > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.68;
	filter: grayscale(0.2) contrast(1.05);
}

.hero-visual-shade {
	position: absolute;
	z-index: 1;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(11, 13, 18, 0.62), transparent 45%, rgba(11, 13, 18, 0.76)),
		linear-gradient(120deg, rgba(57, 45, 145, 0.35), transparent 65%);
}

#pointcloud-canvas {
	position: absolute;
	z-index: 2;
	inset: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: screen;
}

.visual-label {
	position: absolute;
	z-index: 3;
	display: flex;
	gap: 10px;
	align-items: center;
	color: rgba(255, 255, 255, 0.9);
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.1em;
}

.visual-label-top {
	top: 24px;
	left: 24px;
}

.visual-label-bottom {
	right: 24px;
	bottom: 24px;
	gap: 18px;
	color: rgba(255, 255, 255, 0.65);
}

.status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #65ffbf;
	box-shadow: 0 0 0 5px rgba(101, 255, 191, 0.14);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	50% {
		box-shadow: 0 0 0 9px rgba(101, 255, 191, 0);
	}
}

.location-chip {
	position: absolute;
	z-index: 4;
	bottom: 0;
	left: 0;
	min-width: 240px;
	padding: 18px 22px;
	background: var(--white);
	color: var(--ink);
	transition:
		background-color 180ms ease,
		color 180ms ease;
}

.location-chip:hover {
	background: var(--yellow);
}

.location-chip span,
.location-chip strong {
	display: block;
}

.location-chip span {
	margin-bottom: 3px;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.location-chip strong {
	font-size: 15px;
}

.hero-ticker {
	position: relative;
	z-index: 5;
	overflow: hidden;
	padding: 13px 0;
	background: var(--ink);
	color: var(--white);
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 650;
	letter-spacing: 0.16em;
	white-space: nowrap;
}

.hero-ticker div {
	display: flex;
	gap: 34px;
	width: max-content;
	align-items: center;
	animation: ticker 26s linear infinite;
}

.hero-ticker i {
	color: var(--yellow);
	font-style: normal;
}

@keyframes ticker {
	to {
		transform: translateX(-50%);
	}
}

/* Shared section structure */
.section {
	position: relative;
	padding-block: clamp(94px, 10vw, 154px);
}

.section-light {
	background: var(--paper);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	gap: clamp(40px, 8vw, 120px);
	align-items: end;
	margin-bottom: clamp(54px, 7vw, 88px);
}

.section-heading h2 {
	max-width: 830px;
	margin: 0;
	font-size: clamp(44px, 5.2vw, 72px);
	font-weight: 740;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.section-heading > p {
	margin: 0;
	color: var(--muted);
	font-size: 17px;
}

.section-heading-light {
	color: var(--white);
}

.section-heading-light > p {
	color: rgba(255, 255, 255, 0.62);
}

.js .reveal {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Services */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.service-card {
	position: relative;
	min-height: 490px;
	padding: clamp(28px, 3.5vw, 46px);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.22);
	transition:
		background-color 220ms ease,
		transform 220ms ease;
}

.service-card:hover {
	z-index: 2;
	background: var(--white);
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.service-card-featured {
	background: var(--violet);
	color: var(--white);
}

.service-card-featured:hover {
	background: var(--violet-bright);
}

.service-number {
	margin-bottom: 80px;
	color: currentColor;
	font-family: var(--mono);
	font-size: 10px;
	opacity: 0.55;
}

.service-icon {
	position: absolute;
	top: 42px;
	right: 42px;
	width: 62px;
	height: 62px;
	color: currentColor;
}

.service-icon-cube span {
	position: absolute;
	border: 1px solid currentColor;
}

.service-icon-cube span:nth-child(1) {
	inset: 10px 19px 18px 7px;
	transform: skewY(24deg);
}

.service-icon-cube span:nth-child(2) {
	inset: 10px 7px 18px 19px;
	transform: skewY(-24deg);
}

.service-icon-cube span:nth-child(3) {
	inset: 23px 13px 3px;
	border-top: 0;
}

.service-icon-plan {
	border: 1px solid currentColor;
}

.service-icon-plan span {
	position: absolute;
	background: currentColor;
}

.service-icon-plan span:nth-child(1) {
	top: 18px;
	right: 0;
	left: 0;
	height: 1px;
}

.service-icon-plan span:nth-child(2) {
	top: 18px;
	bottom: 0;
	left: 22px;
	width: 1px;
}

.service-icon-plan span:nth-child(3) {
	right: 12px;
	bottom: 12px;
	width: 14px;
	height: 14px;
	background: transparent;
	border: 1px solid currentColor;
}

.service-icon-check {
	border: 1px solid currentColor;
	border-radius: 50%;
}

.service-icon-check span {
	position: absolute;
	top: 21px;
	left: 16px;
	width: 29px;
	height: 15px;
	border-bottom: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: rotate(-45deg);
}

.service-card h3 {
	margin-bottom: 17px;
	font-size: 28px;
	letter-spacing: -0.035em;
}

.service-card p {
	margin-bottom: 34px;
	color: var(--muted);
	font-size: 16px;
}

.service-card-featured p {
	color: rgba(255, 255, 255, 0.7);
}

.service-card ul {
	display: grid;
	gap: 11px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.service-card li {
	position: relative;
	padding-left: 19px;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.service-card li::before {
	position: absolute;
	top: 0.74em;
	left: 0;
	width: 7px;
	height: 1px;
	background: currentColor;
	content: "";
}

/* Process */
.process-section {
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.process-orbit {
	position: absolute;
	top: -230px;
	right: -180px;
	width: 680px;
	height: 680px;
	border: 1px solid rgba(84, 69, 208, 0.28);
	border-radius: 50%;
	box-shadow:
		0 0 0 80px rgba(84, 69, 208, 0.025),
		0 0 0 160px rgba(84, 69, 208, 0.018);
}

.process-orbit::before,
.process-orbit::after {
	position: absolute;
	border-radius: 50%;
	content: "";
}

.process-orbit::before {
	inset: 28%;
	border: 1px dashed rgba(255, 255, 255, 0.12);
}

.process-orbit::after {
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	background: var(--yellow);
	box-shadow: 0 0 32px rgba(255, 217, 0, 0.6);
}

.process-list {
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--line-light);
	list-style: none;
}

.process-list li {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr) auto;
	gap: 32px;
	align-items: center;
	min-height: 150px;
	border-bottom: 1px solid var(--line-light);
	transition: background-color 180ms ease;
}

.process-list li:hover {
	background: rgba(255, 255, 255, 0.025);
}

.process-index {
	color: var(--violet-pale);
	font-family: var(--mono);
	font-size: 11px;
}

.process-list h3 {
	margin-bottom: 6px;
	font-size: clamp(24px, 2.4vw, 32px);
	letter-spacing: -0.03em;
}

.process-list p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 15px;
}

.process-format {
	min-width: 150px;
	padding: 9px 12px;
	border: 1px solid var(--line-light);
	color: rgba(255, 255, 255, 0.62);
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.08em;
	text-align: center;
}

/* Team */
.team-section {
	background:
		linear-gradient(90deg, transparent 50%, rgba(57, 45, 145, 0.05) 50%),
		var(--paper);
}

.team-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
	gap: clamp(50px, 8vw, 116px);
	align-items: center;
}

.team-photo {
	position: relative;
	margin: 0;
	padding: 18px 18px 52px;
	background: var(--white);
	box-shadow: var(--shadow);
	transform: rotate(-1.2deg);
}

.team-photo::before {
	position: absolute;
	z-index: -1;
	inset: -20px 18% 14% -22px;
	background: var(--violet);
	content: "";
	transform: rotate(2.8deg);
}

.team-photo img {
	width: 100%;
	aspect-ratio: 1.48;
	object-fit: cover;
}

.team-photo figcaption {
	position: absolute;
	right: 20px;
	bottom: 16px;
	left: 20px;
	display: flex;
	justify-content: space-between;
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.12em;
}

.team-copy h2 {
	margin-bottom: 28px;
	font-size: clamp(44px, 5vw, 68px);
	font-weight: 740;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.team-intro {
	margin-bottom: 34px;
	color: var(--muted);
	font-size: 18px;
}

.leader-card {
	display: flex;
	gap: 18px;
	align-items: center;
	padding-block: 22px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.leader-initials {
	display: grid;
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
	place-items: center;
	background: var(--ink);
	color: var(--white);
	font-family: var(--mono);
	font-size: 13px;
}

.leader-card h3 {
	margin-bottom: 3px;
	font-size: 17px;
}

.leader-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.team-values {
	display: grid;
	gap: 0;
	margin-top: 22px;
}

.team-values > div {
	display: grid;
	grid-template-columns: minmax(160px, 0.45fr) minmax(0, 0.55fr);
	gap: 24px;
	padding-block: 13px;
	border-bottom: 1px solid var(--line);
}

.team-values strong {
	font-size: 13px;
}

.team-values span {
	color: var(--muted);
	font-size: 13px;
}

/* Calculator */
.calculator-section {
	overflow: hidden;
	background: var(--violet);
	color: var(--white);
}

.calculator-grid-bg {
	opacity: 0.2;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
	mask-image: linear-gradient(to bottom, black, transparent 45%);
}

.calculator-section > .container {
	position: relative;
	z-index: 1;
}

.calculator-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(340px, 0.72fr);
	background: var(--white);
	color: var(--ink);
	box-shadow: 0 36px 100px rgba(8, 5, 38, 0.35);
}

.calculator-inputs {
	padding: clamp(28px, 5vw, 64px);
}

.calculator-step + .calculator-step {
	padding-top: 42px;
	margin-top: 42px;
	border-top: 1px solid var(--line);
}

.step-heading {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 26px;
}

.step-heading > span {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	place-items: center;
	border: 1px solid var(--violet);
	color: var(--violet);
	font-family: var(--mono);
	font-size: 9px;
}

.step-heading h3 {
	margin: -3px 0 2px;
	font-size: 22px;
	letter-spacing: -0.025em;
}

.step-heading p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.field-grid-three {
	grid-template-columns: 1.25fr 0.75fr 0.75fr;
}

.scope-field-grid {
	align-items: start;
}

.scope-field-grid > .form-field {
	grid-template-rows: 32px 50px auto;
	align-content: start;
}

.scope-field-grid > .form-field > span:first-child {
	display: flex;
	align-items: flex-end;
	line-height: 1.35;
}

.form-field {
	display: grid;
	gap: 8px;
}

.form-field > span {
	font-size: 12px;
	font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid #cbc9c2;
	border-radius: 0;
	background: var(--white);
	outline: none;
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease;
}

.form-field textarea {
	resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
	border-color: #92908a;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--violet);
	box-shadow: 0 0 0 3px rgba(57, 45, 145, 0.12);
}

.form-field select:disabled {
	cursor: not-allowed;
	opacity: 0.68;
}

.form-field small,
.field-help {
	color: var(--muted);
	font-size: 11px;
}

.field-help {
	margin: 12px 0 0;
}

.form-field-wide {
	margin-top: 2px;
}

.input-unit {
	position: relative;
}

.input-unit input {
	padding-right: 45px;
}

.input-unit small {
	position: absolute;
	top: 50%;
	right: 14px;
	color: var(--muted);
	transform: translateY(-50%);
}

.calculator-result {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(34px, 4vw, 54px);
	overflow: hidden;
	background:
		radial-gradient(circle at 90% 8%, rgba(84, 69, 208, 0.4), transparent 32%),
		var(--ink);
	color: var(--white);
}

.calculator-result::after {
	position: absolute;
	right: -70px;
	bottom: -70px;
	width: 210px;
	height: 210px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	box-shadow:
		0 0 0 32px rgba(255, 255, 255, 0.02),
		0 0 0 64px rgba(255, 255, 255, 0.015);
	content: "";
}

.result-kicker {
	margin-bottom: 8px;
	color: var(--violet-pale);
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.calculator-result h3 {
	margin-bottom: 42px;
	font-size: 23px;
}

.result-price {
	position: relative;
	z-index: 1;
	margin-bottom: 26px;
}

.result-price > span {
	display: block;
	font-size: clamp(48px, 5vw, 68px);
	font-weight: 760;
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.result-price small {
	color: rgba(255, 255, 255, 0.5);
	font-family: var(--mono);
	font-size: 10px;
	text-transform: uppercase;
}

.result-metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin: 0 0 23px;
}

.result-metrics div {
	padding-left: 12px;
	border-left: 1px solid var(--violet-bright);
}

.result-metrics span,
.result-metrics strong {
	display: block;
}

.result-metrics span {
	color: rgba(255, 255, 255, 0.46);
	font-size: 10px;
}

.result-metrics strong {
	margin-top: 3px;
	font-family: var(--mono);
	font-size: 13px;
}

.result-confidence {
	margin-bottom: 26px;
}

.confidence-track {
	height: 4px;
	margin-bottom: 9px;
	background: rgba(255, 255, 255, 0.12);
}

.confidence-track span {
	display: block;
	width: 78%;
	height: 100%;
	background: linear-gradient(90deg, var(--violet-bright), var(--yellow));
}

.result-confidence > div:last-child {
	display: flex;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.5);
	font-family: var(--mono);
	font-size: 9px;
}

.result-confidence strong {
	color: var(--white);
}

.result-disclaimer {
	position: relative;
	z-index: 1;
	margin-top: auto;
	color: rgba(255, 255, 255, 0.48);
	font-size: 11px;
	line-height: 1.55;
}

.calculator-result .button {
	position: relative;
	z-index: 1;
	margin-top: 22px;
}

.inquiry-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.73fr) minmax(0, 1.27fr);
	margin-top: 24px;
	background: var(--paper);
	color: var(--ink);
}

.inquiry-intro,
.inquiry-fields {
	padding: clamp(30px, 5vw, 64px);
}

.inquiry-intro {
	border-right: 1px solid var(--line);
}

.inquiry-intro h3 {
	margin-bottom: 20px;
	font-size: clamp(30px, 3.3vw, 46px);
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.inquiry-intro > p:not(.eyebrow) {
	color: var(--muted);
	font-size: 15px;
}

.inquiry-contact {
	display: grid;
	gap: 4px;
	margin-top: 34px;
	font-family: var(--mono);
	font-size: 11px;
}

.inquiry-contact a:hover {
	color: var(--violet);
}

.inquiry-fields > .form-field {
	margin-top: 18px;
}

.consent-field {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	margin-top: 22px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.5;
}

.consent-field input {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	margin-top: 1px;
	accent-color: var(--violet);
}

.consent-field button {
	padding: 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: var(--violet);
	font-size: inherit;
}

.honeypot {
	position: absolute;
	left: -9999px;
}

.submit-button {
	width: 100%;
	margin-top: 26px;
}

.submit-button[disabled] {
	cursor: wait;
	opacity: 0.64;
}

.submit-button i {
	font-style: normal;
}

.form-status {
	display: none;
	padding: 12px 14px;
	margin: 18px 0 0;
	font-size: 12px;
}

.form-status.is-success,
.form-status.is-error,
.form-status.is-loading {
	display: block;
}

.form-status.is-success {
	background: #e4f5e9;
	color: #17602e;
}

.form-status.is-error {
	background: #fde5e7;
	color: #8c1220;
}

.form-status.is-loading {
	background: #eae7fa;
	color: var(--violet);
}

/* Posts */
.posts-section {
	background: var(--paper);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--white);
	transition:
		transform 220ms ease,
		box-shadow 220ms ease;
}

.post-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--shadow);
}

.post-image {
	display: block;
	overflow: hidden;
	background: var(--ink);
	aspect-ratio: 1.42;
}

.post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.post-card:hover .post-image img {
	transform: scale(1.035);
}

.post-placeholder {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 22px;
	overflow: hidden;
	background:
		linear-gradient(135deg, transparent 48%, rgba(84, 69, 208, 0.45) 49%, transparent 50%),
		radial-gradient(circle at 65% 65%, var(--violet), transparent 38%),
		var(--ink);
	color: var(--white);
}

.post-placeholder::before {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px);
	background-size: 12px 12px;
	content: "";
	mask-image: linear-gradient(120deg, transparent 10%, black 90%);
	-webkit-mask-image: linear-gradient(120deg, transparent 10%, black 90%);
}

.post-placeholder small,
.post-placeholder strong {
	position: relative;
	z-index: 1;
}

.post-placeholder small {
	font-family: var(--mono);
	font-size: 8px;
	letter-spacing: 0.12em;
}

.post-placeholder strong {
	font-size: clamp(28px, 3vw, 42px);
	letter-spacing: -0.06em;
	line-height: 0.8;
}

.post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px;
}

.post-meta {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 15px;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 8px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-meta time::after {
	margin-left: 10px;
	content: "•";
}

.post-card h3 {
	margin-bottom: 14px;
	font-size: clamp(22px, 2.2vw, 29px);
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.post-card h3 a:hover {
	color: var(--violet);
}

.post-card p {
	color: var(--muted);
	font-size: 14px;
}

.post-card .text-link {
	margin-top: auto;
	align-self: flex-start;
}

.empty-posts {
	grid-column: 1 / -1;
	padding: clamp(38px, 7vw, 80px);
	border: 1px dashed var(--line);
	text-align: center;
}

.empty-posts .eyebrow {
	justify-content: center;
}

.empty-posts h3 {
	margin-bottom: 12px;
	font-size: 30px;
}

.empty-posts p:last-child {
	max-width: 600px;
	margin: 0 auto;
	color: var(--muted);
}

.text-archive {
	margin-top: 70px;
	border-top: 1px solid var(--ink);
}

.archive-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 20px;
	border-bottom: 1px solid var(--line);
}

.archive-heading h3 {
	margin: 0;
	font-size: 20px;
}

.archive-heading span {
	color: var(--muted);
	font-family: var(--mono);
	font-size: 9px;
	text-transform: uppercase;
}

.text-archive ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.text-archive li {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr) auto;
	gap: 20px;
	align-items: center;
	padding-block: 14px;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
}

.text-archive time {
	color: var(--muted);
	font-family: var(--mono);
	font-size: 10px;
}

.text-archive a:hover {
	color: var(--violet);
}

/* Location and footer */
.location-strip {
	padding-block: 70px;
	background: var(--ink-soft);
	color: var(--white);
}

.location-strip-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr) auto;
	gap: 60px;
	align-items: end;
}

.location-strip h2 {
	max-width: 680px;
	margin: 0;
	font-size: clamp(36px, 4.4vw, 60px);
	letter-spacing: -0.05em;
	line-height: 1;
}

.location-details {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.location-details p {
	margin-bottom: 8px;
}

.location-details a {
	color: var(--white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.round-link {
	display: grid;
	width: 68px;
	height: 68px;
	border: 1px solid var(--line-light);
	border-radius: 50%;
	place-items: center;
	font-size: 26px;
	transition:
		background-color 180ms ease,
		color 180ms ease;
}

.round-link:hover {
	background: var(--yellow);
	color: var(--ink);
}

.site-footer {
	padding: 86px 0 22px;
	background: #06070a;
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.45fr) minmax(150px, 0.25fr);
	gap: 70px;
}

.footer-lead h2 {
	max-width: 760px;
	margin-bottom: 26px;
	font-size: clamp(38px, 4.8vw, 66px);
	letter-spacing: -0.055em;
	line-height: 1;
}

.footer-contact {
	padding-top: 38px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
}

.footer-contact a {
	color: var(--white);
}

.footer-meta {
	margin-top: 30px;
	font-family: var(--mono);
	font-size: 9px;
	line-height: 1.8;
	text-transform: uppercase;
}

.footer-links {
	display: grid;
	align-content: start;
	gap: 12px;
	padding-top: 38px;
	font-size: 12px;
}

.footer-links a,
.footer-links button {
	width: fit-content;
	padding: 0;
	border: 0;
	border-bottom: 1px solid transparent;
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-links button:hover {
	border-bottom-color: currentColor;
	color: var(--white);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	margin-top: 70px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.38);
	font-family: var(--mono);
	font-size: 8px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Legal dialogs */
.legal-dialog {
	width: min(680px, calc(100% - 32px));
	max-height: min(82vh, 760px);
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
}

.legal-dialog::backdrop {
	background: rgba(5, 6, 9, 0.77);
	backdrop-filter: blur(8px);
}

.dialog-panel {
	position: relative;
	padding: clamp(34px, 6vw, 64px);
	overflow: auto;
	background: var(--paper);
}

.dialog-panel h2 {
	margin-bottom: 28px;
	font-size: 42px;
	letter-spacing: -0.05em;
}

.dialog-panel p {
	color: #45464d;
	font-size: 14px;
}

.dialog-panel a {
	color: var(--violet);
	border-bottom: 1px solid currentColor;
}

.dialog-close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	background: transparent;
	font-size: 27px;
	font-weight: 300;
	line-height: 1;
}

.legal-note {
	padding-top: 18px;
	margin-top: 24px;
	border-top: 1px solid var(--line);
	font-size: 11px !important;
}

/* Posts and fallback pages */
.article-shell {
	min-height: 80vh;
	padding-top: calc(var(--header-height) + 90px);
}

.article-container {
	max-width: 880px;
}

.article-shell > .article-container > h1,
.article-hero h1 {
	margin-bottom: 48px;
	font-size: clamp(50px, 7vw, 88px);
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.article-list {
	padding-bottom: 100px;
	border-top: 1px solid var(--ink);
}

.article-list-item {
	padding-block: 32px;
	border-bottom: 1px solid var(--line);
}

.article-list-item time {
	color: var(--muted);
	font-family: var(--mono);
	font-size: 10px;
}

.article-list-item h2 {
	margin: 8px 0;
	font-size: 30px;
	letter-spacing: -0.035em;
}

.article-list-item h2 a:hover {
	color: var(--violet);
}

.article-list-item p {
	color: var(--muted);
}

.article-hero {
	padding-bottom: 70px;
}

.article-back {
	display: inline-block;
	margin-bottom: 80px;
	color: var(--muted);
	font-size: 13px;
}

.article-back:hover {
	color: var(--violet);
}

.article-hero h1 {
	margin-bottom: 24px;
}

.article-deck {
	max-width: 720px;
	margin: 0;
	color: var(--muted);
	font-size: 21px;
}

.article-featured {
	max-width: 1240px;
	margin-bottom: 80px;
}

.article-featured img {
	width: 100%;
	max-height: 760px;
	object-fit: cover;
}

.article-content {
	max-width: 780px;
	padding-bottom: 110px;
	font-size: 18px;
	line-height: 1.75;
}

.article-content h2,
.article-content h3 {
	margin-top: 2.2em;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.article-content h2 {
	font-size: 38px;
}

.article-content h3 {
	font-size: 28px;
}

.article-content a {
	color: var(--violet);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.article-content img,
.article-content .wp-block-image {
	margin-block: 38px;
}

.article-content blockquote {
	padding-left: 24px;
	margin: 40px 0;
	border-left: 4px solid var(--violet);
	color: #4e4f57;
	font-family: Georgia, serif;
	font-size: 24px;
	line-height: 1.45;
}

.article-cta {
	padding-block: 90px;
	background: var(--violet);
	color: var(--white);
}

.article-cta h2 {
	max-width: 760px;
	margin-bottom: 30px;
	font-size: clamp(38px, 5vw, 62px);
	letter-spacing: -0.05em;
	line-height: 1;
}

.not-found {
	display: grid;
	min-height: 78vh;
	padding-top: calc(var(--header-height) + 80px);
	place-items: center;
	text-align: center;
}

.not-found h1 {
	max-width: 860px;
	margin-inline: auto;
	font-size: clamp(50px, 7vw, 90px);
	letter-spacing: -0.06em;
	line-height: 0.95;
}

.not-found p {
	color: var(--muted);
}

.not-found .button {
	margin-top: 20px;
}

/* Responsive */
@media (max-width: 1100px) {
	.hero-layout {
		grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr);
		gap: 42px;
	}

	.hero-copy h1 {
		font-size: clamp(54px, 6.8vw, 74px);
	}

	.hero-visual {
		min-height: 540px;
	}

	.calculator-shell {
		grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
	}

	.result-metrics {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1.1fr 0.5fr 0.25fr;
		gap: 40px;
	}
}

@media (max-width: 900px) {
	:root {
		--header-height: 70px;
	}

	body.admin-bar .site-header,
	body.admin-bar .scroll-progress {
		top: 46px;
	}

	.container {
		width: min(calc(100% - 36px), var(--container));
	}

	.menu-toggle {
		position: relative;
		z-index: 3;
		display: block;
	}

	.menu-toggle[aria-expanded="true"] > span:first-child {
		transform: translateY(4px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
		transform: translateY(-4px) rotate(-45deg);
	}

	.primary-navigation {
		position: fixed;
		z-index: 2;
		top: 0;
		right: 0;
		display: flex;
		width: min(420px, 100%);
		height: 100vh;
		padding: calc(var(--header-height) + 50px) 38px 40px;
		flex-direction: column;
		gap: 4px;
		align-items: stretch;
		background: var(--white);
		box-shadow: -20px 0 60px rgba(11, 13, 18, 0.15);
		transform: translateX(105%);
		transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
	}

	.primary-navigation.is-open {
		transform: translateX(0);
	}

	.primary-navigation > a {
		padding: 16px 0 !important;
		border-bottom: 1px solid var(--line);
		font-size: 20px;
	}

	.primary-navigation > a::after {
		display: none;
	}

	.primary-navigation .nav-cta {
		padding: 16px 18px !important;
		margin-top: 20px;
		text-align: center;
	}

	.hero {
		padding-top: calc(var(--header-height) + 20px);
	}

	.hero-layout {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-block: 56px 70px;
	}

	.hero-copy {
		padding-block: 0;
	}

	.hero-visual {
		min-height: 620px;
	}

	.section-heading {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.section-heading > p {
		max-width: 650px;
	}

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

	.service-card {
		min-height: 390px;
	}

	.team-layout {
		grid-template-columns: 1fr;
		gap: 80px;
	}

	.team-photo {
		max-width: 720px;
	}

	.calculator-shell {
		grid-template-columns: 1fr;
	}

	.calculator-result {
		min-height: 590px;
	}

	.result-metrics {
		grid-template-columns: 1fr 1fr;
	}

	.inquiry-panel {
		grid-template-columns: 1fr;
	}

	.inquiry-intro {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

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

	.post-card:last-child:nth-child(3) {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.location-strip-inner {
		grid-template-columns: 1fr auto;
		gap: 30px;
	}

	.location-details {
		grid-column: 1;
	}

	.round-link {
		grid-row: 1 / 3;
		grid-column: 2;
		align-self: center;
	}

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

	.footer-lead {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	body {
		font-size: 16px;
	}

	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.site-branding {
		width: 152px;
	}

	.language-switcher summary {
		min-width: 62px;
		padding-inline: 8px;
	}

	.language-code {
		display: none;
	}

	.language-menu {
		right: -54px;
		width: min(264px, calc(100vw - 28px));
	}

	.language-menu::before {
		right: 80px;
	}

	.hero-layout {
		padding-top: 42px;
	}

	.hero-copy h1 {
		font-size: clamp(48px, 14.5vw, 66px);
	}

	.hero-intro {
		font-size: 17px;
	}

	.hero-actions {
		display: grid;
	}

	.hero-actions .button {
		width: 100%;
	}

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

	.hero-proof li {
		display: grid;
		grid-template-columns: 0.6fr 1fr;
		padding: 13px 0;
		border-bottom: 1px solid var(--line);
	}

	.hero-proof li + li {
		padding-left: 0;
		border-left: 0;
	}

	.hero-visual {
		min-height: 470px;
		margin-inline: -14px;
	}

	.visual-label-bottom {
		display: none;
	}

	.section {
		padding-block: 84px;
	}

	.section-heading h2,
	.team-copy h2 {
		font-size: clamp(40px, 12vw, 56px);
	}

	.service-card {
		min-height: 420px;
	}

	.process-list li {
		grid-template-columns: 38px 1fr;
		gap: 14px;
		padding-block: 26px;
	}

	.process-format {
		grid-column: 2;
		justify-self: start;
	}

	.team-photo {
		padding: 10px 10px 44px;
	}

	.team-photo::before {
		inset: -12px 16% 12% -12px;
	}

	.team-values > div {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	.calculator-section .container {
		width: min(calc(100% - 20px), var(--container));
	}

	.calculator-inputs,
	.calculator-result,
	.inquiry-intro,
	.inquiry-fields {
		padding: 28px 22px;
	}

	.field-grid,
	.field-grid-three {
		grid-template-columns: 1fr;
	}

	.calculator-step + .calculator-step {
		padding-top: 32px;
		margin-top: 32px;
	}

	.result-metrics {
		grid-template-columns: 1fr 1fr;
	}

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

	.post-card:last-child:nth-child(3) {
		grid-column: auto;
		display: flex;
	}

	.location-strip-inner {
		grid-template-columns: 1fr;
	}

	.round-link {
		grid-row: auto;
		grid-column: auto;
	}

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

	.footer-lead {
		grid-column: auto;
	}

	.footer-contact,
	.footer-links {
		padding-top: 20px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 8px;
	}

	.article-shell {
		padding-top: calc(var(--header-height) + 60px);
	}

	.article-back {
		margin-bottom: 50px;
	}

	.article-content {
		font-size: 17px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header,
	body.admin-bar .scroll-progress {
		top: 46px;
	}
}

@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 {
		opacity: 1;
		transform: none;
	}
}
