/* =========================================================
   MOEBELFORMWERK - home.css (Startseite)
   ========================================================= */

/* ---------- Hero ---------- */
.mfw-hero {
	position: relative;
	isolation: isolate;
	background: var(--mfw-ink);
	color: var(--mfw-ivory);
	overflow: hidden;
	min-height: min(88vh, 900px);
	display: flex;
	align-items: flex-end;
}

.mfw-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.mfw-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.62;
	animation: mfw-hero-zoom 14s var(--mfw-ease) forwards;
}

@keyframes mfw-hero-zoom {
	from {
		transform: scale(1.06);
	}

	to {
		transform: scale(1);
	}
}

.mfw-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(28, 27, 25, 0.55) 0%, rgba(28, 27, 25, 0.62) 40%, rgba(28, 27, 25, 0.88) 100%);
}

.mfw-hero__inner {
	width: 100%;
	padding-block: clamp(5.5rem, 14vw, 9rem) clamp(3rem, 7vw, 5.5rem);
}

.mfw-hero__content {
	max-width: 900px;
}

.mfw-hero .mfw-eyebrow {
	color: var(--mfw-taupe);
}

.mfw-hero h1 {
	color: var(--mfw-ivory);
	font-size: clamp(2.6rem, 1.4rem + 5vw, 5.2rem);
	line-height: 1.04;
	margin-bottom: 0.45em;
}

.mfw-hero p {
	color: rgba(247, 244, 238, 0.82);
	font-size: var(--mfw-step-1);
	max-width: 56ch;
}

.mfw-hero__meta {
	margin-top: clamp(2.6rem, 6vw, 4.5rem);
	padding-top: 1.6rem;
	border-top: 1px solid rgba(247, 244, 238, 0.22);
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 2.5rem;
	font-size: var(--mfw-step--1);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(247, 244, 238, 0.62);
}

.mfw-hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}

.mfw-hero__meta span::before {
	content: "";
	width: 5px;
	height: 5px;
	background: var(--mfw-gold);
	transform: rotate(45deg);
	flex: none;
}

/* ---------- Intro / Marke ---------- */
.mfw-intro__headline {
	font-size: clamp(1.9rem, 1rem + 3.3vw, 3.4rem);
	line-height: 1.14;
	max-width: 20ch;
	margin-bottom: 0;
}

.mfw-intro__text {
	display: grid;
	gap: 1.4rem;
	align-self: center;
}

.mfw-intro__signature {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 0.6rem;
	font-size: var(--mfw-step--1);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mfw-muted);
}

.mfw-intro__signature::before {
	content: "";
	width: 42px;
	height: 1px;
	background: var(--mfw-gold);
}

.mfw-intro__media {
	position: relative;
	margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

@media (min-width: 900px) {
	.mfw-intro__grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: clamp(2.5rem, 6vw, 6rem);
		align-items: start;
	}

	.mfw-intro__media {
		margin-top: 3.5rem;
	}
}

/* ---------- Ueber uns / Kennzahlen ---------- */
.mfw-about__media {
	position: relative;
}

.mfw-about__badge {
	position: absolute;
	right: -1px;
	bottom: -1px;
	background: var(--mfw-ivory);
	padding: 1.2rem 1.6rem;
	max-width: 260px;
}

.mfw-about__badge span {
	display: block;
	font-family: var(--mfw-font-display);
	font-size: var(--mfw-step-2);
	color: var(--mfw-ink);
	line-height: 1;
}

.mfw-about__badge small {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mfw-muted);
}
