/*
Theme Name: M13 Event Theme
Theme URI: https://teamm13.de
Author: Team Nox für Maria Valentin
Author URI: https://teamm13.de
Description: Professionelles Block Theme für Team M13 Event-Service Eifel. Elegantes Roségold-Design mit Cormorant Garamond, Raleway und Lora.
Version: 1.0.3
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: Proprietary
License URI: https://teamm13.de
Text Domain: m13-event-theme
Tags: block-theme, one-page, events, wedding, elegant
*/

/* ==========================================================================
   CSS Custom Properties (Design System)
   ========================================================================== */
:root {
	/* Brand Colors */
	--blush:              hsl(340 50% 88%);
	--blush-deep:         hsl(340 40% 75%);
	--gold:               hsl(38 60% 55%);
	--gold-light:         hsl(38 50% 80%);
	--cream:              hsl(40 30% 96%);
	--rose-mist:          hsl(340 30% 92%);

	/* Semantic Colors */
	--background:         hsl(340 30% 98%);
	--foreground:         hsl(340 20% 20%);
	--primary:            hsl(340 45% 65%);
	--primary-foreground: hsl(0 0% 100%);
	--muted:              hsl(340 20% 95%);
	--muted-foreground:   hsl(340 10% 45%);
	--border:             hsl(340 25% 90%);
	--card:               hsl(340 40% 97%);
	--input:              hsl(340 25% 90%);
	--ring:               hsl(340 45% 65%);

	/* Spacing */
	--radius:             0.75rem;

	/* Layout */
	--content-width:      1200px;
	--wide-width:         1400px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background-color: hsl(340 30% 98%);
	color: hsl(340 20% 20%);
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

/* ==========================================================================
   Typography
   ========================================================================== */
.font-display,
h1, h2, h3, h4, h5, h6 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	line-height: 1.2;
}

.font-body {
	font-family: 'Raleway', sans-serif;
}

.font-accent {
	font-family: 'Lora', serif;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.wp-container,
.m13-container {
	max-width: var(--content-width);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.m13-container--wide {
	max-width: var(--wide-width);
}

/* ==========================================================================
   Section Padding
   ========================================================================== */
.m13-section {
	padding-block: 6rem;
}

@media (max-width: 768px) {
	.m13-section {
		padding-block: 4rem;
	}
}

/* ==========================================================================
   Color Utilities
   ========================================================================== */
.bg-background    { background-color: var(--background); }
.bg-foreground    { background-color: var(--foreground); }
.bg-primary       { background-color: var(--primary); }
.bg-card          { background-color: var(--card); }
.bg-muted         { background-color: var(--muted); }
.bg-blush         { background-color: var(--blush); }
.bg-rose-mist     { background-color: var(--rose-mist); }

.text-foreground      { color: var(--foreground); }
.text-primary         { color: var(--primary); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-gold            { color: var(--gold); }
.text-primary-foreground { color: var(--primary-foreground); }

/* ==========================================================================
   Gradient Backgrounds
   ========================================================================== */
.blush-gradient {
	background: linear-gradient(
		135deg,
		var(--rose-mist) 0%,
		var(--blush) 50%,
		var(--cream) 100%
	);
}

.blush-gradient-circle {
	background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
}

/* ==========================================================================
   Watercolor Divider
   ========================================================================== */
.watercolor-divider {
	width: 4rem;
	height: 2px;
	background: linear-gradient(90deg, var(--gold) 0%, var(--blush-deep) 100%);
	border-radius: 9999px;
	margin-inline: auto;
}

/* ==========================================================================
   Card Hover
   ========================================================================== */
.card-hover {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px hsl(340 30% 60% / 0.12);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes scroll-bounce {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(8px); }
}

.animate-fade-up {
	animation: fade-up 0.8s ease-out forwards;
}

.animate-fade-in {
	animation: fade-in 1s ease-out forwards;
}

/* Intersection-Observer-gesteuerte Animationen */
.m13-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.m13-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.m13-animate-delay-1 { transition-delay: 0.1s; }
.m13-animate-delay-2 { transition-delay: 0.2s; }
.m13-animate-delay-3 { transition-delay: 0.3s; }
.m13-animate-delay-4 { transition-delay: 0.4s; }
.m13-animate-delay-5 { transition-delay: 0.5s; }
.m13-animate-delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.m13-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: hsl(340 30% 98% / 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid hsl(340 25% 90% / 0.4);
	transition: background-color 0.3s ease;
}

.m13-navbar__inner {
	max-width: var(--content-width);
	margin-inline: auto;
	padding-inline: 1.5rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.m13-navbar__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.m13-navbar__logo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.m13-navbar__brand-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	color: var(--foreground);
	font-weight: 400;
}

.m13-navbar__links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.m13-navbar__links a {
	font-family: 'Raleway', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--muted-foreground);
	transition: color 0.2s ease;
	text-decoration: none;
}

.m13-navbar__links a:hover {
	color: var(--foreground);
}

.m13-navbar__toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.25rem;
	color: var(--foreground);
}

.m13-navbar__mobile {
	display: none;
	background-color: var(--background);
	border-bottom: 1px solid var(--border);
	padding: 1.5rem;
}

.m13-navbar__mobile.is-open {
	display: block;
}

.m13-navbar__mobile a {
	display: block;
	font-family: 'Raleway', sans-serif;
	font-size: 0.875rem;
	color: var(--muted-foreground);
	padding-block: 0.5rem;
	transition: color 0.2s ease;
	text-decoration: none;
}

.m13-navbar__mobile a:hover {
	color: var(--foreground);
}

@media (max-width: 768px) {
	.m13-navbar__links {
		display: none;
	}

	.m13-navbar__toggle {
		display: flex;
	}
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.m13-hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-bottom: 8rem;
}

.m13-hero__bg {
	position: absolute;
	inset: 0;
}

.m13-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.m13-hero__overlay {
	position: absolute;
	inset: 0;
	background-color: hsl(340 30% 98% / 0.4);
}

.m13-hero__gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 15rem;
	background: linear-gradient(to top, var(--background), hsl(340 30% 98% / 0.6), transparent);
}

