/* ============================================================
   Kapelle Kreizfidoi — Design System
   Style: edgy & energiegeladen
   ============================================================ */

@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Space Grotesk";
    src: url("../assets/fonts/SpaceGrotesk-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Markenfarbe */
    --primary: rgb(57, 89, 45);
    --primary-light: rgb(94, 138, 75);
    --primary-dark: rgb(36, 58, 28);
    --primary-glow: rgba(94, 138, 75, 0.35);

    /* Neutrale Töne (warm) */
    --bg: #f7f6f1;
    --surface: #ffffff;
    --text: #111210;
    --text-muted: #5b5e57;
    --border: #e1e1d8;

    /* Dunkle Töne */
    --dark: #0c0d0b;
    --dark-2: #15171350;
    --dark-surface: #1a1c19;
    --dark-border: #2a2c28;

    /* Spacing (8px Grid) */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 24px;
    --s-6: 32px;
    --s-7: 48px;
    --s-8: 64px;
    --s-9: 96px;
    --s-10: 128px;

    /* Typografie */
    --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;

    /* Radien */
    --r-1: 4px;
    --r-2: 8px;
    --r-3: 14px;
    --r-4: 24px;

    /* Schatten */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.18);

    /* Übergänge */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

::selection {
    background: var(--primary);
    color: #fff;
}

/* ============================================================
   Layout-Helpers
   ============================================================ */
.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section {
    padding: var(--s-9) 0;
    position: relative;
}

@media (max-width: 720px) {
    .section {
        padding: var(--s-8) 0;
    }
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--s-3);
    font-weight: 700;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    margin: 0 0 var(--s-4);
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0 0 var(--s-7);
    max-width: 65ch;
}

/* Animations: reveal-on-scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease);
    box-shadow: 0 8px 24px var(--primary-glow);
    line-height: 1;
}

.btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px var(--primary-glow);
}

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

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: none;
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
}

.btn--outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: none;
}

.btn--block {
    width: 100%;
    justify-content: center;
}

.btn .arrow {
    transition: transform 0.2s var(--ease);
}

.btn:hover .arrow {
    transform: translateX(3px);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 201;
    padding: var(--s-3) 0;
    background: transparent;
    transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(12, 13, 11, 0.72);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    padding: var(--s-2) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 44px;
    width: auto;
    transition: height 0.3s var(--ease);
}

.site-header.is-scrolled .brand-logo {
    height: 36px;
}

.site-nav {
    display: flex;
    gap: var(--s-5);
    align-items: center;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 6px 2px;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.site-nav a:hover {
    color: #fff;
}

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

/* Header Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    flex-shrink: 0;
}

.header-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.header-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.header-social-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 820px) {
    .header-social {
        display: none;
    }
}

/* Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
    backdrop-filter: blur(2px);
}

.nav-overlay.is-open {
    display: block;
}

/* Mobile Burger */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 10px;
    color: #fff;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

    .site-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px, 80vw);
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 96px var(--s-6) var(--s-6);
        gap: var(--s-4);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
        z-index: 200;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

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

    .site-header:has(.site-nav.is-open) {
        background: var(--dark);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom-color: transparent;
        transition: none;
    }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding: 120px 0 80px;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/SevStar.avif");
    background-size: cover;
    background-position: center 30%;
    z-index: -2;
    transform: scale(1.05);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 13, 11, 0.3) 0%, rgba(12, 13, 11, 0.55) 50%, rgba(12, 13, 11, 0.95) 100%),
        radial-gradient(ellipse at 30% 70%, rgba(57, 89, 45, 0.55), transparent 60%);
    z-index: -1;
}

.hero-inner {
    max-width: 1000px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: var(--s-4);
    font-weight: 700;
}

.hero-eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--primary-light);
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 9vw, 6.5rem);
    line-height: 0.95;
    margin: 0 0 var(--s-4);
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.hero h1 .accent {
    color: var(--primary-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 var(--s-6);
    max-width: 56ch;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--s-6);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-2);
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
    animation: scrollHint 2.4s var(--ease) infinite;
}

