/* ============================================================
   stieger-ART – Stylesheet
   Design: gecomm-it.ch
   Fonts: Cormorant Garamond (Headings) + Jost (Body)
   ============================================================ */

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

:root {
    --cream:       #F5F0E8;
    --warm-white:  #FDFAF4;
    --charcoal:    #1C1A16;
    --mid:         #4A4540;
    --muted:       #8C8070;
    --gold:        #B8954A;
    --gold-light:  #D4AF6E;
    --border:      rgba(28,26,22,0.12);
    --border-light:rgba(253,250,244,0.12);
    --shadow:      0 2px 12px rgba(28,26,22,0.08);
    --max-width:   1280px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.7;
    font-size: 17px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { cursor: pointer; }

.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;
}

/* ---- Container ---- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
}

/* ---- Cookie-Banner ---- */
#cookie-banner {
    display: none;
    position: fixed; bottom: 1.5rem; left: 1.5rem;
    z-index: 500;
    background: var(--charcoal);
    color: rgba(253,250,244,0.8);
    padding: 1.2rem 1.8rem;
    max-width: 420px;
    font-size: 0.82rem;
    line-height: 1.6;
    border-left: 2px solid var(--gold);
}
#cookie-banner p { margin-bottom: 1rem; }
#cookie-accept {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--gold); color: var(--charcoal);
    border: none; padding: 0.55rem 1.2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,250,244,0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex; gap: 1.5rem; list-style: none;
    align-items: center;
}
.nav-links a {
    font-size: 0.72rem; letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mid); text-decoration: none;
    transition: color 0.25s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
    font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--charcoal);
    padding: 0.65rem 1.3rem;
    text-decoration: none;
    transition: background 0.25s; flex-shrink: 0;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); }

.nav-toggle {
    display: none; background: none; border: none;
    padding: 0.4rem; flex-direction: column;
    gap: 5px; align-items: center; justify-content: center;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block; width: 22px; height: 1.5px;
    background: var(--charcoal); transition: all 0.25s;
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg); top: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-white); background: var(--charcoal);
    padding: 1rem 2rem; text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    border: none;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal);
    border: 0.5px solid var(--charcoal);
    padding: 1rem 2rem; text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-white);
    border: 0.5px solid rgba(253,250,244,0.4);
    padding: 1rem 2rem; text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-light {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal); background: var(--warm-white);
    padding: 1rem 2rem; text-decoration: none;
    transition: background 0.25s; border: none;
}
.btn-light:hover { background: var(--gold-light); }

/* ============================================================
   SECTION-GEMEINSAM
   ============================================================ */