.m13-hero__content {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 48rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
	padding-top: 65px;
}

.logged-in.admin-bar .m13-hero__content,
.admin-bar .m13-hero__content {
    padding-top: calc(32px + 65px);
}

.m13-hero__logo {
	width: 9rem;
	height: 9rem;
	border-radius: 50%;
	object-fit: cover;
	margin-inline: auto;
	margin-bottom: 2rem;
	box-shadow: 0 20px 40px hsl(340 30% 60% / 0.2);
}

@media (min-width: 768px) {
	.m13-hero__logo {
		width: 11rem;
		height: 11rem;
	}
}

.m13-hero__tagline {
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--muted-foreground);
	margin-bottom: 1rem;
}

.m13-hero__headline {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.25rem, 6vw, 4.5rem);
	font-weight: 300;
	color: var(--foreground);
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

.m13-hero__headline em {
	font-style: italic;
	font-weight: 500;
	color: var(--primary);
}

.m13-hero__lead {
	font-family: 'Lora', serif;
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--muted-foreground);
	line-height: 1.7;
	max-width: 36rem;
	margin-inline: auto;
	margin-bottom: 2.5rem;
}

.m13-hero__cta {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
	.m13-hero__cta {
		flex-direction: row;
	}
}

.m13-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: 9999px;
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-weight: 600;
}

.m13-btn--primary {
	background-color: var(--primary);
	color: var(--primary-foreground);
}

.m13-btn--primary:hover {
	background-color: var(--blush-deep);
}

.m13-btn--outline {
	background-color: transparent;
	color: var(--foreground);
	border: 2px solid var(--gold);
}

.m13-btn--outline:hover {
	background-color: var(--gold-light);
}

.m13-hero__sub {
	font-family: 'Raleway', sans-serif;
	font-size: 0.7rem;
	color: var(--muted-foreground);
	letter-spacing: 0.05em;
}

.m13-scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: scroll-bounce 2s ease-in-out infinite;
}

