:root {
	--bg: #ffffff;
	--surface: #f7f7f5;
	--surface-strong: #111111;
	--text: #161616;
	--muted: #5e5e5e;
	--line: #e6e3de;
	--focus: #1a73e8;
	--max: 1200px;
	--radius: 1.5rem;
	--shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.06);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.5;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.is-lightbox-open {
	overflow: hidden;
}

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

a {
	color: inherit;
}

a,
button,
input,
textarea {
	transition: 160ms ease;
}

:focus-visible {
	outline: 0.1875rem solid var(--focus);
	outline-offset: 0.1875rem;
	border-radius: 0.5rem;
}

.form-message {
	display: block;
	padding: 0.9rem 1rem;
	border-radius: 0.875rem;
	max-width: 60ch;
	margin: 1rem 0 0;
	font-weight: 500;
}

.form-message-success {
	background: rgba(20, 160, 80, 0.15);
	color: #1f8a4c;
}

.form-message-error {
	background: rgba(200, 40, 40, 0.15);
	color: #c62828;
}

.skip-link {
	position: absolute;
	top: -3rem;
	left: 1rem;
	z-index: 1000;
	background: #ffffff;
	color: #000000;
	padding: 0.75rem 0.875rem;
	border-radius: 0.75rem;
	box-shadow: var(--shadow);
}

.skip-link:focus {
	top: 1rem;
}

.container {
	width: min(calc(100% - 2rem), var(--max));
	margin-inline: auto;
}

.section,
.site-footer {
	content-visibility: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 0.0625rem solid var(--line);
	-webkit-backdrop-filter: saturate(180%) blur(0.75rem);
	backdrop-filter: saturate(180%) blur(0.75rem);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 4.5rem;
}

.brand {
	font-size: 0.95rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
}

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

.nav-list {
	list-style: none;
	display: flex;
	gap: 1.25rem;
	padding: 0;
	margin: 0;
	align-items: center;
	flex-wrap: wrap;
}

.nav-list a {
	text-decoration: none;
	color: var(--muted);
	font-size: 0.95rem;
}

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

.lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem;
	border: 0.0625rem solid var(--line);
	border-radius: 999rem;
	background: #ffffff;
}

.lang-switcher a {
	text-decoration: none;
	color: var(--muted);
	min-width: 2.75rem;
	min-height: 2.25rem;
	padding: 0.4rem 0.7rem;
	border-radius: 999rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lang-switcher a[aria-current="page"] {
	background: var(--surface-strong);
	color: #ffffff;
}

.button,
button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-height: 3rem;
	padding: 0.8rem 1.2rem;
	border-radius: 999rem;
	border: 0.0625rem solid transparent;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	font: inherit;
}

.button-primary {
	background: var(--surface-strong);
	color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
	background: #252525;
}

.button-secondary {
	background: transparent;
	color: var(--text);
	border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: var(--surface);
}

.hero {
	position: relative;
	min-height: 88svh;
	color: #ffffff;
	overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
	position: absolute;
	inset: 0;
}

.hero-media {
	margin: 0;
	background: #111111;
}

.hero-media img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: 58% center;
}

.hero-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
}

.hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: end;
	min-height: 88svh;
	padding: 6rem 0 3.5rem;
}

.hero-content .container > div {
	max-width: 42rem;
	text-shadow: 0 0.25rem 1.2rem rgba(0, 0, 0, 0.35);
}

.eyebrow {
	display: inline-block;
	margin: 0 0 1rem;
	padding: 0.45rem 0.8rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.4);
	border-radius: 999rem;
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

h1,
h2 {
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.4rem);
	max-width: 18ch;
	text-wrap: balance;
}

h2 {
	font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.hero-subtitle {
	margin: 1rem 0 0;
	font-size: clamp(1.05rem, 2vw, 1.45rem);
	color: rgba(255, 255, 255, 0.9);
  	opacity: 0.85;
}

.section {
	padding: 5.5rem 0;
}

.section-grid {
	display: grid;
	gap: 2rem;
}

.section-grid.two {
	grid-template-columns: 1.15fr 0.85fr;
}

.kicker {
	margin: 0 0 1rem;
	font-size: 0.78rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--muted);
}

.lead {
	font-size: 1.08rem;
	line-height: 1.8;
	color: var(--muted);
	max-width: 60ch;
	margin: 1.5rem 0 0;
}

.profile-list,
.stats-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0 0;
}

.profile-list {
	display: grid;
	gap: 0.8rem;
}

.card {
	background: var(--surface);
	border: 0.0625rem solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.stats-card,
.form-card {
	padding: 1.5rem;
}

.stats-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.95rem 0;
	border-bottom: 0.0625rem solid var(--line);
}

.stats-list li:last-child {
	border-bottom: 0;
}