.section-header {
    display: flex; align-items: baseline;
    justify-content: space-between;
    margin-bottom: 3.5rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
    line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-link {
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--muted);
    text-decoration: none;
    border-bottom: 0.5px solid var(--border);
    padding-bottom: 2px;
    transition: color 0.25s; white-space: nowrap;
    flex-shrink: 0;
}
.section-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   HERO – Vollbild (Startseite)
   ============================================================ */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.hero-bg {
    width: 100%; height: auto;
    display: block;
}
.hero-overlay { display: none; }
.hero-content {
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 4rem 4rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero-tag {
    font-size: 0.68rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 2rem;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300; line-height: 1.05;
    color: var(--warm-white); margin-bottom: 0.4rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 300; font-style: italic;
    color: rgba(253,250,244,0.88);
    margin-bottom: 2.5rem; line-height: 1.4;
}
.hero-text {
    font-size: 1rem; color: rgba(253,250,244,0.80);
    max-width: 520px; margin-bottom: 3rem; line-height: 1.85;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll-Down-Pfeil */
.hero-scroll-down {
    position: fixed;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    color: rgba(253,250,244,0.55);
    opacity: 1;
    transition: opacity 0.4s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hero-scroll-down.hidden { opacity: 0; pointer-events: none; }
@keyframes hero-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}
.hero-scroll-down svg {
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
    animation: hero-bounce 2.2s ease-in-out infinite;
}

/* ============================================================
   PAGE-HERO – Kleinerer Hero für Unterseiten
   ============================================================ */
.page-hero {
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 9rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: attr(data-title);
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem; font-weight: 300;
    color: rgba(253,250,244,0.03);
    position: absolute; right: 2rem; bottom: -1rem;
    line-height: 1; pointer-events: none;
}
.page-hero-tag {
    font-size: 0.65rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1rem;
}
.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300;
    line-height: 1.1; color: var(--warm-white);
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
    font-size: 1rem; color: rgba(253,250,244,0.78);
    margin-top: 1.2rem; max-width: 520px; line-height: 1.7;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}
.strip-item {
    padding: 2.5rem 3rem;
    border-right: 0.5px solid var(--border);
    text-align: center;
}
.strip-item:last-child { border-right: none; }
.strip-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 300;
    color: var(--gold); line-height: 1; margin-bottom: 0.3rem;
}
.strip-label {
    font-size: 0.78rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie-section { padding: 6rem 4rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.artwork-card { cursor: pointer; }
.artwork-image {
    aspect-ratio: 1 / 1;
    overflow: hidden; margin-bottom: 1rem; position: relative;
}
.artwork-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.artwork-card:hover .artwork-image img { transform: scale(1.03); }
.sold-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--charcoal); color: var(--warm-white);
    font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 0.3rem 0.7rem;
}
.artwork-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 400; margin-bottom: 0.25rem;
}
.artwork-meta {
    font-size: 0.82rem; color: var(--muted);
    letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.artwork-footer {
    display: flex; align-items: center; justify-content: space-between;
}
.artwork-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--mid);
    border: 0.5px solid var(--border);
    padding: 0.4rem 0.9rem;
    background: none; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
}
.artwork-btn:hover { border-color: var(--gold); color: var(--gold); }
.artwork-btn.sold { color: var(--muted); border-color: transparent; pointer-events: none; }
.artwork-detail-hint {
    font-size: 0.62rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted); opacity: 0.5;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(18,16,14,0.97);
    align-items: center; justify-content: center; padding: 2rem;
}
.lightbox-overlay.active { display: flex; }
.lightbox-inner {
    display: grid; grid-template-columns: 1fr 360px;
    max-width: 1060px; width: 100%;
    max-height: 90vh; gap: 3.5rem;
    position: relative; align-items: start;
}
.lightbox-img-wrap {
    display: flex; align-items: center; justify-content: center;
    max-height: 85vh; overflow: hidden;
}
.lightbox-img-wrap img {
    max-width: 100%; max-height: 85vh;
    object-fit: contain;
}
.lightbox-info {
    color: var(--warm-white);
    overflow-y: auto; max-height: 85vh;
    display: flex; flex-direction: column;
}
.lightbox-counter {
    font-size: 0.62rem; letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(253,250,244,0.3); margin-bottom: 1.5rem;
}
.lightbox-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300; line-height: 1.1;
    margin-bottom: 0.5rem;
}
.lightbox-meta {
    font-size: 0.82rem; color: rgba(253,250,244,0.4);
    letter-spacing: 0.08em; margin-bottom: 1.5rem;
}
.lightbox-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem; font-style: italic;
    color: rgba(253,250,244,0.62); line-height: 1.7; margin-bottom: 1.8rem;
}
.lightbox-status {
    display: inline-block; font-size: 0.62rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0.3rem 0.8rem; margin-bottom: 1.5rem; align-self: flex-start;
}
.lightbox-status.available { color: var(--gold); border: 0.5px solid var(--gold); }
.lightbox-status.sold-st { color: rgba(253,250,244,0.35); border: 0.5px solid rgba(253,250,244,0.2); }
.lightbox-cta {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal); background: var(--warm-white);
    padding: 0.9rem 1.8rem; text-decoration: none;
    display: inline-block; align-self: flex-start;
    margin-bottom: 2rem; transition: background 0.25s;
}
.lightbox-cta:hover { background: var(--gold-light); }
.lightbox-cta.sold-cta {
    background: transparent; color: rgba(253,250,244,0.4);
    border: 0.5px solid rgba(253,250,244,0.2);
}
.lightbox-cta.sold-cta:hover { border-color: var(--muted); color: var(--warm-white); }
.lightbox-ki { border-top: 0.5px solid rgba(253,250,244,0.1); padding-top: 1.5rem; }
.lightbox-ki-label { display: none; }
.lightbox-ki img { width: 100%; height: auto; object-fit: contain; }
.lightbox-close {
    position: fixed; top: 1.5rem; right: 2rem;
    background: none; border: none;
    color: rgba(253,250,244,0.5); font-size: 2rem;
    line-height: 1; z-index: 10;
    transition: color 0.2s; padding: 0.5rem;
}
.lightbox-close:hover { color: var(--warm-white); }
.lightbox-nav-btn {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: none; border: none;
    color: rgba(253,250,244,0.35); font-size: 2.8rem;
    padding: 1rem; transition: color 0.2s; z-index: 10; line-height: 1;
}
.lightbox-nav-btn:hover { color: var(--warm-white); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ============================================================
   LEISTUNGEN / ANGEBOT
   ============================================================ */
.leistungen-section { background: var(--cream); padding: 6rem 4rem; }
.leistungen-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 3.5rem;
    border: 0.5px solid var(--border);
}
.leistung-card {
    padding: 2.5rem 2rem;
    border-right: 0.5px solid var(--border);
    transition: background 0.25s;
}
.leistung-card:last-child { border-right: none; }
.leistung-card:hover { background: var(--warm-white); }
.leistung-icon { font-size: 1.5rem; margin-bottom: 1.2rem; display: block; opacity: 0.7; }
.leistung-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400;
    margin-bottom: 0.75rem; line-height: 1.2;
}
.leistung-text { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }
.leistung-tag {
    display: inline-block; margin-top: 1.2rem;
    font-size: 0.62rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
}

/* Zielgruppen-Bereiche (Angebot-Seite) */
.zielgruppen-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.5rem; margin-top: 3.5rem;
}
.zielgruppe-card {
    background: var(--warm-white);
    border: 0.5px solid var(--border);
    padding: 3rem;
}
.zielgruppe-nr {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300;
    color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.zielgruppe-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 300;
    margin-bottom: 0.5rem; line-height: 1.2;
}
.zielgruppe-sub {
    font-size: 0.78rem; color: var(--muted);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.zielgruppe-list {
    list-style: none; display: flex;
    flex-direction: column; gap: 0.6rem;
}
.zielgruppe-list li {
    font-size: 0.9rem; color: var(--mid); line-height: 1.6;
    display: flex; gap: 0.75rem; align-items: flex-start;
}
.zielgruppe-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }

/* ============================================================
   ATELIER
   ============================================================ */
