* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #111;
    color: #f3f3f3;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
}

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

a:hover {
    opacity: 0.75;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.96);
    border-bottom: 1px solid #2a2a2a;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo span {
    display: block;
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 3px;
    color: #aaa;
    margin-top: 2px;
}

.nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.nav a {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background: #191919;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(46px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: 4px;
}

.hero p {
    margin: 26px 0 0;
    color: #bbb;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 22px;
    border: 1px solid #777;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-title {
    margin: 0 0 35px;
    font-size: 34px;
    letter-spacing: 1px;
}

.section-intro {
    max-width: 760px;
    color: #bbb;
    margin-bottom: 45px;
}

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

.art-card {
    background: #181818;
    border: 1px solid #262626;
}

.art-placeholder {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #777;
    text-align: center;
    padding: 20px;
}

.art-card-content {
    padding: 18px;
}

.art-card h3 {
    margin: 0 0 7px;
    font-size: 20px;
}

.art-card p {
    margin: 0;
    color: #999;
    font-size: 14px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.image-placeholder {
    min-height: 480px;
    background: #222;
    border: 1px solid #303030;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    padding: 20px;
    text-align: center;
}

.text-block h2,
.text-block h3 {
    margin-top: 0;
}

.meta-list {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #2c2c2c;
}

.meta-list li {
    padding: 12px 0;
    border-bottom: 1px solid #2c2c2c;
    color: #bbb;
}

.meta-list strong {
    color: #fff;
    display: inline-block;
    min-width: 130px;
}

.series-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.series-box {
    padding: 32px;
    background: #181818;
    border: 1px solid #292929;
}

.series-box h3 {
    margin-top: 0;
}

.timeline {
    border-left: 1px solid #444;
    padding-left: 28px;
}

.timeline-item {
    margin-bottom: 32px;
}

.timeline-item h3 {
    margin: 0 0 5px;
}

.timeline-item p {
    margin: 0;
    color: #aaa;
}

.contact-form {
    max-width: 720px;
}

.form-row {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    color: #bbb;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    background: #181818;
    color: #fff;
    border: 1px solid #3a3a3a;
    font-family: Arial, Helvetica, sans-serif;
}

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

button {
    padding: 12px 22px;
    background: transparent;
    color: #fff;
    border: 1px solid #777;
    cursor: pointer;
}

.site-footer {
    border-top: 1px solid #2a2a2a;
    color: #777;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
    font-size: 13px;
}

@media (max-width: 850px) {
    .header-inner {
        display: block;
    }

    .nav ul {
        margin-top: 18px;
        gap: 14px;
    }

    .gallery-grid,
    .series-list,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 65vh;
    }
}

@media (max-width: 520px) {
    .header-inner,
    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 46px;
    }
}

/* =========================================================
   STARTSEITE – CHRISTOPH ALESI
   ========================================================= */

.home-page {
    background: #090909;
}

.home-header {
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.78), rgba(0,0,0,0));
    border-bottom: 0;
}

.home-header .header-inner {
    max-width: 1450px;
}

.home-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #050505;
}

.hero-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 78px 6vw 0;
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: .9;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.52) 28%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.25) 100%),
        linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,0) 42%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    max-width: 1450px;
    margin: 0 auto;
    padding: 160px 6vw 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b6b6b6;
}

.hero-copy h1 {
    max-width: 850px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    font-size: clamp(58px, 8.6vw, 132px);
    line-height: .88;
    letter-spacing: -4px;
}

.hero-subtitle {
    margin: 28px 0 0;
    font-size: clamp(14px, 1.3vw, 18px);
    letter-spacing: 1.6px;
    color: #d0d0d0;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.button-solid {
    background: #f1f1ed;
    border-color: #f1f1ed;
    color: #101010;
}

.text-link {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

.artist-statement {
    max-width: 1100px;
    margin: 0 auto;
    padding: 130px 24px;
    text-align: center;
}

.statement-kicker,
.statement-note {
    margin: 0;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777;
}

.statement-text {
    max-width: 980px;
    margin: 27px auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4.4vw, 66px);
    line-height: 1.08;
    font-weight: normal;
}

.featured-section {
    max-width: 1450px;
    margin: 0 auto;
    padding: 60px 4vw 140px;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 45px;
}

.section-heading-row h2,
.series-preview h2,
.artist-teaser h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    gap: 20px;
    align-items: start;
}

.featured-work {
    display: block;
}

.featured-image {
    height: min(56vw, 720px);
    min-height: 420px;
    overflow: hidden;
    background: #121212;
}

.featured-work:not(.featured-work-tall) .featured-image {
    height: min(44vw, 590px);
}

.featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform .5s ease, opacity .5s ease;
}

.featured-work:hover .featured-image img {
    transform: scale(1.015);
    opacity: .88;
}

.featured-caption {
    padding: 16px 2px 0;
}

.featured-caption h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: normal;
}

.featured-caption p {
    margin: 6px 0 0;
    color: #777;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.series-preview {
    border-top: 1px solid #202020;
    border-bottom: 1px solid #202020;
    background: #0d0d0d;
}

.series-preview-inner {
    max-width: 1450px;
    margin: 0 auto;
    padding: 120px 4vw;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 8vw;
}

.series-links {
    border-top: 1px solid #303030;
}

.series-links a {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 0 20px;
    padding: 26px 0;
    border-bottom: 1px solid #303030;
}

