/* ============================================================
   SALASA – Premium Onepage Website
   Art Direction: Magical Premium · Theatrical Elegance
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
    --color-dark: #0F0A1A;
    --color-deep-plum: #1E1432;
    --color-plum: #2D1F4E;
    --color-burgundy: #6B2D5B;
    --color-gold: #C8A255;
    --color-gold-light: #E8D5A3;
    --color-champagne: #F5ECD7;
    --color-cream: #FBF8F1;
    --color-rose: #C4917C;
    --color-text: #2A2035;
    --color-text-light: #7A7484;
    --color-white: #FFFFFF;

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
    --font-accent: 'Caveat', cursive;

    --container: 1200px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --section-space: clamp(5rem, 10vw, 9rem);
    --border-radius: 12px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── ACCESSIBILITY: Focus-Styles ── */
*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Form-Inputs behalten eigenen Focus-Stil */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ── UTILITIES ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--color-gold);
}

.section-label-light {
    color: var(--color-gold-light);
}

.section-label-light::before {
    background: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

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

.section-title-light {
    color: var(--color-champagne);
}

.section-title-light em {
    color: var(--color-gold-light);
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 560px;
}

.section-intro-light {
    color: rgba(245, 236, 215, 0.7);
}

.section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-rose));
    color: var(--color-dark);
    box-shadow: 0 4px 24px rgba(200, 162, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 162, 85, 0.45);
}

.btn-ghost {
    border: 1.5px solid rgba(200, 162, 85, 0.4);
    color: var(--color-gold-light);
}

.btn-ghost:hover {
    border-color: var(--color-gold);
    background: rgba(200, 162, 85, 0.08);
    color: var(--color-gold);
}

.btn-full {
    width: 100%;
}

/* ── WAVE DIVIDERS ── */
.wave-divider {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
}

/* ══════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    background: rgba(15, 10, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.75rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.scrolled .header-inner {
    padding: 0.4rem var(--gutter);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    overflow: hidden;
}

.logo-img {
    height: 170px;
    width: auto;
    display: block;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.scrolled .logo-img {
    height: 52px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(245, 236, 215, 0.7);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.25rem 0;
}

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

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

.nav-list a:hover::after {
    width: 100%;
}

.nav-cta {
    background: rgba(200, 162, 85, 0.15);
    border: 1px solid rgba(200, 162, 85, 0.3);
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px;
    color: var(--color-gold-light) !important;
}

.nav-cta:hover {
    background: rgba(200, 162, 85, 0.25) !important;
    border-color: var(--color-gold) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 0.5rem;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-champagne);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at 75% 50%, rgba(180, 50, 140, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 40%, rgba(30, 80, 180, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 30% 20%, var(--color-plum) 0%, var(--color-deep-plum) 40%, var(--color-dark) 100%);
    overflow: hidden;
    padding: 12rem var(--gutter) 6rem;
}

.hero-glow {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(107, 45, 91, 0.3) 0%, rgba(200, 162, 85, 0.08) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* ── VIEW TRANSITIONS API: flüssige Seitenübergänge ── */
@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: 220ms ease-in both fade-out;
}
::view-transition-new(root) {
    animation: 280ms ease-out both fade-in;
}

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

@keyframes fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── STARS BACKGROUND ── */
.hero-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: var(--color-gold-light);
    animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