.m13-scroll-indicator__line {
	width: 1px;
	height: 3rem;
	background-color: hsl(340 45% 65% / 0.4);
	margin-inline: auto;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.m13-services {
	position: relative;
	z-index: 10;
	margin-top: -6rem;
	background-color: var(--background);
	border-radius: 1.5rem 1.5rem 0 0;
	padding-block: 6rem;
}

.m13-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.m13-section-label {
	font-family: 'Raleway', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.75rem;
	display: block;
}

.m13-section-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 300;
	color: var(--foreground);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.m13-section-title em {
	font-style: italic;
	color: var(--primary);
}

.m13-section-desc {
	font-family: 'Raleway', sans-serif;
	font-size: 0.875rem;
	color: var(--muted-foreground);
	max-width: 40rem;
	margin-inline: auto;
	line-height: 1.7;
}

.m13-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

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

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

.m13-service-card {
	padding: 2rem;
	border-radius: 1rem;
	background-color: var(--card);
	border: 1px solid hsl(340 25% 90% / 0.5);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m13-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px hsl(340 30% 60% / 0.1);
}

.m13-service-card__icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	margin-bottom: 1.25rem;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.m13-service-card:hover .m13-service-card__icon {
	transform: scale(1.1);
}

.m13-service-card__icon svg {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--primary);
	stroke: var(--primary);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.m13-service-card__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 0.75rem;
}

.m13-service-card__desc {
	font-family: 'Raleway', sans-serif;
	font-size: 0.8125rem;
	color: var(--muted-foreground);
	line-height: 1.7;
}

/* ==========================================================================
   Events Section
   ========================================================================== */
.m13-events {
	background: linear-gradient(135deg, var(--rose-mist) 0%, var(--blush) 50%, var(--cream) 100%);
	padding-block: 6rem;
}

.m13-events__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

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

.m13-event-card {
	border-radius: 1rem;
	overflow: hidden;
	background-color: var(--background);
	box-shadow: 0 4px 20px hsl(340 30% 60% / 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m13-event-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px hsl(340 30% 60% / 0.15);
}

.m13-event-card__img-wrap {
	position: relative;
	height: 16rem;
	overflow: hidden;
}

.m13-event-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.m13-event-card:hover .m13-event-card__img {
	transform: scale(1.05);
}

.m13-event-card__overlay {
	position: absolute;
	inset: 0;
	background-color: hsl(340 20% 20% / 0.1);
	transition: background-color 0.5s ease;
}

.m13-event-card:hover .m13-event-card__overlay {
	background-color: hsl(340 20% 20% / 0.05);
}

.m13-event-card__body {
	padding: 2rem;
}

.m13-event-card__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 0.75rem;
}

.m13-event-card__desc {
	font-family: 'Raleway', sans-serif;
	font-size: 0.8125rem;
	color: var(--muted-foreground);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.m13-event-card__cta {
	font-family: 'Raleway', sans-serif;
	font-size: 0.8125rem;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	letter-spacing: 0.03em;
	transition: color 0.2s ease;
	text-decoration: none;
}

.m13-event-card__cta:hover {
	color: var(--blush-deep);
}

.m13-event-card__cta::after {
	content: '→';
	color: var(--gold);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.m13-about {
	background-color: var(--background);
	padding-block: 6rem;
}

.m13-about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.m13-about__grid {
		grid-template-columns: 2fr 3fr;
	}
}

.m13-about__image-wrap {
	position: relative;
	display: flex;
	justify-content: center;
}

.m13-about__logo {
	width: 16rem;
	height: 16rem;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--blush);
	box-shadow: 0 20px 40px hsl(340 30% 60% / 0.2);
}

@media (min-width: 768px) {
	.m13-about__logo {
		width: 20rem;
		height: 20rem;
	}
}

.m13-about__heart {
	position: absolute;
	bottom: -0.75rem;
	right: calc(50% - 10rem + (-0.75rem));
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px hsl(340 30% 60% / 0.2);
}

@media (min-width: 768px) {
	.m13-about__heart {
		right: calc(50% - 12rem + (-0.75rem));
	}
}

.m13-about__heart-icon {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	color: var(--primary);
	line-height: 1;
}

.m13-about__text-label {
	font-family: 'Raleway', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.75rem;
	display: block;
}

.m13-about__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 300;
	color: var(--foreground);
	line-height: 1.25;
	margin-bottom: 1.5rem;
}

.m13-about__title em {
	font-style: italic;
	color: var(--primary);
}

.m13-about__body {
	font-family: 'Raleway', sans-serif;
	font-size: 0.8125rem;
	color: var(--muted-foreground);
	line-height: 1.8;
}

.m13-about__body p {
	margin-bottom: 1rem;
}

.m13-about__quote {
	font-family: 'Lora', serif;
	font-style: italic;
	font-size: 1rem;
	color: var(--foreground);
	margin-bottom: 0.5rem;
}

