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

:root {
    --bg: #f5f0eb;
    --bg-dark: #1a1a1a;
    --text: #2c2c2c;
    --text-light: #8a8278;
    --accent: #a08c6e;
    --accent-dark: #8a7560;
    --white: #ffffff;
    --black: #0a0a0a;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-line {
    width: 80px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    animation: preloaderAnim 1.5s ease forwards;
}

@keyframes preloaderAnim {
    0% { width: 0%; }
    100% { width: 100%; }
}

.preloader-text {
    font-family: var(--serif);
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background: rgba(245, 240, 235, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text);
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.header:not(.scrolled) .logo a {
    color: var(--white);
}

.logo a:hover {
    opacity: 0.7;
}

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav-link {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.header:not(.scrolled) .desktop-nav-link {
    color: rgba(255,255,255,0.55);
}

.header:not(.scrolled) .desktop-nav-link:hover {
    color: var(--white);
}

.desktop-nav-link:hover {
    color: var(--text);
}

.desktop-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

/* Menu Toggle (mobile only) */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    width: 30px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    transition: all 0.35s ease;
    transform-origin: center;
}

.header:not(.scrolled) .menu-toggle span {
    background: var(--white);
}

.menu-toggle.active span {
    background: var(--text) !important;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 2px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 5px 8px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

.header:not(.scrolled) .lang-btn {
    color: rgba(255,255,255,0.4);
}

.header:not(.scrolled) .lang-btn.active {
    color: var(--white);
}

.lang-btn.active {
    color: var(--text);
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 1px;
    background: var(--accent);
}

.lang-btn:hover {
    color: var(--accent);
}

/* ===== FULL-SCREEN NAVIGATION OVERLAY (mobile) ===== */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.04em;
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
    position: relative;
}

.mobile-nav.active .nav-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav.active .nav-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.active .nav-link:nth-child(2) { transition-delay: 0.12s; }
.mobile-nav.active .nav-link:nth-child(3) { transition-delay: 0.16s; }
.mobile-nav.active .nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.active .nav-link:nth-child(5) { transition-delay: 0.24s; }
.mobile-nav.active .nav-link:nth-child(6) { transition-delay: 0.28s; }
.mobile-nav.active .nav-link:nth-child(7) { transition-delay: 0.32s; }

.nav-link:hover {
    color: var(--accent);
    letter-spacing: 0.08em;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--black);
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 10s ease;
    filter: brightness(0.65);
}