.atelier-section {
    background: var(--charcoal); color: var(--warm-white);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; padding: 0;
}
.atelier-image { min-height: 500px; position: relative; overflow: hidden; }
.atelier-image img { width: 100%; height: 100%; object-fit: cover; }
.atelier-image::after {
    content: 'Atelier';
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem; font-weight: 300;
    color: rgba(255,255,255,0.05);
    position: absolute; bottom: 2rem; left: 2rem; line-height: 1;
    pointer-events: none;
}
.atelier-content {
    padding: 5rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
}
.atelier-tag {
    font-size: 0.68rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.atelier-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 300;
    line-height: 1.1; margin-bottom: 1.5rem;
}
.atelier-title em { font-style: italic; color: var(--gold-light); }
.atelier-text { font-size: 1rem; line-height: 1.85; color: rgba(253,250,244,0.85); margin-bottom: 2rem; }
.atelier-list {
    list-style: none; display: flex; flex-direction: column;
    gap: 0.6rem; margin-bottom: 2.5rem;
}
.atelier-list li {
    font-size: 0.92rem; color: rgba(253,250,244,0.78);
    display: flex; align-items: center; gap: 0.75rem;
}
.atelier-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.atelier-options { display: flex; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.atelier-opt {
    font-size: 0.78rem; letter-spacing: 0.1em;
    color: rgba(253,250,244,0.5);
    display: flex; align-items: center; gap: 0.5rem;
}
.atelier-opt::before { content: '—'; color: var(--gold); }

/* Atelier-Galerie-Grid (Seite atelier.php) */
.atelier-fotos {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem; margin-top: 3rem;
}
.atelier-fotos img {
    aspect-ratio: 4/3; object-fit: cover; width: 100%;
}

/* ============================================================
   ÜBER MICH / KÜNSTLER
   ============================================================ */
.artist-section {
    background: var(--warm-white);
    display: grid; grid-template-columns: 5fr 7fr;
    gap: 5rem; align-items: center; padding: 6rem 4rem;
}
.artist-photo { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.artist-photo img { width: 100%; height: 100%; object-fit: cover; }
.artist-photo::after {
    content: ''; position: absolute;
    top: 1.5rem; left: 1.5rem; right: -1.5rem; bottom: -1.5rem;
    border: 0.5px solid var(--gold); opacity: 0.4; z-index: -1;
}
.artist-tag {
    font-size: 0.68rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.artist-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; margin-bottom: 0.5rem; line-height: 1.1;
}
.artist-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-style: italic;
    color: var(--muted); margin-bottom: 2rem; line-height: 1.5;
}
.artist-bio { font-size: 0.95rem; line-height: 1.85; color: var(--mid); margin-bottom: 2rem; }
.artist-bio p + p { margin-top: 1rem; }
.artist-facts {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; padding-top: 1.5rem;
    border-top: 0.5px solid var(--border);
}
.artist-fact-label {
    font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem;
}
.artist-fact-value { font-size: 0.92rem; color: var(--charcoal); }
.artist-fact-value a { text-decoration: none; color: var(--charcoal); transition: color 0.2s; }
.artist-fact-value a:hover { color: var(--gold); }

/* ============================================================
   SHOP
   ============================================================ */
.shop-section { padding: 6rem 4rem; }
.shop-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3.5rem;
}
.shop-card {
    border: 0.5px solid var(--border);
    background: var(--warm-white);
}
.shop-card-img {
    aspect-ratio: 3/4; overflow: hidden;
}
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.shop-card:hover .shop-card-img img { transform: scale(1.03); }
.shop-card-body { padding: 1.5rem; }
.shop-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400; margin-bottom: 0.5rem;
}
.shop-card-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.2rem; }
.shop-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 300;
    color: var(--gold); margin-bottom: 0.3rem;
}
.shop-card-shipping { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; }
.shop-notice {
    background: var(--cream);
    border-left: 2px solid var(--gold);
    padding: 2rem 2.5rem;
    margin-top: 4rem;
    font-size: 0.9rem; color: var(--mid); line-height: 1.7;
}

/* ============================================================
   SPONSOREN
   ============================================================ */
.sponsoren-section { padding: 4rem 4rem; border-top: 0.5px solid var(--border); }
.sponsoren-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 2.5rem; }
.sponsoren-label {
    font-size: 0.65rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.sponsoren-line { flex: 1; height: 0.5px; background: var(--border); }
.sponsoren-link {
    font-size: 0.65rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--muted);
    text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.sponsoren-link:hover { color: var(--gold); }
.sponsoren-logos { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.sponsor-logo {
    height: 70px; object-fit: contain;
    filter: grayscale(100%); opacity: 0.5;
    transition: filter 0.3s, opacity 0.3s;
}
.sponsor-logo:hover { filter: grayscale(0%); opacity: 1; }

/* Sponsoren-Seite (sponsoren.php) */
.sponsoren-page-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem;
}
.sponsor-card {
    border: 0.5px solid var(--border); padding: 2.5rem;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    transition: box-shadow 0.25s;
}
.sponsor-card:hover { box-shadow: var(--shadow); }
.sponsor-card img { height: 80px; object-fit: contain; margin-bottom: 1.5rem; }
.sponsor-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 400; margin-bottom: 0.5rem;
}
.sponsor-card a { text-decoration: none; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; }
.become-sponsor {
    background: var(--charcoal); color: var(--warm-white);
    padding: 6rem 4rem; margin-top: 0;
}
.become-sponsor .section-title { color: var(--warm-white); }
.become-sponsor .section-title em { color: var(--gold-light); }
.become-sponsor p { font-size: 0.95rem; color: rgba(253,250,244,0.65); line-height: 1.8; max-width: 580px; margin-bottom: 2rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-section {
    background: var(--cream); color: var(--charcoal);
    padding: 6rem 4rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: start;
}
.contact-section--solo {
    grid-template-columns: 1fr;
}
.contact-section--solo > div {
    max-width: 700px;
}
.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300;
    line-height: 1.1; margin-bottom: 1.5rem;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-text { font-size: 1rem; line-height: 1.85; color: var(--mid); margin-bottom: 2.5rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.92rem; color: var(--mid);
    text-decoration: none; padding: 1rem 1.5rem;
    border: 0.5px solid rgba(28,26,22,0.15);
    transition: border-color 0.2s, color 0.2s;
}
.contact-method:hover { border-color: var(--gold); color: var(--charcoal); }
.contact-method-icon { font-size: 1.1rem; flex-shrink: 0; }
.contact-method-label {
    font-size: 0.65rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--muted);
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
    font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--muted);
}
.form-input {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem; font-weight: 300;
    color: var(--charcoal); background: transparent;
    border: none; border-bottom: 0.5px solid rgba(28,26,22,0.2);
    padding: 0.7rem 0; outline: none; transition: border-color 0.2s;
    width: 100%;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--muted); }