.s1  { width:2px;height:2px;top:5%;left:8%;--dur:2.8s;--delay:0s; }
.s2  { width:3px;height:3px;top:12%;left:22%;--dur:4.2s;--delay:1.2s; }
.s3  { width:1px;height:1px;top:8%;left:45%;--dur:3.5s;--delay:0.5s; }
.s4  { width:2px;height:2px;top:15%;left:65%;--dur:3s;--delay:2s; }
.s5  { width:3px;height:3px;top:3%;left:78%;--dur:4.5s;--delay:0.8s; }
.s6  { width:1px;height:1px;top:20%;left:90%;--dur:2.5s;--delay:1.5s; }
.s7  { width:2px;height:2px;top:28%;left:5%;--dur:3.8s;--delay:0.3s; }
.s8  { width:2px;height:2px;top:35%;left:35%;--dur:3.2s;--delay:2.5s; }
.s9  { width:3px;height:3px;top:22%;left:50%;--dur:4s;--delay:1s; }
.s10 { width:1px;height:1px;top:40%;left:70%;--dur:2.8s;--delay:0.7s; }
.s11 { width:2px;height:2px;top:45%;left:15%;--dur:3.6s;--delay:1.8s; }
.s12 { width:1px;height:1px;top:50%;left:42%;--dur:4.2s;--delay:2.2s; }
.s13 { width:3px;height:3px;top:10%;left:55%;--dur:3.4s;--delay:0.4s; }
.s14 { width:2px;height:2px;top:55%;left:88%;--dur:3s;--delay:1.4s; }
.s15 { width:1px;height:1px;top:60%;left:25%;--dur:4s;--delay:2.8s; }
.s16 { width:2px;height:2px;top:18%;left:82%;--dur:3.5s;--delay:0.9s; }
.s17 { width:1px;height:1px;top:65%;left:55%;--dur:2.6s;--delay:1.6s; }
.s18 { width:3px;height:3px;top:7%;left:35%;--dur:4.8s;--delay:0.2s; }
.s19 { width:2px;height:2px;top:72%;left:10%;--dur:3.2s;--delay:2.3s; }
.s20 { width:1px;height:1px;top:33%;left:95%;--dur:3.8s;--delay:0.6s; }
.s21 { width:2px;height:2px;top:48%;left:60%;--dur:4.3s;--delay:1.1s; }
.s22 { width:1px;height:1px;top:25%;left:12%;--dur:3s;--delay:2.6s; }
.s23 { width:3px;height:3px;top:38%;left:78%;--dur:3.7s;--delay:0.1s; }
.s24 { width:2px;height:2px;top:58%;left:40%;--dur:2.9s;--delay:1.9s; }
.s25 { width:1px;height:1px;top:42%;left:48%;--dur:4.1s;--delay:2.4s; }
.s26 { width:2px;height:2px;top:14%;left:72%;--dur:3.3s;--delay:0.7s; }
.s27 { width:1px;height:1px;top:68%;left:82%;--dur:3.6s;--delay:1.3s; }
.s28 { width:3px;height:3px;top:30%;left:18%;--dur:4.5s;--delay:2.1s; }
.s29 { width:2px;height:2px;top:52%;left:30%;--dur:2.7s;--delay:0.4s; }
.s30 { width:1px;height:1px;top:75%;left:65%;--dur:3.9s;--delay:1.7s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.8); box-shadow: 0 0 6px 1px rgba(232, 213, 163, 0.6); }
}

/* ── SHOOTING STARS ── */
.hero-shooting-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 213, 163, 0.9), transparent);
    border-radius: 50px;
    opacity: 0;
    transform: rotate(-35deg);
}

.shooting-star::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 6px;
    height: 3px;
    background: var(--color-gold-light);
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(232, 213, 163, 0.8);
}

.ss1 {
    top: 10%;
    left: 60%;
    animation: shootingStar 6s ease-in-out infinite 2s;
}

.ss2 {
    top: 25%;
    left: 30%;
    width: 80px;
    animation: shootingStar 8s ease-in-out infinite 5s;
    transform: rotate(-40deg);
}

.ss3 {
    top: 15%;
    left: 80%;
    width: 100px;
    animation: shootingStar 10s ease-in-out infinite 8s;
    transform: rotate(-30deg);
}

@keyframes shootingStar {
    0% { opacity: 0; transform: rotate(-35deg) translateX(0); }
    2% { opacity: 1; }
    8% { opacity: 1; transform: rotate(-35deg) translateX(-300px); }
    10% { opacity: 0; transform: rotate(-35deg) translateX(-400px); }
    100% { opacity: 0; }
}

