/* =========================
   GRUNDEINSTELLUNGEN
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f1e8;
    color: #1d1d1d;
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 7%;

    background: rgba(246, 241, 232, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background: #1d1d1d;
    color: white;
    font-weight: 800;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}

.main-nav a:hover {
    color: #a66a2c;
}

.nav-button {
    text-decoration: none;
    background: #1d1d1d;
    color: white;

    padding: 10px 18px;
    border-radius: 999px;

    font-weight: 700;
    transition: 0.2s;
}

.nav-button:hover {
    background: #a66a2c;
}

/* =========================
   BUTTONS
========================= */

.primary-button,
.secondary-button {
    display: inline-block;

    padding: 14px 24px;
    border-radius: 999px;

    font-weight: 800;
    text-decoration: none;
    transition: 0.2s;
}

.primary-button {
    background: #1d1d1d;
    color: white;
}

.primary-button:hover {
    background: #a66a2c;
    transform: translateY(-2px);
}

.secondary-button {
    background: white;
    color: #1d1d1d;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.secondary-button:hover {
    transform: translateY(-2px);
    border-color: #a66a2c;
}

/* =========================
   HERO / STARTBEREICH
========================= */

.hero-section {
    min-height: 88vh;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;

    padding: 80px 7%;
}

.hero-content {
    max-width: 720px;
}

.eyebrow {
    color: #a66a2c;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    margin-bottom: 14px;
}

.hero-section h1 {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -2px;

    margin-bottom: 26px;
}

.hero-description {
    max-width: 620px;

    color: #4a4a4a;
    font-size: 20px;

    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;

    margin-bottom: 44px;
}

.hero-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hero-info div {
    padding: 18px;

    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.hero-info strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.hero-info span {
    color: #666;
    font-size: 14px;
}

.hero-art {
    display: flex;
    justify-content: center;
}

.hero-art-card {
    width: min(430px, 100%);

    padding: 18px;
    border-radius: 34px;

    background: white;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);

    transform: rotate(2deg);
}