.form-input option { background: var(--cream); }
textarea.form-input { resize: vertical; min-height: 80px; }
.form-check {
    display: flex !important; flex-direction: row !important;
    align-items: flex-start; gap: 0.75rem;
}
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.form-check label { font-size: 0.82rem; color: var(--mid); line-height: 1.5; }
.form-check a { color: var(--gold); }
.form-submit {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--warm-white);
    background: var(--charcoal); border: none;
    padding: 1rem 2rem; cursor: pointer;
    align-self: flex-start; transition: background 0.25s;
}
.form-submit:hover { background: var(--gold); }
.form-message {
    padding: 1rem 1.5rem;
    font-size: 0.88rem; margin-bottom: 1.5rem;
}
.form-message.success {
    background: rgba(184,149,74,0.15);
    border-left: 2px solid var(--gold);
    color: var(--gold-light);
}
.form-message.error {
    background: rgba(139,46,46,0.15);
    border-left: 2px solid #8B2E2E;
    color: rgba(253,250,244,0.7);
}

/* ============================================================
   IMPRESSUM / DATENSCHUTZ
   ============================================================ */
.prose-section { padding: 6rem 4rem; }
.prose-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300; margin: 2.5rem 0 0.75rem;
    color: var(--charcoal);
}
.prose-section h2:first-child { margin-top: 0; }
.prose-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400; margin: 1.5rem 0 0.5rem;
}
.prose-section p { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 0.75rem; }
.prose-section a { color: var(--gold); }
.prose-section ul { margin: 0.75rem 0 0.75rem 1.5rem; }
.prose-section ul li { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 0.25rem; }
.prose-max { max-width: 780px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #141210; color: rgba(253,250,244,0.4);
    padding: 2.5rem 4rem;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600;
    color: var(--warm-white); letter-spacing: 0.08em; text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-link {
    font-size: 0.68rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(253,250,244,0.35);
    text-decoration: none; transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; }
.footer-copy a { color: rgba(253,250,244,0.35); text-decoration: none; transition: color 0.2s; }
.footer-copy a:hover { color: var(--gold); }

/* ---- Floating WhatsApp ---- */
.wa-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
    width: 52px; height: 52px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ---- Back-to-Top ---- */
.back-to-top {
    position: fixed; bottom: 5.8rem; right: 2rem; z-index: 200;
    width: 44px; height: 44px;
    background: var(--charcoal); border: 0.5px solid rgba(253,250,244,0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(253,250,244,0.6); cursor: pointer;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, background 0.2s, border-color 0.2s;
    box-shadow: 0 2px 12px rgba(28,26,22,0.25);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.back-to-top svg { display: block; }

/* ============================================================
   HILFSELEMENTE
   ============================================================ */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }

/* Trennlinie in Angebot-Sektion */
.divider { border: none; border-top: 0.5px solid var(--border); margin: 4rem 0; }

/* Breadcrumb */
.breadcrumb {
    font-size: 0.7rem; letter-spacing: 0.1em;
    color: rgba(253,250,244,0.4); margin-top: 1.5rem;
    display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(253,250,244,0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .nav-inner { padding: 1rem 2rem; }
    .container { padding: 0 2rem; }
    .leistungen-grid { grid-template-columns: 1fr 1fr; }
    .leistungen-section { padding: 5rem 2rem; }
    .sponsoren-page-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
    .hero-content { padding: 3rem 2.5rem 4rem; }
}

@media (max-width: 900px) {
    .nav-links { display: none; flex-direction: column; gap: 0; }
    .nav-links.open {
        display: flex; position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(253,250,244,0.97);
        border-bottom: 0.5px solid var(--border);
        padding: 1rem 0;
    }
    .nav-links.open li a {
        display: block; padding: 0.75rem 2rem;
        font-size: 0.82rem;
    }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    .hero-content { padding: 2.5rem 1.5rem 4rem; grid-template-columns: 1fr; gap: 2rem; }
    .about-strip { grid-template-columns: 1fr; }
    .strip-item { border-right: none; border-bottom: 0.5px solid var(--border); }

    .galerie-section { padding: 4rem 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }

    .leistungen-section { padding: 4rem 1.5rem; }
    .leistungen-grid { grid-template-columns: 1fr 1fr; }

    .atelier-section { grid-template-columns: 1fr; }
    .atelier-image { min-height: 300px; }
    .atelier-content { padding: 3rem 1.5rem; }
    .atelier-fotos { grid-template-columns: 1fr 1fr; }

    .artist-section { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
    .zielgruppen-grid { grid-template-columns: 1fr; }

    .shop-section { padding: 4rem 1.5rem; }
    .shop-grid { grid-template-columns: 1fr 1fr; }

    .sponsoren-section { padding: 3rem 1.5rem; }
    .become-sponsor { padding: 4rem 1.5rem; }
    .sponsoren-page-grid { grid-template-columns: 1fr 1fr; padding: 0 1.5rem; }

    .contact-section { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
    .page-hero { padding: 7rem 1.5rem 3rem; }
    .page-hero::after { display: none; }

    .prose-section { padding: 4rem 1.5rem; }

    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
    .footer-links { justify-content: center; }
    .wa-float { bottom: 1.5rem; right: 1.5rem; }
    .back-to-top { bottom: 5.2rem; right: 1.5rem; }

    .lightbox-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .lightbox-img-wrap { max-height: 45vh; }
    .lightbox-info { max-height: none; }
    .lightbox-nav-btn { display: none; }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .leistungen-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: 1fr; }
    .sponsoren-page-grid { grid-template-columns: 1fr; }
    .atelier-fotos { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHTBOX – Galerie-Seite (eigene IDs/Klassen)
   ============================================================ */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(18,16,14,0.97);
    align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.active { display: flex; }

/* Inneres Grid: Bild links, Info rechts */
.lightbox > .lightbox-inner {
    display: grid; grid-template-columns: 1fr 360px;
    max-width: 1060px; width: 100%;
    max-height: 90vh; gap: 3.5rem;
    position: relative; align-items: start;
}
.lb-image-wrap {
    display: flex; align-items: center; justify-content: center;
    max-height: 85vh; overflow: hidden;
}
.lb-image-wrap img {
    max-width: 100%; max-height: 85vh;
    object-fit: contain;
}
.lb-meta {
    color: var(--warm-white);
    overflow-y: auto; max-height: 85vh;
    display: flex; flex-direction: column;
}
.lb-counter {
    font-size: 0.62rem; letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(253,250,244,0.3); margin-bottom: 1.5rem;
}
.lb-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300; line-height: 1.1;
    margin-bottom: 0.5rem;
}
.lb-info {
    font-size: 0.82rem; color: rgba(253,250,244,0.4);
    letter-spacing: 0.08em; margin-bottom: 1.5rem;
}
.lb-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem; font-style: italic;
    color: rgba(253,250,244,0.62); line-height: 1.7; margin-bottom: 1.8rem;
}
.lb-footer {
    display: flex; align-items: center; gap: 1rem;
    flex-wrap: wrap; margin-bottom: 1.5rem;
}
.lb-ki-toggle {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
}
.lb-ki-btn {
    background: rgba(28,26,22,0.7); border: 0.5px solid rgba(253,250,244,0.25);
    color: var(--warm-white); font-family: 'Jost', sans-serif;
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.5rem 1.2rem; cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.lb-ki-btn:hover { background: rgba(184,149,74,0.5); border-color: var(--gold); }
.lb-btn-active { background: rgba(184,149,74,0.35) !important; border-color: var(--gold) !important; }
.lb-image-wrap img { transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
.lb-image-wrap img.lb-detail-zoom {
    transform: scale(var(--dz, 2.5));
    transform-origin: var(--dx, 50%) var(--dy, 50%);
}
.lb-close {
    position: fixed; top: 1.5rem; right: 2rem;
    background: none; border: none;
    color: rgba(253,250,244,0.5); font-size: 2rem;
    line-height: 1; z-index: 10;
    transition: color 0.2s; padding: 0.5rem;
}
.lb-close:hover { color: var(--warm-white); }
.lb-prev, .lb-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: none; border: none;
    color: rgba(253,250,244,0.35); font-size: 2.8rem;
    padding: 1rem; transition: color 0.2s; z-index: 10; line-height: 1;
}
.lb-prev:hover, .lb-next:hover { color: var(--warm-white); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* Gallery CTA (galerie.php) */
.gallery-cta-section {
    background: var(--cream);
    text-align: center; padding: 5rem 2rem;
}
.gallery-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300;
    line-height: 1.15; margin-bottom: 1rem;
}
.gallery-cta-text { font-size: 0.95rem; color: var(--mid); margin-bottom: 2.5rem; }
.gallery-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ANGEBOT-DETAIL (angebot.php)
   ============================================================ */
.angebot-detail { padding: 0; }
.angebot-detail:nth-child(odd) { background: var(--warm-white); }
.angebot-detail:nth-child(even) { background: var(--cream); }
.angebot-detail-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; min-height: 480px;
}
.angebot-reverse .angebot-detail-inner { direction: rtl; }
.angebot-reverse .angebot-detail-content { direction: ltr; }
.angebot-detail-image { overflow: hidden; }
.angebot-detail-image img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.angebot-detail-content {
    padding: 5rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
}
.angebot-nr {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 300;
    color: var(--gold); line-height: 1;
    margin-bottom: 0.5rem; opacity: 0.5;
}
.angebot-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300;
    line-height: 1.15; margin-bottom: 1.5rem;
}
.angebot-lead {
    font-size: 1.05rem; color: var(--mid);
    line-height: 1.7; margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
}
.angebot-detail-content p {
    font-size: 0.93rem; color: var(--mid);
    line-height: 1.8; margin-bottom: 1rem;
}
.angebot-punkte {
    list-style: none; margin: 1.5rem 0 2rem;
    display: flex; flex-direction: column; gap: 0.6rem;
}
.angebot-punkte li {
    font-size: 0.88rem; color: var(--mid);
    display: flex; gap: 0.75rem; align-items: flex-start;
}
.angebot-punkte li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.zielgruppen-section { padding: 6rem 4rem; background: var(--warm-white); }
.zielgruppe-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400; margin-bottom: 0.75rem;
}
.zielgruppe-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }

/* ============================================================
   FAQ (angebot.php, index.php)
   ============================================================ */
.faq-section { padding: 6rem 4rem; background: var(--cream); }
.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 0.5px solid var(--border);
    padding: 2rem 0;
}
.faq-item:first-child { border-top: 0.5px solid var(--border); }
.faq-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 400;
    margin-bottom: 0.75rem; line-height: 1.3;
}
.faq-a { font-size: 0.92rem; color: var(--mid); line-height: 1.8; }