/* Sparkle Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 4s ease-in-out infinite;
}

.particle::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.5;
}

.p1 { top: 12%; left: 15%; animation-delay: 0s; animation-duration: 3.5s; }
.p2 { top: 25%; left: 75%; animation-delay: 0.8s; animation-duration: 4.2s; }
.p3 { top: 60%; left: 85%; animation-delay: 1.5s; animation-duration: 3.8s; }
.p4 { top: 70%; left: 10%; animation-delay: 2.2s; animation-duration: 4.5s; }
.p5 { top: 8%; left: 55%; animation-delay: 0.4s; animation-duration: 3.2s; }
.p6 { top: 40%; left: 92%; animation-delay: 1.8s; animation-duration: 4s; }
.p7 { top: 85%; left: 45%; animation-delay: 2.8s; animation-duration: 3.6s; }
.p8 { top: 30%; left: 30%; animation-delay: 3.2s; animation-duration: 4.8s; }
.p9 { top: 50%; left: 60%; animation-delay: 0.6s; animation-duration: 3.4s; }
.p10 { top: 15%; left: 90%; animation-delay: 1.2s; animation-duration: 4.3s; }
.p11 { top: 75%; left: 70%; animation-delay: 2.5s; animation-duration: 3.7s; }
.p12 { top: 45%; left: 5%; animation-delay: 3.5s; animation-duration: 4.1s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) translateY(0); }
    30% { opacity: 0.8; transform: scale(1.2) translateY(-10px); }
    60% { opacity: 0.4; transform: scale(0.8) translateY(-20px); }
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 1.2s ease forwards 0.5s;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    mask-image: radial-gradient(ellipse 65% 55% at 52% 48%, black 20%, transparent 58%);
    -webkit-mask-image: radial-gradient(ellipse 65% 55% at 52% 48%, black 20%, transparent 58%);
    animation: wandAuraGlow 3.5s ease-in-out infinite;
}


@keyframes wandAuraGlow {
    0%, 100% {
        filter: drop-shadow(0 0 100px rgba(107, 45, 91, 0.55))
                drop-shadow(0 0 40px rgba(200, 162, 85, 0.15));
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(107, 45, 91, 0.3))
                drop-shadow(0 0 80px rgba(200, 162, 85, 0.5))
                drop-shadow(0 0 20px rgba(255, 220, 140, 0.6));
    }
}

/* Wand-tip sparkle overlay – positioned at the wand/hat contact point */
.hero-image::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 53%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 1)    0%,
        rgba(255, 130, 220, 0.8) 20%,
        rgba(200,  80, 200, 0.5) 45%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 3;
    animation: wandTipPulse 1.8s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes wandTipPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.75); }
    50%       { opacity: 1;   transform: scale(1.5);  }
}

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

.hero-kicker {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-champagne);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-title-accent {
    background: linear-gradient(90deg,
        var(--color-gold) 0%,
        var(--color-rose) 25%,
        var(--color-gold-light) 50%,
        var(--color-rose) 75%,
        var(--color-gold) 100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroShimmer 6s linear infinite;
}

@keyframes heroShimmer {
    from { background-position: 300% center; }
    to   { background-position: -300% center; }
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    color: rgba(245, 236, 215, 0.80);
    max-width: 540px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1s;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gold-light);
    line-height: 1.1;
}

.trust-label {
    font-size: 0.75rem;
    color: rgba(245, 236, 215, 0.5);
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(200, 162, 85, 0.2);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.3); }
}

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

.wave-hero {
    bottom: -1px;
    height: 120px;
}

/* ══════════════════════════════════════════
   INTRO
   ══════════════════════════════════════════ */
.intro {
    padding: var(--section-space) 0;
    background: var(--color-cream);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.intro-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.intro-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text) !important;
    margin-bottom: 1.25rem !important;
}

/* ── IMAGE FRAMES (Real Images) ── */
.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: linear-gradient(145deg, var(--color-deep-plum) 0%, var(--color-burgundy) 50%, rgba(200, 162, 85, 0.15) 100%);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-frame:hover img {
    transform: scale(1.04);
}

.image-portrait {
    aspect-ratio: 3/4;
}

.image-landscape {
    aspect-ratio: 16/10;
}

.image-large {
    aspect-ratio: 4/5;
}

.image-impression {
    width: 100%;
    height: 100%;
}

/* Legacy placeholder support */
.image-placeholder {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.placeholder-portrait {
    aspect-ratio: 3/4;
}

.placeholder-landscape {
    aspect-ratio: 16/10;
}

.placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(145deg, var(--color-deep-plum) 0%, var(--color-burgundy) 50%, rgba(200, 162, 85, 0.15) 100%);
    z-index: 1;
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    opacity: 0.5;
}

.placeholder-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    opacity: 0.6;
}

