:root {
    --color-bg: #0A0A0A;
    --color-text: #F5F5F5;
    --color-text-secondary: #9A9A9A;
    --color-accent: #2E4051;
    --color-accent-secondary: #2E4051;
    --font-primary: Georgia, 'Times New Roman', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.book-detail {
    display: grid;

    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    margin: 2.5rem 0;
}
.book-cover img {
    width: 100%;
    height: auto;

    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}
.book-info-full h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.book-info-full p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.25rem;
}
.book-info-full blockquote {
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 2px solid #4D7EA8;
    font-style: italic;
    font-size: 1.25rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid #4D7EA8;
    border-radius: 4px;
    color: #4D7EA8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s, color 0.3s;
}
.back-link:hover,
.back-link:focus-visible {
    background-color: #4D7EA8;
    color: #0A0A0A;
}

.page-title.book-title {
    color: #2E4051;
    text-transform: none;
    margin-bottom: 0.5rem;

    font-size: 2.5rem;
    font-weight: 600;
}

.awards-title {

    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4D7EA8;
    margin-bottom: 2rem;
}

.book-meta {
    color: #9A9A9A;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.work-section-heading {
    margin: 2rem 0 0.85rem;
    color: #D8D8D8;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.press-item {
    margin-bottom: 2rem;
}
.press-item blockquote {
    margin: 0 0 0.5rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid #4D7EA8;
    font-style: italic;
    line-height: 2;
}
.press-source {
    font-size: 1rem;
    color: var(--color-text-secondary);
}
.press-photo {
    margin: 2rem 0;
    text-align: center;
}
.press-photo img {
    max-width: 300px;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.press-portrait {
    float: left;
    max-width: 260px;
    margin: 0 2rem 2rem 0;
    border: none;
    display: block;
}

.page-photo-right {

    float: right;
    max-width: 300px;
    margin: 0 0 1.5rem 2rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    opacity: 0.8;

    position: relative;
    overflow: hidden;
}

.page-photo-right::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 60%, var(--color-bg) 100%);
    pointer-events: none;
}

.page-photo-left {
    float: left;
    max-width: 300px;
    margin: 0 2rem 1.5rem 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: auto;
}

.page-photo-bottom {
    display: block;

    max-width: 600px;
    width: 100%;
    margin: 2rem auto 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: auto;
}

.bio-photo {
    display: block;
    max-width: 450px;
    margin: 2rem auto;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: auto;
}

.werk-banner {
    display: block;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin: 2rem 0 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link + .social-link {
    margin-left: -1.5rem;
}

.share-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-text);
}

.share-link svg {
    width: 24px;
    height: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5, h6 { text-transform: uppercase; letter-spacing: 0.06em; }

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #2E4051;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.page-content {
    min-height: 80vh;
    padding: 8rem 0 4rem;
}

.imprint-privacy-heading {
    margin-top: 3rem;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
    transition: var(--transition);
}

.logo:hover {
    color: #2E4051;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    position: relative;
    transition: var(--transition);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    color: #2E4051;
    transition: var(--transition);
}

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

.social-link {
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    color: #2E4051;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 480px);
    gap: 2.75rem;
    align-items: center;
}

.hero-text {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-title {
    margin-bottom: 1rem;
    text-align: center;
}

.title-main {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--color-text-secondary);

    margin-left: auto;
    margin-right: auto;
}

.title-sub {
    display: block;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--color-text);

    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #4D7EA8;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    text-transform: none;
    text-align: center;
    width: 100%;
}

.john-name {
    color: var(--color-text);
}

.hero-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
}

.separator {
    color: #2E4051;
}

.hero-image {
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: 0;
    justify-self: end;
    transform: translateX(-24px);
    background: #000;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.04) 14%, rgba(0, 0, 0, 0) 28%),
        linear-gradient(to right, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 12%, rgba(0, 0, 0, 0) 24%),
        linear-gradient(to top, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.02) 18%, rgba(0, 0, 0, 0.02) 82%, rgba(0, 0, 0, 0.22) 100%);
    pointer-events: none;
    z-index: 1;
}

