/* =========================================================
   Emmelab Selle — main.css
   Design system + componenti + sezioni homepage
   ========================================================= */

@font-face {
	font-family: "Oswald";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/oswald-400.woff2") format("woff2");
}
@font-face {
	font-family: "Oswald";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/oswald-500.woff2") format("woff2");
}
@font-face {
	font-family: "Oswald";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/oswald-600.woff2") format("woff2");
}
@font-face {
	font-family: "Oswald";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/oswald-700.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url("../fonts/inter-300.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/inter-600.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
	--c-bg: #0B0B0B;
	--c-bg-2: #1A1A1A;
	--c-red: #D00000;
	--c-red-dark: #A00000;
	--c-white: #FFFFFF;
	--c-grey: #BFBFBF;
	--c-grey-soft: rgba(191, 191, 191, 0.18);
	--c-line: rgba(255, 255, 255, 0.08);

	--ff-display: "Oswald", "Helvetica Neue", Arial, sans-serif;
	--ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--container: 1280px;
	--gutter: clamp(20px, 4vw, 56px);
	--radius: 0px;

	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--header-h: 84px;
}

/* ---------- Reset minimo ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-white);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
figure { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--ff-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
hr { border: 0; border-top: 1px solid var(--c-line); }
:focus-visible { outline: 2px solid var(--c-red); outline-offset: 2px; }

/* Skip link */
.skip-link {
	position: absolute; top: -100px; left: 0;
	padding: 12px 16px; background: var(--c-red); color: #fff; z-index: 9999;
}
.skip-link:focus { top: 0; }
.screen-reader-text {
	position: absolute !important; clip: rect(1px, 1px, 1px, 1px); width: 1px; height: 1px; overflow: hidden;
}

/* ---------- Layout ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

/* ---------- Header ---------- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	padding: 18px 0;
	transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
	background: rgba(11, 11, 11, 0.92);
	backdrop-filter: saturate(140%) blur(8px);
	-webkit-backdrop-filter: saturate(140%) blur(8px);
	border-bottom-color: var(--c-line);
}
.site-header__inner {
	display: flex; align-items: center; gap: 24px;
}
.site-brand {
	display: inline-flex; align-items: center; gap: 14px;
	font-family: var(--ff-display); letter-spacing: 0.04em; text-transform: uppercase;
}
.site-brand__name { font-size: 22px; font-weight: 700; color: #fff; }
.site-brand__name .dot { color: var(--c-red); }
.site-brand__tag {
	font-size: 11px; color: var(--c-grey);
	padding-left: 14px; border-left: 1px solid var(--c-line); letter-spacing: 0.18em;
}

.site-nav { margin-left: auto; }
.site-nav__list {
	display: flex; gap: 32px;
}
.site-nav__list a {
	font-family: var(--ff-display); text-transform: uppercase;
	font-size: 13px; letter-spacing: 0.18em; color: #fff;
	padding: 6px 0; position: relative;
}
.site-nav__list a::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
	height: 1px; background: var(--c-red); transition: right 0.3s var(--ease);
}
.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after { right: 0; }

.site-header__cta { padding: 12px 22px; font-size: 13px; }

.site-header__toggle {
	display: none; padding: 8px; color: #fff;
}

@media (max-width: 1024px) {
	.site-header .site-nav,
	.site-header .site-header__cta { display: none; }
	.site-header .site-header__toggle { display: inline-flex; margin-left: auto; }
}

/* Mobile menu */
.mobile-menu {
	position: fixed; inset: 0; z-index: 200;
	background: var(--c-bg);
	padding: 80px var(--gutter) 40px;
	display: flex; flex-direction: column; gap: 32px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__close {
	position: absolute; top: 22px; right: 22px; padding: 8px;
}
.mobile-menu__list {
	display: flex; flex-direction: column; gap: 18px;
}
.mobile-menu__list a {
	font-family: var(--ff-display); font-size: 28px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 16px 28px;
	font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
	font-size: 14px; letter-spacing: 0.18em;
	border: 1px solid transparent;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--c-red); color: #fff; }
.btn--primary:hover { background: var(--c-red-dark); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn--lg { padding: 20px 36px; font-size: 15px; }
.btn--block { width: 100%; }

.link-arrow {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--ff-display); text-transform: uppercase;
	font-size: 13px; letter-spacing: 0.18em;
	padding: 14px 22px; border: 1px solid rgba(255,255,255,0.4);
}
.link-arrow:hover { border-color: #fff; }

/* ---------- Hero ---------- */
.hero {
	position: relative; min-height: 100vh;
	display: flex; align-items: center;
	color: #fff; overflow: hidden;
	padding-top: var(--header-h);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
	width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.45) 60%, rgba(11,11,11,0.85) 100%);
}
.hero__inner {
	position: relative; z-index: 2;
	width: 100%;
	padding-top: 8vh; padding-bottom: 12vh;
}
.hero__tags {
	font-family: var(--ff-display); text-transform: uppercase;
	letter-spacing: 0.32em; color: var(--c-grey);
	font-size: 12px; margin: 0 0 24px;
}
.hero__title {
	font-size: clamp(48px, 9vw, 128px);
	line-height: 0.96; max-width: 14ch;
	margin: 0;
}
.hero__subtitle {
	margin: 24px 0 40px; max-width: 38ch;
	font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.85);
}
.hero__cta {
	display: flex; flex-wrap: wrap; gap: 16px;
}
.hero__scroll {
	position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
	font-family: var(--ff-display); letter-spacing: 0.32em; font-size: 11px; color: var(--c-grey); z-index: 2;
}
/* ---------- Section base ---------- */
.section {
	padding: clamp(72px, 10vw, 140px) 0;
	position: relative;
}
.section__header { max-width: 760px; margin-bottom: clamp(32px, 5vw, 64px); }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__header--row {
	max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.section__eyebrow {
	display: inline-block; margin-bottom: 14px;
	font-family: var(--ff-display); font-size: 12px; letter-spacing: 0.32em;
	color: var(--c-red); text-transform: uppercase;
}
.section__eyebrow::before { content: "— "; color: var(--c-red); }
.section__title {
	font-size: clamp(36px, 5.4vw, 76px);
	line-height: 1.02;
}
.section__sub {
	margin-top: 18px; color: var(--c-grey);
	font-size: clamp(15px, 1.4vw, 18px); max-width: 56ch;
}

/* ---------- Servizi ---------- */
.servizi-list { display: flex; flex-direction: column; gap: 0; }
.servizio {
	position: relative; min-height: 60vh; display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: center;
	overflow: hidden;
}
.servizio--alt { grid-template-columns: 1fr 1.1fr; }
.servizio--alt .servizio__media { order: 2; }
.servizio__media { position: relative; height: 60vh; min-height: 420px; }
.servizio__media img { width: 100%; height: 100%; object-fit: cover; }
.servizio__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
}
.servizio__content {
	padding: clamp(24px, 5vw, 80px); max-width: 56ch;
}
.servizio__label {
	display: inline-block; margin-bottom: 18px;
	font-family: var(--ff-display); letter-spacing: 0.32em; font-size: 12px; color: var(--c-red);
}
.servizio__title {
	font-size: clamp(34px, 4.6vw, 64px); line-height: 1.04; margin-bottom: 16px;
}
.servizio__text { color: var(--c-grey); margin-bottom: 24px; max-width: 48ch; }

