/* ==========================================================================
   NurNormal — Editorial Theme
   Tokens aus dem Design-Handoff "NurNormal Agentur" (Claude Design).
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
	font-family: 'Newsreader';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('../fonts/newsreader.woff2') format('woff2');
}
@font-face {
	font-family: 'Newsreader';
	font-style: italic;
	font-weight: 400 800;
	font-display: swap;
	src: url('../fonts/newsreader-italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Public Sans';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/public-sans.woff2') format('woff2');
}
@font-face {
	font-family: 'Public Sans';
	font-style: italic;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/public-sans-italic.woff2') format('woff2');
}

/* ---------- Design-Tokens ---------- */
:root {
	--bg: #FAFAF7;
	--ink: #141B33;
	--ink-80: rgba(20, 27, 51, 0.8);
	--ink-70: rgba(20, 27, 51, 0.7);
	--ink-55: rgba(20, 27, 51, 0.55);
	--ink-25: rgba(20, 27, 51, 0.25);
	--line: rgba(20, 27, 51, 0.14);
	--line-soft: rgba(20, 27, 51, 0.1);
	--paper: #ffffff;
	--red: #E4032E;
	--cream: #FAFAF7;
	--cream-72: rgba(250, 250, 247, 0.72);
	--sun: radial-gradient(circle at 38% 38%, #F4564A 0%, #EF4136 55%, #E73229 100%);

	--font-serif: 'Newsreader', Georgia, serif;
	--font-sans: 'Public Sans', system-ui, -apple-system, sans-serif;

	/* Material-Story: Marmor (Grund) + Blaustahl (dunkle Flächen) + Holz (Kugel) */
	--metal:
		repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 2px, rgba(255, 255, 255, 0) 2px 7px),
		radial-gradient(130% 170% at 18% -5%, rgba(122, 144, 196, 0.28) 0%, rgba(20, 27, 51, 0) 48%),
		radial-gradient(120% 150% at 90% 110%, rgba(64, 84, 138, 0.2) 0%, rgba(20, 27, 51, 0) 50%),
		linear-gradient(160deg, #1D2647 0%, #131B36 45%, #0C1226 100%);

	--container: 1280px;
	--gutter: 32px;
	--radius-card: 4px;
	--radius-pill: 999px;
	--speed: 0.2s;

	--shadow-card: 0 12px 32px rgba(20, 27, 51, 0.1);
	--shadow-card-ink: 0 16px 40px rgba(20, 27, 51, 0.3);
}

/* ---------- Basis ---------- */
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--bg) url('../img/marble.svg') center / cover fixed no-repeat;
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
::selection {
	background: var(--red);
	color: #ffffff;
}
img {
	max-width: 100%;
	height: auto;
}
a {
	touch-action: manipulation;
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

.accent {
	color: var(--red);
}
.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--red);
	flex: none;
}
.kicker {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-55);
}
.section-title {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(38px, 4.5vw, 56px);
	letter-spacing: -0.01em;
	line-height: 1.1;
}
.section-note {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-55);
}

/* Fokus-Ringe (Tastatur) */
:focus-visible {
	outline: 3px solid var(--red);
	outline-offset: 3px;
	border-radius: 2px;
}

/* Skip-Link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--ink);
	color: var(--cream);
	padding: 12px 24px;
	font-weight: 700;
	text-decoration: none;
}
.skip-link:focus {
	left: 16px;
	top: 16px;
}

/* ---------- Buttons & Links ---------- */
.btn {
	display: inline-block;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	padding: 17px 36px;
	border-radius: var(--radius-pill);
	transition: background var(--speed), color var(--speed), border-color var(--speed);
	white-space: nowrap;
	cursor: pointer;
}
.btn--ink {
	background: var(--metal);
	color: var(--cream);
}
.btn--ink:hover {
	background: var(--red);
}
.btn--red {
	background: var(--red);
	color: #ffffff;
	padding: 18px 38px;
}
.btn--red:hover {
	background: #ffffff;
	color: var(--ink);
}
.btn--ghost {
	border: 1.5px solid rgba(250, 250, 247, 0.4);
	color: var(--cream);
	font-weight: 600;
	padding: 18px 38px;
}
.btn--ghost:hover {
	border-color: var(--cream);
	background: var(--cream);
	color: var(--ink);
}
.link-underline {
	text-decoration: none;
	color: var(--ink);
	font-size: 16px;
	font-weight: 600;
	padding: 17px 8px;
	border-bottom: 2px solid var(--red);
	transition: color var(--speed);
	white-space: nowrap;
}
.link-underline:hover {
	color: var(--red);
}