.photo-credit {
    font-size: 0.8rem;
    color: var(--color-text);
    margin-top: 0.5rem;
    text-align: right;
}

.blue-title {
    color: #4D7EA8;
}

.press-page-title {
    color: #4D7EA8;
}

.press-subheading {

    color: #9A9A9A;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.06) brightness(0.98);
}

.cta-button,
.submit-button,
.works-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.cta-button:hover,
.submit-button:hover,
.works-button:hover {
    color: #2E4051;
    border-color: #2E4051;
    color: var(--color-text);
    transform: translateY(-2px);
}

.press-link {
    color: var(--color-text);
    text-decoration: none;
}

.press-link:hover {
    text-decoration: underline;
}

.publisher-item a.press-link {
    color: var(--color-text);
}
.publisher-item a.press-link:hover {
    color: var(--color-text);
}

.books-list .book-year {
    color: var(--color-text-secondary);
}

.works-button {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    min-width: 160px;
}

.highlights {
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.highlight-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: #2E4051;
    transform: translateY(-5px);
}

a.highlight-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.highlights-intro {
    text-align: left;
    margin-bottom: 2rem;
}

.highlights-heading {
    font-size: 1.5rem;
    color: var(--color-text);
    font-weight: 400;
    margin-top: 1rem;
}

.highlights-button-eingedanke {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.hero-button {
    margin-top: 1rem;
    display: inline-block;
}

.highlights-footer {
    text-align: center;
    margin-top: 2rem;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;

    color: #9A9A9A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.highlight-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.werk-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.werk-nav-btn {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.werk-nav-btn:hover,
.werk-nav-btn.active {
    background-color: transparent;
    border-color: #2E4051;
    color: var(--color-text);
}

.werk-content {
    display: block;
}

.werk-content.hidden {
    display: none;
}

.books-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.book-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.book-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.02);
}

.book-year {
    font-size: 1.5rem;
    font-weight: 700;

    color: #4D7EA8;
    letter-spacing: -0.02em;
}