@keyframes scrollHint {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--s-8);
    align-items: center;
}

@media (max-width: 820px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--s-6);
    }
}

.about-image {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: var(--r-3);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    transform: scale(1.2);
    transform-origin: center bottom;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

.about-text p {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin: 0 0 var(--s-4);
}

.about-text p strong {
    color: var(--text);
    font-weight: 600;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
    margin-top: var(--s-5);
    list-style: none;
    padding: 0;
}

.about-tags li {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--surface);
}

/* ============================================================
   Highlights (vergangene Events) — Card Grid
   ============================================================ */
.section--dark {
    background: var(--dark);
    color: #fff;
}

.section--tinted {
    background: #f4f5f2;
}

.section--dark .section-title { color: #fff; }
.section--dark .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.section--dark .section-eyebrow { color: var(--primary-light); }

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--s-3);
}

.highlight-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-2);
    padding: var(--s-5);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-light);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    background: #1f211d;
}

.highlight-card:hover::before {
    transform: scaleY(1);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}

/* ============================================================
   Termine (kommende)
   ============================================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--s-3);
}

.event-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-2);
    padding: var(--s-5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.event-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.event-card:hover::before {
    transform: scaleY(1);
}

.event-card-date {
    display: flex;
    align-items: baseline;
    gap: var(--s-2);
    margin-bottom: var(--s-3);
}

.event-card-day {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.event-card-month {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    color: var(--text);
}

.event-card-time {
    margin: var(--s-2) 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.events-list {
    display: grid;
    gap: var(--s-3);
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: var(--s-5);
    align-items: center;
    padding: var(--s-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-2);
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.event-item:hover {
    transform: translateX(4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.event-date {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.event-date .day {
    font-size: 2rem;
    display: block;
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.event-date .year {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.event-info h3 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-weight: 600;
}

.event-info .event-meta {
    color: var(--text-muted);
    font-size: 0.92rem;
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    align-items: center;
}

.event-info .event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.event-pin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.events-empty {
    padding: var(--s-7) var(--s-5);
    text-align: center;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--r-2);
    color: var(--text-muted);
}

.events-empty strong {
    display: block;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

@media (max-width: 640px) {
    .event-item {
        grid-template-columns: 1fr;
        gap: var(--s-2);
    }
    .event-date {
        display: flex;
        align-items: baseline;
        gap: var(--s-2);
    }
    .event-date .day { font-size: 1.4rem; }
}

/* ============================================================
   Galerie
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-3);
}

.gallery-item {
    margin: 0;
    border-radius: var(--r-2);
    overflow: hidden;
    background: var(--primary-dark);
    cursor: zoom-in;
    position: relative;
    aspect-ratio: 1 / 1;
}

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

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

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: "+";
    position: absolute;
    bottom: var(--s-3);
    right: var(--s-3);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 300;
    font-size: 1.4rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item--hidden {
    display: none;
}

.gallery-more {
    text-align: center;
    margin-top: var(--s-6);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(8, 9, 7, 0.94);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--s-4);
    opacity: 0;
    transition: opacity 0.25s var(--ease);
}

.lightbox.is-open {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--r-2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

#lightboxClose {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
    z-index: 1001;
}

#lightboxClose:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

#lightboxClose:focus,
.lightbox-nav:focus {
    outline: none;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
    z-index: 1001;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   Kontakt
   ============================================================ */
.contact-section {
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 65%);
    opacity: 0.35;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
    align-items: start;
}

@media (max-width: 820px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--s-6);
    }
}

.contact-intro h2 {
    color: #fff;
}

.contact-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    margin: 0 0 var(--s-5);
}

.contact-detail {
    margin: var(--s-4) 0;
    color: rgba(255, 255, 255, 0.85);
}

.contact-detail strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: var(--s-3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-3);
    padding: var(--s-6);
    backdrop-filter: blur(10px);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3);
}

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

.contact-form label {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--r-2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font: inherit;
    font-size: 1rem;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: rgba(0, 0, 0, 0.5);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.contact-form .honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 1.5em;
    font-size: 0.95rem;
    margin: var(--s-1) 0 0;
}