.hero-art-image {
    height: 520px;
    border-radius: 26px;

    background:
        radial-gradient(circle at 20% 20%, #f2c879, transparent 28%),
        radial-gradient(circle at 80% 30%, #7f9b77, transparent 30%),
        radial-gradient(circle at 55% 80%, #a66a2c, transparent 35%),
        linear-gradient(135deg, #1d1d1d, #5d4938);

    margin-bottom: 16px;
}

.hero-art-text {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 2px 6px 4px;
}

.hero-art-text span {
    color: #777;
}

.hero-art-text strong {
    font-size: 18px;
}

/* =========================
   INTRO-KARTEN
========================= */

.intro-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    padding: 20px 7% 90px;
}

.intro-card {
    padding: 34px;

    background: white;
    border-radius: 28px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
}

.intro-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.intro-card p {
    color: #555;
}

/* =========================
   ALLGEMEINE SECTION
========================= */

.section {
    padding: 100px 7%;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    letter-spacing: -1px;

    margin-bottom: 16px;
}

.section-heading p {
    color: #555;
    font-size: 18px;
}

/* =========================
   GALERIE
========================= */

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.artwork-card {
    overflow: hidden;

    background: white;
    border-radius: 30px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);

    transition: 0.25s;
}

.artwork-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.artwork-image {
    height: 330px;
}

.artwork-image-one {
    background:
        radial-gradient(circle at 30% 25%, #f3ce82, transparent 28%),
        linear-gradient(135deg, #c98943, #5f7f61);
}

.artwork-image-two {
    background:
        radial-gradient(circle at 65% 25%, #c8d6b8, transparent 30%),
        linear-gradient(135deg, #304337, #8a714d);
}

.artwork-image-three {
    background:
        radial-gradient(circle at 20% 20%, #f08c5a, transparent 30%),
        linear-gradient(135deg, #2b2a35, #b35d32);
}

.artwork-content {
    padding: 24px;
}

.artwork-category {
    color: #a66a2c;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 8px;
}

.artwork-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.artwork-content p {
    color: #555;
}

.artwork-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 22px;
    padding-top: 18px;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.artwork-footer span {
    color: #666;
}

.artwork-footer strong {
    font-size: 20px;
}

/* =========================
   STATUS & ANFRAGE-BUTTONS
========================= */

.artwork-image {
    position: relative;
}

.status-badge {
    position: absolute;
    top: 18px;
    left: 18px;

    padding: 8px 14px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 900;

    background: white;
    color: #1d1d1d;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.status-badge.available {
    background: #e8f7e8;
    color: #226b2f;
}

.status-badge.reserved {
    background: #fff3d6;
    color: #8a5b00;
}

.status-badge.sold {
    background: #eeeeee;
    color: #666666;
}

.artwork-button {
    display: inline-block;

    margin-top: 22px;
    padding: 12px 20px;

    border-radius: 999px;

    background: #1d1d1d;
    color: white;

    text-decoration: none;
    font-weight: 800;

    transition: 0.2s;
}

.artwork-button:hover {
    background: #a66a2c;
    transform: translateY(-2px);
}

.artwork-button.disabled {
    background: #d6d6d6;
    color: #777;

    cursor: not-allowed;
    pointer-events: none;
}

/* =========================
   ÜBER MICH
========================= */

.about-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;

    padding: 110px 7%;

    background: #e8ddcc;
}

.about-image {
    min-height: 500px;
    border-radius: 34px;

    background:
        radial-gradient(circle at 30% 25%, #e9bf78, transparent 25%),
        radial-gradient(circle at 80% 75%, #6f8f72, transparent 28%),
        linear-gradient(135deg, #2c2b2a, #9b6a3d);

    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.about-content h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.1;

    margin-bottom: 24px;
}

.about-content p {
    color: #4f4a43;
    font-size: 18px;

    margin-bottom: 20px;
}

.about-content .primary-button {
    margin-top: 12px;
}

/* =========================
   SCHRITTE
========================= */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.step-card {
    padding: 34px;

    background: white;
    border-radius: 28px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
}

.step-card span {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;
    background: #1d1d1d;
    color: white;

    font-weight: 900;

    margin-bottom: 22px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.step-card p {
    color: #555;
}

/* =========================
   KONTAKT
========================= */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 50px;
    align-items: center;

    padding: 100px 7%;

    background: #1d1d1d;
    color: white;
}

.contact-section h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;

    margin-bottom: 18px;
}

.contact-section p {
    color: #d8d8d8;
    font-size: 18px;
    max-width: 620px;
}

.contact-card {
    padding: 34px;

    background: white;
    color: #1d1d1d;

    border-radius: 30px;
}

.contact-card h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.contact-card p {
    color: #555;
    margin-bottom: 24px;
}

.contact-card small {
    display: block;
    color: #777;
    margin-top: 18px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 28px 7%;

    background: #111;
    color: white;
}

.site-footer p {
    color: #ccc;
}

.site-footer div {
    display: flex;
    gap: 20px;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer a:hover {
    color: #e0b06f;
}

/* =========================
   RESPONSIVE DESIGN
   Für Handy / kleinere Bildschirme
========================= */

@media (max-width: 1000px) {
    .hero-section,
    .about-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero-art-card {
        transform: rotate(0);
    }

    .intro-section,
    .artwork-grid,
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .nav-button {
        display: none;
    }

    .hero-section {
        padding-top: 55px;
    }

    .hero-info {
        grid-template-columns: 1fr;
    }

    .hero-art-image {
        height: 380px;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* =========================
   GALERIE UPDATE
   Größere Karten + Filter + Formate
========================= */

.gallery-section {
    padding-top: 120px;
}

.filter-area {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-bottom: 46px;
    padding: 26px;

    background: rgba(255, 255, 255, 0.75);
    border-radius: 28px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
}

.filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-group span {
    min-width: 80px;

    font-weight: 900;
    color: #1d1d1d;
}

.filter-button {
    border: none;
    cursor: pointer;

    padding: 10px 16px;
    border-radius: 999px;

    background: #eee5d8;
    color: #333;

    font-weight: 800;
    transition: 0.2s;
}

.filter-button:hover {
    background: #d9c7ad;
}

.filter-button.active {
    background: #1d1d1d;
    color: white;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 34px;
}

/* Karten allgemein größer */
.artwork-card {
    border-radius: 34px;
}

/* Bildbereiche größer */
.artwork-image {
    overflow: hidden;
    position: relative;
    min-height: 380px;
}

/* Querformat-Vorschau */
.preview-querformat {
    height: 390px;
}

/* Hochformat-Vorschau */
.preview-hochformat {
    height: 560px;
}

/* Quadratische Vorschau */
.preview-quadratisch {
    height: 470px;
}

/* Echte Bilder später sauber anzeigen */
.artwork-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Falls JavaScript echtes Format erkennt */
.auto-hochformat .artwork-real-image {
    object-fit: cover;
}

.auto-querformat .artwork-real-image {
    object-fit: cover;
}

.auto-quadratisch .artwork-real-image {
    object-fit: cover;
}

/* kleine Info-Chips unter Beschreibung */
.artwork-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 18px;
}

.artwork-details span {
    padding: 7px 11px;
    border-radius: 999px;

    background: #f1eadf;
    color: #5b5147;

    font-size: 13px;
    font-weight: 800;
}

/* Falls keine Werke gefunden werden */
.empty-gallery-message {
    grid-column: 1 / -1;

    padding: 30px;
    border-radius: 24px;

    background: white;
    color: #555;

    font-size: 18px;
    text-align: center;
}

/* Zusätzliche Farbverläufe für die 12 Platzhalter */

.artwork-image-four {
    background:
        radial-gradient(circle at 30% 30%, #d7c08a, transparent 30%),
        linear-gradient(135deg, #3f563e, #9a7443);
}

.artwork-image-five {
    background:
        radial-gradient(circle at 70% 25%, #dd9f73, transparent 28%),
        linear-gradient(135deg, #21212a, #7a4f72);
}

.artwork-image-six {
    background:
        radial-gradient(circle at 35% 20%, #f2c7a1, transparent 25%),
        linear-gradient(135deg, #4a2f2d, #9b6d59);
}

.artwork-image-seven {
    background:
        radial-gradient(circle at 20% 25%, #e7bf50, transparent 28%),
        radial-gradient(circle at 75% 70%, #4f8c8a, transparent 30%),
        linear-gradient(135deg, #222, #6b3f78);
}

.artwork-image-eight {
    background:
        radial-gradient(circle at 65% 30%, #f0e2a0, transparent 26%),
        linear-gradient(135deg, #5e7f58, #b7a46c);
}

.artwork-image-nine {
    background:
        radial-gradient(circle at 45% 25%, #d9a37c, transparent 27%),
        linear-gradient(135deg, #2e2526, #8d5d4c);
}

.artwork-image-ten {
    background:
        radial-gradient(circle at 25% 70%, #9ab6c7, transparent 30%),
        linear-gradient(135deg, #1f1f1f, #d18445);
}

.artwork-image-eleven {
    background:
        radial-gradient(circle at 70% 40%, #b9d7e8, transparent 30%),
        linear-gradient(135deg, #52758a, #d8cda8);
}

.artwork-image-twelve {
    background:
        radial-gradient(circle at 45% 20%, #e1b39a, transparent 26%),
        linear-gradient(135deg, #342c33, #8b7056);
}

/* Handy-Anpassung */
@media (max-width: 1000px) {
    .artwork-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .artwork-grid {
        grid-template-columns: 1fr;
    }

    .preview-querformat,
    .preview-hochformat,
    .preview-quadratisch {
        height: 420px;
    }

    .filter-group {
        align-items: flex-start;
    }

    .filter-group span {
        width: 100%;
    }
}

/* =========================
   HERO-BILD UPDATE
   Größeres ausgewähltes Werk
========================= */

.hero-section {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
}

.hero-art {
    justify-content: flex-end;
}

.hero-art-card {
    width: min(620px, 100%);
    padding: 22px;
    border-radius: 42px;

    transform: rotate(1.5deg);
}

.hero-art-image {
    height: clamp(560px, 55vw, 760px);
    border-radius: 32px;

    background:
        radial-gradient(circle at 22% 22%, #f2c879, transparent 30%),
        radial-gradient(circle at 78% 38%, #7f9b77, transparent 32%),
        radial-gradient(circle at 55% 82%, #a66a2c, transparent 36%),
        linear-gradient(135deg, #1d1d1d, #5d4938);
}

.hero-art-text {
    padding: 8px 10px 6px;
}

.hero-art-text span {
    font-size: 18px;
}

.hero-art-text strong {
    font-size: 24px;
}

/* später für echtes Hero-Bild */
.hero-art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

/* Anpassung für kleinere Bildschirme */
@media (max-width: 1000px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-art {
        justify-content: center;
    }

    .hero-art-card {
        transform: rotate(0);
        width: min(560px, 100%);
    }

    .hero-art-image {
        height: 620px;
    }
}

@media (max-width: 700px) {
    .hero-art-image {
        height: 440px;
    }

    .hero-art-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hero-art-text strong {
        font-size: 20px;
    }
}

/* =========================
   DETAILANSICHT / MODAL
========================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;
}

.modal.open {
    display: flex;
}

.modal-background {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 1;

    width: min(1100px, 100%);
    max-height: 90vh;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 0;

    overflow: hidden;

    background: #f6f1e8;
    border-radius: 34px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: white;
    color: #1d1d1d;

    font-size: 30px;
    line-height: 1;
    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.modal-image {
    min-height: 640px;

    background-size: cover;
    background-position: center;
}

.modal-info {
    padding: 52px 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;

    margin-bottom: 18px;
}

.modal-info p {
    color: #555;
    font-size: 18px;
}

.modal-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 26px;
    margin-bottom: 30px;
}

.modal-details span {
    padding: 9px 13px;

    border-radius: 999px;

    background: white;
    color: #5b5147;

    font-size: 14px;
    font-weight: 800;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding-top: 24px;

    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-footer strong {
    font-size: 28px;
}

@media (max-width: 900px) {
    .modal-content {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .modal-image {
        min-height: 420px;
    }

    .modal-info {
        padding: 34px 26px;
    }

    .modal-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   KLICKBARE KUNSTWERK-KARTEN
========================= */

.artwork-card {
    cursor: pointer;
}

.artwork-card:hover .artwork-image {
    transform: scale(1.01);
}

.artwork-image {
    transition: 0.25s;
}

.artwork-card:hover h3 {
    color: #a66a2c;
}

.artwork-button {
    cursor: pointer;
}

/* Verhindert komische Effekte beim deaktivierten Button */
.modal-disabled {
    background: #d6d6d6 !important;
    color: #777 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Detailfenster Bild etwas hochwertiger */
.modal-image {
    background-size: cover;
    background-position: center;
}

/* Auf kleinen Geräten soll das Modal angenehmer sein */
@media (max-width: 700px) {
    .modal {
        padding: 16px;
    }

    .modal-content {
        border-radius: 24px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
    }
}

/* =========================
   IMPRESSUM / DATENSCHUTZ
========================= */

.legal-section {
    min-height: 75vh;
    padding-top: 100px;
}

.legal-section h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 18px;
}

.legal-card {
    max-width: 900px;

    padding: 42px;

    background: white;
    border-radius: 30px;

    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.legal-card h2 {
    font-size: 26px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: #4f4f4f;
    font-size: 17px;
    margin-bottom: 20px;
}

.legal-card strong {
    color: #1d1d1d;
}

.legal-note {
    margin-top: 32px;
    padding: 18px 20px;

    background: #fff3d6;
    color: #7a5600 !important;

    border-radius: 18px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .legal-card {
        padding: 28px 22px;
    }

    .legal-card h2 {
        font-size: 22px;
    }
}

/* =========================
   FAQ / HÄUFIGE FRAGEN
========================= */

.faq-section {
    background: #f6f1e8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.faq-card {
    padding: 30px;

    background: white;
    border-radius: 28px;

    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
    transition: 0.2s;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.1);
}

.faq-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.faq-card p {
    color: #555;
    font-size: 16px;
}

@media (max-width: 1100px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   KONTAKTBEREICH UPDATE
========================= */

.contact-content {
    max-width: 720px;
}

.contact-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    margin-top: 34px;
}

.contact-points div {
    padding: 20px;

    background: rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-points strong {
    display: block;

    color: white;
    font-size: 18px;

    margin-bottom: 6px;
}

.contact-points span {
    color: #d8d8d8;
    font-size: 14px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;

    margin-bottom: 26px;
}

.contact-info-list div {
    padding: 16px 18px;

    background: #f6f1e8;
    border-radius: 18px;
}

.contact-info-list span {
    display: block;

    color: #777;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 4px;
}

.contact-info-list a {
    color: #1d1d1d;
    font-weight: 900;
    text-decoration: none;
    word-break: break-word;
}

.contact-info-list a:hover {
    color: #a66a2c;
}

@media (max-width: 900px) {
    .contact-points {
        grid-template-columns: 1fr;
    }
}

/* =========================
   DETAILANSICHT BILD FIX
   Ganzes Bild anzeigen
========================= */

.modal-content {
    width: min(1450px, calc(100vw - 40px));
    grid-template-columns: 1.35fr 0.65fr;
}

.modal-image {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #151515;
    min-height: 760px;
}

/* Für Hochformat-Bilder */
.modal-image.auto-hochformat,
.modal-image.preview-hochformat {
    background-size: contain !important;
}

/* Auf kleineren Bildschirmen */
@media (max-width: 1000px) {
    .modal-content {
        grid-template-columns: 1fr;
        width: min(900px, calc(100vw - 30px));
    }

    .modal-image {
        min-height: 620px;
    }
}

@media (max-width: 700px) {
    .modal-image {
        min-height: 430px;
    }
}

/* =========================
   BILDANSICHT + VORSCHAU UPDATE
   Mehr vom Kunstwerk sichtbar machen
========================= */

/* Detailfenster nimmt mehr Bildschirm ein */
.modal {
    padding: 20px;
}

.modal-content {
    width: min(1700px, 96vw);
    height: 92vh;
    max-height: 92vh;

    grid-template-columns: 1.75fr 0.75fr;
}

/* Großes Bild im Detailfenster */
.modal-image {
    height: 100%;
    min-height: auto;

    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #111111;
}

/* rechter Textbereich etwas kompakter */
.modal-info {
    padding: 42px 36px;
    overflow-y: auto;
}

.modal-info h2 {
    font-size: clamp(34px, 4vw, 62px);
}

/* Galerie-Vorschau: mehr vom Bild zeigen */
.artwork-real-image {
    width: 100%;
    height: 100%;

    object-fit: contain !important;
    object-position: center;

    background: #f6f1e8;
}

/* Vorschau-Flächen etwas größer */
.preview-querformat {
    height: 450px;
}

.preview-hochformat {
    height: 640px;
}

.preview-quadratisch {
    height: 540px;
}

/* echter Bildbereich soll ruhig wirken */
.artwork-image {
    background: #f6f1e8 !important;
}

/* Karten dadurch etwas hochwertiger */
.artwork-card {
    overflow: hidden;
}

/* Auf mittelgroßen Bildschirmen */
@media (max-width: 1100px) {
    .modal-content {
        grid-template-columns: 1fr;
        height: 92vh;
        overflow-y: auto;
    }

    .modal-image {
        min-height: 65vh;
    }
}

/* Auf Handy */
@media (max-width: 700px) {
    .modal {
        padding: 10px;
    }

    .modal-content {
        width: 100%;
        height: 94vh;
        max-height: 94vh;
    }

    .modal-image {
        min-height: 55vh;
    }

    .modal-info {
        padding: 28px 22px;
    }

    .preview-querformat,
    .preview-hochformat,
    .preview-quadratisch {
        height: 430px;
    }
}

/* =========================
   MODAL FINAL FIX
   Text nicht abschneiden + schwarze Balken entfernen
========================= */

/* Modal noch besser aufteilen */
.modal-content {
    width: min(1750px, 96vw);
    height: 92vh;
    max-height: 92vh;

    grid-template-columns: 1.45fr 0.85fr;

    overflow: hidden;
}

/* Bildbereich nicht mehr schwarz */
.modal-image {
    background-color: #f6f1e8 !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* rechter Bereich darf nicht horizontal scrollen */
.modal-info {
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 42px 36px;
}

/* langer Titel darf umbrechen und wird nicht abgeschnitten */
.modal-info h2 {
    max-width: 100%;
    font-size: clamp(32px, 3vw, 54px);
    line-height: 1.08;

    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

/* Beschreibung etwas kompakter */
.modal-info p {
    max-width: 100%;
}

/* Details sauber umbrechen */
.modal-details {
    max-width: 100%;
}

/* Footer im Modal darf nicht rauslaufen */
.modal-footer {
    flex-wrap: wrap;
}

/* horizontalen Scrollbalken verhindern */
.modal-content,
.modal-info {
    scrollbar-gutter: stable;
}

/* bei kleineren Bildschirmen untereinander anzeigen */
@media (max-width: 1150px) {
    .modal-content {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .modal-image {
        min-height: 60vh;
    }

    .modal-info h2 {
        font-size: clamp(30px, 7vw, 48px);
    }
}

/* =========================
   MODAL PROPORTIONAL FIX
   Weniger leere Fläche oben/unten
========================= */

.modal {
    padding: 10px;
}

/* Fenster größer, aber nicht unnötig hoch */
.modal-content {
    width: min(1850px, 98vw) !important;
    height: auto !important;
    max-height: 96vh !important;

    grid-template-columns: minmax(0, 1.65fr) minmax(420px, 0.75fr);

    align-items: center;
    overflow: hidden;
}

/* Bildbereich nicht künstlich auf volle Höhe strecken */
.modal-image {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;

    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #f6f1e8 !important;
}

/* Querformat-Bilder, z.B. Wüstenlandschaft */
.modal-image.modal-querformat {
    aspect-ratio: 4 / 3;
}

/* Hochformat-Bilder */
.modal-image.modal-hochformat {
    aspect-ratio: 3 / 4;
    max-height: 90vh;
}

/* Quadratische Bilder */
.modal-image.modal-quadratisch {
    aspect-ratio: 1 / 1;
    max-height: 90vh;
}

/* rechter Textbereich bleibt sauber lesbar */
.modal-info {
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;

    padding: 38px 34px;
}

.modal-info h2 {
    font-size: clamp(32px, 3vw, 56px);
    line-height: 1.08;

    overflow-wrap: break-word;
    hyphens: auto;
}

/* Button/Preis dürfen umbrechen */
.modal-footer {
    flex-wrap: wrap;
}

/* Für kleinere Bildschirme */
@media (max-width: 1150px) {
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 96vh !important;
        overflow-y: auto;
    }

    .modal-image.modal-querformat {
        aspect-ratio: 4 / 3;
    }

    .modal-image.modal-hochformat {
        aspect-ratio: 3 / 4;
    }

    .modal-info {
        max-height: none;
    }
}

@media (max-width: 700px) {
    .modal {
        padding: 8px;
    }

    .modal-content {
        width: 100% !important;
    }

    .modal-info {
        padding: 26px 20px;
    }
}

/* =========================
   LOGO FIX
========================= */

.logo-mark {
    width: 52px !important;
    height: 52px !important;

    min-width: 52px;

    font-size: 18px;
    font-weight: 900;
    letter-spacing: -1px;
}
/* =========================
   HERO-BILD AUSSCHNITT FIX
   Rahmen wegschneiden + Bild größer
========================= */

.hero-art-card {
    width: min(700px, 100%) !important;
}

.hero-art-image {
    height: clamp(620px, 52vw, 760px) !important;
    overflow: hidden;
    background: #f6f1e8 !important;
}

/* Nur das echte Bild im Hero-Bereich */
.hero-art-image img {
    width: 100%;
    height: 100%;

    object-fit: cover !important;
    object-position: center center;

    /* schneidet den Rahmen weg */
    transform: scale(1.13);

    border-radius: 32px;
}

/* =========================
   SPRACHUMSCHALTER
========================= */

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 10px 14px;

    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.75);
    color: #1d1d1d;

    font-weight: 900;
    cursor: pointer;

    transition: 0.25s;
    backdrop-filter: blur(10px);
}

.language-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.lang-option {
    opacity: 0.45;
    transition: 0.2s;
}

.lang-option.active {
    opacity: 1;
    color: #a66a2c;
}

.lang-divider {
    opacity: 0.35;
}

@media (max-width: 760px) {
    .language-toggle {
        padding: 9px 13px;
    }
}

/* =========================
   SPRACHUMSCHALTER NEU
========================= */

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px;

    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 12px;
    border-radius: 999px;

    cursor: pointer;
    user-select: none;

    color: #555;
    font-weight: 800;
    transition: 0.25s;
}

.lang-chip:hover {
    transform: translateY(-1px);
    color: #1d1d1d;
}

.lang-chip.active {
    background: #1d1d1d;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-text {
    font-size: 14px;
    letter-spacing: 0.4px;
}

/* alter Divider wird nicht mehr gebraucht */
.lang-divider,
.lang-option {
    display: none !important;
}

@media (max-width: 760px) {
    .language-toggle {
        padding: 5px;
    }

    .lang-chip {
        padding: 7px 10px;
        gap: 6px;
    }

    .lang-text {
        font-size: 13px;
    }
}

/* =========================
   SPRACHBUTTON MIT FLAGGEN-BILDERN
========================= */

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px;

    border: 2px solid #1d1d1d;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);

    cursor: pointer;
    transition: 0.25s;
}

.language-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 12px;
    border-radius: 999px;

    color: #555;
    font-weight: 900;

    transition: 0.25s;
}

.lang-chip:hover {
    transform: translateY(-1px);
}

.lang-chip.active {
    background: #1d1d1d;
    color: white;
}

.lang-flag-image {
    width: 22px;
    height: 15px;

    object-fit: cover;
    display: block;

    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.lang-text {
    font-size: 14px;
    letter-spacing: 0.4px;
}

/* alte Emoji-Flaggen ausblenden, falls noch irgendwo vorhanden */
.lang-flag {
    display: none;
}

/* =========================
   KÜNSTLERPROFIL – FINALES DESIGN
========================= */

.about-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
    align-items: center;
    gap: 0;

    padding: 110px 7%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(166, 106, 44, 0.14),
            transparent 30%
        ),
        #e8ddcc;
}

/* Foto */
.about-image {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;

    overflow: hidden;
    border-radius: 38px;

    background: #d7c9b6;
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.18);
}

.about-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center 32%;
}

/* Textkarte */
.about-content {
    position: relative;
    z-index: 1;

    margin-left: -70px;
    padding: 58px 58px 58px 120px;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 38px;

    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.09);
    backdrop-filter: blur(14px);
}

.about-content h2 {
    max-width: 900px;

    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.5px;

    margin-bottom: 26px;
}

.about-content p {
    max-width: 900px;

    color: #4f4a43;
    font-size: 18px;
    line-height: 1.75;

    margin-bottom: 20px;
}

.about-content .primary-button {
    margin-top: 12px;
}

/* Tablet und kleinere Bildschirme */
@media (max-width: 1050px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-image {
        width: min(520px, 100%);
        justify-self: center;
    }

    .about-content {
        margin-left: 0;
        padding: 42px;
    }
}

/* Handy */
@media (max-width: 700px) {
    .about-section {
        padding: 75px 6%;
    }

    .about-image {
        aspect-ratio: 4 / 5;
        border-radius: 28px;
    }

    .about-content {
        padding: 30px 24px;
        border-radius: 28px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-content p {
        font-size: 16px;
    }
}

/* =========================
   WECHSELNDES HERO-KUNSTWERK
========================= */

.hero-art-image img {
    transition:
        opacity 0.32s ease,
        transform 0.65s ease;
}

.hero-art-image img.is-changing {
    opacity: 0;
    transform: scale(1.18);
}

.hero-art-text strong {
    display: inline-block;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.hero-art-text strong.is-changing {
    opacity: 0;
    transform: translateY(8px);
}

/* =========================
   AUFKLAPPBARE BIOGRAFIE
========================= */

.biography-lead {
    margin-bottom: 18px;
}

.biography-details {
    margin-top: 8px;
}

.biography-details summary {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.75);
    color: #1d1d1d;

    font-weight: 800;
    cursor: pointer;
    list-style: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.biography-details summary::-webkit-details-marker {
    display: none;
}

.biography-details summary:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.bio-arrow {
    display: inline-block;
    font-size: 20px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.bio-close-label {
    display: none;
}

.biography-details[open] .bio-open-label {
    display: none;
}

.biography-details[open] .bio-close-label {
    display: inline;
}

.biography-details[open] .bio-arrow {
    transform: rotate(180deg);
}

.biography-text {
    margin-top: 24px;
    padding-top: 24px;

    border-top: 1px solid rgba(0, 0, 0, 0.1);

    animation: biographyReveal 0.35s ease;
}

.biography-text p {
    margin-bottom: 20px;
}

.about-contact-button {
    margin-top: 22px;
}

@keyframes biographyReveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .biography-details summary {
        width: 100%;
        justify-content: center;
    }

    .about-contact-button {
        width: 100%;
        text-align: center;
    }
}