.hero.loaded .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.4) 100%
    );
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin: 0 auto 20px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.hero-subtitle {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

.hero-cta {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 14px 40px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.hero-cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    letter-spacing: 0.35em;
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ===== GALLERY SECTIONS ===== */
.gallery-section {
    padding: 100px 0 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 40px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 16px;
}

.section-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 20px;
}

.section-desc {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== GALLERY VERTICAL GRID ===== */
.gallery-category {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    transition: transform 0.4s ease;
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    aspect-ratio: 3/4;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

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

.item-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.04em;
}

.item-detail {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* Placeholder items */
.placeholder-item .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.placeholder-label {
    font-style: italic;
    color: rgba(255,255,255,0.45);
}

/* ===== DETAIL MODAL ===== */
.detail-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition);
    overflow-y: auto;
    overflow-x: hidden;
}

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

.detail-modal-close {
    position: fixed;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-modal-close:hover {
    opacity: 1;
}

.detail-modal-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 100vh;
}

.detail-modal-main {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.detail-modal-main img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.detail-modal-sidebar {
    padding: 100px 50px 60px;
    overflow-y: auto;
}

.detail-modal-title {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 20px;
}

.detail-modal-divider {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 30px;
}

.detail-modal-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.detail-meta-row {
    display: flex;
    gap: 16px;
    align-items: baseline;
}

.detail-meta-label {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    min-width: 100px;
    flex-shrink: 0;
}

.detail-meta-value {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text);
}

.detail-modal-description {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 40px;
}

.detail-modal-gallery {
    margin-bottom: 40px;
    display: none;
}

.detail-modal-gallery.has-content {
    display: block;
}

.detail-gallery-title,
.detail-video-title {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.detail-gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border-radius: 2px;
}

.detail-gallery-grid img:hover {
    opacity: 0.8;
}

.detail-modal-video {
    margin-bottom: 40px;
    display: none;
}

.detail-modal-video.has-content {
    display: block;
}

.detail-modal-video iframe,
.detail-modal-video video {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 2px;
}

/* Detail Modal Navigation */
.detail-modal-nav {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10001;
}

.detail-nav-prev,
.detail-nav-next {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.detail-nav-prev:hover,
.detail-nav-next:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

.detail-nav-counter {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-light);
}

/* ===== SIMPLE LIGHTBOX (Arbeitsweise) ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    padding: 20px;
}

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

.lightbox-prev:hover, .lightbox-next:hover {
    opacity: 1;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lightbox-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#lightbox-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

#lightbox-counter {
    font-family: var(--sans);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.15em;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 40px;
    background: var(--white);
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(0.05);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.about-image:hover img {
    filter: grayscale(0);
    transform: scale(1.02);
}

.about-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 16px;
}

.about-divider {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 30px;
}

.about-text p {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 18px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.about-detail-item {
    display: flex;
    gap: 20px;
    align-items: baseline;
}

.detail-label {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    min-width: 100px;
}

.detail-value {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 40px;
    text-align: center;
    background: var(--bg-dark);
    color: var(--white);
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.contact-divider {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 30px;
}

.contact-text {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 30px;
}

.contact-platforms {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 30px;
}

.contact-platforms a {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(160, 140, 110, 0.4);
    padding-bottom: 1px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-platforms a:hover {
    color: #c4aa86;
    border-bottom-color: #c4aa86;
}

.contact-email {
    display: inline-block;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.04em;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    transition: border-color 0.3s ease;
}

.contact-email:hover {
    border-color: var(--accent);
}

.contact-location {
    margin-top: 30px;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ===== FOOTER ===== */
.footer {
    padding: 30px 40px;
    background: var(--black);
    color: rgba(255,255,255,0.3);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copy, .footer-note {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(160, 140, 110, 0.2);
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.6s ease;
}

#cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

#cookie-banner.hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-text {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    flex: 1;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-text a:hover {
    border-color: var(--accent);
}

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

.cookie-btn {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--accent-dark);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }

    .menu-toggle {
        grid-column: 1;
        justify-self: start;
    }

    .logo {
        grid-column: 2;
        text-align: center;
    }

    .header-actions {
        grid-column: 3;
        justify-self: end;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .detail-modal-body {
        grid-template-columns: 1fr;
    }

    .detail-modal-main {
        position: relative;
        height: auto;
        min-height: 50vh;
        padding: 80px 20px 30px;
    }

    .detail-modal-sidebar {
        padding: 30px 20px 80px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
        height: 60px;
    }

    .logo a {
        font-size: 1rem;
    }

    .lang-btn {
        font-size: 0.55rem;
        padding: 3px 5px;
    }

    .gallery-section {
        padding: 70px 0 40px;
    }

    .section-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .section-desc {
        font-size: 0.7rem;
    }

    .gallery-category {
        padding: 0 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-section {
        padding: 80px 20px;
    }

    .about-inner {
        gap: 40px;
    }

    .about-image {
        max-width: 300px;
    }

    .contact-section {
        padding: 80px 20px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .nav-link {
        font-size: 2rem;
        gap: 18px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .lightbox-prev, .lightbox-next {
        font-size: 2rem;
        padding: 10px;
    }

    .detail-modal-title {
        font-size: 1.8rem;
    }

    .detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-modal-close {
        top: 16px;
        right: 16px;
    }
}

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

    .gallery-category {
        padding: 0 16px;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 0.65rem;
    }

    .about-detail-item {
        flex-direction: column;
        gap: 4px;
    }

    .detail-label {
        min-width: auto;
    }

    .nav-link {
        font-size: 1.6rem;
    }

    .detail-meta-row {
        flex-direction: column;
        gap: 4px;
    }

    .detail-meta-label {
        min-width: auto;
    }
}

/* ===== CREATIVE PROCESS SECTION ===== */
.process-section .section-header {
    margin-bottom: 48px;
}

.process-intro {
    max-width: 900px;
    margin: 0 auto 56px;
    padding: 0 24px;
}

.process-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.process-text p {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
    margin: 0 0 20px;
}

.process-text p:last-child {
    margin-bottom: 0;
}

.process-grid {
    align-items: stretch;
}

.process-grid .gallery-item {
    min-height: 320px;
}

.process-grid .gallery-item-inner {
    height: 100%;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #111;
}

.video-item .gallery-item-overlay {
    pointer-events: none;
}

@media (max-width: 768px) {
    .process-intro {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .process-text p {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .process-grid .gallery-item {
        min-height: 260px;
    }
}

@media (max-width: 480px) {
   .contact-email-wrapper,
.contact-phone-wrapper {
    margin-top: 12px;
    text-align: center;
}

.contact-email,
.contact-phone {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-email {
    color: #b08a5a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.contact-phone {
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.contact-email:hover,
.contact-phone:hover {
    opacity: 0.8;
}
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-link {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
    opacity: 1;
}

.legal-page {
    background: #111;
    color: #f5f5f5;
    min-height: 100vh;
}

.legal-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    margin: 0 0 18px;
    color: #fff;
}

.legal-divider {
    width: 50px;
    height: 1px;
    background: #b08a5a;
    margin: 0 0 36px;
}

.legal-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin: 38px 0 12px;
}

.legal-content p,
.legal-content li,
.legal-content address {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,0.82);
}

.legal-content a {
    color: #b08a5a;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content ul {
    margin: 0 0 18px 20px;
    padding: 0;
}

.legal-back {
    display: inline-block;
    margin-top: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
}

.legal-back:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .legal-wrap {
        padding: 100px 20px 70px;
    }

/* CTA im Detail-Modal */
.detail-modal-cta {
    margin-top: 1.5rem;
}
.detail-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid #1a1a1a;
    transition: background 0.2s, color 0.2s;
}
.detail-cta-btn:hover {
    background-color: transparent;
    color: #1a1a1a;
}
}




/* ── CTA-Button im Detail-Modal ─────────────────────────────────── */
.detail-modal-cta {
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
}

.detail-cta-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.detail-cta-btn:hover {
    background-color: transparent;
    color: var(--accent);
}

/* ── Gesperrte Gallery-Items ────────────────────────────────────── */
.gallery-item[data-no-modal="true"] {
    cursor: default;
    pointer-events: none;
}

.gallery-item[data-no-modal="true"] .gallery-item-overlay {
    display: none;
}

/* ── Kontaktformular Overlay ────────────────────────────────────── */
.cta-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cta-form-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cta-form-box {
    background: var(--bg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2.5rem 2rem;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.25s ease;
}

.cta-form-overlay.active .cta-form-box {
    transform: translateY(0);
}

.cta-form-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.cta-form-close:hover {
    color: var(--text);
}

.cta-form-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text);
    margin: 0 0 0.2rem;
    padding-right: 2rem;
}

.cta-form-divider {
    width: 36px;
    height: 1px;
    background: var(--accent);
    margin: 0.8rem 0 1.6rem;
}

.cta-form-row {
    margin-bottom: 1.1rem;
}

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

.cta-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.cta-input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: var(--white);
    border: 1px solid #ddd8d0;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.cta-input:focus {
    border-color: var(--accent);
}

