@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #1a1a1a;
    --secondary: #8b7355;
    --accent: #d4a574;
    --light: #f8f6f3;
    --cream: #fdfbf7;
    --text: #2c2c2c;
    --text-light: #666;
    --border: #e8e4de;
    --shadow: rgba(0,0,0,0.08);
    --max-width: 680px;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.article-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    padding-top: 40px;
    padding-bottom: 80px;
}

.article-header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 50px;
}

.category-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.article-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
}

.article-meta {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.meta-divider {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

.article-body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.9;
}

.article-body p {
    margin-bottom: 28px;
    text-align: justify;
    hyphens: auto;
}

.article-body p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 600;
    float: left;
    line-height: 0.8;
    padding-right: 12px;
    margin-top: 8px;
    color: var(--secondary);
}

.highlight-text {
    background: linear-gradient(180deg, transparent 60%, rgba(212, 165, 116, 0.4) 60%);
    padding: 0 4px;
    font-weight: 500;
}

.text-accent {
    color: var(--secondary);
    font-weight: 600;
}

.article-image {
    margin: 50px 0;
    text-align: center;
}

.article-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 32px var(--shadow);
}

.image-caption {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
    font-style: italic;
}

.cta-block {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    padding: 32px 36px;
    margin: 50px 0;
    border-radius: 0 8px 8px 0;
}

.cta-block .cta-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.cta-block p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: left;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.3);
}

.cta-inline {
    display: inline;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
    cursor: pointer;
}

.cta-highlight {
    background: var(--primary);
    color: #fff;
    padding: 24px 32px;
    margin: 50px 0;
    border-radius: 8px;
    text-align: center;
}

.cta-highlight .cta-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-highlight p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: center;
}

.cta-highlight .cta-button {
    background: #fff;
    color: var(--primary);
}

.cta-highlight .cta-button:hover {
    background: var(--accent);
    color: #fff;
}

.quote-block {
    border-left: 3px solid var(--secondary);
    padding: 24px 32px;
    margin: 50px 0;
    background: var(--light);
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
}

.quote-block cite {
    display: block;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: var(--text-light);
}

.review-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.review-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.review-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 28px 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 12px var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.review-info h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.review-info .stars {
    color: #f4c430;
    font-size: 14px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.spec-item {
    background: var(--light);
    padding: 20px 24px;
    border-radius: 6px;
    border-left: 3px solid var(--accent);
}

.spec-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.spec-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.comparison-table {
    width: 100%;
    margin: 40px 0;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison-table th {
    background: var(--primary);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.comparison-table tr:nth-child(even) {
    background: var(--light);
}

.comparison-table .check {
    color: #2d8a4e;
    font-weight: 600;
}

.comparison-table .cross {
    color: #c44536;
}

.section-divider {
    text-align: center;
    margin: 60px 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.divider-icon {
    display: inline-block;
    background: var(--cream);
    padding: 0 20px;
    position: relative;
    color: var(--secondary);
    font-size: 20px;
}

.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 40px;
    margin: 60px 0 40px;
    border-radius: 12px;
    text-align: center;
}

.final-cta h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .price-tag {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.final-cta .price-note {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 28px;
}

.final-cta .cta-button {
    background: var(--accent);
    color: var(--primary);
    font-size: 16px;
    padding: 20px 48px;
}

.final-cta .cta-button:hover {
    background: #fff;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-light);
    padding: 24px 0;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.disclaimer strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.site-footer {
    background: var(--primary);
    color: #fff;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent);
}

.impressum {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

.impressum strong {
    color: #fff;
    display: block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}

.impressum p {
    margin-bottom: 8px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.legal-page {
    padding: 60px 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.legal-header .last-updated {
    font-size: 14px;
    color: var(--text-light);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin: 28px 0 14px;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    :root {
        --max-width: 100%;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-subtitle {
        font-size: 17px;
    }
    
    .article-body {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .article-body p:first-of-type::first-letter {
        font-size: 56px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-block {
        padding: 24px;
        margin: 40px -10px;
    }
    
    .cta-highlight {
        margin: 40px -10px;
        padding: 28px 24px;
    }
    
    .final-cta {
        padding: 40px 24px;
        margin: 40px -10px;
    }
    
    .final-cta h3 {
        font-size: 28px;
    }
    
    .quote-block {
        font-size: 18px;
        padding: 20px 24px;
        margin: 40px -10px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 26px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
