/* Zeilenabstand für violett-box */
.violett-box p, .violett-box a {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	line-height: 1.7;
}
/* Utility-Klasse für violetten Rahmen */
.violett-box {
	border-radius: 16px;
	padding: 16px;
	display: inline-block;
	background: transparent;
}
.contact-section {
	position: relative;
}

/* Entferne absolute Positionierung für bessere Responsivität */
.contact-card {
	position: static;
	right: auto;
	bottom: auto;
	transform: none;
	z-index: auto;
}
/* Grüner transparenter Hintergrund für Kontaktkarte */
.contact-card {
	background: rgba(142, 167, 106, 0.8); /* grüner Farbton mit 80% Deckkraft */
	border-radius: 18px;
	padding: 24px;
	border: 3px solid #b59fd7;
}

:root {
	--bg: #eef3e4;
	--surface: rgba(245, 242, 251, 0.78);
	--surface-strong: #f6f8f1;
	--text: #1a1712;
	--muted: #5d5347;
	--accent: #b59fd7;
	--accent-dark: #8ea76a;
	--line: rgba(26, 23, 18, 0.12);
	--shadow: 0 24px 60px rgba(91, 75, 124, 0.14);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(193, 215, 159, 0.48), transparent 30%),
		radial-gradient(circle at 85% 15%, rgba(181, 159, 215, 0.38), transparent 26%),
		linear-gradient(180deg, #f4f7ee 0%, #ebe4f6 100%);
}

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

.page-shell {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 24px 0 56px;
}

.site-header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 20px 24px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: rgba(247, 250, 241, 0.72);
	backdrop-filter: blur(16px);
	box-shadow: var(--shadow);
}

.brand-block {
	display: flex;
	align-items: center;
	justify-self: end;
}

.nav-center {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-self: start;
	margin-left: 300px;
}

.nav-center-image {
	display: block;
	height: 172px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	margin-left: 80px;
}

.brand-logo-link {
	display: inline-flex;
	align-items: center;
	width: fit-content;
}

.brand-logo {
	display: block;
	height: 90px;
	width: auto;
	object-fit: contain;
	margin-top: -20px;
}

.section-label,
.showcase-tag {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent-dark);
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font-weight: 600;
	color: var(--muted);
	justify-self: end;
}