/* ---------- Masthead ---------- */
.masthead {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250, 250, 247, 0.93);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-bottom: 2px solid var(--ink);
}
.masthead__inner {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.masthead__brand {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: var(--ink);
}
.masthead__logo {
	height: 58px;
	width: auto;
	display: block;
}
.masthead__claim {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-55);
	border-left: 1px solid rgba(20, 27, 51, 0.18);
	padding-left: 14px;
	white-space: nowrap;
}
.masthead__nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.2vw, 34px);
}
.nav-link {
	text-decoration: none;
	color: var(--ink);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	white-space: nowrap;
	padding: 12px 0;
	transition: color var(--speed);
}
.nav-link:hover {
	color: var(--red);
}
.nav-link--cta {
	background: var(--red);
	color: #ffffff;
	font-weight: 700;
	padding: 13px 26px;
	border-radius: var(--radius-pill);
	transition: background var(--speed);
}
.nav-link--cta:hover {
	background: var(--ink);
	color: #ffffff;
}

/* Mobile-Toggle */
.masthead__toggle {
	display: none;
	align-items: center;
	gap: 10px;
	background: none;
	border: 2px solid var(--ink);
	border-radius: var(--radius-pill);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 10px 18px;
	min-height: 44px;
	cursor: pointer;
}
.masthead__toggle-icon--close {
	display: none;
}
.masthead__toggle[aria-expanded="true"] .masthead__toggle-icon--open {
	display: none;
}
.masthead__toggle[aria-expanded="true"] .masthead__toggle-icon--close {
	display: block;
}

.mobile-nav {
	display: none;
	flex-direction: column;
	border-top: 1px solid var(--line);
	background: var(--bg);
	padding: 12px var(--gutter) 24px;
}
.mobile-nav__link {
	text-decoration: none;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 600;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}
.mobile-nav__link--cta {
	margin-top: 18px;
	border-bottom: none;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 700;
	background: var(--red);
	color: #ffffff;
	text-align: center;
	padding: 16px 24px;
	border-radius: var(--radius-pill);
}

/* ---------- Hero ---------- */
.hero {
	border-bottom: 1px solid var(--line);
}
.hero .container {
	padding-top: 56px;
}
.hero__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-bottom: 1px solid var(--line);
	padding-bottom: 14px;
}
.hero__stage {
	padding: 88px 0 96px;
	position: relative;
}
.hero__sun {
	position: absolute;
	top: 64px;
	right: 0;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: var(--sun);
	animation: sun-breathe 5.5s ease-in-out infinite alternate;
	will-change: transform;
}
@keyframes sun-breathe {
	from { transform: translateY(0) scale(1); }
	to   { transform: translateY(-18px) scale(1.1); }
}
.hero__title em {
	font-style: italic;
	font-weight: 500;
}
.hero__title .brand {
	font-style: italic;
	font-weight: 500;
	color: var(--red);
}

/* ---------- Wandernder Kreis (Orb) ----------
   Ein roter Kreis begleitet den Scroll durch alle Sektionen.
   Aktiv nur mit JS und ohne prefers-reduced-motion (.orb-active);
   sonst bleiben die statischen Kreise (hero__sun, sample__sun) sichtbar. */