.stats-list span:first-child {
	color: var(--muted);
}

.stats-list strong {
	font-weight: 700;
	text-align: right;
}

.gallery-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.gallery-intro {
	margin-top: 0;
	max-width: 36ch;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.gallery-item {
	overflow: hidden;
	border-radius: 1.375rem;
	padding: 0.4rem;
	background: #ffffff;
	border: 0.0625rem solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 0.5rem 1.4rem rgba(0, 0, 0, 0.06);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-item:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 1.4rem 2.8rem rgba(0, 0, 0, 0.14);
}

.gallery-item figure {
	margin: 0;
}

.gallery-button {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.gallery-button img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transform: translateZ(0) scale(1);
	transition: transform 220ms ease, filter 220ms ease;
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.18);
	color: #ffffff;
	opacity: 0;
	transition: opacity 220ms ease, background-color 220ms ease;
}

.gallery-overlay span {
	padding: 0.55rem 0.85rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.7);
	border-radius: 999rem;
	background: rgba(0, 0, 0, 0.24);
	font-size: 0.95rem;
	font-weight: 700;
}

.gallery-button:hover img,
.gallery-button:focus-visible img {
	transform: scale(1.045);
	filter: brightness(0.92);
}

.gallery-button:hover .gallery-overlay,
.gallery-button:focus-visible .gallery-overlay {
	opacity: 1;
}

.gallery-item figcaption {
	padding: 0.9rem 1rem 1rem;
	font-size: 0.95rem;
	color: var(--muted);
	background: #ffffff;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
	display: none;
}

.lightbox-dialog {
	position: relative;
	width: min(100%, 72rem);
}

.lightbox-image {
	width: 100%;
	max-height: 88vh;
	object-fit: contain;
	border-radius: 1rem;
	background: #111111;
}

.lightbox-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	min-width: 2.75rem;
	min-height: 2.75rem;
	border: 0;
	border-radius: 999rem;
	background: rgba(255, 255, 255, 0.92);
	color: #111111;
	font-size: 1.25rem;
	cursor: pointer;
}

.cta {
	background: var(--surface-strong);
	color: #ffffff;
}

.cta .container {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2rem;
	align-items: start;
}

.cta .kicker,
.cta .lead,
.cta a,
.cta label,
.cta p {
	color: rgba(255, 255, 255, 0.9);
}

.form-card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: none;
}

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

.field label {
	display: inline-block;
	margin-bottom: 0.4rem;
	font-weight: 700;
}

.field input,
.field textarea {
	width: 100%;
	min-height: 3rem;
	padding: 0.85rem 1rem;
	border-radius: 0.875rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.22);
	background: #ffffff;
	color: #111111;
	font: inherit;
}

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

.hidden-field {
	position: absolute;
	left: -9999px;
	width: 0.0625rem;
	height: 0.0625rem;
	overflow: hidden;
}

.captcha-box {
	margin-top: 0.4rem;
	min-height: 4.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.875rem;
	border: 0.0625rem dashed rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.04);
}

.help-text {
	margin: 0.5rem 0 0;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.78);
}

.checkbox-row {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
}

.checkbox-row input {
	margin-top: 0.2rem;
}

.contact-social {
	margin-top: 22px;
	text-align: center;
}

.contact-social-title {
	display: none;
}

