/* Markus Böker — Custom-CSS
 * Farben laut Skizze: #0B0B0B / #111 / #1A1A1A / #D4AF37 / #EDEDED
 * Typo: Cormorant Garamond (Display) + Lora (Body) via Google Fonts (self-hosted-ähnlich per @font-face optional).
 */

:root {
	--ink: #0B0B0B;
	--ink-2: #111111;
	--ink-3: #1A1A1A;
	--ink-4: #222222;
	--gold: #D4AF37;
	--gold-2: #E4C468;
	--gold-soft: rgba(212, 175, 55, 0.14);
	--cream: #EDEDED;
	--mute: #8A8A8A;
	--border: rgba(212, 175, 55, 0.22);
	--radius: 0;
	--maxw: 1240px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

*, *::before, *::after {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

html {
	scroll-behavior: smooth;
	background: var(--ink);
}

body {
	font-family: 'Lora', Georgia, serif;
	background: var(--ink);
	color: var(--cream);
	line-height: 1.55;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body > main { flex: 1 0 auto; }
body > .site-footer { flex-shrink: 0; }

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

a {
	color: inherit;
	text-decoration: none;
}

img, video, iframe {
	max-width: 100%;
	display: block;
}

/* Typography */

.display {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.05;
}

.italic {
	font-style: italic;
}

.eyebrow {
	font-family: 'Lora', Georgia, serif;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72rem;
	color: var(--gold);
	font-weight: 500;
}

.body-lead {
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(237, 237, 237, 0.86);
}

.text-mute { color: rgba(237, 237, 237, 0.6); }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }

.h1-hero { font-size: clamp(2.5rem, 6vw, 5.4rem); }
.h2-big  { font-size: clamp(2rem, 4.5vw, 4rem); }
.h2-med  { font-size: clamp(1.75rem, 3.5vw, 3rem); }

/* Layout */

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (min-width: 1024px) {
	.container { padding: 0 2.5rem; }
}

.section {
	padding: 6rem 0;
}

.section-tight { padding: 3rem 0; }
.section-lg    { padding: 8rem 0; }

.grid  { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

@media (min-width: 768px) {
	.grid-2 { grid-template-columns: 1fr 1fr; }
	.grid-3 { grid-template-columns: repeat(3, 1fr); }
	.grid-4 { grid-template-columns: repeat(4, 1fr); }
	.grid-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
	.grid-hero { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 4rem; }
}

.divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--ink);
	transition: background 0.4s ease, border-color 0.4s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	width: 100%;
}

@media (min-width: 900px) {
	.site-header {
		background: rgba(11, 11, 11, 0.72);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
}

.site-header.scrolled {
	background: var(--ink);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
	.site-header.scrolled { background: rgba(11, 11, 11, 0.92); }
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	min-height: 68px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	flex: 0 0 auto;
	border: 1px solid var(--gold);
	color: var(--gold);
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.05rem;
	line-height: 1;
	transition: background 0.35s ease, color 0.35s ease;
}

.brand:hover .brand-mark {
	background: var(--gold);
	color: var(--ink);
}

.brand-name {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--cream);
}

@media (max-width: 640px) {
	.brand-name { display: none; }
}

.nav {
	display: none;
	align-items: center;
	gap: 2rem;
	flex-wrap: nowrap;
}

@media (min-width: 900px) {
	.nav { display: flex; }
}

.nav-link {
	position: relative;
	font-size: 0.82rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(237, 237, 237, 0.72);
	padding: 0.5rem 0;
	transition: color 0.3s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav-link:hover, .nav-link.active {
	color: var(--cream);
}

.nav-link:hover::after, .nav-link.active::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	color: var(--cream);
	cursor: pointer;
	padding: 0.5rem;
	margin-right: 0;
	transition: color 0.25s ease;
}

.menu-toggle:hover { color: var(--gold); }

@media (min-width: 900px) {
	.menu-toggle { display: none; }
}

.menu-toggle-lines {
	position: relative;
	display: block;
	width: 24px;
	height: 16px;
}

.menu-toggle-lines span {
	position: absolute;
	left: 0;
	right: 0;
	height: 1.5px;
	background: currentColor;
	transform-origin: center;
	transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1),
	            opacity 0.2s ease,
	            top 0.3s ease 0.15s,
	            bottom 0.3s ease 0.15s;
}