/* ============================================================
   ATELIER-GALERIE-GRID + ABLAUF (atelier.php)
   ============================================================ */
.atelier-galerie-section { padding: 0 4rem 6rem; background: var(--warm-white); }
.atelier-galerie-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.atelier-galerie-grid img {
    aspect-ratio: 4/3; object-fit: cover; width: 100%; display: block;
}

.ablauf-section { padding: 6rem 4rem; background: var(--cream); }
.ablauf-steps {
    max-width: 780px;
    display: flex; flex-direction: column; gap: 0;
    margin-top: 3.5rem;
}
.ablauf-step {
    display: grid; grid-template-columns: 60px 1fr;
    gap: 2rem; padding: 2rem 0;
    border-bottom: 0.5px solid var(--border);
    align-items: start;
}
.ablauf-step:first-child { border-top: 0.5px solid var(--border); }
.step-nr {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 300;
    color: var(--gold); line-height: 1;
}
.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400;
    margin-bottom: 0.5rem;
}
.step-text { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }

/* ============================================================
   FORMULAR auf hellen Seiten (atelier.php, kontakt.php)
   ============================================================ */
.anfrageform-section { padding: 6rem 4rem; background: var(--warm-white); }
.form-wrap { max-width: 680px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.5rem; }
.form-group label {
    font-size: 0.65rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem; font-weight: 300;
    color: var(--charcoal); background: transparent;
    border: none; border-bottom: 0.5px solid var(--border);
    padding: 0.6rem 0; outline: none;
    transition: border-color 0.2s; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check {
    display: flex; flex-direction: row;
    align-items: flex-start; gap: 0.75rem;
    margin-bottom: 2rem;
}
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.form-check label { font-size: 0.82rem; color: var(--mid); line-height: 1.5; }
.form-check a { color: var(--gold); }
.form-success {
    background: rgba(184,149,74,0.12);
    border-left: 2px solid var(--gold);
    color: var(--charcoal);
    padding: 1rem 1.5rem; font-size: 0.9rem;
    margin-bottom: 2rem; line-height: 1.6;
}
.form-error {
    background: rgba(139,46,46,0.1);
    border-left: 2px solid #c0504f;
    color: #8B2E2E;
    padding: 1rem 1.5rem; font-size: 0.9rem;
    margin-bottom: 2rem; line-height: 1.6;
}
.contact-adresse {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0.5px solid rgba(28,26,22,0.12);
}
.contact-adresse address {
    font-style: normal; font-size: 0.9rem;
    color: var(--mid); line-height: 1.8;
}

/* Kontakt-Seite – Form auf hellem Hintergrund */
.contact-section .form-group label { color: var(--muted); }
.contact-section .form-group input,
.contact-section .form-group textarea,
.contact-section .form-group select {
    color: var(--charcoal);
    border-color: rgba(28,26,22,0.2);
    background: transparent;
}
.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus,
.contact-section .form-group select:focus { border-color: var(--gold); }
.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder { color: var(--muted); opacity: 0.8; }
.contact-section .form-group select option { background: var(--cream); }
.contact-section .form-check label { color: var(--mid); }
.contact-section .form-check a { color: var(--gold); }

/* ============================================================
   ÜBER MICH – Detailseite (ueber-mich.php)
   ============================================================ */
.artist-detail { padding: 6rem 4rem; }
.artist-long-bio p {
    font-size: 0.95rem; line-height: 1.85; color: var(--mid);
    margin-bottom: 1.2rem;
}
.artist-long-bio { margin-bottom: 2rem; }

.philosophie-section { background: var(--charcoal); padding: 7rem 4rem; }
.philosophie-inner {
    max-width: 980px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: start;
}
.philosophie-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300;
    color: var(--warm-white); line-height: 1.1;
    grid-column: 1 / -1; margin-bottom: 0;
}
.philosophie-title em { font-style: italic; color: var(--gold-light); }
.philosophie-text p {
    font-size: 1rem; color: rgba(253,250,244,0.78);
    line-height: 1.85; margin-bottom: 1.2rem;
}
.philosophie-zitat {
    border-left: 2px solid var(--gold);
    padding-left: 2rem;
}
.philosophie-zitat blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-style: italic;
    color: rgba(253,250,244,0.7); line-height: 1.8;
    margin-bottom: 1.2rem;
}
.philosophie-zitat cite {
    font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    font-style: normal;
}