.form-status[data-state="success"] {
    color: #9ed99a;
}

.form-status[data-state="error"] {
    color: #ff8d7e;
}

.contact-presskit {
    margin-top: var(--s-6);
}

.contact-social {
    margin-top: var(--s-5);
    padding-top: var(--s-5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: var(--s-4);
    flex-wrap: wrap;
}

.contact-social .label {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.social-icons {
    display: flex;
    gap: var(--s-2);
}

.social-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: var(--primary-light);
    background: var(--primary);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: #000;
    color: rgba(255, 255, 255, 0.6);
    padding: var(--s-7) 0 var(--s-5);
    font-size: 0.92rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: var(--s-5);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s var(--ease);
}

.footer-links a:hover {
    color: #fff;
}

/* ============================================================
   Legal pages (Impressum, Datenschutz)
   ============================================================ */
.legal-page {
    padding-top: 140px;
}

.legal-content {
    max-width: 760px;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 var(--s-5);
    letter-spacing: -0.02em;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: var(--s-7) 0 var(--s-3);
    color: var(--primary);
}

.legal-content h3 {
    font-size: 1.1rem;
    margin: var(--s-5) 0 var(--s-2);
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content .todo-note {
    padding: var(--s-4);
    border-left: 3px solid var(--primary-light);
    background: rgba(94, 138, 75, 0.08);
    border-radius: 0 var(--r-2) var(--r-2) 0;
    color: var(--text);
    margin: var(--s-5) 0;
    font-size: 0.95rem;
}

.legal-content .todo-note strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

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

body.no-scroll {
    overflow: hidden;
}

/* ============================================================
   Highlight-Karte – mit Inhalt klickbar
   ============================================================ */
.highlight-card--clickable { cursor: pointer; }

.highlight-card-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.highlight-photo-count {
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 1px 8px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* ============================================================
   Highlight-Modal
   ============================================================ */
.hl-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 600;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    overflow-y: auto;
}
.hl-modal.is-open { opacity: 1; }

.hl-modal-box {
    background: var(--surface);
    border-radius: 20px;
    max-width: 880px;
    width: 100%;
    padding: 48px;
    position: relative;
    transform: translateY(28px);
    transition: transform 0.35s var(--ease);
    margin: auto;
}
.hl-modal.is-open .hl-modal-box { transform: none; }

.hl-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: background 0.2s;
}
.hl-modal-close:hover { background: #e4e3db; }

.hl-modal-box h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
    padding-right: 52px;
    line-height: 1.2;
}

.hl-modal-text {
    color: var(--muted, #666);
    line-height: 1.75;
    margin-bottom: 28px;
    font-size: 1rem;
}

.hl-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.hl-modal-item {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
    background: var(--bg);
}
.hl-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease);
}
.hl-modal-item:hover img { transform: scale(1.05); }

@media (max-width: 600px) {
    .hl-modal { padding: 16px; }
    .hl-modal-box { padding: 28px 20px; }
    .hl-modal-box h2 { font-size: 1.35rem; }
    .hl-modal-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Musiker
   ============================================================ */
.musicians-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--s-4);
    margin-top: var(--s-7);
}

.musician-card {
    position: relative;
    border-radius: var(--r-2);
    overflow: hidden;
    background: var(--primary-dark);
    aspect-ratio: 4 / 5;
    cursor: default;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.musician-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.92) 100%);
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.musician-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.musician-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.musician-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
    filter: saturate(0.95);
}

.musician-card:hover .musician-photo img {
    transform: scale(1.05);
    filter: saturate(1.05);
}

.musician-photo--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.02em;
}

.musician-photo--fallback::after {
    content: attr(data-initials);
}

.musician-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--s-4) var(--s-4);
    z-index: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.musician-overlay .musician-instrument {
    font-size: 0.72rem;
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.musician-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .musicians-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s-3);
    }
    .musician-overlay { padding: var(--s-3) var(--s-3); }
    .musician-overlay h3 { font-size: 1rem; }
    .musician-overlay .musician-instrument { font-size: 0.66rem; }
    .musician-photo--fallback { font-size: 2.4rem; }
}