.orb {
	position: absolute;
	top: 0;
	left: 0;
	width: 180px;
	height: 180px;
	z-index: 1;
	pointer-events: none;
	display: none;
	will-change: transform;
}
/* Die Kugel: rotierende Holz-Textur unter festem Lichtglanz = 3D-Roll-Illusion. */
.orb__ball {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	animation: orb-breathe 5.5s ease-in-out infinite alternate;
	box-shadow: 0 22px 44px rgba(20, 27, 51, 0.22);
}
.orb__texture {
	position: absolute;
	inset: -25%;
	background: url('../img/orb-wood.svg') center / cover no-repeat;
	will-change: transform;
}
.orb__shade {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background:
		radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.16) 16%, rgba(255, 255, 255, 0) 42%),
		radial-gradient(circle at 72% 84%, rgba(70, 6, 4, 0.45) 0%, rgba(70, 6, 4, 0) 55%);
	box-shadow:
		inset -16px -22px 42px rgba(90, 10, 6, 0.5),
		inset 10px 14px 26px rgba(255, 255, 255, 0.18);
}
@keyframes orb-breathe {
	from { transform: scale(1); }
	to   { transform: scale(1.12); }
}
.orb-active .orb {
	display: block;
}
.orb-active .hero__sun,
.orb-active .sample__sun {
	display: none;
}
/* Inhalte liegen über dem Orb, Sektionshintergründe darunter. */
.hero .container,
.mission__inner,
.tools,
.packages,
.hub,
.sample__card,
.site-footer__inner {
	position: relative;
	z-index: 2;
}
.hero__title {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(52px, 6.6vw, 92px);
	line-height: 1.05;
	letter-spacing: -0.018em;
	max-width: 17ch;
	text-wrap: balance;
	position: relative;
}
.hero__lede {
	margin-top: 48px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	max-width: 720px;
}
.hero__lede .dot {
	width: 14px;
	height: 14px;
	margin-top: 8px;
}
.hero__lede p {
	margin: 0;
	font-size: 20px;
	line-height: 1.6;
	color: var(--ink-80);
}
.hero__actions {
	margin-top: 48px;
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

/* ---------- Mission ---------- */
.mission {
	background: var(--metal);
	color: var(--cream);
}
.mission__inner {
	padding-top: 110px;
	padding-bottom: 110px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 56px;
	align-items: start;
}
.mission__label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--red);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	padding-top: 8px;
}
.mission__body {
	max-width: 860px;
}
.mission__title {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: clamp(34px, 4.2vw, 54px);
	line-height: 1.2;
	letter-spacing: -0.01em;
	text-wrap: balance;
}
.mission__cols {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.mission__cols p {
	margin: 0;
	font-size: 17px;
	line-height: 1.75;
	color: var(--cream-72);
}
.mission__cols strong {
	color: var(--cream);
}

/* ---------- Werkzeuge ---------- */
.tools {
	padding-top: 120px;
	padding-bottom: 40px;
}
.tools__head {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: end;
	border-bottom: 2px solid var(--ink);
	padding-bottom: 28px;
}
.tools__intro {
	margin: 0 0 6px;
	max-width: 440px;
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-70);
	justify-self: end;
}
.tools__list {
	display: grid;
	grid-template-columns: 1fr;
}
.tool-row {
	position: relative;
	display: grid;
	grid-template-columns: 120px 1.1fr 1.2fr auto;
	gap: 40px;
	align-items: start;
	padding: 48px 8px;
	border-bottom: 1px solid var(--line);
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
}
.tool-row:hover {
	background: var(--paper);
}
/* Linien zeichnen sich beim Reinscrollen von links (nur mit JS/Motion aktiv). */
.js-motion .tools__head {
	border-bottom-color: transparent;
}
.js-motion .tools__head::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: var(--ink);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.js-motion .tools__head.is-visible::after {
	transform: scaleX(1);
}
.tools__head {
	position: relative;
}
.js-motion .tool-row {
	border-bottom-color: transparent;
}
.js-motion .tool-row::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	background: var(--line);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--reveal-delay, 0s) + 0.25s);
}
.js-motion .tool-row.is-visible::after {
	transform: scaleX(1);
}
.tool-row__num {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 500;
	font-size: 44px;
	line-height: 1.15;
	color: var(--ink-25);
	transition: color 0.25s;
}
.tool-row:hover .tool-row__num {
	color: var(--red);
}
.tool-row__heading {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.tool-row__heading h3 {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 32px;
	line-height: 1.15;
}
.tool-row__tag {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--red);
}
.tool-row__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink-70);
}
.tool-row__arrow {
	font-size: 20px;
	color: var(--red);
	padding-top: 8px;
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.tool-row:hover .tool-row__arrow {
	transform: translateX(8px);
}

/* ---------- Pakete ---------- */
.packages {
	padding-top: 120px;
	padding-bottom: 40px;
}
.packages__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.packages__grid {
	margin-top: 56px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.package-card__heading {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.package-card__tag {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--red);
}
.package-card--lead {
	grid-column: 1 / -1;
}
@media (min-width: 861px) {
	.package-card.package-card--lead {
		display: grid;
		grid-template-columns: auto 1.1fr 1.2fr;
		gap: 18px 48px;
		align-items: start;
	}
	.package-card.package-card--lead .dot {
		margin-top: 12px;
	}
	.package-card.package-card--lead h3 {
		font-size: 34px;
	}
	.package-card.package-card--lead p {
		margin-top: 4px;
	}
	.package-card.package-card--lead .package-card__foot {
		grid-column: 1 / -1;
		margin-top: 10px;
	}
}
.package-card {
	background: var(--paper);
	border: 1px solid rgba(20, 27, 51, 0.12);
	border-radius: var(--radius-card);
	padding: 40px 34px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: border-color var(--speed), transform var(--speed), box-shadow var(--speed);
}
.package-card:hover {
	border-color: var(--ink);
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}
.package-card h3 {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 30px;
}
.package-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--ink-70);
}
.package-card__foot {
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid rgba(20, 27, 51, 0.12);
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}
.package-card__price {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 19px;
}
.package-card__cta {
	text-decoration: none;
	color: var(--red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color var(--speed);
}
.package-card__cta:hover {
	color: var(--ink);
}
.package-card .dot {
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.package-card:hover .dot {
	transform: scale(1.45);
}
.package-card__cta .arr {
	display: inline-block;
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.package-card:hover .package-card__cta .arr {
	transform: translateX(6px);
}
.package-card__flag {
	position: absolute;
	top: 42px;
	right: 34px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--red);
}
.package-card--featured {
	position: relative;
	background: var(--metal);
	color: var(--cream);
	border-color: var(--ink);
}
.package-card--featured p {
	color: var(--cream-72);
}
.package-card--featured .package-card__foot {
	border-top-color: rgba(250, 250, 247, 0.2);
}
.package-card--featured:hover {
	box-shadow: var(--shadow-card-ink);
}
.package-card__cta--light:hover {
	color: var(--cream);
}

/* ---------- Social-Hub ---------- */
.hub {
	padding-top: 120px;
	padding-bottom: 40px;
}
.hub__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	border-bottom: 2px solid var(--ink);
	padding-bottom: 28px;
}
.hub__grid {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.hub-tile {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hub-tile__media {
	display: block;
	aspect-ratio: 4 / 5;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-card);
	overflow: hidden;
	background: var(--paper);
	transition: transform var(--speed), box-shadow var(--speed);
}
.hub-tile__media:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(20, 27, 51, 0.12);
}
.hub-tile__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hub-tile__caption {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(20, 27, 51, 0.5);
}
.hub-tile__card {
	text-decoration: none;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 36px 32px;
	box-sizing: border-box;
	transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed), background var(--speed);
}
.hub-tile__card--ink {
	background: var(--metal);
	color: var(--cream);
	justify-content: space-between;
}
.hub-tile__card--ink:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card-ink);
}
.hub-tile__statement {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(26px, 2.6vw, 38px);
	line-height: 1.18;
	letter-spacing: -0.01em;
}
.hub-tile__kicker {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--red);
}
.hub-tile__card--paper {
	background: var(--paper);
	border: 1px solid var(--line-soft);
	color: var(--ink);
	justify-content: center;
	align-items: center;
	gap: 24px;
	text-align: center;
}
.hub-tile__card--paper:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(20, 27, 51, 0.12);
	border-color: var(--ink);
}
.hub-tile__claim {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(24px, 2.4vw, 34px);
	line-height: 1.25;
	letter-spacing: -0.01em;
	max-width: 12ch;
	text-wrap: balance;
}
.hub-tile__sun {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--sun);
}
.hub-tile__feed {
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-card);
	background: var(--paper);
	padding: 14px;
	overflow: hidden;
}
.hub-tile__card--dashed {
	background: transparent;
	border: 1.5px dashed rgba(20, 27, 51, 0.25);
	color: var(--ink);
	justify-content: center;
	align-items: center;
	gap: 18px;
	text-align: center;
}
.hub-tile__card--dashed:hover {
	border-color: var(--red);
	background: var(--paper);
}
.hub-tile__placeholder {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.4;
	color: rgba(20, 27, 51, 0.65);
	max-width: 16ch;
}