/* ============================================================
   SHOP-SEITE (shop.php – neue Klassen)
   ============================================================ */
.shop-note {
    background: var(--cream);
    border-left: 2px solid var(--gold);
    padding: 1rem 1.5rem;
    margin-bottom: 3rem;
    font-size: 0.88rem; color: var(--mid); line-height: 1.7;
}
.shop-card-featured { border: 1px solid var(--gold); }
.shop-image { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.shop-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.shop-card:hover .shop-image img { transform: scale(1.03); }
.shop-image-placeholder {
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
}
.shop-placeholder-inner { text-align: center; }
.shop-placeholder-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 300;
    color: var(--mid); margin-bottom: 0.5rem;
}
.shop-placeholder-sub { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; }
.shop-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--gold); color: var(--charcoal);
    font-size: 0.6rem; letter-spacing: 0.18em;
    text-transform: uppercase; padding: 0.3rem 0.8rem;
}
/* Shop-Slider */
.shop-slider { cursor: default; }
.shop-slide { display: none; width: 100%; height: 100%; }
.shop-slide.active { display: block; }
.shop-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(28,26,22,0.55); border: 0.5px solid rgba(184,149,74,0.4);
    color: var(--gold-light); font-size: 1.1rem; line-height: 1;
    width: 2.2rem; height: 2.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.slider-btn:hover { background: rgba(184,149,74,0.25); }
.slider-prev { left: 0.6rem; }
.slider-next { right: 0.6rem; }
.slider-dots {
    position: absolute; bottom: 0.7rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.4rem;
}
.slider-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(253,250,244,0.35); cursor: pointer;
    transition: background 0.2s;
}
.slider-dot.active { background: var(--gold); }
.shop-info { padding: 1.5rem; }
.shop-category {
    font-size: 0.62rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.shop-product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400;
    line-height: 1.2; margin-bottom: 0.75rem;
}
.shop-stock {
    font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.75rem;
}
.shop-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.5rem; }
.shop-price-row {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.shop-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 300; color: var(--gold);
    display: block;
}
.shop-porto { font-size: 0.78rem; color: var(--muted); }
.shop-originale-hint {
    background: var(--charcoal); color: var(--warm-white);
    padding: 5rem 4rem; text-align: center; margin-top: 4rem;
}
.shop-hint-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300; color: var(--warm-white);
    margin-bottom: 1rem; line-height: 1.2;
}
.shop-originale-hint p { font-size: 0.95rem; color: rgba(253,250,244,0.55); margin-bottom: 2rem; }
.shop-info-section { padding: 6rem 4rem; background: var(--cream); }
.shop-info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3.5rem;
}
.shop-info-card {
    border: 0.5px solid var(--border);
    padding: 2rem; background: var(--warm-white);
}
.shop-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400; margin-bottom: 0.75rem;
}
.shop-info-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

/* ============================================================
   SPONSOREN-SEITE (sponsoren.php – neue Klassen)
   ============================================================ */
