/* =========================================================================
   ILA SERVICE — Design System
   Entwicklung und Gestaltung: Kedar & Partner — https://kedar-partner.com
   Editorial / Architektur. Reduzierte Farbwelt, grosse Typografie,
   Bewegung ausschliesslich ueber transform + opacity.
   ========================================================================= */

/* --- Schrift (selbst gehostet, kein externer Request) ------------------- */
@font-face {
	font-family: 'Inter Tight';
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url('../fonts/inter-tight-latin.woff2') format('woff2');
	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;
}
@font-face {
	font-family: 'Inter Tight';
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url('../fonts/inter-tight-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens ------------------------------------------------------------- */
:root {
	--ink: #0b0c0c;
	--ink-2: #131516;
	--graphite: #1e2224;
	--concrete: #6e7478;
	--stone: #a9aca9;
	--paper: #f3f1ed;
	--paper-2: #e8e4dd;
	--accent: #b3592f;

	--sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--maxw: 1560px;
	--gutter: clamp(20px, 5vw, 92px);
	--pad-y: clamp(84px, 11vw, 180px);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-io: cubic-bezier(0.65, 0, 0.35, 1);

	--fs-display: clamp(3.1rem, 10.5vw, 10.5rem);
	--fs-h1: clamp(2.5rem, 6.6vw, 6.1rem);
	--fs-h2: clamp(1.95rem, 4.3vw, 3.9rem);
	--fs-h3: clamp(1.2rem, 1.7vw, 1.6rem);
	--fs-lead: clamp(1.06rem, 1.45vw, 1.45rem);
	--fs-body: clamp(0.98rem, 1.02vw, 1.075rem);

	--bg: var(--paper);
	--fg: var(--ink);
	--muted: var(--concrete);
	--rule: rgba(11, 12, 12, 0.14);

	--header-h: 76px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: var(--fs-body);
	line-height: 1.62;
	font-weight: 400;
	letter-spacing: -0.005em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

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

h1, h2, h3, h4 {
	margin: 0;
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.02;
	text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.35s var(--ease), opacity 0.35s var(--ease);
}

button { font: inherit; color: inherit; }

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

::selection {
	background: var(--ink);
	color: var(--paper);
}

/* --- Typo-Bausteine ----------------------------------------------------- */
.display { font-size: var(--fs-display); line-height: 0.88; letter-spacing: -0.045em; font-weight: 600; }
.h1 { font-size: var(--fs-h1); line-height: 0.95; letter-spacing: -0.038em; font-weight: 500; }
.h2 { font-size: var(--fs-h2); line-height: 1; letter-spacing: -0.032em; font-weight: 500; }

.lead {
	font-size: var(--fs-lead);
	line-height: 1.45;
	letter-spacing: -0.017em;
	color: var(--fg);
}

.label {
	margin: 0;
	font-size: 0.6875rem;
	line-height: 1.4;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--muted);
}

.tick {
	display: inline-block;
	width: 26px;
	height: 1px;
	margin-right: 14px;
	vertical-align: middle;
	background: currentColor;
	opacity: 0.5;
}

/* --- Sektionsrahmen ----------------------------------------------------- */
.section {
	position: relative;
	padding: var(--pad-y) var(--gutter);
	background: var(--bg);
	color: var(--fg);
}

.section > *:not(.statement__bg):not(.cta__bg) {
	position: relative;
	width: min(100%, var(--maxw));
	margin-inline: auto;
}

.section--paper { --bg: var(--paper); --fg: var(--ink); --muted: var(--concrete); --rule: rgba(11, 12, 12, 0.14); }
.section--stone { --bg: var(--paper-2); --fg: var(--ink); --muted: #6a6f70; --rule: rgba(11, 12, 12, 0.16); }
.section--ink { --bg: var(--ink); --fg: #ece9e4; --muted: #8b9194; --rule: rgba(236, 233, 228, 0.15); }

.section--ink .lead { color: #ded9d2; }

/* --- Bild-Container ----------------------------------------------------- */
.media {
	position: relative;
	overflow: hidden;
	background: var(--graphite);
	aspect-ratio: 16 / 10;
}

.media--tall { aspect-ratio: 4 / 5; }

.media__img,
.media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
}

.media__img.is-plate { filter: none; }

.grain {
	position: absolute;
	inset: -20%;
	background-image: url('../images/grain.svg');
	background-size: 260px 260px;
	opacity: 0.35;
	mix-blend-mode: overlay;
	pointer-events: none;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 18px 30px;
	border: 1px solid transparent;
	border-radius: 0;
	font-size: 0.8125rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	cursor: pointer;
	overflow: hidden;
	background: transparent;
	transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.btn span { position: relative; z-index: 2; }

.btn svg {
	position: relative;
	z-index: 2;
	width: 18px;
	height: 18px;
	transition: transform 0.5s var(--ease);
}

.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.5s var(--ease);
}

.btn:hover svg { transform: translateX(6px); }

.btn--solid {
	background: var(--fg);
	color: var(--bg);
	border-color: var(--fg);
}
.btn--solid::before { background: var(--accent); transform-origin: bottom; }
.btn--solid:hover { color: #fff; border-color: var(--accent); }
.btn--solid:hover::before { transform: scaleY(1); }

.btn--line {
	border-color: var(--rule);
	color: var(--fg);
}
.btn--line::before { background: var(--fg); }
.btn--line:hover { color: var(--bg); border-color: var(--fg); }
.btn--line:hover::before { transform: scaleY(1); }

.btn--ghost {
	border-color: rgba(255, 255, 255, 0.22);
	color: inherit;
}
.btn--ghost::before { background: currentColor; }
.btn--ghost:hover::before { transform: scaleY(1); }

.btn--sm { padding: 13px 20px; font-size: 0.72rem; letter-spacing: 0.14em; }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fg);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.5s var(--ease); }
.link-arrow span {
	position: relative;
	padding-bottom: 3px;
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size 0.5s var(--ease);
}
.link-arrow:hover span { background-size: 100% 1px; }
.link-arrow:hover svg { transform: translateX(6px); }

.link-underline {
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 100% 1px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	padding-bottom: 2px;
	transition: background-size 0.5s var(--ease), color 0.4s var(--ease);
}
.link-underline:hover { background-size: 0% 1px; color: var(--accent); }

/* --- Reveals ------------------------------------------------------------ */
.reveal {
	opacity: 0;
	transform: translate3d(0, 22px, 0);
	transition: opacity 1s var(--ease), transform 1s var(--ease);
	transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal-lines .ln {
	display: block;
	overflow: hidden;
	padding-bottom: 0.14em;
	margin-bottom: -0.14em;
}
.reveal-lines .ln > span {
	display: block;
	transform: translate3d(0, 110%, 0);
	transition: transform 1.05s var(--ease);
	transition-delay: calc(var(--ln, 0) * 0.085s + var(--d, 0s));
}
.reveal-lines.is-in .ln > span { transform: none; }

.reveal-media .media__img {
	transform: scale(1.14);
	opacity: 0.35;
	transition: transform 1.5s var(--ease), opacity 1.1s var(--ease);
}
.reveal-media.is-in .media__img { transform: scale(1); opacity: 1; }

/* --- Scroll-Fortschritt -------------------------------------------------- */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	z-index: 120;
	pointer-events: none;
}
.scroll-progress span {
	display: block;
	height: 100%;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: 0 50%;
	will-change: transform;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	color: #ece9e4;
	transition: transform 0.6s var(--ease), background-color 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
	border-bottom: 1px solid transparent;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100%, var(--maxw));
	margin-inline: auto;
	padding: 0 var(--gutter);
	height: var(--header-h);
}

.site-header.is-stuck {
	background: rgba(11, 12, 12, 0.9);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom-color: rgba(236, 233, 228, 0.12);
}

.site-header.is-hidden { transform: translate3d(0, -102%, 0); }

.brand { display: flex; align-items: center; }
.brand img { max-height: 42px; width: auto; }

.wordmark {
	display: flex;
	align-items: baseline;
	gap: 9px;
	line-height: 1;
}
.wordmark__main {
	font-size: 1.34rem;
	font-weight: 600;
	letter-spacing: -0.03em;
}
.wordmark__sub {
	font-size: 0.62rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	opacity: 0.62;
	padding-left: 9px;
	border-left: 1px solid currentColor;
}

.nav__list { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }

.nav--desktop .nav__list a {
	position: relative;
	font-size: 0.775rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.78;
}
.nav--desktop .nav__list a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: 100% 50%;
	transition: transform 0.5s var(--ease);
}
.nav--desktop .nav__list a:hover { opacity: 1; }
.nav--desktop .nav__list a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }

