/* ============================================
   ONITANI - Seelenmusik Website
   Modern, Light, Golden Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --gold-light: #f5e6c8;
    --gold: #c9a84c;
    --gold-dark: #a07c2a;
    --gold-gradient: linear-gradient(135deg, #c9a84c, #e8d5a3, #c9a84c);
    --gold-shimmer: linear-gradient(135deg, #f5e6c8, #c9a84c, #e8d5a3);
    --bg-cream: #faf7f0;
    --bg-white: #ffffff;
    --bg-warm: #f8f4eb;
    --bg-section: #fdf9f1;
    --text-dark: #3a3226;
    --text-body: #5a4e3e;
    --text-light: #8a7e6e;
    --text-white: #ffffff;
    --border-gold: rgba(201, 168, 76, 0.2);
    --shadow-soft: 0 4px 30px rgba(201, 168, 76, 0.08);
    --shadow-card: 0 8px 40px rgba(201, 168, 76, 0.1);
    --shadow-hover: 0 12px 50px rgba(201, 168, 76, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

a {
    text-decoration: none;
    color: var(--gold-dark);
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-title-lines {
    line-height: 1.2;
}

.section-title-lines .section-title-lines__row {
    display: block;
}

.section-title-lines .section-title-lines__row + .section-title-lines__row {
    margin-top: 0.12em;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 2rem;
    border: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero .btn-outline {
    color: var(--gold-dark);
    border-color: var(--gold);
}

.hero .btn-outline:hover {
    background: var(--gold);
    color: var(--text-white);
}

/* --- Navigation (Desktop) --- */
.nav-desktop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all var(--transition);
    height: auto;
    padding: 1.5rem 0;
}

@media (min-width: 769px) {
    /* Transparenter Header: Menü weiß, Logo bleibt eigenes Asset (nicht auf Kontakt: dort schwarze Schrift) */
    .nav-desktop.nav-transparent:not(.scrolled):not(.nav-kontakt-menu-dark) .nav-link,
    .nav-desktop.nav-transparent:not(.scrolled):not(.nav-kontakt-menu-dark) .nav-link:hover,
    .nav-desktop.nav-transparent:not(.scrolled):not(.nav-kontakt-menu-dark) .nav-link.active {
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
        color: rgba(255, 255, 255, 0.92);
    }

    .nav-desktop.nav-transparent:not(.scrolled):not(.nav-kontakt-menu-dark) .nav-link:hover,
    .nav-desktop.nav-transparent:not(.scrolled):not(.nav-kontakt-menu-dark) .nav-link.active {
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
    }

    .nav-desktop.nav-transparent:not(.scrolled):not(.nav-kontakt-menu-dark) .nav-shop i {
        color: rgba(255, 255, 255, 0.88);
    }

    .nav-desktop.nav-transparent:not(.scrolled):not(.nav-kontakt-menu-dark) .nav-shop:hover i,
    .nav-desktop.nav-transparent:not(.scrolled):not(.nav-kontakt-menu-dark) .nav-shop.active i {
        color: #ffffff;
    }

    .nav-desktop.nav-transparent.scrolled .nav-link {
        -webkit-text-fill-color: var(--text-body);
        color: var(--text-body);
    }

    .nav-desktop.nav-transparent.scrolled .nav-link:hover,
    .nav-desktop.nav-transparent.scrolled .nav-link.active {
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: var(--gold-dark);
        color: var(--gold-dark);
    }
}

/* Kontakt (kontakt.html): ab Desktop-Breakpoint — nur Menü links/rechts schwarz, Logo unverändert */
@media (min-width: 1101px) {
    body.page-kontakt .nav-desktop .nav-inner .nav-links-left .nav-link,
    body.page-kontakt .nav-desktop .nav-inner .nav-links-right .nav-link {
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        -webkit-text-fill-color: #111111 !important;
        color: #111111 !important;
    }

    body.page-kontakt .nav-desktop .nav-inner .nav-links-left .nav-link:hover,
    body.page-kontakt .nav-desktop .nav-inner .nav-links-right .nav-link:hover,
    body.page-kontakt .nav-desktop .nav-inner .nav-links-left .nav-link.active,
    body.page-kontakt .nav-desktop .nav-inner .nav-links-right .nav-link.active {
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        -webkit-text-fill-color: #0a0a0a !important;
        color: #0a0a0a !important;
    }

    body.page-kontakt .nav-desktop .nav-inner .nav-links-left .nav-shop i,
    body.page-kontakt .nav-desktop .nav-inner .nav-links-right .nav-shop i {
        color: #111111 !important;
    }

    body.page-kontakt .nav-desktop .nav-inner .nav-links-left .nav-shop:hover i,
    body.page-kontakt .nav-desktop .nav-inner .nav-links-left .nav-shop.active i,
    body.page-kontakt .nav-desktop .nav-inner .nav-links-right .nav-shop:hover i,
    body.page-kontakt .nav-desktop .nav-inner .nav-links-right .nav-shop.active i {
        color: #0a0a0a !important;
    }
}