.contact-social-links {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.contact-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
	text-decoration: none;
	box-shadow: none;
	opacity: 0;
	transform: translateY(10px);
	overflow: visible;
	-webkit-tap-highlight-color: transparent;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-social-links a::before,
.contact-social-links a span {
	display: none;
	content: none;
}

.contact-social-links svg {
	display: block;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	fill: #ffffff;
	opacity: 0.68;
	transform: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-social-links a:hover,
.contact-social-links a:focus-visible {
	color: #ffffff;
	background: transparent;
	border: 0;
	box-shadow: none;
	outline: none;
}

.contact-social-links a:hover svg,
.contact-social-links a:focus-visible svg {
	opacity: 1;
	transform: translateY(-1px);
}

.contact-social.revealed a,
.contact-social.is-visible a {
	opacity: 1;
	transform: translateY(0);
}

.contact-social-links a:focus-visible {
	outline: none;
}

.contact-social-links a[aria-label="Instagram"] svg {
	transform: scale(1.5);
}

.contact-social-links a[aria-label="Facebook"] svg {
	transform: scale(1.55);
}

.contact-social-links a[aria-label="LinkedIn"] svg {
	transform: scale(1.90);
}

.contact-social-links a[aria-label="Threads"] svg {
	transform: scale(1.20);
}

.site-footer {
	padding: 2rem 0 3rem;
	border-top: 0.0625rem solid var(--line);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	color: var(--muted);
	font-size: 0.95rem;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

section[id],
main > section[id],
#contact,
#contact-form-es,
#contact-form-en,
#contact-form-fr {
	scroll-margin-top: 7rem;
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

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

/* ===== Menu mobile : disque blanc + lignes noires ===== */

.menu-toggle {
	display: none;
	appearance: none;
	border: 0;
	background: rgba(255, 255, 255, 0.96);
	padding: 0;
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 999rem;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.28rem;
	margin-left: auto;
	position: relative;
	z-index: 36;
	box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.12);
	-webkit-backdrop-filter: saturate(180%) blur(0.5rem);
	backdrop-filter: saturate(180%) blur(0.5rem);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
	background: rgba(255, 255, 255, 1);
}

.menu-toggle-line {
	display: block;
	width: 1.2rem;
	height: 0.125rem;
	border-radius: 999rem;
	background: #111111;
	transform-origin: center;
	transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.site-header.is-menu-open .menu-toggle-line:nth-child(1) {
	transform: translateY(0.41rem) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-line:nth-child(2) {
	opacity: 0;
}

.site-header.is-menu-open .menu-toggle-line:nth-child(3) {
	transform: translateY(-0.41rem) rotate(-45deg);
}

.site-header.is-menu-open .menu-toggle-line {
	background: #111111;
}

/* ===== Notice langue ===== */

.language-notice {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 40;
	width: min(24rem, calc(100vw - 2rem));
	padding: 1rem 1rem 0.95rem;
	background: rgba(255, 255, 255, 0.96);
	border: 0.0625rem solid var(--line);
	border-radius: 1.25rem;
	box-shadow: var(--shadow);
	-webkit-backdrop-filter: saturate(180%) blur(0.75rem);
	backdrop-filter: saturate(180%) blur(0.75rem);
}

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

.language-notice-close {
	position: absolute;
	top: 0.6rem;
	right: 0.6rem;
	appearance: none;
	border: 0;
	background: var(--surface);
	color: var(--text);
	width: 2rem;
	height: 2rem;
	border-radius: 999rem;
	cursor: pointer;
	font: inherit;
	line-height: 1;
}

.language-notice-close:hover,
.language-notice-close:focus-visible {
	background: var(--line);
}

.language-notice-text {
	margin: 0 2.25rem 0.75rem 0;
	font-size: 0.95rem;
	color: var(--text);
}

.language-notice-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.875rem;
	align-items: stretch;
}

.language-notice-link,
.language-notice-link-stay,
.language-notice-link:not(.language-notice-link-stay) {
	width: 100%;
	min-width: 0;
	min-height: 3.5rem;
	padding: 0.95rem 1.1rem;
	text-align: center;
	justify-content: center;
	display: inline-flex;
	align-items: center;
	border-radius: 999rem;
	text-decoration: none;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	border: 0.0625rem solid var(--line);
}

.language-notice-link:not(.language-notice-link-stay) {
	background: #111111;
	color: #ffffff;
	border-color: #111111;
}

.language-notice-link-stay {
	background: #ffffff;
	color: #111111;
	border-color: var(--line);
}

.language-notice-link:hover,
.language-notice-link:focus-visible,
.language-notice-link-stay:hover,
.language-notice-link-stay:focus-visible {
	filter: brightness(0.97);
}

/* ===== Flèche retour haut ===== */

.scroll-top-button {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 35;
	width: 2.9rem;
	height: 2.9rem;
	border: 0;
	border-radius: 999rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.18);
	-webkit-backdrop-filter: saturate(180%) blur(0.75rem);
	backdrop-filter: saturate(180%) blur(0.75rem);
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.6rem);
	transition:
		opacity 180ms ease,
		transform 180ms ease,
		visibility 180ms ease,
		background 180ms ease,
		color 180ms ease,
		border-color 180ms ease;
}

.scroll-top-button.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top-button.is-theme-dark {
	background: rgba(17, 17, 17, 0.96);
	color: #ffffff;
	border: 0.0625rem solid rgba(17, 17, 17, 0.96);
}

.scroll-top-button.is-theme-light {
	background: rgba(255, 255, 255, 0.96);
	color: #111111;
	border: 0.0625rem solid rgba(230, 227, 222, 0.95);
}

/* ===== Responsive ===== */

@media (max-width: 60rem) {
	body.is-menu-open {
		overflow: hidden;
	}

	.footer-inner {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 0.45rem;
	}

	.footer-inner p,
	.footer-inner .footer-legal {
		width: 100%;
		margin: 0;
		text-align: center;
	}
}

@media (max-width: 60rem) {
	.section-grid.two,
	.cta .container {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.gallery-header,
	.footer-inner,
	.nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.nav {
		padding: 0.8rem 0;
		min-height: 0;
	}

	.nav-actions {
		width: 100%;
		justify-content: space-between;
	}

	.site-header {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		z-index: 30;
		background: transparent;
		border-bottom: 0;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		pointer-events: none;
	}

	.site-header .container.nav {
		width: calc(100% - 2rem);
		max-width: none;
		margin: 0 auto;
		padding-top: 1rem;
		padding-bottom: 0;
		position: relative;
		align-items: flex-start;
		justify-content: flex-start;
		pointer-events: auto;
	}

	.brand {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: 0;
	}

	.nav-actions {
		display: none;
		position: absolute;
		top: calc(100% + 0.7rem);
		left: 0;
		width: min(22rem, calc(100vw - 2rem));
		margin-top: 0;
		padding: 1rem 1rem 0.9rem;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		background: rgba(255, 255, 255, 0.96);
		border: 0.0625rem solid var(--line);
		border-radius: 1.25rem;
		box-shadow: var(--shadow);
		-webkit-backdrop-filter: saturate(180%) blur(0.75rem);
		backdrop-filter: saturate(180%) blur(0.75rem);
		opacity: 0;
		transform: translateY(-0.5rem) scale(0.985);
		transform-origin: top left;
		transition: opacity 180ms ease, transform 220ms ease;
		pointer-events: none;
	}

	.site-header.is-menu-open .nav-actions {
		display: flex;
		opacity: 1;
		transform: translateY(0) scale(1);
		pointer-events: auto;
	}

	.nav-actions nav,
	.nav-actions .lang-switcher {
		width: 100%;
	}

	.nav-list {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}

	.nav-list li {
		width: 100%;
	}

	.nav-list a {
		display: block;
		width: 100%;
		padding: 0.9rem 0;
		font-size: 1.05rem;
		color: var(--text);
		text-decoration: none;
		border-bottom: 0.0625rem solid var(--line);
	}

	.nav-list li:last-child a {
		border-bottom: 0;
	}

	.nav-list a[href*="/downloads/"] {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin-top: 0.8rem;
		padding: 0.85rem 1.2rem;
		border: 0.0625rem solid var(--line);
		border-radius: 999rem;
		background: var(--surface-strong);
		color: #ffffff;
	}

	.nav-actions .lang-switcher {
		width: auto;
		max-width: 100%;
		align-self: center;
		justify-content: center;
		padding: 0.12rem;
		gap: 0.42rem;
		margin-top: 0.2rem;
	}

	.nav-actions .lang-switcher a {
		min-width: 2.05rem;
		min-height: 1.95rem;
		padding: 0.28rem 0.38rem;
	}

	.hero {
		min-height: 100svh;
		margin-top: 0;
	}

	.hero-content {
		min-height: 100svh;
		padding-top: 6.25rem;
		padding-bottom: 2.5rem;
	}

	.contact-social {
		margin-top: 20px;
	}

	.contact-social-links {
		gap: 16px;
		justify-content: center;
	}
}

@media (max-width: 40rem) {
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.section {
		padding: 4.5rem 0;
	}

	.site-header .container.nav {
		padding-top: 0.85rem;
	}

	.nav-actions {
		width: min(20.5rem, calc(100vw - 1.5rem));
		padding: 0.9rem 0.9rem 0.8rem;
	}

	.nav-actions .lang-switcher {
		gap: 0.42rem;
		padding: 0.12rem;
	}

	.nav-actions .lang-switcher a {
		min-width: 2.05rem;
		min-height: 1.95rem;
		padding: 0.28rem 0.38rem;
	}

	.stats-list li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: baseline;
		gap: 0.9rem;
	}

	.stats-list span:first-child,
	.stats-list strong {
		display: block;
	}

	.stats-list strong {
		justify-self: end;
		text-align: right;
		white-space: nowrap;
	}

	.language-notice {
		right: 0.75rem;
		bottom: 0.75rem;
		width: min(22rem, calc(100vw - 1.5rem));
	}

	.language-notice-actions {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.language-notice-link,
	.language-notice-link-stay,
	.language-notice-link:not(.language-notice-link-stay) {
		font-size: 1.125rem;
		min-height: 3.45rem;
	}

	.scroll-top-button {
		right: 0.75rem;
		bottom: 0.75rem;
		width: 2.7rem;
		height: 2.7rem;
		font-size: 1.1rem;
	}

	.contact-social-links {
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
		gap: 16px;
	}

	.contact-social-links a {
		width: 24px;
		height: 24px;
		min-width: 24px;
		min-height: 24px;
	}
}

@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;
	}

	.reveal-on-scroll,
	.reveal-on-scroll.is-visible,
	.contact-social-links a,
	.contact-social-links svg {
		transition: none !important;
		transform: none !important;
	}
}