@media (max-width: 860px) {
	.servizio, .servizio--alt { grid-template-columns: 1fr; }
	.servizio--alt .servizio__media { order: 0; }
	.servizio__media { height: 56vw; min-height: 280px; }
}

/* ---------- Prima / Dopo ---------- */
.section--ba { padding-bottom: clamp(48px, 6vw, 96px); }
.ba {
	position: relative; display: grid; grid-template-columns: 1fr 1fr;
}
.ba__half { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.ba__half img { width: 100%; height: 100%; object-fit: cover; }
.ba__half::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.0) 40%);
}
.ba__label {
	position: absolute; top: 24px; left: 32px; z-index: 2;
	font-family: var(--ff-display); font-size: clamp(28px, 3vw, 44px);
	letter-spacing: 0.22em; color: #fff;
}
.ba__half--after .ba__label { left: auto; right: 32px; }
.ba__divider {
	position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
	background: rgba(255,255,255,0.4);
}
.ba__cta { text-align: center; margin-top: 48px; }
@media (max-width: 700px) {
	.ba { grid-template-columns: 1fr; }
	.ba__divider { left: 0; right: 0; top: 50%; bottom: auto; height: 1px; width: 100%; }
}

/* ---------- Processo ---------- */
.section--processo { background: var(--c-bg); }
.steps {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px);
	margin-top: clamp(32px, 5vw, 56px);
}
.step { display: flex; flex-direction: column; gap: 14px; }
.step__num {
	font-family: var(--ff-display); font-weight: 700;
	color: var(--c-red); font-size: clamp(48px, 6vw, 96px); line-height: 1;
	border-bottom: 2px solid var(--c-red); padding-bottom: 14px; align-self: flex-start;
}
.step__title { font-size: clamp(22px, 2vw, 28px); margin-top: 4px; }
.step__text { color: var(--c-grey); max-width: 36ch; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Portfolio ---------- */
.portfolio-grid {
	display: grid; gap: clamp(16px, 2vw, 28px);
	grid-template-columns: repeat(2, 1fr);
}
.portfolio-grid--archive { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .portfolio-grid--archive { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
	.portfolio-grid, .portfolio-grid--archive { grid-template-columns: 1fr; }
}

.portfolio-card {
	position: relative; display: block; overflow: hidden;
	background: var(--c-bg-2);
	transition: transform 0.4s var(--ease);
}
.portfolio-card__media {
	aspect-ratio: 16/11; overflow: hidden;
}
.portfolio-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.6s var(--ease);
}
.portfolio-card:hover .portfolio-card__media img { transform: scale(1.04); }
.portfolio-card__info {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 24px 28px;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
}
.portfolio-card__label {
	display: inline-block; margin-bottom: 8px;
	font-family: var(--ff-display); font-size: 11px; letter-spacing: 0.32em; color: var(--c-red);
}
.portfolio-card__title {
	font-size: clamp(22px, 2vw, 30px); line-height: 1.05;
}

/* ---------- About ---------- */
.about-grid {
	display: grid; grid-template-columns: 0.9fr 1.1fr;
	align-items: center; gap: clamp(32px, 6vw, 80px);
}
.about-grid__media {
	position: relative; aspect-ratio: 4/5; overflow: hidden;
}
.about-grid__media img { width: 100%; height: 100%; object-fit: cover; }
.about-grid__top-tag {
	position: absolute; top: 16px; left: 16px; z-index: 2;
	background: var(--c-red); color: #fff; padding: 4px 10px;
	font-family: var(--ff-display); font-size: 10px; letter-spacing: 0.32em;
}
.about-grid__badge {
	position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%);
	background: #0e0e0e; color: #fff;
	padding: 14px 22px; font-family: var(--ff-display); letter-spacing: 0.28em; font-size: 12px;
	white-space: nowrap;
}
.about-grid__badge::before { content: "+800 "; color: var(--c-red); margin-right: 4px; }
.about-grid__content { max-width: 56ch; }
.about-grid__text { color: var(--c-grey); margin-top: 20px; }
@media (max-width: 900px) {
	.about-grid { grid-template-columns: 1fr; }
}