/* ---------- Sample-CTA ---------- */
.sample {
	padding-top: 120px;
	padding-bottom: 130px;
}
.sample__card {
	background: var(--metal);
	color: var(--cream);
	border-radius: 6px;
	padding: clamp(48px, 7vw, 96px) clamp(28px, 6vw, 80px);
	position: relative;
	overflow: hidden;
}
.sample__sun {
	position: absolute;
	bottom: -110px;
	right: -80px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: var(--sun);
}
.sample__content {
	position: relative;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.sample__kicker {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--red);
}
.sample__title {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(36px, 4.5vw, 58px);
	line-height: 1.12;
	letter-spacing: -0.01em;
	text-wrap: balance;
}
.sample__text {
	margin: 0;
	font-size: 18px;
	line-height: 1.7;
	color: var(--cream-72);
	max-width: 580px;
}
.sample__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 10px;
}

/* ---------- Anfrage-Formular ---------- */
.anfrage {
	padding-top: 56px;
	padding-bottom: 120px;
}
.anfrage__inner {
	max-width: 720px;
	margin: 0 auto;
}
.anfrage__title {
	margin: 48px 0 0;
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(40px, 5.5vw, 64px);
	line-height: 1.08;
	letter-spacing: -0.015em;
}
.anfrage__lede {
	margin: 20px 0 0;
	font-size: 18px;
	line-height: 1.65;
	color: var(--ink-70);
}
.anfrage__notice {
	margin-top: 36px;
	padding: 18px 22px;
	border-radius: var(--radius-card);
	font-size: 16px;
	line-height: 1.6;
}
.anfrage__notice--ok {
	background: var(--paper);
	border: 1.5px solid var(--ink);
}
.anfrage__notice--err {
	background: #FDEDEF;
	border: 1.5px solid var(--red);
}
.anfrage__form {
	margin-top: 44px;
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.anfrage__hp {
	position: absolute;
	left: -9999px;
	margin: 0;
}
.anfrage__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}
.anfrage__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.anfrage__field label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.anfrage__field input,
.anfrage__field textarea {
	font-family: var(--font-sans);
	font-size: 16px;
	color: var(--ink);
	background: var(--paper);
	border: 1.5px solid rgba(20, 27, 51, 0.25);
	border-radius: var(--radius-card);
	padding: 14px 16px;
	min-height: 24px;
	transition: border-color var(--speed);
}
.anfrage__field input:hover,
.anfrage__field textarea:hover {
	border-color: rgba(20, 27, 51, 0.5);
}
.anfrage__field input:focus-visible,
.anfrage__field textarea:focus-visible {
	outline: 3px solid var(--red);
	outline-offset: 1px;
	border-color: var(--red);
}
.anfrage__hint {
	font-size: 13px;
	color: var(--ink-55);
}
.anfrage__submit {
	align-self: flex-start;
	border: none;
	font-family: var(--font-sans);
	cursor: pointer;
}
.anfrage__privacy {
	margin: 0;
	font-size: 13px;
	color: var(--ink-55);
}
.anfrage__privacy a {
	color: var(--ink);
}
@media (max-width: 640px) {
	.anfrage__row {
		grid-template-columns: 1fr;
	}
}