.nav-desktop.scrolled {
    background: rgba(250, 247, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
    padding: 0.5rem 0;
}

.nav-desktop.scrolled .nav-logo img {
    height: 45px;
}

.nav-desktop.scrolled .nav-link {
    font-size: 0.85rem;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--text-body);
    color: var(--text-body);
}

.nav-desktop.scrolled .nav-link:hover,
.nav-desktop.scrolled .nav-link.active {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--gold-dark);
    color: var(--gold-dark);
}

.nav-desktop.scrolled .nav-shop i {
    color: var(--text-body);
}

.nav-desktop.scrolled .nav-shop:hover i,
.nav-desktop.scrolled .nav-shop.active i {
    color: var(--gold-dark);
}

.nav-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
}

.nav-logo {
    margin: 0 3rem;
    flex-shrink: 0;
}

.nav-logo img {
    height: 120px;
    width: auto;
    transition: all var(--transition);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    padding: 8px 0;
    position: relative;
    transition: all var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(to left, #8a6d2b, #c9a84c, #e8d48b, #c9a84c, #8a6d2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Shop Icon */
.nav-shop {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-shop i {
    width: 18px;
    height: 18px;
    color: #8a6d2b;
    flex-shrink: 0;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-bottom: 8px;
}

.nav-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 220px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu > a,
.nav-sub-dropdown > a.nav-sub-toggle {
    display: block;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-body);
    transition: all var(--transition);
}

.nav-dropdown-menu > a:hover,
.nav-sub-dropdown > a.nav-sub-toggle:hover {
    background: var(--bg-warm);
    color: var(--gold-dark);
    padding-left: 28px;
}

/* Sub-Dropdown (Netzwerk flyout) */
.nav-sub-dropdown {
    position: relative;
}

.nav-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.nav-sub-toggle svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: all var(--transition);
}

.nav-sub-dropdown:hover .nav-sub-toggle svg {
    opacity: 1;
    transform: translateX(2px);
}

.nav-sub-menu {
    position: absolute;
    left: 100%;
    top: -12px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 180px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: all var(--transition);
}

.nav-sub-dropdown:hover .nav-sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.nav-sub-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-body);
    transition: all var(--transition);
}

.nav-sub-menu a:hover {
    background: var(--bg-warm);
    color: var(--gold-dark);
    padding-left: 28px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--bg-cream);
    overflow: hidden;
    padding-top: var(--nav-height);
}

/* Hero Slider */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.hero-slide-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 60%, transparent 95%);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-slide-overlay {
        background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, transparent 80%) !important;
    }
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    padding: calc(var(--nav-height) + 1rem) 2rem 100px;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
    background: none; /* Quadrat entfernt */
}

.hero-description-light {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

#heroSlide2 .hero-tagline {
    color: var(--gold-light);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

#heroSlide2 h1 {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn-light {
    color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.hero-btn-light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot-active {
    background: var(--gold);
    transform: scale(1.15);
}

.hero-dot:hover {
    background: var(--gold-light);
}

/* Hero Headline */
.hero-headline {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 0.35rem;
}

.hero-headline-intro {
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
}

.hero-headline-logo {
    display: block;
    margin: 0;
    margin-inline: auto;
    height: clamp(130px, 30vw, 260px);
    width: auto;
    max-width: min(92vw, 520px);
    object-fit: contain;
    filter: drop-shadow(0 4px 28px rgba(0, 0, 0, 0.5));
}

.text-gold-gradient {
    background: linear-gradient(to left, #8a6d2b, #c9a84c, #e8d48b, #c9a84c, #8a6d2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: clamp(2.5rem, 12vw, 3.8rem) !important;
        line-height: 1.1;
        font-weight: 700 !important;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0,0,0,0.7);
        letter-spacing: -0.02em;
        padding: 2rem 0;
        align-items: center;
        gap: 0.25rem;
    }

    .hero-headline-logo {
        height: clamp(110px, 34vw, 200px);
        max-width: min(92vw, 100%);
        width: auto;
        margin-inline: auto;
        /* Optisch unter den Titel zentrieren (Logo hat links viel Schweif im PNG) */
        transform: translateX(calc(-1 * clamp(18px, 6vw, 44px)));
    }
}

/* Hero Golden Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #f5efe3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg[style*="background-image"]::after,
.hero-bg[style*="background-image"]::before {
    display: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    animation: heroGlow 15s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 230, 200, 0.25) 0%, transparent 70%);
    animation: heroGlow 18s ease-in-out infinite reverse;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(3%, -3%) scale(1.1); opacity: 1; }
}

/* Golden Twinkling Stars */
.hero-golden-rain {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-golden-rain span {
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(200, 220, 255, 0.6));
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.7);
    opacity: 0;
}