.placeholder-frame {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(200, 162, 85, 0.15);
    border-radius: calc(var(--border-radius) - 4px);
    z-index: 2;
    pointer-events: none;
}

.placeholder-large {
    aspect-ratio: 4/5;
}

/* ══════════════════════════════════════════
   EVENTS / ANLÄSSE
   ══════════════════════════════════════════ */
.events {
    position: relative;
    padding: calc(var(--section-space) + 3rem) 0;
    background: linear-gradient(170deg, var(--color-dark) 0%, var(--color-deep-plum) 50%, var(--color-plum) 100%);
}

.events .section-header {
    text-align: center;
}

.events .section-intro {
    margin: 0 auto;
}

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

.event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 162, 85, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
    text-decoration: none;
}

.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 162, 85, 0.08), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.event-card:hover {
    border-color: rgba(200, 162, 85, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    color: var(--color-gold);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-card:hover .event-card-icon {
    transform: scale(1.25) rotate(12deg);
    filter: drop-shadow(0 0 8px rgba(200, 162, 85, 0.7));
}

@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 3px rgba(200, 162, 85, 0.3)); }
    50%       { filter: drop-shadow(0 0 10px rgba(200, 162, 85, 0.8)); }
}

.event-card-icon svg {
    width: 100%;
    height: 100%;
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-champagne);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.event-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(245, 236, 215, 0.78);
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════
   SHOWS
   ══════════════════════════════════════════ */
.shows {
    padding: var(--section-space) 0;
    background: var(--color-cream);
}

.show-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    margin-bottom: clamp(4rem, 8vw, 7rem);
}

.show-feature:last-child {
    margin-bottom: 0;
}

.show-feature-reverse .show-feature-visual {
    order: 2;
}

.show-feature-reverse .show-feature-content {
    order: 1;
}

.show-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(107, 45, 91, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.show-feature-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.show-feature-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.show-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.show-highlights li {
    font-size: 0.9rem;
    color: var(--color-text);
    padding-left: 1.5rem;
    position: relative;
}

.show-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-rose));
}

/* ══════════════════════════════════════════
   WHY SALASA
   ══════════════════════════════════════════ */
.why {
    position: relative;
    padding: calc(var(--section-space) + 3rem) 0;
    background: linear-gradient(170deg, var(--color-deep-plum) 0%, var(--color-dark) 100%);
}

.why .section-header {
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 162, 85, 0.08);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
}

.why-item:hover {
    border-color: rgba(200, 162, 85, 0.2);
    background: rgba(200, 162, 85, 0.04);
}

.why-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-item h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-champagne);
    margin-bottom: 0.75rem;
}

.why-item p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(245, 236, 215, 0.55);
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about {
    padding: var(--section-space) 0;
    background: var(--color-cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--color-champagne);
    border: 1px solid rgba(200, 162, 85, 0.2);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.accent-quote {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--color-burgundy);
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.about-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 162, 85, 0.2);
}

.signature-name {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--color-burgundy);
    display: block;
    line-height: 1.2;
}

.signature-aka {
    font-size: 0.85rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   IMPRESSIONS / GALLERY
   ══════════════════════════════════════════ */
.impressions {
    padding: var(--section-space) 0;
    background: var(--color-cream);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.3), rgba(107, 45, 91, 0.2));
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    font-size: 2rem;
    color: var(--color-gold-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(232, 213, 163, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-tall {
    grid-row: span 2;
}

/* ── LIGHTBOX ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(10, 6, 18, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-champagne);
    margin-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

.lightbox-counter {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(245, 236, 215, 0.5);
    letter-spacing: 0.1em;
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-champagne);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-champagne);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-gold-light);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials {
    position: relative;
    padding: var(--section-space) 0;
    background: linear-gradient(170deg, var(--color-deep-plum) 0%, var(--color-dark) 100%);
    border-top: 1px solid rgba(200, 162, 85, 0.12);
}

.testimonials .section-header {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 162, 85, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(200, 162, 85, 0.25);
    transform: translateY(-4px);
}

.testimonial-featured {
    border-color: rgba(200, 162, 85, 0.2);
    background: rgba(200, 162, 85, 0.06);
    transform: scale(1.03);
}

.testimonial-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 236, 215, 0.7);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-champagne);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   JAHRMARKT DER WUNDER
   ══════════════════════════════════════════ */
.jahrmarkt {
    padding: var(--section-space) 0;
    background: var(--color-cream);
    position: relative;
}

.jahrmarkt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(245, 236, 215, 0) 0%, rgba(200, 162, 85, 0.05) 100%);
    pointer-events: none;
}