.site-header__actions { display: flex; align-items: center; gap: 16px; }

.site-header__tel {
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	opacity: 0.8;
}
.site-header__tel:hover { opacity: 1; }

.burger {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(236, 233, 228, 0.25);
	background: transparent;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.burger__lines { display: block; width: 20px; }
.burger__lines i {
	display: block;
	height: 1px;
	background: currentColor;
	transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.burger__lines i:first-child { margin-bottom: 6px; }
.burger[aria-expanded='true'] .burger__lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded='true'] .burger__lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* --- Mobiles Menue ------------------------------------------------------- */
.menu-panel {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: var(--ink);
	color: #ece9e4;
	display: flex;
	align-items: flex-end;
	padding: calc(var(--header-h) + 28px) var(--gutter) clamp(28px, 6vh, 56px);
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, -14px, 0);
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), visibility 0.55s;
}
.menu-panel[hidden] { display: flex; }
.menu-panel.is-open { opacity: 1; visibility: visible; transform: none; }

.menu-panel__inner { width: 100%; }
.menu-panel__label { margin-bottom: 26px; }

.nav__list--big {
	display: block;
	border-top: 1px solid rgba(236, 233, 228, 0.14);
}
.nav__list--big li { border-bottom: 1px solid rgba(236, 233, 228, 0.14); }
.nav__list--big a {
	display: block;
	padding: clamp(14px, 2.4vh, 22px) 0;
	font-size: clamp(1.55rem, 6.4vw, 2.6rem);
	letter-spacing: -0.03em;
	line-height: 1.06;
	transform: translate3d(0, 16px, 0);
	opacity: 0;
	transition: transform 0.7s var(--ease), opacity 0.7s var(--ease), color 0.4s var(--ease);
	transition-delay: calc(var(--i, 0) * 0.05s + 0.1s);
}
.menu-panel.is-open .nav__list--big a { transform: none; opacity: 1; }
.nav__list--big a:hover { color: var(--stone); }