.hero-golden-rain span:nth-child(1)  { top: 12%; left: 8%;  width: 5px; height: 5px; animation-duration: 3s;   animation-delay: 0s; }
.hero-golden-rain span:nth-child(2)  { top: 25%; left: 15%; width: 3px; height: 3px; animation-duration: 4s;   animation-delay: 0.8s; }
.hero-golden-rain span:nth-child(3)  { top: 18%; left: 25%; width: 4px; height: 4px; animation-duration: 3.5s; animation-delay: 1.5s; }
.hero-golden-rain span:nth-child(4)  { top: 40%; left: 10%; width: 3px; height: 3px; animation-duration: 5s;   animation-delay: 0.3s; }
.hero-golden-rain span:nth-child(5)  { top: 30%; left: 35%; width: 6px; height: 6px; animation-duration: 4s;   animation-delay: 2s; box-shadow: 0 0 14px 4px rgba(255, 255, 255, 0.7); }
.hero-golden-rain span:nth-child(6)  { top: 55%; left: 20%; width: 3px; height: 3px; animation-duration: 3.8s; animation-delay: 1s; }
.hero-golden-rain span:nth-child(7)  { top: 15%; left: 48%; width: 4px; height: 4px; animation-duration: 4.5s; animation-delay: 0.5s; }
.hero-golden-rain span:nth-child(8)  { top: 35%; left: 55%; width: 3px; height: 3px; animation-duration: 3.2s; animation-delay: 2.5s; }
.hero-golden-rain span:nth-child(9)  { top: 60%; left: 42%; width: 5px; height: 5px; animation-duration: 5s;   animation-delay: 0.7s; box-shadow: 0 0 14px 4px rgba(255, 255, 255, 0.7); }
.hero-golden-rain span:nth-child(10) { top: 22%; left: 65%; width: 4px; height: 4px; animation-duration: 3.5s; animation-delay: 1.8s; }
.hero-golden-rain span:nth-child(11) { top: 45%; left: 72%; width: 3px; height: 3px; animation-duration: 4.2s; animation-delay: 3s; }
.hero-golden-rain span:nth-child(12) { top: 70%; left: 60%; width: 4px; height: 4px; animation-duration: 3.8s; animation-delay: 0.2s; }
.hero-golden-rain span:nth-child(13) { top: 10%; left: 80%; width: 6px; height: 6px; animation-duration: 4.5s; animation-delay: 1.2s; box-shadow: 0 0 14px 4px rgba(255, 255, 255, 0.7); }
.hero-golden-rain span:nth-child(14) { top: 50%; left: 88%; width: 3px; height: 3px; animation-duration: 3s;   animation-delay: 2.2s; }
.hero-golden-rain span:nth-child(15) { top: 65%; left: 78%; width: 4px; height: 4px; animation-duration: 5.5s; animation-delay: 0.9s; }
.hero-golden-rain span:nth-child(16) { top: 38%; left: 92%; width: 3px; height: 3px; animation-duration: 4s;   animation-delay: 3.5s; }
.hero-golden-rain span:nth-child(17) { top: 75%; left: 30%; width: 5px; height: 5px; animation-duration: 3.5s; animation-delay: 1.6s; box-shadow: 0 0 14px 4px rgba(255, 255, 255, 0.7); }
.hero-golden-rain span:nth-child(18) { top: 80%; left: 50%; width: 3px; height: 3px; animation-duration: 4.8s; animation-delay: 0.4s; }
.hero-golden-rain span:nth-child(19) { top: 28%; left: 5%;  width: 4px; height: 4px; animation-duration: 3.2s; animation-delay: 2.8s; }
.hero-golden-rain span:nth-child(20) { top: 58%; left: 95%; width: 4px; height: 4px; animation-duration: 4.5s; animation-delay: 1.3s; }
.hero-golden-rain span:nth-child(21) { top: 8%;  left: 40%; width: 5px; height: 5px; animation-duration: 3.3s; animation-delay: 0.6s; box-shadow: 0 0 16px 5px rgba(255, 255, 255, 0.8); }
.hero-golden-rain span:nth-child(22) { top: 16%; left: 58%; width: 4px; height: 4px; animation-duration: 4.2s; animation-delay: 1.1s; }
.hero-golden-rain span:nth-child(23) { top: 32%; left: 22%; width: 6px; height: 6px; animation-duration: 3.7s; animation-delay: 2.3s; box-shadow: 0 0 16px 5px rgba(255, 255, 255, 0.8); }
.hero-golden-rain span:nth-child(24) { top: 48%; left: 5%;  width: 4px; height: 4px; animation-duration: 5.2s; animation-delay: 0.1s; }
.hero-golden-rain span:nth-child(25) { top: 5%;  left: 92%; width: 7px; height: 7px; animation-duration: 3.5s; animation-delay: 1.9s; box-shadow: 0 0 18px 6px rgba(255, 255, 255, 0.85); }
.hero-golden-rain span:nth-child(26) { top: 42%; left: 48%; width: 4px; height: 4px; animation-duration: 4.8s; animation-delay: 3.2s; }
.hero-golden-rain span:nth-child(27) { top: 68%; left: 15%; width: 5px; height: 5px; animation-duration: 3.4s; animation-delay: 0.8s; box-shadow: 0 0 16px 5px rgba(255, 255, 255, 0.8); }
.hero-golden-rain span:nth-child(28) { top: 20%; left: 75%; width: 4px; height: 4px; animation-duration: 4.6s; animation-delay: 2.1s; }
.hero-golden-rain span:nth-child(29) { top: 52%; left: 32%; width: 6px; height: 6px; animation-duration: 3.9s; animation-delay: 1.4s; box-shadow: 0 0 16px 5px rgba(255, 255, 255, 0.8); }
.hero-golden-rain span:nth-child(30) { top: 85%; left: 70%; width: 4px; height: 4px; animation-duration: 5s;   animation-delay: 0.5s; }
.hero-golden-rain span:nth-child(31) { top: 72%; left: 85%; width: 5px; height: 5px; animation-duration: 3.6s; animation-delay: 2.7s; box-shadow: 0 0 16px 5px rgba(255, 255, 255, 0.8); }
.hero-golden-rain span:nth-child(32) { top: 35%; left: 68%; width: 4px; height: 4px; animation-duration: 4.3s; animation-delay: 1.7s; }
.hero-golden-rain span:nth-child(33) { top: 90%; left: 25%; width: 5px; height: 5px; animation-duration: 3.8s; animation-delay: 3.4s; }
.hero-golden-rain span:nth-child(34) { top: 14%; left: 3%;  width: 7px; height: 7px; animation-duration: 4s;   animation-delay: 0.3s; box-shadow: 0 0 18px 6px rgba(255, 255, 255, 0.85); }
.hero-golden-rain span:nth-child(35) { top: 62%; left: 52%; width: 4px; height: 4px; animation-duration: 5.3s; animation-delay: 2.4s; }
.hero-golden-rain span:nth-child(36) { top: 44%; left: 82%; width: 5px; height: 5px; animation-duration: 3.2s; animation-delay: 1.5s; box-shadow: 0 0 16px 5px rgba(255, 255, 255, 0.8); }
.hero-golden-rain span:nth-child(37) { top: 78%; left: 40%; width: 4px; height: 4px; animation-duration: 4.7s; animation-delay: 0.9s; }
.hero-golden-rain span:nth-child(38) { top: 26%; left: 88%; width: 6px; height: 6px; animation-duration: 3.5s; animation-delay: 2.6s; box-shadow: 0 0 16px 5px rgba(255, 255, 255, 0.8); }
.hero-golden-rain span:nth-child(39) { top: 56%; left: 12%; width: 4px; height: 4px; animation-duration: 4.4s; animation-delay: 1.8s; }
.hero-golden-rain span:nth-child(40) { top: 82%; left: 92%; width: 7px; height: 7px; animation-duration: 3.6s; animation-delay: 0.7s; box-shadow: 0 0 18px 6px rgba(255, 255, 255, 0.85); }

