:root {
	--font-sans: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/onest-cyrillic-variable.woff2") format("woff2-variations");
	unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/onest-latin-variable.woff2") format("woff2-variations");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--bg: #f4f2ed;
	--surface: #e9e6df;
	--surface-strong: #dedad1;
	--text: #151515;
	--muted: #686761;
	--line: rgba(21, 21, 21, 0.16);
	--accent: #ff5c35;
	--header-bg: rgba(244, 242, 237, 0.82);
	--selection: #151515;
	--selection-text: #f4f2ed;
	--radius: 2px;
	--shell: 1280px;
	--pad: clamp(20px, 4vw, 56px);
	color-scheme: light;
}

:root[data-theme="dark"] {
	--bg: #111210;
	--surface: #1b1c19;
	--surface-strong: #242520;
	--text: #f0eee7;
	--muted: #a7a69e;
	--line: rgba(240, 238, 231, 0.17);
	--accent: #ff704d;
	--header-bg: rgba(17, 18, 16, 0.84);
	--selection: #f0eee7;
	--selection-text: #111210;
	color-scheme: dark;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	transition: background-color 240ms ease, color 240ms ease;
}

::selection {
	background: var(--selection);
	color: var(--selection-text);
}

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

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

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

.shell,
.shell-wide,
.shell-narrow {
	width: min(100%, var(--shell));
	margin-inline: auto;
	padding-inline: var(--pad);
}

.shell-wide {
	--shell: 1520px;
}

.shell-narrow {
	--shell: 900px;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 10px 16px;
	background: var(--text);
	color: var(--bg);
	transform: translateY(-150%);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--header-bg);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.brand-mark {
	width: 10px;
	height: 10px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 14%, transparent);
}

.header-actions,
.nav-list {
	display: flex;
	align-items: center;
}

.header-actions {
	gap: 28px;
}

.nav-list {
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	font-weight: 600;
}

.nav-list a {
	position: relative;
	padding-block: 10px;
}

.nav-list a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 200ms ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.theme-toggle {
	display: grid;
	width: 40px;
	height: 40px;
	padding: 0;
	place-items: center;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--text);
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
	background: var(--surface);
	border-color: var(--text);
	transform: rotate(8deg);
}

.theme-icon {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.theme-icon-moon,
[data-theme="dark"] .theme-icon-sun {
	display: none;
}

[data-theme="dark"] .theme-icon-moon {
	display: block;
}

.hero {
	display: flex;
	min-height: min(790px, calc(100vh - 76px));
	padding-block: clamp(80px, 13vh, 150px) clamp(62px, 9vh, 110px);
	flex-direction: column;
	justify-content: space-between;
}

.hero-eyebrow,
.section-kicker {
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 1100px;
	margin: 0;
	font-size: clamp(48px, 7.5vw, 112px);
	font-weight: 500;
	letter-spacing: -0.065em;
	line-height: 0.98;
}

.hero-bottom {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 40px;
	margin-top: 80px;
}

.hero-bottom p {
	max-width: 580px;
	margin: 0;
	color: var(--muted);
	font-size: clamp(16px, 2vw, 20px);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 38px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--text);
	font-size: 13px;
	font-weight: 600;
}

.text-link span {
	transition: transform 180ms ease;
}

.text-link:hover span {
	transform: translateY(4px);
}

.projects-section {
	padding-top: clamp(90px, 12vw, 170px);
	padding-bottom: clamp(110px, 14vw, 200px);
	border-top: 1px solid var(--line);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: clamp(48px, 7vw, 88px);
}

.section-heading h2,
.site-footer h2 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(36px, 5vw, 70px);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 1.02;
}

.section-kicker {
	margin-bottom: 16px;
}

.project-count {
	color: var(--muted);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(52px, 7vw, 96px) clamp(20px, 3vw, 42px);
}

.project-card:nth-child(4n + 2),
.project-card:nth-child(4n + 3) {
	margin-top: clamp(0px, 6vw, 80px);
}

.project-card-link {
	display: block;
}

.project-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 10 / 7;
	background: var(--surface);
}

.project-media img,
.project-placeholder {
	width: 100%;
	height: 100%;
	transition: transform 600ms cubic-bezier(0.2, 0.7, 0, 1);
}

.project-media img {
	object-fit: cover;
}

.project-placeholder {
	display: grid;
	place-items: center;
	background:
		linear-gradient(135deg, transparent 49.8%, var(--line) 50%, transparent 50.2%),
		linear-gradient(45deg, transparent 49.8%, var(--line) 50%, transparent 50.2%),
		var(--surface);
}