.jahrmarkt-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.jahrmarkt-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
}

.jahrmarkt-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto;
}

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

.jahrmarkt-item {
    background: var(--color-white);
    border: 1px solid rgba(200, 162, 85, 0.15);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all var(--transition);
}

.jahrmarkt-item:hover {
    border-color: var(--color-gold);
    box-shadow: 0 8px 32px rgba(200, 162, 85, 0.12);
    transform: translateY(-3px);
}

.jahrmarkt-item-icon {
    width: 36px;
    height: 36px;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.jahrmarkt-item-icon svg {
    width: 100%;
    height: 100%;
}

.jahrmarkt-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.jahrmarkt-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.jahrmarkt-cta p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq {
    position: relative;
    padding: calc(var(--section-space) + 3rem) 0;
    background: linear-gradient(170deg, var(--color-dark) 0%, var(--color-deep-plum) 100%);
}

.faq .section-header {
    text-align: center;
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(200, 162, 85, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-champagne);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    color: var(--color-gold-light);
}

.faq-answer {
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 236, 215, 0.78);
    max-width: 620px;
}

/* ══════════════════════════════════════════
   SUBPAGE FAQ
   ══════════════════════════════════════════ */
.subpage-faq {
    padding: var(--section-space) 0;
    background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-deep-plum) 100%);
    position: relative;
    overflow: hidden;
}

.subpage-faq::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 162, 85, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.subpage-faq > .container > h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-champagne);
    text-align: center;
    margin-bottom: 0.5rem;
}

.subpage-faq > .container > h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--color-gold);
    margin: 1rem auto 3rem;
}

.subpage-faq .faq-item {
    border-bottom: 1px solid rgba(200, 162, 85, 0.15);
    max-width: 720px;
    margin: 0 auto;
}

.subpage-faq .faq-item:first-of-type {
    border-top: 1px solid rgba(200, 162, 85, 0.15);
}

.subpage-faq .faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-champagne);
    padding: 1.4rem 2.5rem 1.4rem 0;
    margin: 0;
    position: relative;
    cursor: default;
}

.subpage-faq .faq-item h3::after {
    content: '✦';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    color: var(--color-gold);
    opacity: 0.8;
}

.subpage-faq .faq-item p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(245, 236, 215, 0.65);
    padding-bottom: 1.4rem;
    margin: 0;
    max-width: 640px;
}

.subpage-faq .faq-item p a {
    color: var(--color-gold-light);
    text-decoration: underline;
    text-decoration-color: rgba(200, 162, 85, 0.4);
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.subpage-faq .faq-item p a:hover {
    color: var(--color-gold);
}

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact {
    padding: var(--section-space) 0;
    background: var(--color-cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(3rem, 6vw, 5rem);
}

.contact-lead {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-detail-icon svg {
    width: 100%;
    height: 100%;
}

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.95rem;
    color: var(--color-text-light);
    display: block;
}

.contact-detail a:hover {
    color: var(--color-burgundy);
}

/* ── FORM ── */
.contact-form-wrap {
    background: var(--color-white);
    border: 1px solid rgba(200, 162, 85, 0.12);
    border-radius: var(--border-radius);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

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

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

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-light);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(42, 32, 53, 0.12);
    border-radius: 8px;
    background: var(--color-cream);
    color: var(--color-text);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(200, 162, 85, 0.1);
}

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

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%237A7484' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 1rem;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
    background: var(--color-deep-plum);
    color: rgba(245, 236, 215, 0.6);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    position: relative;
    margin-bottom: 3rem;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact strong,
.footer-links strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 162, 85, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

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

/* ══════════════════════════════════════════
   VIDEOS
   ══════════════════════════════════════════ */
.videos {
    position: relative;
    padding: calc(var(--section-space) + 3rem) 0;
    background: linear-gradient(170deg, var(--color-deep-plum) 0%, var(--color-dark) 100%);
}

.videos .section-header {
    text-align: center;
}

.videos .section-intro {
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.video-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--color-dark);
}