@keyframes twinkle {
    0%   { opacity: 0.15; transform: scale(0.6); }
    50%  { opacity: 1; transform: scale(1.3); }
    100% { opacity: 0.1; transform: scale(0.5); }
}

/* Hero Wave */
.hero-wave-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave-top svg {
    display: block;
    width: 100%;
    height: 450px;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 450px;
}

@media (min-width: 769px) and (max-width: 1440px) {
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: var(--bg-cream);
        z-index: 2;
    }

    .hero-wave-top {
        top: 45px;
        left: -1%;
        width: 102%;
        z-index: 3;
    }

    .hero-wave-top svg,
    .hero-wave svg {
        height: 250px;
    }

    .hero-bg,
    .page-header-image,
    .hero-slide-overlay {
        clip-path: none;
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero-wave-top {
        top: 58px;
        z-index: 4;
    }

    .hero-wave-top svg {
        height: 50px;
    }

    .hero-wave svg {
        height: 50px;
    }

    .hero-slide .hero-content {
        padding: 80px 1rem 120px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .hero-logo {
        width: 110px;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 3px;
        margin-bottom: 0.75rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-dots {
        bottom: 110px;
    }

    .hero-scroll {
        bottom: 75px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin: 0 auto 2rem;
    animation: fadeInScale 1.2s ease-out;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero h1 em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

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

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-white);
}

.section-warm {
    background: #ffffff;
}

/* --- About / Portrait Section --- */
.portrait-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Nur wo explizit gewünscht (z. B. Über uns) */
.portrait-grid--media-wide {
    grid-template-columns: 1.28fr 0.72fr;
    gap: 3rem;
}

.portrait-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.portrait-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.portrait-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portrait-image:hover img {
    transform: scale(1.03);
}

/* Freistehendes Portrait (z. B. Über uns): kein Karten-Hintergrund, Bild mit Alpha sichtbar */
.portrait-image--standalone {
    background: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.portrait-image--standalone::after {
    display: none;
}

.portrait-image--standalone img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 18px 36px rgba(58, 50, 38, 0.1));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.portrait-image--standalone:hover img {
    transform: translateY(-4px);
    filter: drop-shadow(0 22px 44px rgba(58, 50, 38, 0.14));
}

.portrait-image--no-motion img,
.portrait-image--no-motion:hover img {
    transform: none !important;
    transition: none !important;
    filter: drop-shadow(0 18px 36px rgba(58, 50, 38, 0.1));
}

.portrait-image--standalone-sm img {
    max-width: min(100%, 420px);
}

.portrait-text h2 {
    margin-bottom: 1rem;
}

.portrait-text p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.portrait-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-dark);
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Über uns – zwei Portrait-Kacheln (Tino, Bettina) */
.ueber-uns-duo-grid {
    max-width: 920px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Gleiche Kartenhöhe: Grid streckt beide Spalten auf eine Zeilenhöhe */
.ueber-uns-duo-grid > .feature-card {
    width: 100%;
    align-self: stretch;
}

@media (max-width: 768px) {
    .ueber-uns-duo-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.feature-card--overflow-visible {
    overflow: visible;
}

/* Tino / Bettina: gleich grosse Bildfläche, Freisteller zentriert (kein Cover-Crop) */
.ueber-uns-duo-grid .ueber-uns-tino-cutout,
.ueber-uns-duo-grid .ueber-uns-bettina-cutout {
    margin: 0 auto 1.25rem;
    width: 100%;
    max-width: 300px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ueber-uns-duo-grid .ueber-uns-tino-cutout img,
.ueber-uns-duo-grid .ueber-uns-bettina-cutout img {
    width: auto !important;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

@media (max-width: 768px) {
    .ueber-uns-duo-grid .ueber-uns-tino-cutout,
    .ueber-uns-duo-grid .ueber-uns-bettina-cutout {
        max-width: 280px;
        height: 240px;
    }
}

/* Bettina – lange Chronik (Lesbarkeit) */
/* Bettina-Chronik: Praxis-Foto als visueller Trenner im Fliesstext */
.bettina-chronicle .bettina-praxis-break {
    margin: 2.5rem auto 2.25rem;
    max-width: 720px;
}

.bettina-chronicle .bettina-praxis-figure {
    margin: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(58, 50, 38, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.35);
    line-height: 0;
}

.bettina-chronicle .bettina-praxis-figure img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 900px) {
    .bettina-chronicle .bettina-praxis-break {
        margin-top: 3rem;
        margin-bottom: 3rem;
        max-width: min(100%, 680px);
    }
}

.bettina-chronicle > p {
    font-size: 1.05rem;
    line-height: 1.88;
    color: var(--text-body);
    margin-bottom: 1.15rem;
}

.bettina-chronicle .chronicle-break {
    border: none;
    height: 1px;
    margin: 2.25rem auto;
    max-width: 220px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.45), transparent);
}

.bettina-chronicle .chronicle-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--gold-dark);
    border-left: 3px solid var(--gold);
    padding: 0.35rem 0 0.35rem 1.35rem;
    margin: 0 0 2.25rem;
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card p {
    flex: 1;
}

.feature-card .btn {
    margin-top: auto;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(245, 230, 200, 0.3));
    color: var(--gold-dark);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-card .btn {
    margin-top: 1.5rem;
}

/* --- Reisen Cards --- */
.reisen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reise-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.reise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.reise-card-badge {
    position: absolute;
    top: 12px;
    left: 0;
    z-index: 2;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0 6px 6px 0;
}

.badge-soldout {
    background: #c0392b;
    color: #fff;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.35);
}

.reise-card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.reise-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reise-card:hover .reise-card-img img {
    transform: scale(1.05);
}

.reise-card-body {
    padding: 1.5rem;
}

.reise-card-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.reise-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.reise-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reise-card-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-sm {
    font-size: 0.8rem;
    padding: 8px 16px;
}

/* --- Reise Detail Page --- */
.reise-detail-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.reise-detail-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reise-detail-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.reise-detail-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    color: #fff;
    max-width: 800px;
}