.menu-toggle-lines span:nth-child(1) { top: 0; }
.menu-toggle-lines span:nth-child(2) { top: 50%; margin-top: -0.75px; }
.menu-toggle-lines span:nth-child(3) { bottom: 0; }

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span {
	transition: top 0.3s ease, bottom 0.3s ease,
	            transform 0.4s cubic-bezier(0.7, 0, 0.3, 1) 0.15s,
	            opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(1) {
	top: 50%;
	margin-top: -0.75px;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(3) {
	bottom: 50%;
	margin-bottom: -0.75px;
	transform: rotate(-45deg);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 68px;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--ink);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 2.5rem 1.5rem;
	transform: translateY(-8px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease, transform 0.28s ease;
	z-index: 45;
	flex-direction: column;
	gap: 1.25rem;
}

@media (max-width: 899px) {
	.mobile-menu {
		display: flex;
	}
}

.mobile-menu.open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu .nav-link {
	font-size: 1rem;
}

/* Buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.9rem 1.6rem;
	font-family: 'Lora', Georgia, serif;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 600;
	border: 1px solid transparent;
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

.btn-primary {
	background: var(--gold);
	color: var(--ink);
	border-color: var(--gold);
}

.btn-primary:hover {
	background: transparent;
	color: var(--gold);
	transform: translateY(-1px);
}

.btn-ghost {
	background: transparent;
	color: var(--cream);
	border-color: rgba(237, 237, 237, 0.22);
}

.btn-ghost:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-1px);
}

.btn-small { padding: 0.7rem 1.2rem; font-size: 0.72rem; }

/* Section Eyebrow-Row */

.eyebrow-row {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	color: var(--gold);
	margin-bottom: 1rem;
}

.eyebrow-row .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 3px var(--gold-soft);
}

/* Hero */

.hero {
	padding: 4rem 0 6rem;
}

@media (min-width: 1024px) {
	.hero {
		padding: 6rem 0 8rem;
	}
}

.hero-video {
	position: relative;
	aspect-ratio: 4 / 5;
	background: var(--ink-3);
	border: 1px solid rgba(255, 255, 255, 0.05);
	overflow: hidden;
	box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}

.hero-video::before,
.hero-video::after {
	content: '';
	position: absolute;
	pointer-events: none;
	border: 1px solid var(--gold);
	opacity: 0.4;
}

.hero-video::before {
	width: 6rem;
	height: 6rem;
	bottom: -1rem;
	left: -1rem;
}

.hero-video::after {
	width: 4rem;
	height: 4rem;
	top: -1rem;
	right: -1rem;
	opacity: 0.3;
}

.hero-video video,
.hero-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: var(--ink);
}

.play-badge {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
	border: 0;
	color: var(--gold);
	cursor: pointer;
	transition: opacity 0.4s ease;
}

.play-badge .ring {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	display: grid;
	place-items: center;
	background: rgba(0, 0, 0, 0.3);
	transition: background 0.35s ease;
}

.play-badge:hover .ring {
	background: var(--gold);
	color: var(--ink);
}

.play-badge svg {
	margin-left: 4px;
	transition: color 0.35s ease;
}

/* Trust Badges */

.trust-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: 3rem;
}

@media (min-width: 640px) {
	.trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
	.trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
}

.trust-item .bar {
	width: 3px;
	height: 1.4rem;
	background: var(--gold);
	margin-top: 0.35rem;
	flex: 0 0 auto;
}

.trust-item strong {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 500;
	font-size: 1.15rem;
	color: var(--cream);
	line-height: 1.15;
	display: block;
}

.trust-item span {
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(237, 237, 237, 0.5);
	display: block;
	margin-top: 0.35rem;
}

/* Portfolio Thumbs */

.thumbs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.thumbs-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
	.thumbs-grid.thumbs-featured { grid-template-columns: repeat(4, 1fr); }
}