.menu-panel__foot {
	margin-top: clamp(26px, 5vh, 48px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	font-size: 0.95rem;
	color: #b9bcbb;
}
.menu-panel__person { color: #ece9e4; font-size: 1.05rem; margin: 0 0 6px; }
.menu-panel__foot .btn { margin-top: 16px; color: var(--ink); background: #ece9e4; border-color: #ece9e4; }
.menu-panel__foot .btn::before { background: var(--accent); }
.menu-panel__foot .btn:hover { color: #fff; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: calc(var(--header-h) + 40px) var(--gutter) clamp(28px, 4vh, 54px);
	background: var(--ink);
	color: #f2f0ec;
	overflow: hidden;
	isolation: isolate;
}

.hero__media {
	position: absolute;
	inset: -6% 0 -6% 0;
	z-index: -1;
	will-change: transform;
}

.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: hero-zoom 18s var(--ease) forwards;
}

@keyframes hero-zoom {
	from { transform: scale(1.08); }
	to { transform: scale(1); }
}

.hero__grade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(11, 12, 12, 0.86) 0%, rgba(11, 12, 12, 0.42) 34%, rgba(11, 12, 12, 0.62) 72%, rgba(11, 12, 12, 0.94) 100%),
		linear-gradient(90deg, rgba(11, 12, 12, 0.78) 0%, rgba(11, 12, 12, 0.18) 58%, rgba(11, 12, 12, 0.4) 100%);
}

.hero__inner {
	width: min(100%, var(--maxw));
	margin-inline: auto;
	padding-bottom: clamp(30px, 7vh, 84px);
	margin-top: auto;
}

.hero__eyebrow { color: rgba(242, 240, 236, 0.72); margin-bottom: clamp(18px, 3vh, 34px); }

.hero__title {
	font-size: clamp(2.7rem, 8.1vw, 8.2rem);
	line-height: 0.92;
	letter-spacing: -0.045em;
	font-weight: 600;
	max-width: 15ch;
}

.hero__lead {
	max-width: 46ch;
	margin-top: clamp(22px, 3.4vh, 40px);
	font-size: var(--fs-lead);
	line-height: 1.5;
	color: rgba(242, 240, 236, 0.8);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: clamp(26px, 4vh, 46px);
	--fg: #f2f0ec;
	--bg: #0b0c0c;
	--rule: rgba(242, 240, 236, 0.3);
}

.hero__foot {
	width: min(100%, var(--maxw));
	margin-inline: auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding-top: 22px;
	border-top: 1px solid rgba(242, 240, 236, 0.16);
}

.hero__chain {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 4vw, 64px);
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(242, 240, 236, 0.72);
}
.hero__chain li { display: flex; align-items: baseline; gap: 10px; }
.hero__chain .idx { font-size: 0.66rem; color: var(--accent); letter-spacing: 0.1em; }

.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll .label { color: rgba(242, 240, 236, 0.6); font-size: 0.62rem; }
.hero__scroll-line {
	width: 1px;
	height: 44px;
	background: rgba(242, 240, 236, 0.28);
	position: relative;
	overflow: hidden;
}
.hero__scroll-line::after {
	content: '';
	position: absolute;
	inset: 0;
	background: #f2f0ec;
	transform: translateY(-100%);
	animation: scroll-tick 2.4s var(--ease-io) infinite;
}
@keyframes scroll-tick {
	0% { transform: translateY(-100%); }
	55% { transform: translateY(0); }
	100% { transform: translateY(100%); }
}

/* =========================================================================
   INTRO
   ========================================================================= */
.intro__head { margin-bottom: clamp(40px, 6vw, 78px); }
.intro__head .label { margin-bottom: clamp(20px, 3vw, 34px); }
.intro__title { max-width: 18ch; }

.intro__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
	gap: clamp(32px, 5vw, 90px);
	align-items: start;
	padding-bottom: clamp(46px, 7vw, 96px);
	border-bottom: 1px solid var(--rule);
}

.intro__lead-wrap { max-width: 52ch; padding-top: 8px; }
.intro__lead-wrap p:not(.lead) { color: var(--muted); max-width: 46ch; }

.intro__media figcaption { margin-top: 14px; }