.reise-detail-hero .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.reise-detail-hero .reise-card-date {
    color: var(--gold-light);
    font-size: 1rem;
}

/* --- Anmelde-Formular Steps --- */
.form-steps {
    max-width: 700px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.form-step-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-gold);
    background: transparent;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.step-dot.completed {
    background: var(--gold-dark);
    color: #fff;
    border-color: var(--gold-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.form-price-box {
    background: linear-gradient(135deg, var(--bg-warm), rgba(201, 168, 76, 0.08));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-price-box .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    font-family: var(--font-heading);
}

.form-price-box .price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* --- Praxis Duo Grid --- */
.praxis-duo {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .praxis-duo {
        grid-template-columns: 1fr;
        max-width: 420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* --- Praxis Video --- */
.praxis-video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.praxis-video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 2px solid var(--gold);
    box-shadow: 
        0 0 0 4px rgba(201, 168, 76, 0.08),
        0 8px 30px rgba(201, 168, 76, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    background: var(--text-dark);
}

.praxis-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .praxis-video-frame {
        border-radius: var(--radius-sm);
    }
}

/* --- Partner Grid --- */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.partner-card {
    text-decoration: none;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gold);
    background: var(--bg-warm);
    transition: all var(--transition);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--gold);
}

.partner-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    transition: border-color var(--transition);
}