.thumb {
	position: relative;
	overflow: hidden;
	background: var(--ink-3);
	border: 1px solid rgba(255, 255, 255, 0.05);
	aspect-ratio: 9 / 12;
	transition: border-color 0.4s ease, transform 0.4s ease;
	cursor: pointer;
	width: 100%;
	display: block;
	color: inherit;
}

.thumb:hover, .thumb:focus-visible {
	border-color: var(--border);
	transform: translateY(-2px);
	outline: none;
}

.thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.thumb-placeholder {
	display: grid;
	place-items: center;
	height: 100%;
	color: rgba(212, 175, 55, 0.28);
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 3rem;
}

.thumb-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.85) 100%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.thumb:hover .thumb-overlay { opacity: 1; }

.thumb-label {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 0.75rem;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
}

.thumb:hover .thumb-label {
	opacity: 1;
	transform: translateY(0);
}

.thumb-cat {
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	display: block;
}

.thumb-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.15rem;
	line-height: 1.15;
	color: var(--cream);
	max-width: 70%;
	display: block;
	margin-top: 0.15rem;
}

.thumb-arrow {
	color: var(--gold);
	font-size: 0.85rem;
}

/* Portfolio Filter */

.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 2rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	margin-top: 2rem;
}

.filter-btn {
	background: transparent;
	border: none;
	border-bottom: 1px solid transparent;
	padding: 0.35rem 0.15rem;
	color: rgba(237, 237, 237, 0.6);
	font-family: inherit;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 0.3s ease, border-color 0.3s ease;
}

.filter-btn:hover { color: var(--cream); }
.filter-btn.active {
	color: var(--gold);
	border-bottom-color: var(--gold);
}

/* Featured Row */

.featured-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.featured-head .featured-link {
	color: var(--gold);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.featured-head .featured-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Modal */

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(11, 11, 11, 0.85);
	backdrop-filter: blur(3px);
	z-index: 60;
	display: none;
	overflow-y: auto;
}

.modal-backdrop.open {
	display: block;
}