.m13-about__quote-attr {
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	color: var(--muted-foreground);
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.m13-process {
	background: linear-gradient(135deg, var(--rose-mist) 0%, var(--blush) 50%, var(--cream) 100%);
	padding-block: 6rem;
}

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

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

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

.m13-step {
	text-align: center;
	position: relative;
}

/* Connector line between steps (desktop only) */
.m13-step:not(:last-child)::after {
	content: '';
	display: none;
}

@media (min-width: 1024px) {
	.m13-step:not(:last-child)::after {
		display: block;
		position: absolute;
		top: 2.5rem;
		left: 60%;
		width: 80%;
		height: 1px;
		background-color: var(--border);
	}
}

.m13-step__icon {
	position: relative;
	z-index: 10;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background-color: var(--background);
	border: 2px solid var(--blush);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 12px hsl(340 30% 60% / 0.08);
}

.m13-step__icon svg {
	width: 1.75rem;
	height: 1.75rem;
	stroke: var(--primary);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.m13-step__num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.875rem;
	font-weight: 300;
	color: hsl(38 60% 55% / 0.6);
	display: block;
	margin-bottom: 0.5rem;
}

.m13-step__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 0.75rem;
}

.m13-step__desc {
	font-family: 'Raleway', sans-serif;
	font-size: 0.8125rem;
	color: var(--muted-foreground);
	line-height: 1.7;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.m13-faq {
	position: relative;
	padding-block: 6rem;
	overflow: hidden;
	background: linear-gradient(135deg, var(--rose-mist) 0%, var(--blush) 50%, var(--cream) 100%);
}

.m13-faq__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.m13-faq__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
	filter: saturate(0.5);
	mix-blend-mode: multiply;
}

.m13-faq__bg-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 8rem;
	background: linear-gradient(to bottom, var(--blush), transparent);
	z-index: 1;
}

.m13-faq__bg-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 8rem;
	background: linear-gradient(to top, var(--rose-mist), transparent);
	z-index: 1;
}

.m13-faq__content {
	position: relative;
	z-index: 10;
	max-width: 48rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

/* Accordion */
.m13-accordion {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.m13-accordion__item {
	border: 1px solid hsl(340 25% 90% / 0.5);
	border-radius: 0.75rem;
	padding-inline: 1.5rem;
	background-color: var(--card);
}

.m13-accordion details {
	border: none;
	background: none;
}

.m13-accordion summary {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--foreground);
	padding-block: 1.25rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.2s ease;
}

.m13-accordion summary::-webkit-details-marker {
	display: none;
}

.m13-accordion summary::after {
	content: '+';
	font-family: 'Raleway', sans-serif;
	font-size: 1.25rem;
	font-weight: 300;
	color: var(--gold);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-left: 1rem;
}

.m13-accordion details[open] summary::after {
	content: '−';
}

.m13-accordion summary:hover {
	color: var(--primary);
}

.m13-accordion details[open] summary {
	color: var(--primary);
}

.m13-accordion__answer {
	font-family: 'Raleway', sans-serif;
	font-size: 0.8125rem;
	color: var(--muted-foreground);
	line-height: 1.7;
	padding-bottom: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.m13-contact {
	background: linear-gradient(135deg, var(--rose-mist) 0%, var(--blush) 50%, var(--cream) 100%);
	padding-block: 6rem;
}

.m13-contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.m13-contact__grid {
		grid-template-columns: 3fr 2fr;
	}
}

/* Form */
.m13-form {
	background-color: var(--background);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid hsl(340 25% 90% / 0.5);
	box-shadow: 0 4px 20px hsl(340 30% 60% / 0.06);
}

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

.m13-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
	.m13-form__row--2col {
		grid-template-columns: repeat(2, 1fr);
	}
}

.m13-form__group {
	display: flex;
	flex-direction: column;
}

.m13-form__label {
	font-family: 'Raleway', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-foreground);
	margin-bottom: 0.375rem;
	display: block;
}

.m13-form__input,
.m13-form__select,
.m13-form__textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	border: 1px solid var(--border);
	background-color: var(--background);
	font-family: 'Raleway', sans-serif;
	font-size: 0.875rem;
	color: var(--foreground);
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.m13-form__input::placeholder,
.m13-form__textarea::placeholder {
	color: hsl(340 10% 45% / 0.5);
}

.m13-form__input:focus,
.m13-form__select:focus,
.m13-form__textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px hsl(340 45% 65% / 0.15);
}