.partner-card:hover .partner-img {
    border-color: var(--gold);
}

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

.partner-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.partner-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

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

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .partner-card {
        padding: 1rem 0.75rem;
    }

    .partner-img {
        width: 80px;
        height: 80px;
    }

    .partner-card h4 {
        font-size: 0.9rem;
    }
}

/* --- Section Wirken (Background Image) --- */
.section-wirken {
    position: relative;
    overflow: hidden;
    padding: 280px 0 260px;
}

.section-wirken-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-wirken-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.section-wirken .feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-wirken .feature-card h3 {
    color: #fff;
}

.section-wirken .feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

.section-wirken .feature-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold);
}

.section-wirken .feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 20px rgba(212, 175, 55, 0.1);
}

.section-wave-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.section-wave-top svg {
    display: block;
    width: 100%;
    height: 300px;
}

.section-wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.section-wave-bottom svg {
    display: block;
    width: 100%;
    height: 300px;
}

@media (max-width: 768px) {
    .section-wirken,
    .section-musik {
        padding: 100px 0 80px;
    }

    .section-wave-top svg,
    .section-wave-bottom svg,
    .section-musik-wave-top svg,
    .section-musik-wave-bottom svg {
        height: 80px;
    }
}

@media (min-width: 769px) and (max-width: 1440px) {
    .section-wave-top svg,
    .section-wave-bottom svg,
    .section-musik-wave-top svg,
    .section-musik-wave-bottom svg {
        height: 150px;
    }
}

/* --- Section Musik (Background Image) --- */
.section-musik {
    position: relative;
    overflow: hidden;
    padding: 280px 0 260px;
}

.section-musik-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-musik-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.section-musik-wave-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.section-musik-wave-top svg {
    display: block;
    width: 100%;
    height: 300px;
}

.section-musik-wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.section-musik-wave-bottom svg {
    display: block;
    width: 100%;
    height: 300px;
}

/* Glassmorphism Music Cards */

.music-card-glass::before {
    display: none;
}

.music-card-glass > * {
    position: relative;
    z-index: 1;
}

.music-card-glass:hover {
    transform: translateY(-8px);
    border: none !important;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.music-card-glass .music-card-image {
    border-radius: 2px;
    margin: 12px;
    overflow: hidden;
    position: relative;
}

.music-card-glass .music-card-image img {
    border-radius: 2px;
    transition: transform 0.4s ease;
}

.music-card-glass:hover .music-card-image img {
    transform: scale(1.05);
}

.music-card-glass .music-card-body {
    padding: 12px 16px 16px;
    text-align: center;
}

.music-card-glass .music-card-body h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 6px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.music-card-glass .music-card-body p {
    color: rgba(212, 175, 55, 1);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.music-card-glass .music-card-play {
    background: rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.music-card-glass .music-card-play:hover {
    background: rgba(212, 175, 55, 0.6);
}

@media (max-width: 768px) {
    .section-musik {
        padding: 120px 0 100px;
    }

    .section-musik-wave-top svg,
    .section-musik-wave-bottom svg {
        height: 60px;
    }
}

/* --- Konzerte --- */
.konzert-filter-btn {
    padding: 8px 18px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    background: transparent;
    color: var(--text-light);
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.konzert-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.konzert-filter-btn.active {
    background: var(--gold-gradient);
    color: #fff;
    border-color: var(--gold);
}

.konzert-liste {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.konzert-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-gold);
    transition: background var(--transition);
}

.konzert-item:first-child {
    border-top: 1px solid var(--border-gold);
}

.konzert-item:hover {
    background: var(--bg-warm);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: var(--radius-sm);
}

.konzert-nr {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-warm);
    border: 1px solid var(--border-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.konzert-info {
    flex: 1;
    min-width: 0;
}

.konzert-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.konzert-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.konzert-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.konzert-detail {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 480px) {
    .konzert-item {
        gap: 0.75rem;
    }

    .konzert-nr {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .konzert-title {
        font-size: 1rem;
    }

    .konzert-filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* --- Events Section --- */
.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: all var(--transition);
    align-items: center;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.12);
}

.event-item:hover {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
    transform: translateY(-2px);
    border-color: var(--gold-dark);
}

.event-date {
    text-align: center;
    min-width: 80px;
    padding: 1rem;
    background: linear-gradient(135deg, #c9a84c, #8a6d2b);
    border-radius: var(--radius-sm);
}

.event-date .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
}

.event-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.event-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Termine: Karten + Modal (wie onitani.com Übersicht) --- */
.termine-event-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.events-list--cards {
    max-width: 920px;
}

.event-card {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    align-items: stretch;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.12);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

/* display:flex würde sonst das HTML-[hidden]-Attribut überschreiben (z. B. Termine-Filter) */
.event-card[hidden] {
    display: none !important;
}

.event-card:hover {
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.22);
    border-color: var(--gold-dark);
}

.event-card__thumb {
    flex: 0 0 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    align-self: stretch;
    min-height: 100px;
    background: var(--bg-warm);
    cursor: pointer;
}

.event-card__thumb img {
    width: 100%;
    height: 100%;
    min-height: 100px;
    object-fit: cover;
    display: block;
}

.event-card__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.event-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: flex-start;
}

.event-card__datebox {
    text-align: center;
    min-width: 72px;
    padding: 0.65rem 0.75rem;
    background: linear-gradient(135deg, #c9a84c, #8a6d2b);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.event-card__datebox .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.event-card__datebox .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 2px;
}

.event-card__text {
    flex: 1;
    min-width: 0;
}

.event-card__text h3 {
    font-size: 1.15rem;
    margin: 0 0 0.35rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.event-card__meta {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.45;
}

.event-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.65rem;
}

.event-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.event-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.event-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 16, 12, 0.55);
    cursor: pointer;
}

.event-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: min(88vh, 720px);
    overflow: auto;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(201, 168, 76, 0.35);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
}