/* ---------- Testimonianze ---------- */
.testi-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px);
}
.testi {
	border-top: 1px solid var(--c-red);
	padding-top: 28px;
}
.testi__quote { font-size: clamp(18px, 1.6vw, 22px); color: #fff; margin-bottom: 18px; line-height: 1.45; }
.testi__author { font-family: var(--ff-display); letter-spacing: 0.22em; font-size: 13px; color: var(--c-grey); font-style: normal; }
@media (max-width: 700px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- CTA finale ---------- */
.cta-final { position: relative; padding: clamp(96px, 14vw, 200px) 0; overflow: hidden; }
.cta-final__media { position: absolute; inset: 0; z-index: 0; }
.cta-final__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.7) 60%, rgba(11,11,11,0.95) 100%);
}
.cta-final__inner { position: relative; z-index: 2; text-align: center; }
.cta-final__title {
	font-size: clamp(40px, 6vw, 88px); line-height: 1.02; margin-bottom: 18px;
}
.cta-final__text {
	color: var(--c-grey); max-width: 56ch; margin: 0 auto 36px;
	font-size: clamp(15px, 1.4vw, 18px);
}
.cta-final__contacts {
	margin-top: 24px; color: var(--c-grey); font-size: 14px; letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--c-bg);
	border-top: 1px solid var(--c-line);
	padding: clamp(56px, 7vw, 96px) 0 32px;
	color: var(--c-grey);
}
.site-footer__grid {
	display: grid; gap: clamp(28px, 4vw, 56px);
	grid-template-columns: 1.4fr repeat(3, 1fr);
	margin-bottom: clamp(32px, 4vw, 56px);
}
.site-footer__brand p { margin: 14px 0 22px; max-width: 36ch; }
.site-footer h4 {
	font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.28em;
	color: #fff; text-transform: uppercase; margin-bottom: 16px;
}
.site-footer__list { display: flex; flex-direction: column; gap: 10px; }
.site-footer__list a:hover { color: #fff; }
.site-footer__contact span {
	display: block; font-family: var(--ff-display); font-size: 11px; letter-spacing: 0.22em; color: #6e6e6e; margin-bottom: 4px;
}
.site-footer__bottom {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	padding-top: 24px; border-top: 1px solid var(--c-line);
	font-size: 13px; flex-wrap: wrap;
}
.site-footer__social {
	display: flex; gap: 12px; margin-top: 22px; list-style: none; padding: 0;
}
.site-footer__social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border: 1px solid var(--c-line); border-radius: 50%;
	color: var(--c-grey); transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.site-footer__social a:hover { color: #fff; border-color: #fff; }
.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;
}
@media (max-width: 900px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.site-footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Page hero (interne) ---------- */
.page-hero {
	padding: calc(var(--header-h) + 80px) 0 60px;
	background: var(--c-bg);
}
.page-hero__inner { max-width: 880px; }
.page-hero__title {
	font-size: clamp(40px, 6vw, 96px); line-height: 1.02; margin: 8px 0 22px;
}
.page-hero__intro { color: var(--c-grey); font-size: clamp(16px, 1.4vw, 19px); }
.page-hero__moto { color: var(--c-grey); font-family: var(--ff-display); letter-spacing: 0.22em; font-size: 13px; }
.page-hero__image { aspect-ratio: 16/9; overflow: hidden; }
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Pages base ---------- */
.page-default { padding: calc(var(--header-h) + 60px) 0 80px; }
.page-default__title { font-size: clamp(36px, 5vw, 64px); margin-bottom: 32px; }

.rich p { color: var(--c-grey); }
.rich h2, .rich h3 { margin: 1.4em 0 0.6em; color: #fff; }
.rich a { color: #fff; border-bottom: 1px solid var(--c-red); }
.rich ul, .rich ol { padding-left: 1.2em; color: var(--c-grey); margin-bottom: 1em; }
.rich ul { list-style: disc; }
.rich ol { list-style: decimal; }

/* ---------- About full ---------- */
.about-blocchi {
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px);
}
.about-blocco__title { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 12px; }
@media (max-width: 800px) { .about-blocchi { grid-template-columns: 1fr; } }

/* ---------- Contatti ---------- */
.contatti-grid {
	display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(28px, 4vw, 64px);
}
.contatti__title { font-size: clamp(28px, 3vw, 36px); margin-bottom: 24px; }
.contatti__list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contatti__list li { display: flex; flex-direction: column; gap: 4px; }
.contatti__list span {
	font-family: var(--ff-display); font-size: 11px; letter-spacing: 0.28em; color: #6e6e6e;
}
.contatti-grid__form { background: var(--c-bg-2); padding: clamp(24px, 4vw, 40px); }
.contatti-grid__form input,
.contatti-grid__form textarea,
.contatti-grid__form select {
	width: 100%; padding: 14px 16px; background: #0e0e0e; border: 1px solid var(--c-line);
	color: #fff; font: inherit; margin-bottom: 14px;
}
.contatti-grid__form input:focus,
.contatti-grid__form textarea:focus { border-color: var(--c-red); outline: none; }
.contatti-grid__form input[type="submit"],
.contatti-grid__form button[type="submit"] {
	background: var(--c-red); border-color: var(--c-red); color: #fff;
	text-transform: uppercase; letter-spacing: 0.18em; font-family: var(--ff-display); cursor: pointer;
}
.contatti-grid__form input[type="submit"]:hover { background: var(--c-red-dark); border-color: var(--c-red-dark); }
.contatti-map { margin-top: clamp(40px, 5vw, 64px); }
.contatti-map iframe { width: 100%; height: 420px; border: 0; display: block; }
@media (max-width: 900px) { .contatti-grid { grid-template-columns: 1fr; } }

/* ---------- Single Lavoro ---------- */
.single-lavoro__cover { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 0; }
.single-lavoro__cover img { width: 100%; height: 100%; object-fit: cover; }
.lavoro-gallery {
	display: grid; gap: clamp(16px, 2vw, 24px);
	grid-template-columns: repeat(2, 1fr);
}
.lavoro-gallery__item { aspect-ratio: 4/3; overflow: hidden; }
.lavoro-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .lavoro-gallery { grid-template-columns: 1fr; } }

/* ---------- Pagination ---------- */
.pagination, .nav-links {
	display: flex; gap: 8px; justify-content: center; margin-top: clamp(32px, 4vw, 56px);
	flex-wrap: wrap;
}
.pagination a, .pagination span,
.nav-links a, .nav-links span {
	min-width: 44px; padding: 10px 14px; text-align: center;
	border: 1px solid var(--c-line); color: #fff;
	font-family: var(--ff-display); letter-spacing: 0.18em; font-size: 13px;
}
.pagination .current,
.nav-links .current { background: var(--c-red); border-color: var(--c-red); }

/* ---------- Reveal ---------- */
.to-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.to-reveal.is-visible { opacity: 1; transform: none; }

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