.video-featured .video-wrapper {
    padding-bottom: 56.25%;
    height: 100%;
}

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

.video-caption {
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-top: 0.75rem;
    font-weight: 500;
}

/* ══════════════════════════════════════════
   MODALS
   ══════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 26, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: var(--gutter);
}

.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-cream);
    border-radius: var(--border-radius);
    padding: clamp(2rem, 4vw, 3.5rem);
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
    display: none;
}

.modal-overlay.is-active .modal.is-active {
    transform: translateY(0) scale(1);
    display: block;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(42, 32, 53, 0.08);
    color: var(--color-text);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    line-height: 1;
}

.modal-close:hover {
    background: rgba(42, 32, 53, 0.15);
}

.modal h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    padding-right: 2rem;
}

.modal p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.modal ul {
    margin: 0 0 1.25rem 0;
    padding-left: 1.25rem;
    list-style: none;
}

.modal ul li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.modal ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-rose));
}

.modal-cta {
    margin-top: 1.5rem;
}

/* Card "Mehr erfahren" link */
.card-more {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    margin-top: 0.75rem;
    transition: color var(--transition);
}

.event-card[data-modal] {
    cursor: pointer;
}

.event-card[data-modal]:hover .card-more {
    color: var(--color-gold-light);
}

/* event grid: 3 Spalten auf Desktop */

/* Testimonial stars with unicode */
.testimonial-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Google button */
.testimonial-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-google {
    display: inline-flex;
    align-items: center;
}

/* ══════════════════════════════════════════
   DROPDOWN NAVIGATION
   ══════════════════════════════════════════ */
.nav-has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.6em;
    margin-left: 0.2em;
    transition: transform 0.3s ease;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(15, 10, 26, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 162, 85, 0.15);
    border-radius: var(--border-radius);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: block;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.85rem !important;
    color: rgba(245, 236, 215, 0.7) !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown a::after {
    display: none !important;
}

.nav-dropdown a:hover {
    background: rgba(200, 162, 85, 0.1);
    color: var(--color-gold-light) !important;
    padding-left: 1.75rem !important;
}

/* ══════════════════════════════════════════
   SUBPAGES
   ══════════════════════════════════════════ */
.subpage-hero {
    background: linear-gradient(170deg, var(--color-dark) 0%, var(--color-deep-plum) 50%, var(--color-plum) 100%);
    padding: 10rem 0 4rem;
    text-align: center;
}

.breadcrumb {
    font-size: 0.8rem;
    color: rgba(245, 236, 215, 0.5);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--color-gold);
}

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

.breadcrumb span {
    margin: 0 0.5rem;
}

.subpage-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--color-champagne);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.subpage-subtitle {
    font-size: 1.15rem;
    color: rgba(245, 236, 215, 0.6);
    max-width: 560px;
    margin: 0 auto;
}

.subpage-content {
    padding: var(--section-space) 0;
    background: var(--color-cream);
}

.subpage-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.subpage-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--color-text);
    margin: 2.5rem 0 1rem;
    line-height: 1.2;
}

.subpage-text h2:first-child {
    margin-top: 0;
}

.subpage-text p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.subpage-text .lead {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
}

.subpage-text ul {
    margin: 1rem 0 1.5rem;
    padding: 0;
}

.subpage-text ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.subpage-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-rose));
}

.subpage-sidebar .image-frame {
    margin-bottom: 1.5rem;
    position: sticky;
    top: 100px;
}

.subpage-cta {
    padding: 4rem 0;
    background: linear-gradient(170deg, var(--color-deep-plum) 0%, var(--color-dark) 100%);
    text-align: center;
}

.subpage-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-champagne);
    margin-bottom: 0.75rem;
}

.subpage-cta p {
    color: rgba(245, 236, 215, 0.6);
    margin-bottom: 1.5rem;
}