.book-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.book-publisher {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.book-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.book-badge {

    display: block;
    padding: 0;
    background: none;
    border: none;
    color: #4D7EA8;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.25rem 0;
}

.book-badge.film {

    background: none;
    border: none;
    color: #4D7EA8;
}

.films-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.film-item {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.film-item:hover {
    border-color: var(--color-accent-secondary);
    background-color: rgba(77, 126, 168, 0.05);
}

.film-meta {
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

.film-label {
    color: #4D7EA8;
    font-weight: 600;
}

.press-publishers {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.publisher-item,
.publisher-photo {
    flex: 1 1 30%;
}

.publisher-photo img {
    width: 100%;
    height: auto;

    border-radius: 0;
    border: none;
}

.film-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.film-info {
    color: var(--color-accent-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.film-description {
    color: var(--color-text-secondary);
}

.awards-timeline {
    position: relative;
    padding-left: 3rem;
    margin: 3rem 0;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent,
        var(--color-accent) 10%,
        var(--color-accent) 90%,
        transparent
    );
}

.award-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.award-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background-color: var(--color-bg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
}

.award-item.major::before {
    width: 14px;
    height: 14px;
    border-color: #2E4051;
    color: #2E4051;
    box-shadow: 0 0 20px rgba(178, 34, 34, 0.5);
}

.award-item:hover::before {
    border-color: #2E4051;
    transform: scale(1.3);
}

.award-year {

    font-size: 1.25rem;
    font-weight: 600;
    color: #2E4051;
    margin-bottom: 0.25rem;
}

.award-title {

    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.award-work {
    color: var(--color-text-secondary);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.award-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.awards-summary {
    margin: 2rem 0;
    padding: 2rem 0 0;
    border: none;
    background-color: var(--color-bg);
}

.awards-summary p {
    font-size: 1.25rem;

    color: #F5F5F5;
    margin: 0;
}

.bio-text {
    font-size: 1.25rem;
    line-height: 1.8;
}

.bio-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.bio-text h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2E4051;
}

.bio-text p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.bio-text p.interviewer-q {
    color: var(--color-text);
    border-left: 2px solid #4D7EA8;
    padding-left: 1rem;
    font-weight: 400;
    font-style: normal;
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.bio-text p.interviewer-a {
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

a.bio-inline-link { color: inherit; }
a.bio-inline-link:hover { color: #2E4051; }
    color: #2E4051;
}

    top: 2rem;
    right: 2rem;
}

    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.press-intro {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.press-materials {
    margin-bottom: 4rem;
}

.press-materials h3 {
    color: #2E4051;
    margin-bottom: 2rem;
}

.press-downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.press-download-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.press-download-item:hover {
    border-color: #2E4051;
    background-color: rgba(255, 255, 255, 0.02);
}

.press-download-item svg {
    flex-shrink: 0;
    color: #2E4051;
}

.press-download-item h4 {
    margin-bottom: 0.25rem;
}

.press-download-item span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.press-contact h3 {
    color: #2E4051;
    margin-bottom: 2rem;
}

.press-publishers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.publisher-item {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.publisher-item h4 {
    margin-bottom: 1rem;
}

.publisher-item p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.publisher-item a {
    color: #2E4051;
    font-size: 0.9rem;
}

.contact-intro {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.contact-form {
    margin-bottom: 4rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E4051;
    background-color: rgba(255, 255, 255, 0.08);
}

.contact-social {
    margin-top: 4rem;
}

.contact-social h3 {
    color: #2E4051;
    margin-bottom: 1.5rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-button:hover {
    border-color: #2E4051;
    background-color: rgba(255, 255, 255, 0.02);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    margin-top: 6rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-left p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-social,
.footer-link {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social:hover,
.footer-link:hover {
    color: #2E4051;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        max-width: 620px;
        margin: 0 auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .book-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

        grid-template-columns: 1fr;
    }

    .awards-timeline {
        padding-left: 2rem;
    }

    .award-item {
        padding-left: 1rem;
    }

        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .page-content {
        padding: 6rem 0 2rem;
    }

    .werk-nav {
        flex-direction: column;
    }

    .werk-nav-btn {
        width: 100%;
    }
}

.work-meta {
  display: block;
  margin-bottom: 1rem;
}

.work-meta-title {
  display: block;
}

.work-meta-line2 {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-top: 0;
  line-height: inherit;
}

.work-separator {
  width: 1px;
  height: 1.1em;
  background-color: currentColor;
}

.intro-secondary {
    color: var(--color-text-secondary);
}

#vorwort,
#vorwort-original {
    font-size: 1.25rem;
}

#vorwort p,
#vorwort-original p,
#vorwort div,
#vorwort-original div,
#vorwort blockquote,
#vorwort-original blockquote,
#vorwort li,
#vorwort-original li {
    font-size: inherit;
}

body.page-rezeption #pressestimmen blockquote {
    font-size: 1.5rem;
}

body.page-auszeichnungen .awards-summary {
    font-size: 1.5rem;
}
body.page-auszeichnungen .awards-summary p {
    color: var(--color-text-secondary);
}

body.page-ein-gedanke main.page-content p {
    font-size: 1.05rem;
    color: var(--color-text);
}

.highlights-intro p.intro-secondary {
    color: var(--color-text-secondary);
    font-size: 1.25rem;
}

img,
svg {
    max-width: 100%;
}

body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        gap: 1rem;
    }

    .nav-container > .social-link,
    .nav-container > .share-link {
        display: none;
    }

    .nav-menu {
        top: 68px;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1.5rem 1rem 2rem;
        align-items: flex-start;
    }

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

    .hero {
        min-height: auto;
        padding: 7rem 1rem 3rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-text {
        max-width: none;
    }

    .hero-tagline,
    .highlights-intro p.intro-secondary,
    .book-info-full p,
    .book-info-full blockquote,
    .book-publisher,
    .book-description,
    .film-meta,
    .contact-intro,
    .press-intro,
    .awards-summary p,
    .bio-text,
    .bio-text .lead {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .hero-image {
        max-width: 100%;
        width: min(100%, 640px);
        transform: none;
    }

    .hero-image::before {
        background:
            linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.12) 28%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.84) 100%),
            linear-gradient(to left, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0) 42%);
    }

    .section {
        padding: 4rem 0;
    }

    .page-title,
    .page-title.book-title,
    .awards-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .highlights-grid,
    .press-publishers {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .highlight-card,
    .book-item,
    .film-item,
    .press-download-item,
    .publisher-item,
    .award-item {
        padding: 1.25rem;
    }

    .book-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .book-cover {
        max-width: 240px;
        margin: 0 auto;
    }

    .werk-nav,
    .footer-right,
    .footer-left,
    .hero-meta {
        flex-wrap: wrap;
    }

    .page-photo-right,
    .page-photo-left,
    .press-portrait {
        float: none;
        display: block;
        max-width: 100%;
        width: 100%;
        margin: 0 0 1.5rem 0;
    }

    .page-photo-bottom,
    .bio-photo,
    .werk-banner {
        max-width: 100%;
    }

    .press-download-item {
        align-items: flex-start;
    }

    .footer-content,
    .footer-left,
    .footer-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .title-sub {
        font-size: clamp(2.6rem, 13vw, 3.5rem);
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button,
    .submit-button,
    .works-button,
    .werk-nav-btn {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }

    .book-year,
    .book-title,
    .award-title,
    .film-title,
    .book-meta {
        font-size: 1.2rem;
    }

    .work-section-heading {
        font-size: 0.92rem;
    }

    .highlight-number {
        font-size: 2rem;
    }
}

.inline-work-link {
    color: #9A9A9A;
    text-decoration: none;
    font-style: italic;
    letter-spacing: 0.03em;
}

.roman-numeral {
    margin-top: 3em;
}


.hero-copyright {
    position: absolute;
    right: 1rem;
    bottom: 0.85rem;
    font-size: 0.92rem;
    line-height: 1;
    background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(170,170,170,0.45));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    z-index: 3;
    white-space: nowrap;
    opacity: 0.9;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-copyright {
        right: 0.75rem;
        bottom: 0.7rem;
        font-size: 0.8rem;
    }
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.highlights-intro .intro-secondary a {
    color: inherit;
    text-decoration: none;
}

.highlights-intro .intro-secondary a:hover {
    color: inherit;
    opacity: 0.72;
}


.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


.work-page {
    max-width: 1400px;
}

.work-body {
    width: 100%;
    max-width: none;
    margin: 2.5rem 0 0;
}

.work-text-flow {
    max-width: none;
}

.work-text-flow p,
.work-facts-list p,
.work-quotes blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
}

.work-text-flow p {
    margin-bottom: 1rem;
}

.work-cover-centered {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0;
}

.work-cover-centered img {
    display: block;
    width: 215px;
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-cover-note-wrap {
    margin: -1rem 0 2rem;
}

.work-cover-note {
    margin: 0 0 1rem;
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.6;
}

.work-facts-list,
.work-quotes {
    max-width: none;
    margin: 0 0 2rem;
}

.work-facts-list p,
.work-quotes blockquote {
    margin: 0 0 1rem;
    padding-left: 1rem;
    border-left: 2px solid #4D7EA8;
}

.work-quotes blockquote {
    font-style: italic;
}

.work-quotes cite {
    font-style: normal;
}

.work-pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    max-width: none;
    margin: 2.5rem 0 2rem;
}

.work-pagination-spacer,
.work-pagination-prev {
    justify-self: start;
    min-width: 160px;
    text-align: center;
    margin: 0;
}

.work-pagination-center {
    justify-self: center;
    margin: 0;
}

.work-pagination-next {
    justify-self: end;
    min-width: 160px;
    text-align: center;
    margin: 0;
}

.work-pagination-wide-gap {
    margin-top: 4.25rem;
}

@media (max-width: 768px) {
    .work-body {
        margin-top: 2rem;
    }

    .work-pagination {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .work-pagination-spacer {
        display: none;
    }

    .work-pagination-prev,
    .work-pagination-center,
    .work-pagination-next {
        justify-self: stretch;
        width: 100%;
    }
}




/* Hero black background override */
.hero, .hero-image { background: #000; }