.series-links span {
    grid-row: 1 / 3;
    color: #5d5d5d;
    font-size: 12px;
}

.series-links strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: normal;
}

.series-links em {
    margin-top: 5px;
    color: #777;
    font-style: normal;
    font-size: 13px;
}

.artist-teaser {
    max-width: 1300px;
    margin: 0 auto;
    padding: 135px 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 7vw;
    align-items: center;
}

.artist-teaser-number {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(100px, 17vw, 240px);
    line-height: 1;
    color: #171717;
    background: #0c0c0c;
    user-select: none;
}

.artist-teaser-copy p:not(.eyebrow) {
    max-width: 600px;
    margin: 28px 0 0;
    color: #b0b0b0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.5;
}

.artist-teaser-copy .button {
    margin-top: 30px;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 900px) {
    .home-header {
        position: relative;
        background: #090909;
        border-bottom: 1px solid #222;
    }

    .home-hero,
    .hero-copy {
        min-height: 86vh;
    }

    .hero-art {
        padding: 0;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.2) 62%, rgba(0,0,0,.28) 100%);
    }

    .hero-copy {
        justify-content: flex-end;
        padding: 80px 24px 42px;
    }

    .hero-copy h1 {
        letter-spacing: -2px;
    }

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

    .featured-image,
    .featured-work:not(.featured-work-tall) .featured-image {
        height: 72vh;
        min-height: 460px;
    }

    .series-preview-inner,
    .artist-teaser {
        grid-template-columns: 1fr;
    }

    .artist-teaser-number {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    .home-hero,
    .hero-copy {
        min-height: 78vh;
    }

    .hero-copy {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-copy h1 {
        font-size: 52px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        max-width: 330px;
        line-height: 1.6;
    }

    .artist-statement {
        padding: 90px 18px;
    }

    .featured-section {
        padding: 40px 16px 100px;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row .text-link {
        display: inline-block;
        margin-top: 22px;
    }

    .featured-image,
    .featured-work:not(.featured-work-tall) .featured-image {
        height: 68vh;
        min-height: 420px;
    }

    .series-preview-inner {
        padding: 85px 18px;
    }

    .series-links strong {
        font-size: 25px;
    }

    .artist-teaser {
        padding: 90px 18px;
    }

    .footer-split {
        display: block;
    }

    .footer-split span {
        display: block;
        margin-bottom: 5px;
    }
}

/* =========================================================
   STARTSEITE V3 – ruhiger, breiter, ohne Text über dem Werk
   Diese Regeln überschreiben bewusst die vorherigen Startseiten-Regeln.
   ========================================================= */

.home-page {
    background: #080808;
}

.home-header {
    position: relative;
    background: #080808;
    border-bottom: 1px solid #202020;
}

.home-header .header-inner {
    max-width: 1540px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.home-hero {
    position: relative;
    width: 100%;
    max-width: 1600px;
    min-height: calc(100vh - 82px);
    margin: 0 auto;
    padding: 34px 34px 46px;
    overflow: visible;
    display: grid;
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.48fr);
    gap: 46px;
    align-items: center;
    background: #080808;
}

.home-hero .hero-copy {
    position: static;
    z-index: auto;
    min-height: 0;
    max-width: none;
    margin: 0;
    padding: 30px 0 30px 4vw;
    display: block;
}

.home-hero .hero-copy h1 {
    max-width: 580px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    font-size: clamp(58px, 5.4vw, 94px);
    line-height: .95;
    letter-spacing: -3px;
}

.home-hero .hero-subtitle {
    max-width: 510px;
    margin: 28px 0 0;
    color: #cecece;
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 1.2px;
}

.home-hero .hero-intro {
    max-width: 470px;
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid #2d2d2d;
    color: #858585;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.home-hero .hero-actions {
    margin-top: 30px;
}

.home-hero .hero-art {
    position: static;
    inset: auto;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c0c0c;
    border: 1px solid #202020;
}

.home-hero .hero-art img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: 1;
}

.home-hero .hero-shade {
    display: none;
}

.artist-statement {
    max-width: 1080px;
    padding-top: 105px;
    padding-bottom: 110px;
}

.statement-text {
    font-size: clamp(30px, 3.7vw, 58px);
}

.featured-section {
    max-width: 1540px;
    padding-left: 34px;
    padding-right: 34px;
}

.featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.featured-image,
.featured-work:not(.featured-work-tall) .featured-image {
    height: auto;
    min-height: 0;
    overflow: visible;
    background: #0c0c0c;
    border: 1px solid #202020;
}

.featured-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    transition: opacity .3s ease;
}

.featured-work:hover .featured-image img {
    transform: none;
    opacity: .82;
}

.featured-caption {
    padding-top: 14px;
}

@media (max-width: 1050px) {
    .home-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 28px;
        padding: 28px 24px 55px;
    }

    .home-hero .hero-copy {
        order: 2;
        padding: 12px 0 0;
    }

    .home-hero .hero-art {
        order: 1;
    }

    .home-hero .hero-art img {
        max-height: none;
    }

    .home-hero .hero-copy h1 {
        font-size: clamp(54px, 10vw, 90px);
    }

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

@media (max-width: 650px) {
    .home-hero {
        padding: 18px 14px 45px;
    }

    .home-hero .hero-copy h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .home-hero .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .featured-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}
