:root {
    color-scheme: light dark;
    
    --bg: #f4efe7;
    --text: #252423;
    --muted: #6f6a64;
    --line: #d8d0c5;
    --max: 1100px;
    --statement-bg: #252423;
    --statement-text: #f4efe7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--muted);
}

.page {
    width: min(var(--max), calc(100% - 64px));
    margin: 0 auto;
}

/* -------------------------------------------------- */
/* Header                                              */
/* -------------------------------------------------- */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 52px 0 96px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 330px;
    height: auto;
}

nav {
    display: flex;
    gap: 44px;
    font-size: 19px;
    font-weight: 400;
}

nav a.active {
    border-bottom: 1px solid var(--text);
}

/* -------------------------------------------------- */
/* Startseite / Serienseiten                           */
/* -------------------------------------------------- */

.series-head {
    margin: 0 0 64px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.series-title {
    margin: 0;
    font-size: clamp(30px, 2.8vw, 38px);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.series-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
}

.series-stack figure {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.series-stack img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 78vh;
    background: #e3ddd3;
}

/* -------------------------------------------------- */
/* Statement (Startseite + Haltung)                    */
/* -------------------------------------------------- */

.series-link {
    margin: 60px 0 0;
    text-align: center;
}

.series-link a {
    color: var(--muted);
    font-size: 18px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.series-link a:hover {
    color: var(--text);
}

.statement-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    background: var(--statement-bg);
    color: var(--statement-text);
    margin-bottom: 120px;
}

.statement-wrap.after-series {
    margin-top: 120px;
}

.statement-inverted {
    width: min(var(--max), calc(100% - 64px));
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

.statement-inverted p {
    margin: 0;
}

/* -------------------------------------------------- */
/* Serienübersicht                                     */
/* -------------------------------------------------- */

.series-list {
    display: flex;
    flex-direction: column;
    gap: 92px;
    margin-bottom: 150px;
}

.series-card {
    display: grid;
    grid-template-columns: minmax(260px, 520px) 1fr;
    gap: 54px;
    align-items: end;
    padding-bottom: 92px;
    border-bottom: 1px solid var(--line);
}

.series-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.series-thumb {
    margin: 0;
}

.series-thumb img {
    display: block;
    width: 100%;
    height: auto;
    background: #e3ddd3;
}

.series-meta {
    padding-bottom: 4px;
}

.series-card-title {
    margin: 0 0 14px;
    font-size: clamp(28px, 2.4vw, 34px);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* -------------------------------------------------- */
/* Haltung                                              */
/* -------------------------------------------------- */

.text {
    width: 100%;
    margin: 0 0 150px;
}

.text-block {
    margin-bottom: 72px;
}

.text-block:last-child {
    margin-bottom: 0;
}

.text p {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.text p:last-child {
    margin-bottom: 0;
}

.divider {
    width: 42px;
    height: 1px;
    margin: 0 auto 72px;
    background: var(--line);
}

/* -------------------------------------------------- */
/* Kontakt                                              */
/* -------------------------------------------------- */

.contact {
    width: 100%;
    margin: 0 0 150px;
}

.contact-intro {
    max-width: 760px;
    margin-bottom: 76px;
}

.contact-intro p {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.contact-image {
    width: min(100%, 520px);
    margin: 0 0 76px;
}

.contact-image img {
    display: block;
    width: 100%;
    height: auto;
    background: #e3ddd3;
}

.contact-note {
    margin-top: 12px;
    margin-bottom: 12px;
}

.contact-note p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.question {
    max-width: 760px;
    margin: 0 0 38px;
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

form {
    max-width: 760px;
    display: grid;
    gap: 28px;
}

.field {
    display: grid;
    gap: 10px;
}

label {
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
}

input,
textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 18px;
    padding: 10px 0 14px;
}

textarea {
    min-height: 170px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom-color: var(--text);
}

input[name="f_website"] {
    display: none;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

button {
    justify-self: start;
    margin-top: 20px;
    border: 1px solid var(--text);
    background: transparent;
    color: var(--text);
    padding: 13px 24px;
    font: inherit;
    font-size: 17px;
    cursor: pointer;
}

button:hover {
    background: var(--text);
    color: var(--bg);
}

/* -------------------------------------------------- */
/* Footer                                               */
/* -------------------------------------------------- */

footer {
    padding: 60px 0 48px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
}

.footer-inner {
    display: block;
}


@media (prefers-color-scheme: dark) {
    :root {
        --bg: #181614;
        --text: #eee7dc;
        --muted: #a9a095;
        --line: #3a342f;
        --statement-bg: #eee7dc;
        --statement-text: #181614;
    }
}

/* -------------------------------------------------- */
/* Mobile                                               */
/* -------------------------------------------------- */

@media (max-width: 760px) {
    .page {
        width: min(100% - 30px, var(--max));
    }

    header {
        display: block;
        padding: 36px 0 72px;
    }

    nav {
        gap: 26px;
        padding-top: 24px;
        font-size: 17px;
    }

    .series-head {
        margin-bottom: 42px;
    }

    .series-stack {
        gap: 56px;
    }

    .series-stack img {
        max-width: 100%;
        max-height: none;
    }

    .statement-wrap {
        background: var(--statement-bg);
        color: var(--statement-text);
        margin-top: 100px;
    }

    .statement-wrap.after-series {
        margin-top: 100px;
    }

    .statement-inverted {
        width: min(100% - 30px, var(--max));
        padding: 74px 0;
        font-size: 23px;
    }

    .series-list {
        gap: 76px;
        margin-bottom: 110px;
    }

    .series-card {
        display: block;
        padding-bottom: 76px;
    }

    .series-meta {
        padding-top: 26px;
    }

    .text {
        margin-bottom: 110px;
    }

    .text-block {
        margin-bottom: 56px;
    }

    .text p {
        font-size: 20px;
        line-height: 1.75;
    }

    .divider {
        margin-bottom: 56px;
    }

    .contact {
        margin-bottom: 110px;
    }

    .contact-intro {
        margin-bottom: 58px;
    }

    .contact-intro p {
        font-size: 20px;
    }
    
    .contact-image {
        margin-bottom: 58px;
    }

    .question {
        font-size: 28px;
    }

    footer {
        font-size: 15px;
    }

    .footer-inner {
        display: block;
    }

    .footer-right {
        display: block;
        margin-top: 24px;
    }

    .footer-nav,
    .legal-nav {
        gap: 28px;
        margin-top: 18px;
    }
}