.event-modal.is-open .event-modal__dialog {
    transform: translateY(0) scale(1);
}

.event-modal__close {
    align-self: flex-end;
    z-index: 2;
    margin: 0.65rem 0.65rem 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--bg-warm);
    color: var(--text-dark);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.event-modal__close:hover {
    background: var(--gold);
    color: #fff;
}

.event-modal__inner {
    padding: 0 1.5rem 1.5rem;
}

.event-modal__img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.event-modal__title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.35rem;
    line-height: 1.25;
}

.event-modal__meta {
    font-size: 0.9rem;
    color: var(--gold-dark);
    margin: 0 0 1rem;
}

.event-modal__body {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
}

.event-modal__body p {
    margin: 0 0 0.85rem;
}

.event-modal__body p:last-child {
    margin-bottom: 0;
}

.event-modal__footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-gold);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .event-card {
        flex-direction: column;
        padding: 1rem;
    }

    .event-card__thumb {
        flex: 0 0 auto;
        width: 100%;
        max-height: 180px;
    }

    .event-card__thumb img {
        min-height: 160px;
        max-height: 180px;
    }

    .event-card__top {
        flex-direction: row;
    }
}

/* --- Testimonials --- */
.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 2rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--gold);
    line-height: 0;
    vertical-align: -1.5rem;
    margin-right: 0.25rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 500;
}

/* --- Music / Shop Preview --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.music-card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
}

.music-card.music-card-glass {
    position: relative;
    border: none !important;
    border-radius: 4px !important;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

a.music-card {
    color: inherit;
    text-decoration: none;
}

a.music-card:hover {
    color: inherit;
}

.music-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.music-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.music-card:hover .music-card-image img {
    transform: scale(1.05);
}

.music-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.2);
    opacity: 0;
    transition: opacity var(--transition);
}

.music-card:hover .music-card-play {
    opacity: 1;
}

.music-card-play svg {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.music-card-body {
    padding: 1.5rem;
}

.music-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.music-card-body p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* --- Newsletter Section --- */
.newsletter-section {
    background: linear-gradient(135deg, var(--bg-warm), rgba(201, 168, 76, 0.05));
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(2);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
    color: var(--gold-light);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1rem;
    align-items: center;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition);
    line-height: 0;
    flex-shrink: 0;
}

.footer-social a svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --- Page Header (Subpages) --- */
.page-header {
    padding: 320px 0 200px;
    text-align: center;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

/* Small variant for shorter headers */
.page-header.page-header-small {
    padding: 220px 0 140px;
}

/* Ensure waves in page headers don't cover text on desktop */
.page-header .hero-wave svg,
.page-header-wave-bottom svg {
    height: 180px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 180px 0 160px;
    }
    .page-header.page-header-small {
        padding: 140px 0 120px;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 75%);
    z-index: 1;
}

.page-header-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.page-header-wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.page-header-wave-bottom svg {
    display: block;
    width: 100%;
}

/* Über uns: Welle besser sichtbar (Kontrast + Höhe) */
.page-header-wave--ueber-uns svg {
    height: min(26vw, 240px);
}

