:root {
    --bg-dark: #1a1a1a;
    --bg-card: rgba(35, 35, 35, 0.9);
    --accent-red: #8b0000;
    --accent-gold: #d4af37;
    --text-white: #f5f5f5;
    --text-gray: #c0c0c0;
    --border: rgba(212, 175, 55, 0.3);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    --radius: 4px;
}

/* ── Reset & Basis ──────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: var(--text-white);
    background: var(--bg-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--accent-gold);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

/* ── Navigation ────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 5vw;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav--scrolled {
    height: 64px;
    background: rgba(5, 5, 5, 0.95);
}

.nav__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-white);
}

.nav__logo span {
    color: var(--accent-red);
}

.nav__links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav__links a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-gray);
    transition: all .3s;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-red);
    transition: width 0.3s;
}

.nav__links a:hover {
    color: var(--text-white);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px 24px;
    background: var(--accent-red);
    color: var(--text-white);
    border-radius: var(--radius);
    transition: all .3s;
}

.nav__cta:hover {
    transform: translateY(-2px);
    background: #a50000;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.8) contrast(1.1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero__inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5vw;
    width: 100%;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.hero__label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.hero__title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.hero__title em {
    font-style: italic;
    color: var(--accent-red);
}

.hero__sub {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--accent-red);
    color: var(--text-white);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn--outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* ── Sektionen ────────────────────────────────────────── */
.section {
    padding: 140px 5vw;
}

.section--bg {
    background: #0d0d0d;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent-red);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
}

/* ── Content Grid ──────────────────────────────────────── */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
}

.visual-card {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-red);
}

/* ── Features ──────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 4rem 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: flex;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-gray);
}

.image-reveal {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    aspect-ratio: 4/5;
}

.image-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-reveal:hover img {
    transform: scale(1.08);
}

.content-list {
    list-style: none;
    margin: 3rem 0;
}

.content-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-list li strong {
    color: var(--accent-gold);
    margin-right: 10px;
}

/* ── Stats ─────────────────────────────────────────────── */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: 5rem;
}

.stat-item {
    padding: 5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-gray);
}

/* ── Quote ─────────────────────────────────────────────── */
.quote-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-style: italic;
    line-height: 1.3;
    color: var(--text-white);
    margin-bottom: 2.5rem;
}

.quote-text em {
    color: var(--accent-red);
    font-style: normal;
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
    background: #050505;
    color: var(--text-gray);
    padding: 100px 5vw 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-brand h2 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-brand h2 span {
    color: var(--accent-red);
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--accent-gold);
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-red);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* ── Responsive ────────────────────────────────────────── */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--text-white);
    margin: 6px 0;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: block;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.5s;
    }

    .nav__links--active {
        right: 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .hero__title {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Artikel-Seiten ───────────────────────────────────── */
.article-body {
    max-width: 800px;
}

.article-body p {
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-body h2.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.article-body h2.section-title:first-child {
    margin-top: 0;
}

.article-author {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-red);
}

/* ── Search ───────────────────────────────────────────── */
.nav__search {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    color: var(--text-gray);
    transition: color 0.3s;
}

.nav__search:hover {
    color: var(--text-white);
}

.nav__search svg {
    width: 20px;
    height: 20px;
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.search-overlay--active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__inner {
    width: 100%;
    max-width: 640px;
    padding: 0 2rem;
}

.search-overlay__input-wrap {
    position: relative;
    margin-bottom: 2rem;
}

.search-overlay__input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.2rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-white);
    background: rgba(35, 35, 35, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.3s;
}

.search-overlay__input::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.search-overlay__input:focus {
    border-color: var(--accent-gold);
}

.search-overlay__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.search-overlay__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.search-overlay__close:hover {
    color: var(--text-white);
}

.search-overlay__close svg {
    width: 28px;
    height: 28px;
}

.search-results {
    list-style: none;
    max-height: 50vh;
    overflow-y: auto;
}

.search-results::-webkit-scrollbar {
    width: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.search-results li a {
    display: block;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
    text-decoration: none;
}

.search-results li a:hover {
    background: rgba(212, 175, 55, 0.08);
}

.search-results__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.2rem;
}

.search-results__meta {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.search-results__empty {
    padding: 2rem 1.2rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.search-overlay__hint {
    font-size: 0.75rem;
    color: var(--text-gray);
    opacity: 0.5;
    text-align: center;
    margin-top: 1rem;
}

/* ── Artikel-Index Cards ──────────────────────────────── */
a.feature-card {
    display: block;
    transition: all 0.4s;
}

a.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

a.feature-card h3 {
    color: var(--accent-gold);
}

a.feature-card p {
    color: var(--text-gray);
}