/* ---------- Footer ---------- */
.site-footer {
	border-top: 2px solid var(--ink);
	background: var(--bg);
}
.site-footer__inner {
	padding-top: 48px;
	padding-bottom: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 14px;
}
.site-footer__brand img {
	height: 52px;
	width: auto;
}
.site-footer__copy {
	font-size: 13px;
	color: var(--ink-55);
	white-space: nowrap;
}
.site-footer__nav {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.site-footer__link {
	text-decoration: none;
	color: rgba(20, 27, 51, 0.6);
	font-size: 13px;
	font-weight: 600;
	padding: 12px 0;
	transition: color var(--speed);
}
.site-footer__link:hover {
	color: var(--red);
}
.site-footer__link--legal {
	font-weight: 400;
}
.site-footer__link--legal:hover {
	color: var(--ink);
}

/* ==========================================================================
   Responsive — der Entwurf ist Desktop-first; hier die Mobile-Ableitung.
   Breakpoints: 1024 / 860 / 640
   ========================================================================== */

@media (max-width: 1024px) {
	.tool-row {
		grid-template-columns: 72px 1fr auto;
		grid-template-areas:
			"num heading arrow"
			"num text    text";
		gap: 16px 24px;
	}
	.tool-row__num { grid-area: num; font-size: 36px; }
	.tool-row__heading { grid-area: heading; }
	.tool-row__text { grid-area: text; }
	.tool-row__arrow { grid-area: arrow; }

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

@media (max-width: 860px) {
	.masthead__nav {
		display: none;
	}
	.masthead__toggle {
		display: inline-flex;
	}
	.mobile-nav.is-open {
		display: flex;
	}
	.masthead__claim {
		display: none;
	}

	.hero__stage {
		padding: 64px 0 72px;
	}
	.hero__sun {
		width: 120px;
		height: 120px;
		top: auto;
		bottom: 24px;
		opacity: 0.9;
	}

	.mission__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.mission__label {
		writing-mode: horizontal-tb;
		transform: none;
		padding-top: 0;
	}
	.mission__cols {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.tools__head {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.tools__intro {
		justify-self: start;
	}
	.tools,
	.packages,
	.hub,
	.sample {
		padding-top: 88px;
	}
	.sample {
		padding-bottom: 96px;
	}

	.packages__grid {
		grid-template-columns: 1fr;
		margin-top: 40px;
	}
}

@media (max-width: 640px) {
	:root {
		--gutter: 20px;
	}
	.hero__topline {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.hero__lede {
		margin-top: 36px;
		gap: 16px;
	}
	.hero__lede p {
		font-size: 18px;
	}
	.hero__actions {
		margin-top: 36px;
	}
	.btn {
		white-space: normal;
		text-align: center;
	}

	.tool-row {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"num    arrow"
			"heading heading"
			"text   text";
		padding: 36px 4px;
	}
	.tool-row__heading h3 {
		font-size: 26px;
	}

	.hub__grid {
		grid-template-columns: 1fr;
	}

	.sample__sun {
		width: 240px;
		height: 240px;
		bottom: -130px;
		right: -100px;
	}

	.site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}

/* ---------- Einblendung beim Laden & Scrollen ---------- */
.hero__stage > * {
	animation: rise-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__stage > :nth-child(2) { animation-delay: 0.05s; }
.hero__stage > :nth-child(3) { animation-delay: 0.13s; }
.hero__stage > :nth-child(4) { animation-delay: 0.21s; }
@keyframes rise-in {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}
.hero__stage > .hero__sun {
	/* Der Kreis kombiniert Einblendung und Atmen über die Keyframes unten. */
	animation: sun-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both, sun-breathe 7s 0.9s ease-in-out infinite alternate;
}
@keyframes sun-enter {
	from { opacity: 0; transform: scale(0.85); }
	to   { opacity: 1; transform: scale(1); }
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.45s ease-out, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Wort-für-Wort-Einblendung (z. B. Mission-Headline) */
.words .w {
	display: inline-block;
	opacity: 0;
	transform: translateY(0.55em);
	transition: opacity 0.4s ease-out, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: calc(var(--wi) * 45ms);
}
.words.is-visible .w {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
	.package-card:hover,
	.hub-tile__media:hover,
	.hub-tile__card:hover {
		transform: none;
	}
	.hero__sun {
		animation: none;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}


/* ---------- Mobile-Feinschliff: Headlines & Formular (Handy) ---------- */
@media (max-width: 640px) {
	.hero__title {
		font-size: clamp(32px, 9vw, 46px);
		line-height: 1.1;
		max-width: none;
	}
	.section-title {
		font-size: clamp(30px, 8vw, 40px);
	}
	.mission__title {
		font-size: clamp(28px, 7.5vw, 40px);
	}
	.anfrage__title {
		font-size: clamp(28px, 7.5vw, 42px);
		margin-top: 24px;
	}
	.sample__title {
		font-size: clamp(28px, 7.5vw, 42px);
	}
	.hero__title,
	.section-title,
	.mission__title,
	.anfrage__title,
	.sample__title,
	.tool-row__heading h3 {
		overflow-wrap: break-word;
		hyphens: auto;
	}
	.anfrage {
		padding-bottom: 84px;
	}
	.anfrage__form {
		margin-top: 32px;
	}
}


/* Orb-Overflow zähmen: Kugel wird relativ zum Body positioniert und horizontal geclippt (verhindert seitliches Scrollen). */
body {
	position: relative;
}