@media (max-width: 768px) {
    .page-header-wave-bottom svg {
        height: 80px;
    }

    .page-header-wave--ueber-uns svg {
        height: 96px;
    }
}

@media (min-width: 769px) and (max-width: 1440px) {
    .page-header-wave-bottom svg,
    .page-header .hero-wave svg {
        height: 120px;
    }

    .page-header-wave--ueber-uns svg {
        height: min(22vw, 200px);
    }
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--gold-dark) !important; /* Kräftigeres Gold */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-header .section-subtitle {
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: #ffffff !important;
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* --- Content Sections for Subpages --- */
.content-section {
    padding: 80px 0;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-narrow p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(245, 230, 200, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* --- Bank Details --- */
.bank-details {
    background: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.bank-details h4 {
    margin-bottom: 1rem;
}

.bank-details p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Mobile Bottom Navigation --- */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10001;
    background: #ffffff;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-gold);
    padding: 8px 0;
    padding-bottom: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateZ(0);
    will-change: transform;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 4px;
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
    text-align: center;
}

.mobile-nav-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    opacity: 0.85;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--gold);
}

.mobile-nav-item.active svg {
    opacity: 1;
    color: var(--gold);
}

/* Mobile More Menu */
.mobile-more-menu {
    position: fixed;
    bottom: 60px;
    bottom: calc(60px + env(safe-area-inset-bottom));
    left: 0;
    right: 0;
    z-index: 10002;
    background: #ffffff;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid var(--border-gold);
    padding: 1.5rem 1rem;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.08);
}

.mobile-more-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
}

.mobile-more-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px 6px;
    border-radius: var(--radius-md);
    color: var(--text-body);
    font-size: 0.72rem;
    font-weight: 500;
    transition: all var(--transition);
    background: var(--bg-warm);
    border: 1px solid transparent;
}

.mobile-more-item:active {
    background: var(--gold-light);
    transform: scale(0.95);
}

.mobile-more-item span {
    display: block;
    width: 100%;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.mobile-more-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* --- Responsive --- */
@media (max-width: 1400px) {
    .nav-link {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .nav-links-left,
    .nav-links-right {
        gap: 1.5rem;
    }

    .nav-logo {
        margin: 0 2rem;
    }

    .nav-logo img {
        height: 120px;
    }
}

@media (max-width: 1200px) {
    .nav-link {
        font-size: 0.78rem;
        letter-spacing: 0.5px;
    }

    .nav-links-left,
    .nav-links-right {
        gap: 1.2rem;
    }

    .nav-logo {
        margin: 0 1.5rem;
    }

    .nav-logo img {
        height: 90px;
    }

    .nav-inner {
        padding: 0 24px;
    }
}

@media (max-width: 1100px) {
    .nav-desktop {
        display: none;
    }

    /* Mobile top bar */
    .mobile-top-bar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        background: rgba(250, 247, 240, 0.98);
        backdrop-filter: blur(20px);
        height: 60px;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid var(--border-gold);
    }

    .mobile-top-bar img {
        height: 40px;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        padding-top: 60px;
        min-height: calc(100vh - 60px);
    }

    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }

    .portrait-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-logo {
        width: 140px;
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }
}

@media (min-width: 1101px) {
    .mobile-top-bar {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .event-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .mobile-more-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .music-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-slide .hero-content {
        padding: calc(var(--nav-height) + 0.25rem) 1rem 120px;
        align-items: center;
        text-align: center;
    }

    .hero-logo {
        width: 90px;
        margin-bottom: 0.75rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.82rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .hero-buttons .btn {
        padding: 9px 18px;
        font-size: 0.8rem;
    }

    .hero-dots {
        bottom: 75px;
    }

    .hero-scroll {
        bottom: 42px;
    }

    .hero-wave svg {
        height: 80px;
    }
}

@media (max-width: 375px) {
    .hero-slide .hero-content {
        padding: calc(var(--nav-height)) 0.75rem 110px;
        align-items: center;
        text-align: center;
    }

    .hero-logo {
        width: 75px;
        margin-bottom: 0.5rem;
    }

    .hero h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.78rem;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .hero-dots {
        bottom: 68px;
    }

    .hero-scroll {
        bottom: 36px;
    }
}

/* --- Utility --- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

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

/* Gold line decoration */
.gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1.5rem auto;
}

/* Praxis Page Special (falls per Skript gesetzt): Menü wie transparenter Header */
.nav-desktop.nav-praxis-initial:not(.nav-sticky) .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.nav-desktop.nav-praxis-initial.nav-sticky .nav-link {
    color: var(--text-body) !important;
    -webkit-text-fill-color: var(--text-body) !important;
}

/* Image placeholder for development */
.img-placeholder {
    background: linear-gradient(135deg, var(--bg-warm), rgba(201, 168, 76, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    min-height: 300px;
}