.m13-form__select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a07080' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	padding-right: 2.5rem;
}

.m13-form__textarea {
	resize: none;
	min-height: 6rem;
}

.m13-form__checkbox-wrap {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.m13-form__checkbox {
	margin-top: 0.125rem;
	accent-color: var(--primary);
	flex-shrink: 0;
}

.m13-form__checkbox-label {
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	color: var(--muted-foreground);
	line-height: 1.6;
	cursor: pointer;
}

.m13-form__submit {
	width: 100%;
	padding: 1rem 2rem;
	border-radius: 9999px;
	background-color: var(--primary);
	color: var(--primary-foreground);
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.m13-form__submit:hover {
	background-color: var(--blush-deep);
}

/* Sidebar */
.m13-contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.m13-contact-card {
	background-color: var(--background);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid hsl(340 25% 90% / 0.5);
	box-shadow: 0 4px 20px hsl(340 30% 60% / 0.06);
}

.m13-contact-card__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 1.5rem;
}

.m13-contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
	text-decoration: none;
	transition: opacity 0.2s;
}

.m13-contact-item:last-child {
	margin-bottom: 0;
}

.m13-contact-item:hover {
	opacity: 0.8;
}

.m13-contact-item__icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.m13-contact-item:hover .m13-contact-item__icon {
	transform: scale(1.1);
}

.m13-contact-item__icon svg {
	width: 1.25rem;
	height: 1.25rem;
	stroke: var(--primary);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.m13-contact-item__title {
	font-family: 'Raleway', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--foreground);
	display: block;
}

.m13-contact-item__sub {
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	color: var(--muted-foreground);
	display: block;
}

.m13-benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.m13-benefit-item:last-child {
	margin-bottom: 0;
}

.m13-benefit-item__icon {
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.m13-benefit-item__icon svg {
	width: 1rem;
	height: 1rem;
	stroke: var(--gold);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.m13-benefit-item__text {
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	color: var(--muted-foreground);
	line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.m13-footer {
	background-color: var(--foreground);
	padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
	.m13-footer {
		padding: 4rem 3rem;
	}
}

.m13-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 3rem;
}

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

.m13-footer__logo {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}

.m13-footer__brand-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.125rem;
	color: var(--primary-foreground);
	display: block;
}

.m13-footer__brand-tagline {
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	color: hsl(0 0% 100% / 0.5);
	margin-top: 0.25rem;
	display: block;
}

.m13-footer__col-title {
	font-family: 'Raleway', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: hsl(0 0% 100% / 0.4);
	margin-bottom: 1rem;
	display: block;
}

.m13-footer__nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.m13-footer__nav li {
	margin-bottom: 0.5rem;
}

.m13-footer__nav a {
	font-family: 'Raleway', sans-serif;
	font-size: 0.875rem;
	color: hsl(0 0% 100% / 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.m13-footer__nav a:hover {
	color: var(--primary-foreground);
}

.m13-footer__contact p,
.m13-footer__contact a {
	font-family: 'Raleway', sans-serif;
	font-size: 0.875rem;
	color: hsl(0 0% 100% / 0.7);
	display: block;
	margin-bottom: 0.5rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.m13-footer__contact a:hover {
	color: var(--primary-foreground);
}

.m13-footer__region {
	font-family: 'Raleway', sans-serif;
	font-size: 0.875rem;
	color: hsl(0 0% 100% / 0.7);
	line-height: 1.7;
}

.m13-footer__bottom {
	border-top: 1px solid hsl(0 0% 100% / 0.1);
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

@media (min-width: 768px) {
	.m13-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.m13-footer__copyright {
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	color: hsl(0 0% 100% / 0.4);
}

.m13-footer__legal {
	display: flex;
	gap: 1.5rem;
}

.m13-footer__legal a {
	font-family: 'Raleway', sans-serif;
	font-size: 0.75rem;
	color: hsl(0 0% 100% / 0.4);
	text-decoration: none;
	transition: color 0.2s ease;
}

.m13-footer__legal a:hover {
	color: hsl(0 0% 100% / 0.7);
}

/* ==========================================================================
   WordPress-spezifische Resets
   ========================================================================== */
.wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.wp-block-template-part {
	display: contents;
}

/* Admin Bar Offset */
.admin-bar .m13-navbar {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .m13-navbar {
		top: 46px;
	}
}