.modal-shell {
	min-height: 100%;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.modal-content {
	width: 100%;
	max-width: 1000px;
	background: var(--ink-2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.modal-content { grid-template-columns: 1fr 1fr; }
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 5;
	width: 2.5rem;
	height: 2.5rem;
	display: grid;
	place-items: center;
	background: transparent;
	color: var(--cream);
	border: 1px solid rgba(255, 255, 255, 0.15);
	cursor: pointer;
	transition: border-color 0.3s ease, color 0.3s ease;
}

.modal-close:hover {
	color: var(--gold);
	border-color: var(--gold);
}

.modal-media {
	background: var(--ink);
	aspect-ratio: 9/16;
	position: relative;
	overflow: hidden;
	max-height: 88vh;
	margin-inline: auto;
	width: 100%;
	max-width: min(100%, calc(88vh * 9 / 16));
}

@media (min-width: 900px) {
	.modal-media {
		aspect-ratio: auto;
		height: 100%;
		min-height: 640px;
		max-width: none;
	}
}

.modal-media iframe.ig-embed {
	position: absolute;
	top: -58px;
	left: 0;
	width: 100%;
	height: calc(100% + 210px);
	border: 0;
}

.modal-body {
	padding: 2rem 2rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.modal-actions {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

@media (min-width: 900px) {
	.modal-body { padding: 3rem; }
}

.meta-list {
	margin-top: 1.75rem;
	display: grid;
	gap: 0.75rem;
}

.meta-list > div {
	display: grid;
	grid-template-columns: 6.5rem 1fr;
	gap: 1rem;
	font-size: 0.9rem;
}

.meta-list dt {
	color: rgba(237, 237, 237, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.68rem;
	padding-top: 0.2rem;
}

.meta-list dd {
	color: rgba(237, 237, 237, 0.9);
}

.meta-list dd.result { color: var(--gold); }

/* Leistungen */

.service-row {
	display: grid;
	gap: 3rem;
	padding-top: 4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	margin-top: 5rem;
	align-items: start;
}

.service-row:first-of-type {
	margin-top: 3rem;
}

@media (min-width: 900px) {
	.service-row { grid-template-columns: 1fr 1fr; gap: 4rem; }
	.service-row--reverse > *:first-child { order: 2; }
	.service-row--reverse > *:last-child { order: 1; }
}

.service-box {
	background: var(--ink-2);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 2rem;
}

@media (min-width: 900px) {
	.service-box { padding: 2.5rem; }
}

.deliverable-list {
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.deliverable-list li {
	display: flex;
	gap: 0.75rem;
	color: rgba(237, 237, 237, 0.9);
}

.deliverable-list li::before {
	content: '◆';
	color: var(--gold);
	line-height: 1.6;
}

.service-meta {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 480px) {
	.service-meta { grid-template-columns: 1fr 1fr; }
}

.service-meta p:last-child {
	color: rgba(237, 237, 237, 0.75);
	font-size: 0.9rem;
}

/* Über */

.portrait {
	position: relative;
	aspect-ratio: 4/5;
	background: var(--ink-3);
	border: 1px solid rgba(255, 255, 255, 0.05);
	overflow: hidden;
}

.portrait::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	right: -1rem;
	width: 6rem;
	height: 6rem;
	border: 1px solid var(--gold);
	opacity: 0.4;
}

.stats-band {
	padding: 4rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item .stat-value {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	color: var(--gold);
	line-height: 1;
	display: block;
}

.stat-item .stat-label {
	margin-top: 0.75rem;
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(237, 237, 237, 0.55);
}

/* Kontakt Form */

.form-box {
	background: var(--ink-2);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 2rem;
}

@media (min-width: 900px) {
	.form-box { padding: 2.5rem; }
}

.field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1.5rem;
}

.field label {
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(237, 237, 237, 0.6);
	font-weight: 500;
}

.field input,
.field textarea {
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(237, 237, 237, 0.16);
	padding: 0.85rem 0.1rem;
	font-family: inherit;
	color: var(--cream);
	font-size: 1rem;
	transition: border-color 0.3s ease;
	width: 100%;
	resize: vertical;
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
	color: rgba(237, 237, 237, 0.32);
}

.honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
}

.form-status {
	margin-top: 1rem;
	font-size: 0.9rem;
}

.form-status.ok { color: var(--gold); }
.form-status.err { color: #ff8a7a; }

.form-success {
	border: 1px solid rgba(212, 175, 55, 0.45);
	background: var(--gold-soft);
	padding: 2rem;
}

.contact-list {
	list-style: none;
	margin-top: 2.25rem;
	display: grid;
	gap: 0.85rem;
}

.contact-list li {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	color: rgba(237, 237, 237, 0.85);
}

.contact-list a:hover {
	color: var(--gold);
}

.contact-icon {
	color: var(--gold);
	display: inline-block;
	width: 1.1rem;
	text-align: center;
}

/* Footer */

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: var(--ink);
	padding: 4rem 0 1.5rem;
	margin-top: 4rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 768px) {
	.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}

.footer-title {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}

.footer-list {
	list-style: none;
	display: grid;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: rgba(237, 237, 237, 0.7);
}

.footer-list a:hover { color: var(--gold); }

.footer-bottom {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.75rem;
	color: rgba(237, 237, 237, 0.4);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.footer-bottom a:hover { color: var(--gold); }

/* Utils */

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.5rem;
}

.cta-strip {
	padding: 6rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-strip .cta-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.cta-strip .cta-inner { grid-template-columns: 1.5fr 1fr; }
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }

/* Scroll-Reveal */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
	            transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
	will-change: opacity, transform;
	transition-delay: calc(var(--reveal-i, 0) * 70ms);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
}

/* Button-Micro-Interaktion: dezenter Glanz-Sweep */
.btn { position: relative; overflow: hidden; }
.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.14) 50%, transparent 75%);
	transform: translateX(-120%);
	transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
	pointer-events: none;
}
.btn:hover::before, .btn:focus-visible::before { transform: translateX(120%); }

/* Nav-Link Fokus wie Hover */
.nav-link:focus-visible::after { transform: scaleX(1); }

/* Brand-Mark subtil bewegen beim Hover */
.brand-mark { transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease; }
.brand:hover .brand-mark { transform: rotate(-4deg); }

::-webkit-scrollbar { width: 10px; background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border: 2px solid var(--ink); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-soft); }