.subpage-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.subpage-feature {
    background: var(--color-white);
    border: 1px solid rgba(200, 162, 85, 0.12);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.subpage-feature strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.subpage-feature span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
    }

    .testimonial-featured {
        transform: none;
    }

    .footer-layout {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: 9998;
        background: rgba(15, 10, 26, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        pointer-events: none;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-toggle {
        z-index: 9999;
        position: relative;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-list a {
        font-size: 1.2rem;
        font-family: var(--font-display);
    }

    .nav-toggle.is-active .toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.is-active .toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-active .toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .logo-img {
        height: 60px;
    }

    .site-header.scrolled .logo-img {
        height: 45px;
    }

    .hero {
        padding: 6rem var(--gutter) 3rem;
        min-height: auto;
    }

    .hero-image {
        display: none;
    }

    /* Dropdown on mobile — nur bei .is-open sichtbar */
    .nav-dropdown {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
        min-width: auto;
        margin-top: 0;
    }

    .nav-has-dropdown.is-open .nav-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        padding: 0.5rem 0 0.5rem 1rem;
    }

    .nav-dropdown a {
        font-size: 1rem !important;
        padding: 0.75rem 0 !important;
    }

    .nav-dropdown a:hover {
        padding-left: 0 !important;
    }

    /* Subpage responsive */
    .subpage-layout {
        grid-template-columns: 1fr;
    }

    .subpage-sidebar .image-frame {
        position: static;
    }

    .subpage-hero {
        padding: 7rem 0 3rem;
    }

    .subpage-features {
        grid-template-columns: 1fr;
    }

    .hero-kicker {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .wave-hero {
        height: 60px;
    }

    .intro-layout,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .intro-visual {
        order: -1;
        max-width: 320px;
    }

    .about-visual {
        max-width: 300px;
        margin: 0 auto;
    }

    .show-feature,
    .show-feature-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .event-grid {
        grid-template-columns: 1fr !important;
    }

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

    .video-featured {
        grid-column: auto;
        grid-row: auto;
    }

    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }

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

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .gallery-tall {
        grid-row: span 1;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev { left: 0.75rem; }
    .lightbox-next { right: 0.75rem; }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .footer-layout {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (390px)
   ══════════════════════════════════════════ */
@media (max-width: 420px) {
    .hero-title {
        font-size: 2rem;
    }

    .trust-number {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-wide {
        grid-column: auto;
    }

    .event-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ══════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════ */
@media print {
    .site-header,
    .hero-particles,
    .hero-glow,
    .wave-divider,
    .hero-scroll-hint,
    .nav-toggle {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
        background: none;
    }

    .hero-title,
    .hero-kicker,
    .hero-sub {
        color: #000;
        opacity: 1;
        animation: none;
    }
}

/* ══════════════════════════════════════════
   MAGIC CURSOR SPARKLE
   ══════════════════════════════════════════ */
.magic-sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    animation: cursorSparkle 0.8s ease-out forwards;
}

@keyframes cursorSparkle {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, calc(-50% - 35px)) scale(0); }
}

.magic-sparkle.star-shape {
    border-radius: 0;
    background: none !important;
    font-size: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================================
   DSGVO-CHECKBOX IM FORMULAR
   ============================================================ */

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(200, 162, 85, 0.06);
    border: 1px solid rgba(200, 162, 85, 0.2);
    border-radius: 8px;
}

.form-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.form-checkbox-group label {
    font-size: 0.85rem;
    color: var(--color-text);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox-group label a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-checkbox-group label a:hover {
    color: var(--color-gold-light);
}

/* ============================================================
   COOKIE-BANNER
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    transition: bottom 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.cookie-banner.is-visible {
    bottom: 0;
    pointer-events: all;
}

.cookie-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-deep-plum);
    border: 1px solid rgba(200, 162, 85, 0.3);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 162, 85, 0.1);
    backdrop-filter: blur(10px);
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--color-champagne);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-text a:hover {
    color: var(--color-gold-light);
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-info {
    font-size: 0.8rem;
    color: rgba(245, 236, 215, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    transition: color 0.2s;
}

.btn-cookie-info:hover {
    color: var(--color-gold);
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--color-gold), #e8b84b);
    color: var(--color-dark);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 2px 12px rgba(200, 162, 85, 0.4);
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(200, 162, 85, 0.6);
}

.btn-cookie-accept:active {
    transform: translateY(0);
}

@media (max-width: 640px) {
    .cookie-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.9rem 1rem;
        border-radius: 12px;
    }

    .cookie-icon {
        display: none;
    }

    .cookie-text {
        gap: 0;
    }

    .cookie-text p {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

    .btn-cookie-accept {
        flex: 1;
        text-align: center;
    }
}