.site-nav a {
	position: relative;
	padding: 8px 16px;
	border-radius: 16px;
	background: linear-gradient(135deg, #b59fd7 0%, #c1d79f 100%);
	color: #fffaf2;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(181, 159, 215, 0.28);
}

main {
	display: grid;
	gap: 28px;
	margin-top: 28px;
}

.hero-section,
.services-section,
.showcase-section,
.contact-section {
	border: 1px solid var(--line);
	border-radius: 32px;
	background: var(--surface);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
}

.hero-section {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
	gap: 24px;
	padding: 56px;
	overflow: hidden;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2 {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.hero-copy h1 {
	max-width: 10ch;
	font-size: clamp(2.96rem, 6.64vw, 5.5rem);
}

.hero-text,
.section-heading,
.contact-copy p,
.service-card p,
.showcase-card p,
.contact-card {
	color: var(--muted);
}

.hero-text {
	max-width: 54ch;
	margin: 24px 0 0;
	font-size: 1.08rem;
	line-height: 1.8;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button-primary {
	color: #fffaf2;
	background: linear-gradient(135deg, #b59fd7 0%, #c1d79f 100%);
	box-shadow: 0 18px 30px rgba(181, 159, 215, 0.28);
}

.button-secondary {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.52);
}

.hero-panel {
	display: grid;
	align-content: start;
	gap: 16px;
	padding: 24px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(245, 249, 237, 0.94) 0%, rgba(236, 228, 247, 0.9) 100%);
	border: 1px solid rgba(26, 23, 18, 0.08);
}

.hero-panel-compact {
	align-content: center;
}

.hero-panel-compact .hero-card {
	margin: 0;
}

.hero-stat,
.hero-card {
	padding: 20px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.58);
	border: none;
}

.hero-stat span,
.hero-card span {
	display: block;
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 1.045rem;
}

.hero-stat strong,
.hero-card strong {
	font-size: 1.265rem;
	line-height: 1.4;
}

.services-section,
.showcase-section,
.contact-section {
	padding: 40px;
}

.section-heading {
	display: grid;
	gap: 14px;
	margin-bottom: 28px;
}

.section-heading h2 {
	max-width: 16ch;
	font-size: clamp(2rem, 5vw, 3.4rem);
}

.contact-copy h2 {
	max-width: 16ch;
	font-size: clamp(2.52rem, 5.85vw, 4.5rem);
}

.service-grid,
.showcase-grid {
	display: grid;
	gap: 18px;
}

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

.service-card,
.showcase-card {
	padding: 24px;
	border-radius: 24px;
	background: var(--surface-strong);
	border: 1px solid rgba(26, 23, 18, 0.08);
}

.contact-card {
	border-radius: 20px;
	background: var(--surface-strong);
	border: 1px solid rgba(26, 23, 18, 0.08);
}

.service-card h3,
.showcase-card h3 {
	margin: 0 0 12px;
	font-size: 1.35rem;
}

.service-card p,
.showcase-card p,
.contact-copy p,
.contact-card p,
.contact-card a {
	margin: 0;
	line-height: 1.7;
}

.showcase-grid {
	grid-template-columns: 1.3fr 1fr 1fr;
}

.showcase-card {
	display: grid;
	align-content: end;
	min-height: 260px;
	background:
		linear-gradient(160deg, rgba(255, 250, 242, 0.95), rgba(245, 233, 212, 0.9)),
		linear-gradient(135deg, rgba(187, 90, 54, 0.16), rgba(69, 99, 85, 0.16));
}

.showcase-card-large {
	min-height: 360px;
}

.contact-section {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
	gap: 24px;
	padding: 56px;
	align-items: center;
}

.contact-card {
	display: grid;
	gap: 12px;
	align-content: center;
	padding: 20px;
	width: max-content;
	justify-self: center;
	align-self: center;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(26, 23, 18, 0.08);
}

.contact-card p {
	font-size: 0.95rem;
}

.contact-card a {
	font-weight: 700;
	font-size: 0.9rem;
}

.contact-legal-link-wrap {
	display: flex;
	justify-content: flex-end;
	justify-self: stretch;
	width: 100%;
	text-align: right;
	padding: 12px 12px 0;
}

.contact-legal-link {
	color: #000000;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.4;
}

.legal-section {
	padding: 56px;
}

.legal-stack {
	display: grid;
	gap: 24px;
}

.legal-card {
	padding: 28px;
	border-radius: 24px;
	background: var(--surface-strong);
	border: 1px solid rgba(26, 23, 18, 0.08);
	color: var(--muted);
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: 1rem;
	box-shadow: 0 18px 40px rgba(91, 75, 124, 0.08);
}

.legal-card h2,
.legal-card h3 {
	margin: 0 0 12px;
	color: var(--text);
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	line-height: 1.1;
}

.legal-card h2 {
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
}

.legal-card h3 {
	font-size: 1.35rem;
}

.legal-card p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.8;
}

.legal-card a {
	font-weight: 700;
}

@media (max-width: 920px) {
	.site-header,
	.hero-section,
	.contact-section,
	.service-grid,
	.showcase-grid {
		grid-template-columns: 1fr;
	}

	.site-header {
		display: grid;
		justify-items: center;
		gap: 14px;
	}

	.site-nav,
	.brand-block {
		justify-self: center;
	}

	.nav-center {
		gap: 8px;
	}

	.hero-section {
		padding: 36px 24px;
	}

	.services-section,
	.showcase-section,
	.contact-section,
	.legal-section {
		padding: 32px 24px;
	}

	.section-heading h2,
	.contact-copy h2,
	.hero-copy h1 {
		max-width: none;
	}
}

@media (max-width: 640px) {
	.page-shell {
		width: min(100% - 20px, 1180px);
		padding-top: 12px;
	}

	.site-header {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas: "nav logo";
		justify-items: stretch;
		align-items: center;
		gap: 12px;
		padding: 18px;
	}

	.brand-block {
		grid-area: logo;
		justify-self: end;
	}

	.nav-center {
		grid-area: nav;
		min-width: 0;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 4px;
	}

	.nav-center-image {
		height: auto;
		max-width: 100%;
	}

	.site-nav {
		display: none;
	}

	.brand-logo {
		height: 46px;
	}

	.hero-text {
		font-size: 1rem;
	}

	.button {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.page-shell {
		width: min(100% - 20px, 1180px);
		padding-top: 12px;
	}

	.site-header {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas: "nav logo";
		justify-items: stretch;
		align-items: center;
		gap: 12px;
		padding: 18px;
	}

	.brand-block {
		grid-area: logo;
		justify-self: end;
	}

	.nav-center {
		grid-area: nav;
		min-width: 0;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 4px;
	}

	.nav-center-image {
		height: auto;
		max-width: 100%;
	}

	.site-nav {
		display: flex;
		flex-direction: column;
		gap: 8px;
		width: 100%;
		background: none;
		box-shadow: none;
		padding: 0;
		margin: 0;
		align-items: flex-start;
	}

	.brand-logo {
		height: 46px;
	}

	.hero-text {
		font-size: 1rem;
	}

	.button {
		width: 100%;
	}
}
/* Spezielle Anpassungen für sehr kleine Bildschirme (z.B. iPhone SE 2) */
@media (max-width: 400px) {
  .hero-section,
	.contact-section,
	.legal-section {
    grid-template-columns: 1fr !important;
    padding: 16px 4px !important;
    gap: 12px !important;
  }
  .hero-panel,
  .contact-card {
    padding: 12px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    margin: 0 auto 8px auto;
  }
  .contact-card {
    position: static !important;
    transform: none !important;
    right: auto !important;
    bottom: auto !important;
    justify-self: stretch !important;
    align-self: stretch !important;
  }
  .contact-section {
    align-items: stretch !important;
  }
  .hero-copy h1,
  .contact-copy h2 {
    font-size: 1.4rem !important;
    max-width: 100% !important;
    word-break: break-word;
  }
  .nav-center {
    margin-left: 0 !important;
  }
  .nav-center-image {
    margin-left: 0 !important;
    height: 60px !important;
  }
}