.intro__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: clamp(26px, 3vw, 46px);
	margin-top: clamp(46px, 6vw, 88px);
}
.intro__item { padding-top: 20px; border-top: 1px solid var(--rule); }
.intro__num {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	color: var(--accent);
	margin-bottom: 14px;
}
.intro__item-title {
	font-size: var(--fs-h3);
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}
.intro__item p { font-size: 0.94rem; line-height: 1.6; color: var(--muted); }

/* =========================================================================
   LEISTUNGEN
   ========================================================================= */
.services__head { margin-bottom: clamp(40px, 6vw, 80px); }
.services__head .label { margin-bottom: clamp(18px, 3vw, 30px); }
.services__intro {
	max-width: 54ch;
	margin-top: 26px;
	color: var(--muted);
	font-size: var(--fs-lead);
	line-height: 1.5;
}

.services__list { position: relative; border-top: 1px solid var(--rule); }

.svc {
	position: relative;
	display: grid;
	grid-template-columns: 84px minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 56px);
	padding: clamp(34px, 4.4vw, 62px) 0;
	border-bottom: 1px solid var(--rule);
	align-items: start;
	transition: opacity 0.5s var(--ease);
}

.services__list:hover .svc { opacity: 0.42; }
.services__list .svc:hover,
.services__list .svc:focus-within { opacity: 1; }

.svc__num {
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	color: var(--accent);
	padding-top: 0.6em;
	display: block;
}

.svc__title {
	font-size: clamp(1.85rem, 3.4vw, 3.2rem);
	letter-spacing: -0.035em;
	line-height: 1;
	font-weight: 500;
	text-transform: none;
}
.svc__claim {
	margin-top: 14px;
	font-size: 0.98rem;
	color: var(--muted);
	letter-spacing: -0.01em;
}

.svc__text { max-width: 44ch; margin-bottom: 22px; color: var(--fg); opacity: 0.86; }

.svc__items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin-bottom: 24px;
}
.svc__items li {
	font-size: 0.76rem;
	letter-spacing: 0.05em;
	padding: 7px 13px;
	border: 1px solid var(--rule);
	color: var(--muted);
	transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.svc:hover .svc__items li { border-color: rgba(236, 233, 228, 0.28); color: var(--fg); }

.svc__media { display: none; }

/* Cursor-Vorschau (nur Desktop, Pointer-Geraete) */
.preview {
	position: absolute;
	top: 0;
	left: 0;
	width: clamp(220px, 20vw, 330px);
	aspect-ratio: 4 / 3;
	pointer-events: none;
	opacity: 0;
	transform: translate3d(0, 0, 0) translate(-50%, -50%) scale(0.94);
	transition: opacity 0.45s var(--ease);
	z-index: 5;
	display: none;
	overflow: hidden;
	will-change: transform;
}
.preview.is-visible { opacity: 1; }
.preview__item {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.45s var(--ease);
}
.preview__item.is-active { opacity: 1; }
.preview__img { width: 100%; height: 100%; object-fit: cover; }

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
	.preview { display: block; }
}

/* =========================================================================
   SCHADSTOFFSANIERUNG
   ========================================================================= */
.hazmat__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
	gap: clamp(34px, 5vw, 96px);
	align-items: start;
}

.hazmat__media-col { position: sticky; top: calc(var(--header-h) + 42px); }
.hazmat__media figcaption { margin-top: 14px; max-width: 34ch; }

.hazmat__content .label { margin-bottom: clamp(16px, 2.4vw, 26px); }
.hazmat__title { margin-bottom: clamp(22px, 3vw, 36px); }
.hazmat__content .lead { max-width: 46ch; }
.hazmat__content > p:not(.lead) { max-width: 50ch; color: var(--muted); margin-top: 16px; }

.matlist {
	margin-top: clamp(34px, 4vw, 60px);
	border-top: 1px solid var(--rule);
}
.matlist__item {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 4px clamp(12px, 2vw, 26px);
	padding: 22px 0;
	border-bottom: 1px solid var(--rule);
}
.matlist__num {
	grid-row: span 2;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	color: var(--accent);
	padding-top: 0.45em;
}
.matlist__title { font-size: 1.12rem; letter-spacing: -0.02em; font-weight: 500; }
.matlist__text { font-size: 0.94rem; color: var(--muted); margin: 0; max-width: 56ch; }

.legal {
	margin-top: clamp(38px, 4.6vw, 70px);
	padding: clamp(26px, 3vw, 44px);
	background: rgba(11, 12, 12, 0.035);
	border-left: 2px solid var(--ink);
}
.legal__head { margin-bottom: 26px; }
.legal__head .label { margin-bottom: 14px; }
.legal__intro { font-size: 0.96rem; color: var(--muted); max-width: 58ch; margin: 0; }