.cta-textarea {
    resize: vertical;
    min-height: 110px;
}

.cta-form-error {
    display: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #c0392b;
    margin: 0 0 0.8rem;
}

.cta-form-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.4rem;
}

.cta-btn-cancel {
    padding: 0.7rem 1.4rem;
    background: transparent;
    border: 1px solid #ddd8d0;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.cta-btn-cancel:hover {
    border-color: var(--text-light);
    color: var(--text);
}

.cta-btn-send {
    padding: 0.7rem 1.6rem;
    background: var(--accent);
    border: 1px solid var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cta-btn-send:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

@media (max-width: 480px) {
    .cta-form-box {
        padding: 2rem 1.5rem 1.5rem;
    }
    .cta-form-row--half {
        grid-template-columns: 1fr;
    }
    .cta-form-actions {
        flex-direction: column-reverse;
    }
    .cta-btn-cancel,
    .cta-btn-send {
        width: 100%;
        text-align: center;
    }
}

/* ══════════════════════════════════════════════════════════════════
   CTA INLINE FORM
   ══════════════════════════════════════════════════════════════════ */

.cta-inline-form {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    margin-top: 0;
}
.cta-inline-form.open {
    max-height: 1400px;
    opacity: 1;
    margin-top: 1.2rem;
}

.cta-step-title {
    font-family: var(--font-serif, serif);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent, #a08c6e);
    margin: 0 0 1rem;
}

/* Option cards */
.cta-option-cards {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
}
.cta-option-card {
    border: 1px solid rgba(160,140,110,0.3);
    border-radius: 4px;
    padding: 0.7rem 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.cta-option-card:hover:not(.unavailable) {
    border-color: var(--accent, #a08c6e);
    background: rgba(160,140,110,0.06);
}
.cta-option-card.selected {
    border-color: var(--accent, #a08c6e);
    background: rgba(160,140,110,0.12);
}
.cta-option-card.unavailable {
    opacity: 0.38;
    cursor: default;
}
.cta-option-top {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.cta-option-check {
    font-size: 1rem;
    width: 1.2rem;
    flex-shrink: 0;
}
.cta-option-label {
    font-family: var(--font-serif, serif);
    font-size: 0.95rem;
    flex: 1;
}
.cta-option-badge {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent, #a08c6e);
    border: 1px solid rgba(160,140,110,0.4);
    padding: 0.1rem 0.35rem;
    border-radius: 2px;
    flex-shrink: 0;
}
.cta-option-info {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--accent, #a08c6e);
    padding: 0 0.15rem;
    opacity: 0.65;
    transition: opacity 0.2s;
}
.cta-option-info:hover { opacity: 1; }
.cta-option-desc {
    font-size: 0.78rem;
    color: #888;
    margin: 0.45rem 0 0 1.75rem;
    line-height: 1.5;
}

/* Form fields */
.cta-form-row { margin-bottom: 0.85rem; }

.cta-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.28rem;
}
.cta-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(160,140,110,0.25);
    border-radius: 3px;
    padding: 0.52rem 0.7rem;
    font-family: var(--font-sans, sans-serif);
    font-size: 0.88rem;
    color: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.cta-input:focus {
    outline: none;
    border-color: var(--accent, #a08c6e);
}
.cta-textarea {
    resize: vertical;
    min-height: 85px;
}
.cta-form-error {
    font-size: 0.78rem;
    color: #c0392b;
    margin: 0.2rem 0 0.4rem;
}

/* Action buttons */
.cta-inline-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    margin-top: 0.75rem;
}
.cta-btn-cancel,
.cta-btn-next,
.cta-btn-send {
    font-family: var(--font-sans, sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 0.52rem 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cta-btn-cancel {
    background: transparent;
    border: 1px solid rgba(160,140,110,0.35);
    color: #888;
}
.cta-btn-cancel:hover {
    border-color: var(--accent, #a08c6e);
    color: var(--accent, #a08c6e);
}
.cta-btn-next,
.cta-btn-send {
    background: var(--accent, #a08c6e);
    border: 1px solid var(--accent, #a08c6e);
    color: #fff;
}
.cta-btn-next:hover,
.cta-btn-send:hover {
    background: var(--accent-dark, #8a7560);
    border-color: var(--accent-dark, #8a7560);
}

/* ============================================================
 * Exhibition Teaser Section (s5.php / index.php)
 * ============================================================ */
.exhibition-teaser-section {
    padding: var(--section-padding) 0;
    background: var(--bg);
}
.exhibition-teaser-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.exh-teaser-video .exh-video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #111;
}
.exh-teaser-video .exh-video-ratio iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.exh-teaser-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.8rem;
}
.exh-teaser-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--text);
    margin: 0 0 0.3rem;
    line-height: 1.15;
}
.exh-teaser-subheading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-light);
    margin: 0 0 1.4rem;
}
.exh-teaser-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0 0 2rem;
}
.exh-teaser-btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}
.exh-teaser-btn:hover {
    background: var(--accent);
    color: var(--white);
}
@media (max-width: 768px) {
    .exhibition-teaser-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== GALERIE ÜBERSICHT (Teaser im Ausstellungsstil) ===== */
.galerie-overview-section {
    padding: 100px 0 80px;
    background: var(--bg);
}
.galerie-teaser-inner {
    max-width: 1100px;
    margin: 0 auto 0;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    border-top: 1px solid rgba(160,140,110,0.13);
}
.galerie-teaser-inner:last-child { border-bottom: 1px solid rgba(160,140,110,0.13); }
.galerie-teaser-reverse { direction: rtl; }
.galerie-teaser-reverse > * { direction: ltr; }
.galerie-teaser-image { overflow: hidden; background: var(--bg-dark); }
.galerie-teaser-image img {
    width: 100%; height: 420px; object-fit: cover; display: block;
    transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s ease;
    filter: brightness(0.95);
}
.galerie-teaser-image a { display: block; overflow: hidden; }
.galerie-teaser-inner:hover .galerie-teaser-image img {
    transform: scale(1.04); filter: brightness(1);
}

/* ===== DESKTOP NAV DROPDOWN ===== */
.desktop-nav-item { position: relative; }
.nav-dropdown {
    position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--white);
    border: 1px solid rgba(160,140,110,0.18);
    border-top: 1px solid var(--accent);
    min-width: 160px; padding: 8px 0;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 200;
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}
.desktop-nav-item.has-dropdown::after {
    content: ''; position: absolute; bottom: -14px; left: 0; right: 0; height: 14px;
}
.desktop-nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
    display: block; font-family: var(--sans);
    font-size: 0.66rem; font-weight: 400; letter-spacing: 0.13em;
    text-transform: uppercase; color: var(--text-light);
    padding: 10px 22px;
    transition: color 0.2s ease, background 0.2s ease; white-space: nowrap;
}
.nav-dropdown-link:hover { color: var(--text); background: rgba(160,140,110,0.06); }

/* ===== MOBILE NAV Unterlinks ===== */
.nav-link-sub { padding-left: 32px !important; font-size: 0.68rem; opacity: 0.7; }

@media (max-width: 768px) {
    .galerie-teaser-inner,
    .galerie-teaser-inner.galerie-teaser-reverse {
        grid-template-columns: 1fr; direction: ltr; gap: 1.8rem; padding: 40px 20px;
    }
    .galerie-teaser-image img { height: 260px; }
}