.sponsoren-detail-section { padding: 6rem 4rem; }
.sponsoren-detail-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem; margin-top: 3.5rem;
}
.sponsor-detail-card {
    border: 0.5px solid var(--border);
    padding: 2.5rem 2rem;
    display: flex; flex-direction: column;
    transition: box-shadow 0.25s;
}
.sponsor-detail-card:hover { box-shadow: var(--shadow); }
.sponsor-logo-wrap {
    height: 80px; display: flex; align-items: center; margin-bottom: 1.5rem;
}
.sponsor-logo-wrap img { max-height: 80px; object-fit: contain; }
.sponsor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400; margin-bottom: 0.5rem;
}
.sponsor-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.sponsor-link {
    font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    text-decoration: none; margin-top: auto;
    transition: color 0.2s;
}
.sponsor-link:hover { color: var(--gold-light); }

.goennerliste {
    margin-top: 6rem;
    padding-top: 5rem;
    border-top: 0.5px solid var(--border);
}
.goenner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 300;
    font-style: italic; color: var(--gold);
    line-height: 1.15; margin-bottom: 2rem;
}
.goenner-namen {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.goenner-namen li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-style: italic; font-weight: 400;
    color: var(--mid);
    border: 0.5px solid var(--border);
    padding: 0.65rem 1.5rem;
    letter-spacing: 0.03em;
    transition: border-color 0.2s, color 0.2s;
}
.goenner-namen li:hover {
    border-color: var(--gold);
    color: var(--charcoal);
}

.sponsor-werden-section { background: var(--charcoal); color: var(--warm-white); padding: 7rem 4rem; }
.sponsor-werden-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: start;
}
.sponsor-werden-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300;
    margin-bottom: 1.5rem; line-height: 1.1;
}
.sponsor-werden-text {
    font-size: 1rem; color: rgba(253,250,244,0.80);
    line-height: 1.85; margin-bottom: 2rem;
}
.sponsor-vorteile-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400; margin-bottom: 1rem;
}
.sponsor-werden-cta p {
    font-size: 0.9rem; color: rgba(253,250,244,0.5);
    margin-bottom: 1rem;
}

/* ============================================================
   LEGAL-SEITEN (impressum.php, datenschutz.php)
   ============================================================ */
.legal-section { padding: 6rem 4rem; }
.legal-content { max-width: 780px; }
.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300;
    margin: 2.5rem 0 0.75rem; color: var(--charcoal);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400; margin: 1.5rem 0 0.5rem;
}
.legal-content p { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-content a { color: var(--gold); }
.legal-content ul { margin: 0.75rem 0 0.75rem 1.5rem; }
.legal-content ul li { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 0.25rem; }
.legal-content address { font-style: normal; }

/* Kleiner Page-Hero für Legal-Seiten */
.page-hero-small { padding: 7rem 4rem 3rem; }

/* ============================================================
   KERNANGEBOTE – Zwei Hauptangebote (index.php)
   ============================================================ */
.kernangebote {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}
.kna-panel {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.kna-atelier { background: var(--charcoal); }
.kna-aktivierung { background: var(--cream); }
.kna-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.4;
}
.kna-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(28,26,22,0.78) 0%, rgba(28,26,22,0.45) 100%);
}
.kna-content {
    position: relative; z-index: 2;
    padding: 5rem 4rem;
}
.kna-tag {
    font-size: 0.65rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem; display: block;
}
.kna-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.2vw, 3.5rem); font-weight: 300;
    line-height: 1.1; margin-bottom: 1.5rem;
    color: var(--warm-white);
}
.kna-title em { font-style: italic; color: var(--gold-light); }
.kna-title-dark { color: var(--charcoal); }
.kna-title-dark em { color: var(--gold); }
.kna-text {
    font-size: 0.96rem; line-height: 1.8;
    color: rgba(253,250,244,0.65);
    margin-bottom: 2rem; max-width: 420px;
}
.kna-text-dark { color: var(--mid); }
.kna-badges {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin-bottom: 2.5rem;
}
.kna-badge {
    font-size: 0.65rem; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253,250,244,0.55);
    border: 0.5px solid rgba(253,250,244,0.2);
    padding: 0.35rem 0.85rem;
}
.kna-badges-dark .kna-badge {
    color: var(--mid);
    border-color: var(--border);
}
.kna-watermark {
    position: absolute; right: 2rem; bottom: -1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 9rem; font-weight: 300;
    color: rgba(28,26,22,0.05);
    line-height: 1; pointer-events: none;
    white-space: nowrap; user-select: none;
}

/* ============================================================
   WEITERE LEISTUNGEN – Kompaktes Grid (index.php)
   ============================================================ */
.weitere-leistungen {
    padding: 3.5rem 4rem;
    background: var(--warm-white);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}
.wl-header {
    display: flex; align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.wl-intro {
    font-size: 0.65rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--muted);
}
.wl-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 0.5px solid var(--border);
}
.wl-item {
    background: var(--warm-white);
    padding: 2rem 1.5rem;
    text-decoration: none;
    display: flex; flex-direction: column; gap: 0.3rem;
    transition: background 0.25s;
}
.wl-item:hover { background: var(--cream); }
.wl-icon {
    font-size: 1.3rem; opacity: 0.55;
    margin-bottom: 0.5rem; display: block;
}
.wl-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 400;
    color: var(--charcoal); line-height: 1.2;
}
.wl-desc {
    font-size: 0.78rem; color: var(--muted); line-height: 1.5;
}

@media (max-width: 900px) {
    .kernangebote { grid-template-columns: 1fr; min-height: auto; }
    .kna-bg { opacity: 0.3; }
    .kna-content { padding: 4rem 1.5rem; }
    .kna-watermark { font-size: 5rem; bottom: 0; }
    .weitere-leistungen { padding: 3rem 1.5rem; }
    .wl-grid { grid-template-columns: repeat(3, 1fr); }
}

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

/* ============================================================
   ART-CARD FEATURE (shop.php)
   ============================================================ */