.legal__row {
	display: grid;
	grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
	gap: 6px 26px;
	padding: 16px 0;
	border-top: 1px solid rgba(11, 12, 12, 0.12);
}
.legal__row dt {
	font-size: 0.76rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 500;
}
.legal__row dd { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

.legal__note {
	margin-top: 22px;
	font-size: 0.84rem;
	color: var(--muted);
	max-width: 62ch;
	font-style: normal;
	opacity: 0.9;
}

/* =========================================================================
   ABLAUF
   ========================================================================= */
.process__head { margin-bottom: clamp(40px, 6vw, 86px); }
.process__head .label { margin-bottom: clamp(18px, 2.6vw, 28px); }

.process__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
	gap: clamp(30px, 5vw, 90px);
	align-items: start;
}

.process__rail { position: sticky; top: calc(var(--header-h) + 60px); }

.rail { position: relative; padding-left: 26px; }
.rail__num {
	display: block;
	font-size: clamp(4rem, 9vw, 9rem);
	line-height: 0.82;
	font-weight: 600;
	letter-spacing: -0.06em;
	color: var(--fg);
	margin-bottom: 28px;
	font-variant-numeric: tabular-nums;
}

.rail__track {
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 1px;
	background: var(--rule);
}
.rail__bar {
	position: absolute;
	inset: 0 auto 0 0;
	width: 1px;
	background: var(--accent);
	transform: scaleY(0);
	transform-origin: 0 0;
	will-change: transform;
	transition: transform 0.25s linear;
}

.rail__item {
	display: flex;
	align-items: baseline;
	gap: 14px;
	padding: 10px 0;
	opacity: 0.34;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.rail__item.is-active { opacity: 1; transform: translate3d(8px, 0, 0); }
.rail__idx { font-size: 0.68rem; letter-spacing: 0.14em; color: var(--accent); }
.rail__label { font-size: 0.98rem; letter-spacing: -0.01em; }

.process__steps { display: grid; gap: clamp(60px, 10vw, 150px); }

.step { display: grid; gap: clamp(20px, 2.4vw, 34px); }

.step__media { position: relative; }
.step__badge {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 12px 18px;
	background: var(--bg);
	color: var(--fg);
	font-size: 0.74rem;
	letter-spacing: 0.16em;
}

.step__title { font-size: clamp(1.5rem, 2.6vw, 2.3rem); letter-spacing: -0.03em; margin-bottom: 14px; }
.step__text p { max-width: 52ch; color: var(--muted); }

.step__points {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 26px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--rule);
}
.step__points li {
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	color: var(--fg);
	opacity: 0.82;
	display: flex;
	align-items: center;
	gap: 9px;
}
.step__points li::before {
	content: '';
	width: 5px;
	height: 5px;
	background: var(--accent);
	flex: 0 0 auto;
}

/* =========================================================================
   STATEMENT
   ========================================================================= */
.statement { overflow: hidden; }

.statement__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.11;
	-webkit-mask-image: radial-gradient(120% 78% at 78% 22%, #000 0%, transparent 72%);
	mask-image: radial-gradient(120% 78% at 78% 22%, #000 0%, transparent 72%);
	pointer-events: none;
}
.statement__img { width: 100%; height: 100%; object-fit: cover; }

.statement__inner .label { margin-bottom: clamp(20px, 3vw, 34px); }
.statement__title { max-width: 16ch; }
.statement__lead {
	max-width: 44ch;
	margin-top: clamp(26px, 3.4vw, 44px);
}

.statement__points {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: clamp(26px, 3vw, 56px);
	margin-top: clamp(50px, 7vw, 96px);
}
.statement__point { padding-top: 22px; border-top: 1px solid var(--rule); }
.statement__point-title {
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 14px;
	font-weight: 500;
}
.statement__point p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

.figures {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: clamp(24px, 3vw, 50px);
	margin-top: clamp(56px, 7vw, 110px);
	padding-top: clamp(30px, 4vw, 54px);
	border-top: 1px solid var(--rule);
}
.figures__num {
	display: block;
	font-size: clamp(3.4rem, 7vw, 6.4rem);
	line-height: 0.82;
	font-weight: 600;
	letter-spacing: -0.06em;
	margin-bottom: 16px;
	font-variant-numeric: tabular-nums;
}
.figures__cap {
	display: block;
	font-size: 0.84rem;
	letter-spacing: 0.02em;
	color: var(--muted);
	max-width: 24ch;
}

/* =========================================================================
   TRANSFORMATION
   ========================================================================= */
.transform__head { margin-bottom: clamp(46px, 7vw, 96px); }
.transform__head .label { margin-bottom: clamp(18px, 2.6vw, 30px); }
.transform__title { max-width: 20ch; }

.chain { position: relative; padding-left: clamp(18px, 3vw, 44px); }
.chain__list { display: block; }

.chain__track {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--rule);
}
.chain__bar {
	position: absolute;
	inset: 0 auto auto 0;
	width: 1px;
	height: 100%;
	background: var(--accent);
	transform: scaleY(0);
	transform-origin: 0 0;
	will-change: transform;
}