.project-placeholder span {
	color: var(--muted);
	font-size: clamp(42px, 8vw, 100px);
	font-weight: 500;
	letter-spacing: -0.08em;
}

.project-arrow {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	background: var(--text);
	border-radius: 50%;
	color: var(--bg);
	font-size: 20px;
	opacity: 0;
	transform: translateY(12px) rotate(-12deg);
	transition: opacity 240ms ease, transform 240ms ease;
}

.project-card-link:hover .project-media img,
.project-card-link:hover .project-placeholder {
	transform: scale(1.025);
}

.project-card-link:hover .project-arrow,
.project-card-link:focus-visible .project-arrow {
	opacity: 1;
	transform: translateY(0) rotate(0);
}

.project-info {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px;
	padding-top: 22px;
}

.project-info h3 {
	margin: 0 0 10px;
	font-size: clamp(22px, 2.5vw, 31px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.project-info p {
	max-width: 520px;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.project-meta {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 5px;
	color: var(--muted);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.empty-state {
	max-width: 760px;
	padding: clamp(42px, 7vw, 90px);
	background: var(--surface);
}

.empty-state > span {
	color: var(--accent);
	font-size: 12px;
}

.empty-state h3 {
	margin: 70px 0 16px;
	font-size: clamp(30px, 4vw, 54px);
	font-weight: 500;
	letter-spacing: -0.05em;
	line-height: 1.05;
}

.empty-state p {
	max-width: 560px;
	margin: 0;
	color: var(--muted);
}

.page-intro {
	padding-top: clamp(90px, 12vw, 160px);
	padding-bottom: clamp(70px, 9vw, 120px);
}

.page-intro h1,
.project-hero h1,
.not-found h1 {
	max-width: 1060px;
	margin: 0;
	font-size: clamp(54px, 9vw, 128px);
	font-weight: 500;
	letter-spacing: -0.07em;
	line-height: 0.95;
}

.page-lead {
	max-width: 620px;
	margin: 48px 0 0 auto;
	color: var(--muted);
	font-size: clamp(17px, 2vw, 22px);
}

.project-hero {
	padding-top: clamp(60px, 8vw, 110px);
	padding-bottom: clamp(54px, 8vw, 100px);
}

.back-link {
	display: inline-block;
	margin-bottom: clamp(60px, 9vw, 130px);
	color: var(--muted);
	font-size: 13px;
	transition: color 180ms ease, transform 180ms ease;
}

.back-link:hover {
	color: var(--text);
	transform: translateX(-4px);
}

.project-title-row {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.6fr);
	align-items: end;
	gap: clamp(40px, 8vw, 130px);
}

.project-deck {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: clamp(17px, 2vw, 21px);
}

.project-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin: clamp(70px, 9vw, 130px) 0 0;
	padding: 24px 0 0;
	border-top: 1px solid var(--line);
}

.project-facts div {
	min-width: 0;
}

.project-facts dt {
	margin-bottom: 9px;
	color: var(--muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.project-facts dd {
	margin: 0;
	font-size: 13px;
	overflow-wrap: anywhere;
}

.project-facts a {
	border-bottom: 1px solid var(--line);
}

.project-cover {
	margin-bottom: clamp(80px, 10vw, 150px);
}

.project-cover img {
	width: 100%;
	max-height: 90vh;
	object-fit: cover;
}

.entry-content {
	font-family: var(--font-sans);
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.75;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.5em;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2.2em;
	margin-bottom: 0.7em;
	font-family: var(--font-sans);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 1.1;
}

.entry-content h2 {
	font-size: clamp(34px, 5vw, 58px);
}

.entry-content h3 {
	font-size: clamp(27px, 3.5vw, 40px);
}

.entry-content p,
.entry-content li {
	color: var(--muted);
}

.entry-content strong {
	color: var(--text);
}

.entry-content a {
	color: var(--text);
	border-bottom: 1px solid currentColor;
}

.entry-content img,
.entry-content .wp-block-image {
	margin-top: clamp(42px, 6vw, 80px);
	margin-bottom: clamp(42px, 6vw, 80px);
}

.entry-content blockquote {
	margin: 2em 0;
	padding-left: 1.4em;
	border-left: 2px solid var(--accent);
}

.entry-content blockquote p {
	color: var(--text);
	font-size: 1.2em;
}

.next-project {
	margin-top: clamp(100px, 15vw, 210px);
	margin-bottom: clamp(100px, 12vw, 160px);
}

.next-project a {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: clamp(32px, 5vw, 68px) 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.next-project span {
	grid-column: 1;
	margin-bottom: 12px;
	color: var(--muted);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.next-project strong {
	grid-column: 1;
	font-size: clamp(30px, 5vw, 66px);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 1;
}

.next-project i {
	grid-column: 2;
	grid-row: 1 / 3;
	font-size: clamp(30px, 5vw, 64px);
	font-style: normal;
	transition: transform 200ms ease;
}

.next-project a:hover i {
	transform: translateX(10px);
}

.standard-list {
	padding-bottom: 140px;
}

.standard-card {
	padding: 48px 0;
	border-top: 1px solid var(--line);
}

.standard-card h2 {
	margin: 0 0 14px;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 500;
	letter-spacing: -0.045em;
}

.standard-card p:last-child {
	color: var(--muted);
}

.standard-single {
	padding-bottom: 140px;
}

.not-found {
	padding-top: clamp(100px, 15vw, 200px);
	padding-bottom: clamp(130px, 18vw, 260px);
}

.not-found > p:not(.section-kicker) {
	margin: 36px 0;
	color: var(--muted);
	font-size: 18px;
}

.button-link {
	display: inline-flex;
	padding: 13px 18px;
	background: var(--text);
	color: var(--bg);
	font-size: 13px;
	font-weight: 600;
}

.site-footer {
	padding-top: clamp(80px, 11vw, 150px);
	background: var(--text);
	color: var(--bg);
}

.footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 50px;
	padding-bottom: clamp(80px, 10vw, 140px);
}

.site-footer .section-kicker {
	color: color-mix(in srgb, var(--bg) 55%, transparent);
}

.footer-contacts {
	display: grid;
	min-width: min(100%, 370px);
	gap: 16px;
}

.contact-link {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: baseline;
	gap: 22px;
	padding-bottom: 12px;
	border-bottom: 1px solid color-mix(in srgb, var(--bg) 45%, transparent);
}

.contact-label {
	color: color-mix(in srgb, var(--bg) 55%, transparent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.contact-value {
	font-size: clamp(15px, 2vw, 20px);
	overflow-wrap: anywhere;
}

.contact-arrow {
	transition: transform 180ms ease;
}

.contact-link:hover .contact-arrow {
	transform: translate(4px, -4px);
}

.footer-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	padding-bottom: 30px;
	border-top: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
	color: color-mix(in srgb, var(--bg) 55%, transparent);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.github-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--bg);
	text-transform: none;
	letter-spacing: 0;
	transition: opacity 180ms ease;
}

.github-link:hover {
	opacity: 0.62;
}

.github-link span {
	transition: transform 180ms ease;
}

.github-link:hover span {
	transform: translate(3px, -3px);
}

.footer-legal {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
}

.footer-legal > a:not(.github-link),
.cookie-settings-button {
	color: color-mix(in srgb, var(--bg) 55%, transparent);
	transition: color 180ms ease;
}

.cookie-settings-button {
	padding: 0;
	background: transparent;
	border: 0;
	font-size: inherit;
	text-transform: inherit;
	letter-spacing: inherit;
	cursor: pointer;
}

.footer-legal > a:hover,
.cookie-settings-button:hover {
	color: var(--bg);
}

.cookie-notice[hidden] {
	display: none;
}

.cookie-notice {
	position: fixed;
	right: clamp(14px, 3vw, 42px);
	bottom: clamp(14px, 3vw, 42px);
	z-index: 80;
	display: grid;
	width: min(520px, calc(100vw - 28px));
	padding: clamp(24px, 4vw, 36px);
	background: var(--text);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
	color: var(--bg);
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 260ms ease, transform 260ms ease;
}

.cookie-notice.is-open {
	opacity: 1;
	transform: translateY(0);
}

.cookie-notice-label {
	margin: 0 0 28px;
	color: color-mix(in srgb, var(--bg) 55%, transparent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cookie-notice h2 {
	margin: 0 0 12px;
	font-size: clamp(25px, 4vw, 36px);
	font-weight: 550;
	letter-spacing: -0.045em;
	line-height: 1;
}

.cookie-notice-copy > p:last-child {
	margin: 0;
	color: color-mix(in srgb, var(--bg) 68%, transparent);
	font-size: 13px;
	line-height: 1.55;
}

.cookie-notice-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	margin-top: 28px;
}

.cookie-notice-actions a {
	padding-block: 10px;
	border-bottom: 1px solid color-mix(in srgb, var(--bg) 40%, transparent);
	font-size: 12px;
}

.cookie-accept {
	padding: 12px 18px;
	background: var(--accent);
	border: 0;
	color: #111210;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 180ms ease;
}

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

.privacy-page {
	padding-bottom: clamp(110px, 14vw, 190px);
}

.privacy-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.6fr);
	align-items: end;
	gap: clamp(40px, 8vw, 120px);
}

.privacy-intro h1 {
	font-size: clamp(52px, 8vw, 112px);
}

.privacy-summary {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: clamp(16px, 2vw, 20px);
}

.privacy-warning {
	margin-top: 36px;
	padding: 18px 20px;
	background: color-mix(in srgb, var(--accent) 13%, transparent);
	border-left: 2px solid var(--accent);
	font-size: 13px;
}

.privacy-layout {
	display: grid;
	grid-template-columns: 210px minmax(0, 760px);
	gap: clamp(40px, 8vw, 110px);
	padding-top: 64px;
	border-top: 1px solid var(--line);
}

.privacy-nav {
	position: sticky;
	top: 110px;
	align-self: start;
}

.privacy-nav ol {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: privacy;
}

.privacy-nav li {
	counter-increment: privacy;
}

.privacy-nav a {
	display: grid;
	grid-template-columns: 26px 1fr;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.4;
	transition: color 180ms ease;
}

.privacy-nav a::before {
	content: "0" counter(privacy);
	font-variant-numeric: tabular-nums;
}

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

.privacy-content section {
	padding-bottom: 58px;
	scroll-margin-top: 110px;
}

.privacy-content section + section {
	padding-top: 58px;
	border-top: 1px solid var(--line);
}

.privacy-content h2 {
	margin: 0 0 24px;
	font-size: clamp(29px, 4vw, 44px);
	font-weight: 550;
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.privacy-content h3 {
	margin: 32px 0 10px;
	font-size: 17px;
	font-weight: 600;
}

.privacy-content p,
.privacy-content li,
.privacy-content dd {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.75;
}

.privacy-content ul {
	padding-left: 20px;
}

.privacy-details {
	display: grid;
	gap: 0;
	margin: 28px 0 0;
	border-top: 1px solid var(--line);
}

.privacy-details div {
	display: grid;
	grid-template-columns: minmax(150px, 0.4fr) 1fr;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.privacy-details dt,
.privacy-details dd {
	margin: 0;
}

.privacy-details dt {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.privacy-content a {
	border-bottom: 1px solid var(--line);
	color: var(--text);
}

.navigation.pagination {
	margin-top: 80px;
}

.nav-links {
	display: flex;
	gap: 10px;
}

.page-numbers {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--line);
	font-size: 12px;
}

.page-numbers.current {
	background: var(--text);
	color: var(--bg);
}

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

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

@media (max-width: 820px) {
	.header-inner {
		min-height: 66px;
	}

	.header-actions {
		gap: 14px;
	}

	.nav-list {
		gap: 16px;
		font-size: 12px;
	}

	.hero {
		min-height: calc(100svh - 66px);
	}

	.hero-bottom,
	.project-title-row,
	.footer-inner {
		grid-template-columns: 1fr;
	}

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

	.text-link {
		width: fit-content;
	}

	.project-grid {
		grid-template-columns: 1fr;
		gap: 58px;
	}

	.project-card:nth-child(4n + 2),
	.project-card:nth-child(4n + 3) {
		margin-top: 0;
	}

	.project-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-inner {
		align-items: start;
	}

	.footer-contacts {
		width: min(100%, 460px);
	}

	.footer-meta {
		align-items: flex-start;
		gap: 24px;
	}

	.footer-legal {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.privacy-intro,
	.privacy-layout {
		grid-template-columns: 1fr;
	}

	.privacy-nav {
		position: static;
	}

	.privacy-nav ol {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 540px) {
	.site-nav {
		display: none;
	}

	.hero {
		padding-top: 70px;
	}

	.hero h1 {
		font-size: clamp(43px, 13vw, 64px);
	}

	.hero-bottom {
		margin-top: 64px;
	}

	.section-heading {
		align-items: start;
	}

	.project-info {
		grid-template-columns: 1fr;
	}

	.project-meta {
		flex-direction: row;
		align-items: start;
	}

	.project-meta span + span::before {
		margin-right: 8px;
		content: "·";
	}

	.project-arrow {
		right: 14px;
		bottom: 14px;
		width: 42px;
		height: 42px;
		opacity: 1;
		transform: none;
	}

	.project-facts {
		grid-template-columns: 1fr;
	}

	.next-project a {
		grid-template-columns: 1fr auto;
	}

	.footer-meta {
		flex-direction: column;
		gap: 6px;
	}

	.footer-legal {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		margin-top: 12px;
	}

	.privacy-nav ol {
		grid-template-columns: 1fr;
	}

	.privacy-details div {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.cookie-notice-actions {
		justify-content: space-between;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