.art-card-feature {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    background: var(--cream);
    padding: 4rem; margin-bottom: 4rem;
}
.art-card-feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300; line-height: 1.1;
    margin: 0.5rem 0 1.25rem;
}
.art-card-feature-title em { font-style: italic; color: var(--gold); }
.art-card-feature-text p:last-child {
    font-size: 0.95rem; color: var(--mid); line-height: 1.85;
}
.art-card-feature-images {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.art-card-feature-images img {
    width: 100%; height: clamp(280px, 32vw, 460px); object-fit: cover;
    cursor: zoom-in; transition: opacity 0.2s;
}
.art-card-feature-images img:hover { opacity: 0.88; }

/* Teaser-Modal */
.teaser-modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(18,16,14,0.95);
    align-items: center; justify-content: center; padding: 2rem;
}
.teaser-modal.active { display: flex; }
.teaser-modal-img {
    max-width: 90vw; max-height: 90vh;
    object-fit: contain; display: block;
}
.teaser-modal-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none;
    color: var(--warm-white); font-size: 2rem;
    cursor: pointer; line-height: 1; padding: 0.5rem;
    opacity: 0.7; transition: opacity 0.2s;
}
.teaser-modal-close:hover { opacity: 1; }

/* ============================================================
   SPONSORING-TIERS (sponsoren.php)
   ============================================================ */
.sponsor-tier-header {
    max-width: 640px; margin: 0 auto 3.5rem; text-align: center;
}
.sponsor-tiers {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; max-width: 860px; margin: 0 auto;
}
.sponsor-tier {
    border: 1px solid rgba(28,26,22,0.25);
    background: var(--cream);
    padding: 2.5rem 2rem; position: relative;
    display: flex; flex-direction: column; gap: 0;
}
.sponsor-tier-premium {
    border-color: var(--gold);
    border-width: 1.5px;
    background: var(--warm-white);
}
.sponsor-tier-badge {
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
}
.sponsor-tier-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300;
    color: var(--charcoal); margin-bottom: 0.5rem;
}
.sponsor-tier-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--gold);
    margin-bottom: 2rem;
}
.sponsor-tier-price span {
    font-size: 0.9rem; color: var(--muted); font-family: 'Jost', sans-serif;
}
.sponsor-tier-list {
    list-style: none; margin-bottom: 2rem; flex: 1;
}
.sponsor-tier-list li {
    font-size: 0.88rem; color: var(--mid); line-height: 1.6;
    padding: 0.5rem 0; border-bottom: 0.5px solid var(--border);
}
.sponsor-tier-list li:first-child { border-top: 0.5px solid var(--border); }
.sponsor-kontakt {
    max-width: 860px; margin: 3rem auto 0;
    text-align: center; font-size: 0.9rem; color: var(--mid);
}
.sponsor-kontakt .contact-method { color: rgba(253,250,244,0.75); border-color: rgba(253,250,244,0.2); }
.sponsor-kontakt .contact-method:hover { color: var(--warm-white); border-color: var(--gold); }
.sponsor-kontakt .contact-method-label { color: rgba(253,250,244,0.45); }

/* ============================================================
   SPENDEN-SEKTION (sponsoren.php)
   ============================================================ */
.spende-section {
    background: var(--charcoal); color: var(--warm-white);
    padding: 6rem 4rem;
}
.spende-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto;
    gap: 4rem; align-items: center;
}
.spende-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 300; font-style: italic;
    line-height: 1.3; color: var(--warm-white);
    margin-bottom: 1.5rem;
}
.spende-text {
    font-size: 0.95rem; color: rgba(253,250,244,0.75);
    line-height: 1.85; margin-bottom: 1rem;
}
.spende-cta { text-align: center; min-width: 200px; }
.spende-btn { white-space: nowrap; }
.spende-hinweis {
    font-size: 0.7rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(253,250,244,0.4);
    margin-top: 1rem;
}

/* ============================================================
   RESPONSIVE ERGÄNZUNGEN
   ============================================================ */
@media (max-width: 1024px) {
    .angebot-detail-inner { grid-template-columns: 1fr; }
    .angebot-reverse .angebot-detail-inner { direction: ltr; }
    .angebot-detail-content { padding: 3rem 2rem; }
    .philosophie-inner { grid-template-columns: 1fr; gap: 3rem; }
    .sponsoren-detail-grid { grid-template-columns: 1fr 1fr; }
    .sponsor-werden-inner { grid-template-columns: 1fr; gap: 3rem; }
    .shop-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .atelier-galerie-section { padding: 0 1.5rem 4rem; }
    .atelier-galerie-grid { grid-template-columns: 1fr 1fr; }
    .ablauf-section { padding: 4rem 1.5rem; }
    .faq-section { padding: 4rem 1.5rem; }
    .anfrageform-section { padding: 4rem 1.5rem; }
    .philosophie-section { padding: 5rem 1.5rem; }
    .philosophie-inner { gap: 2.5rem; }
    .artist-detail { padding: 4rem 1.5rem; }
    .shop-originale-hint { padding: 4rem 1.5rem; }
    .shop-info-section { padding: 4rem 1.5rem; }
    .sponsoren-detail-section { padding: 4rem 1.5rem; }
    .sponsor-werden-section { padding: 5rem 1.5rem; }
    .spende-section { padding: 5rem 1.5rem; }
    .spende-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .spende-cta { text-align: left; }
    .art-card-feature { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.5rem; }
    .sponsor-tiers { grid-template-columns: 1fr; max-width: 480px; }
    .zielgruppen-section { padding: 4rem 1.5rem; }
    .legal-section { padding: 4rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .lightbox > .lightbox-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .lb-image-wrap { max-height: 45vh; }
    .lb-meta { max-height: none; }
    .lb-prev, .lb-next { display: none; }
}

@media (max-width: 600px) {
    .atelier-galerie-grid { grid-template-columns: 1fr; }
    .sponsoren-detail-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: 1fr; }
    .gallery-cta-btns { flex-direction: column; align-items: center; }
    .page-hero-small { padding: 6rem 1.5rem 2.5rem; }
}