.chain__row {
	position: relative;
	display: grid;
	grid-template-columns: 60px minmax(0, auto) minmax(0, 1fr);
	align-items: baseline;
	gap: clamp(14px, 2.6vw, 42px);
	padding: clamp(20px, 2.6vw, 34px) 0;
	border-bottom: 1px solid var(--rule);
	padding-left: calc(var(--o, 0) * clamp(6px, 2.4vw, 56px));
	transition: padding-left 0.6s var(--ease);
}

.chain__idx { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--accent); }

.chain__word {
	font-size: clamp(1.9rem, 5.4vw, 4.6rem);
	line-height: 0.95;
	letter-spacing: -0.045em;
	font-weight: 500;
	white-space: nowrap;
}

.chain__cap {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--muted);
	max-width: 40ch;
	justify-self: end;
	text-align: left;
}

/* =========================================================================
   INNENAUSBAU
   ========================================================================= */
.interior__head { max-width: 78ch; margin-bottom: clamp(46px, 6vw, 90px); }
.interior__head .label { margin-bottom: clamp(18px, 2.6vw, 30px); }
.interior__head .lead { margin-top: clamp(24px, 3vw, 40px); max-width: 52ch; color: var(--muted); }

.interior__diptych {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) auto minmax(0, 1fr);
	gap: clamp(20px, 3vw, 54px);
	align-items: center;
}

.interior__frame figcaption {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 16px;
}
.interior__cap { font-size: 0.9rem; color: var(--muted); max-width: 30ch; }

.interior__frame--before { transform: translateY(clamp(0px, 4vw, 56px)); }

.interior__arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.interior__arrow-line {
	width: 1px;
	height: clamp(60px, 12vw, 150px);
	background: linear-gradient(180deg, transparent, var(--ink) 40%, var(--ink) 60%, transparent);
	opacity: 0.35;
}
.interior__arrow .label {
	writing-mode: vertical-rl;
	letter-spacing: 0.26em;
	font-size: 0.62rem;
}

.interior__notes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: clamp(24px, 3vw, 56px);
	margin-top: clamp(56px, 7vw, 110px);
	padding-top: clamp(28px, 3.4vw, 48px);
	border-top: 1px solid var(--rule);
}
.interior__note h3 {
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 12px;
	font-weight: 500;
}
.interior__note p { font-size: 0.94rem; color: var(--muted); }

/* =========================================================================
   PROJEKTVERANTWORTUNG
   ========================================================================= */
.person__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
	gap: clamp(30px, 5vw, 92px);
	align-items: center;
}
.person__content .label { margin-bottom: clamp(16px, 2.4vw, 26px); }
.person__name { letter-spacing: -0.04em; }
.person__role {
	margin-top: 12px;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
}
.person__text { margin-top: clamp(24px, 3vw, 40px); max-width: 54ch; }
.person__text p:not(.lead) { color: var(--muted); margin-top: 16px; }

.person__values {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0;
	margin-top: clamp(30px, 4vw, 52px);
	border-top: 1px solid var(--rule);
}
.person__values li {
	padding: 16px 0;
	border-bottom: 1px solid var(--rule);
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	display: flex;
	align-items: center;
	gap: 12px;
}
.person__values li::before {
	content: '';
	width: 16px;
	height: 1px;
	background: var(--accent);
}

.person__contact {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 34px;
	margin-top: clamp(26px, 3vw, 44px);
	font-size: 1.02rem;
}

/* =========================================================================
   ABSCHLUSS / KONTAKT
   ========================================================================= */
.cta { overflow: hidden; isolation: isolate; }

.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.cta__grade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 12, 12, 0.94) 0%, rgba(11, 12, 12, 0.72) 45%, rgba(11, 12, 12, 0.96) 100%);
}

.cta__head .label { margin-bottom: clamp(20px, 3vw, 34px); }
/* Zeilenmass gehoert an den Titel: 'ch' rechnet gegen die eigene Schriftgroesse.
   Am Wrapper (Fliesstext) waere 22ch ~200px und wuerde die Display-Zeilen kappen. */
.cta__title { max-width: 22ch; margin-bottom: clamp(24px, 3vw, 40px); }
.cta__lead { max-width: 42ch; color: rgba(236, 233, 228, 0.82); }

.cta__body {
	display: grid;
	grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
	gap: clamp(34px, 5vw, 96px);
	margin-top: clamp(52px, 7vw, 110px);
	padding-top: clamp(34px, 4vw, 62px);
	border-top: 1px solid var(--rule);
	align-items: start;
}

.cta__contact .label { margin-bottom: 22px; }
.cta__person { font-size: clamp(1.4rem, 2.2vw, 2rem); letter-spacing: -0.03em; margin: 0; }
.cta__role {
	font-size: 0.74rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 8px 0 0;
}
.cta__lines { margin-top: 26px; display: grid; gap: 10px; font-size: 1.02rem; }
.cta__area { color: var(--muted); font-size: 0.9rem; }
.cta__hint {
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid var(--rule);
	font-size: 0.86rem;
	color: var(--muted);
	max-width: 40ch;
}

/* --- Formular ------------------------------------------------------------ */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 30px);
}
.field { margin: 0; display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }

.field .label { color: var(--muted); }

.form input[type='text'],
.form input[type='email'],
.form input[type='tel'],
.form select,
.form textarea {
	width: 100%;
	padding: 14px 2px;
	border: 0;
	border-bottom: 1px solid var(--rule);
	background: transparent;
	color: var(--fg);
	font: inherit;
	font-size: 1rem;
	border-radius: 0;
	transition: border-color 0.4s var(--ease);
	appearance: none;
}
.form textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.form select { cursor: pointer; }
.form select option { color: #111; background: #fff; }

.form input:focus,
.form select:focus,
.form textarea:focus {
	outline: none;
	border-bottom-color: var(--accent);
}
.form ::placeholder { color: var(--muted); opacity: 0.7; }

.field.has-error input,
.field.has-error textarea { border-bottom-color: #d0603a; }
.field__error { font-size: 0.8rem; color: #e0805f; }

.field--check { margin-top: clamp(22px, 3vw, 34px); }
.field--check label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.86rem;
	color: var(--muted);
	line-height: 1.5;
	cursor: pointer;
}
.field--check input {
	margin-top: 3px;
	width: 16px;
	height: 16px;
	accent-color: var(--accent);
	flex: 0 0 auto;
}
.field--check a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }

.form .btn { margin-top: clamp(26px, 3vw, 38px); }

.form__note {
	padding: 16px 20px;
	margin-bottom: 26px;
	font-size: 0.92rem;
	border-left: 2px solid currentColor;
}
.form__note--ok { color: #9ec4a5; background: rgba(158, 196, 165, 0.08); }
.form__note--error { color: #e0805f; background: rgba(224, 128, 95, 0.08); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
	background: #08090a;
	color: #b7bbba;
	padding: clamp(60px, 8vw, 120px) var(--gutter) 30px;
	font-size: 0.92rem;
}
.site-footer a:hover { color: #f2f0ec; }

.site-footer__inner {
	width: min(100%, var(--maxw));
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
	gap: clamp(30px, 4vw, 70px);
	padding-bottom: clamp(46px, 6vw, 84px);
}

.footer-mark {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 0 0 14px;
	color: #f2f0ec;
	font-size: clamp(2.1rem, 4vw, 3.4rem);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1;
}
.footer-mark span {
	font-size: 0.66rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 400;
	color: #8b9194;
	padding-left: 10px;
	border-left: 1px solid rgba(242, 240, 236, 0.25);
}
.site-footer__claim { color: #8b9194; letter-spacing: 0.02em; }

.site-footer .label { color: #8b9194; margin-bottom: 20px; }
.site-footer__list { display: grid; gap: 10px; }
.site-footer__role {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7c8285;
	margin-top: 4px;
}

.site-footer__bar {
	width: min(100%, var(--maxw));
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 26px;
	border-top: 1px solid rgba(242, 240, 236, 0.12);
	font-size: 0.8rem;
	color: #7c8285;
}
.site-footer__copy { margin: 0; }
.site-footer__legal-list { display: flex; gap: 26px; }
.site-footer__legal-list .is-pending { opacity: 0.45; cursor: default; }

.to-top {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #8b9194;
	transition: color 0.4s var(--ease);
}
.to-top svg { width: 15px; height: 15px; transition: transform 0.5s var(--ease); }
.to-top:hover { color: #f2f0ec; }
.to-top:hover svg { transform: translateY(-4px); }

/* =========================================================================
   UNTERSEITEN
   ========================================================================= */
.page-hero {
	background: var(--ink);
	color: #ece9e4;
	padding: calc(var(--header-h) + clamp(70px, 12vh, 150px)) var(--gutter) clamp(60px, 9vh, 120px);
}
.page-hero__inner { width: min(100%, var(--maxw)); margin-inline: auto; }
.page-hero .label { margin-bottom: 22px; color: #8b9194; }
.page-hero__title { max-width: 20ch; }
.page-hero .lead { margin-top: 26px; max-width: 46ch; color: rgba(236, 233, 228, 0.78); }
.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
	--fg: #ece9e4;
	--bg: #0b0c0c;
	--rule: rgba(236, 233, 228, 0.3);
}

.prose {
	width: min(100%, 74ch);
	margin-inline: auto;
	font-size: 1.05rem;
	line-height: 1.75;
}
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-top: 1.8em; letter-spacing: -0.03em; }
.prose h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul li { list-style: disc; margin-bottom: 0.5em; }
.prose ol li { list-style: decimal; margin-bottom: 0.5em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
	margin: 1.6em 0;
	padding-left: 24px;
	border-left: 2px solid var(--ink);
	font-size: 1.15rem;
	letter-spacing: -0.015em;
}
.prose__thumb { margin-bottom: 2em; }
.prose table { width: 100%; border-collapse: collapse; }
.prose td, .prose th { border-bottom: 1px solid var(--rule); padding: 10px 8px; text-align: left; }

.archive__list { display: grid; gap: clamp(30px, 4vw, 60px); }
.entry {
	padding-bottom: clamp(28px, 3vw, 46px);
	border-bottom: 1px solid var(--rule);
	max-width: 76ch;
}
.entry__meta { margin-bottom: 14px; }
.entry__title { font-size: clamp(1.5rem, 3vw, 2.3rem); letter-spacing: -0.03em; margin-bottom: 14px; }
.entry__excerpt { color: var(--muted); margin-bottom: 18px; }

.pagination, .post-nav {
	display: flex;
	gap: 22px;
	margin-top: clamp(34px, 4vw, 60px);
	font-size: 0.84rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.pagination .page-numbers.current { color: var(--accent); }

.widget { margin-bottom: 40px; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1180px) {
	.hazmat__grid { grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr); }
	.svc { grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 1024px) {
	.nav--desktop { display: none; }
	.burger { display: inline-flex; }
	.site-header__tel { display: none; }
	.site-header__actions .btn--ghost { display: none; }

	.intro__body { grid-template-columns: minmax(0, 1fr); }
	.intro__media { max-width: 560px; }

	.hazmat__grid { grid-template-columns: minmax(0, 1fr); }
	.hazmat__media-col { position: static; }
	.hazmat__media { max-width: 520px; }

	.process__grid { grid-template-columns: minmax(0, 1fr); }
	.process__rail { position: static; margin-bottom: 44px; }
	.rail__num { display: none; }
	.rail__list { display: flex; flex-wrap: wrap; gap: 10px 22px; }
	.rail__track { display: none; }
	.rail { padding-left: 0; }
	.rail__item { padding: 6px 0; }
	.rail__item.is-active { transform: none; }

	.person__grid { grid-template-columns: minmax(0, 1fr); }
	.person__media { max-width: 460px; }

	.cta__body { grid-template-columns: minmax(0, 1fr); }

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

@media (max-width: 860px) {
	:root { --header-h: 66px; }

	.svc {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}
	.svc__num { padding-top: 0; }
	.services__list:hover .svc { opacity: 1; }
	.svc__media {
		display: block;
		aspect-ratio: 16 / 10;
		overflow: hidden;
		order: 5;
	}
	.svc__img { width: 100%; height: 100%; object-fit: cover; }
	.svc__body { order: 4; }

	.chain__row {
		grid-template-columns: 44px minmax(0, 1fr);
		row-gap: 10px;
		padding-left: 0;
	}
	.chain__cap { grid-column: 2; justify-self: start; }
	.chain__word { white-space: normal; }

	.interior__diptych { grid-template-columns: minmax(0, 1fr); gap: 34px; }
	.interior__frame--before { transform: none; }
	.interior__arrow { flex-direction: row; gap: 16px; }
	.interior__arrow-line { width: clamp(40px, 22vw, 120px); height: 1px; background: linear-gradient(90deg, transparent, var(--ink) 40%, var(--ink) 60%, transparent); }
	.interior__arrow .label { writing-mode: horizontal-tb; }

	.form__grid { grid-template-columns: minmax(0, 1fr); }

	.legal__row { grid-template-columns: minmax(0, 1fr); gap: 6px; }

	.hero__foot { flex-direction: column; align-items: flex-start; gap: 22px; }
	.hero__scroll { flex-direction: row; align-items: center; }
	.hero__scroll-line { width: 40px; height: 1px; }
	.hero__scroll-line::after { animation-name: scroll-tick-h; }

	@keyframes scroll-tick-h {
		0% { transform: translateX(-100%); }
		55% { transform: translateX(0); }
		100% { transform: translateX(100%); }
	}
}

@media (max-width: 600px) {
	.site-footer__inner { grid-template-columns: minmax(0, 1fr); gap: 34px; }
	.site-footer__bar { flex-direction: column; align-items: flex-start; }
	.matlist__item { grid-template-columns: 40px minmax(0, 1fr); }
	.figures__num { font-size: clamp(3rem, 16vw, 4.4rem); }
	.btn { padding: 16px 22px; width: 100%; justify-content: space-between; }
	.btn--sm { width: auto; }
	.hero__actions { gap: 10px; }
	.legal { padding: 22px 20px; }
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.reveal { opacity: 1; transform: none; }
	.reveal-lines .ln > span { transform: none; }
	.reveal-media .media__img { transform: none; opacity: 1; }
	.hero__img { animation: none; }
}

/* --- Druck ---------------------------------------------------------------- */
@media print {
	.site-header, .menu-panel, .scroll-progress, .to-top, .hero__scroll { display: none !important; }
	body { color: #000; background: #fff; }
	.section { padding: 24px 0; }
	.reveal, .reveal-lines .ln > span, .reveal-media .media__img { opacity: 1 !important; transform: none !important; }
}
