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

body {
    font-family: 'Mulish', sans-serif;
    font-weight: var(--fw-normal);
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

.bold { font-weight: var(--fw-bold); }
.italic { font-style: italic; }

img { max-width: 100%; height: auto; display: block; }

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

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: var(--sp-sm) var(--sp-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1080px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

.logo-icon { width: 36px; height: auto; }
.logo-ratgeber { height: 14px; width: auto; }
.logo-tagline { height: 10px; width: auto; }

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.article p {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-sm);
}

.article ul, .article ol {
    margin-bottom: var(--sp-sm);
    padding-left: var(--sp-lg);
}

.article ul li, .article ol li {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-xs);
}

.content-image {
    width: 100%;
    border-radius: var(--radius-xl);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.hero-section {
    background: #494239;
    padding-bottom: calc(var(--sp-xl) + var(--sp-xl));
}

.hero-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: var(--sp-xl) var(--sp-md) 0;
}

.hero-title {
    font-size: var(--font-3xl);
    line-height: var(--lh-tight);
    font-weight: var(--fw-medium);
    color: #fff;
    letter-spacing: 0.96px;
    margin-bottom: var(--sp-md);
}

.hero-callout {
    background: rgba(217, 217, 217, 0.37);
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.hero-callout p {
    font-size: var(--font-md);
    line-height: var(--lh-relaxed);
    font-weight: var(--fw-light);
    color: #fff;
    margin-bottom: 0;
}

.author-bar {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    font-style: italic;
    color: #fff;
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
}

.hero-image-section {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    margin-bottom: var(--sp-md);
}

.hero-main-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 5px 7px 4px rgba(0, 0, 0, 0.25);
}

.intro-box {
    background: #494239;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-lg);
}

.intro-box p {
    font-size: var(--font-md);
    line-height: var(--lh-relaxed);
    color: #fff;
    margin-bottom: 0;
}

.section-title {
    font-size: var(--font-2xl);
    line-height: var(--lh-snug);
    font-weight: var(--fw-bold);
    letter-spacing: 0.96px;
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-sm);
}

.content-section {
    margin-bottom: var(--sp-md);
}

.study-image {
    width: 100%;
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

.ingredient-card {
    background: #d2e6cc;
    border: 3px solid #2d5720;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.ingredient-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.ingredient-item:last-child {
    margin-bottom: 0;
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ingredient-text {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
}

.reviews-card {
    background: #d2e6cc;
    border: 3px solid #2d5720;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.reviews-card > p {
    color: #000;
}

.review-item {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-sm);
    margin-top: var(--sp-sm);
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-text {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
}

.review-author {
    font-weight: var(--fw-bold);
    margin-top: var(--sp-xs);
    font-size: var(--font-base);
}

.cta-button {
    display: block;
    background: #d87817;
    color: #fff;
    text-align: center;
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    letter-spacing: 0.78px;
    padding: var(--sp-sm) var(--sp-md);
    border-radius: var(--radius-full);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.author-bio {
    background: #d9d9d9;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.author-bio-title {
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    letter-spacing: 0.84px;
    margin-bottom: var(--sp-sm);
}

.author-bio p {
    font-size: var(--font-base);
    font-weight: var(--fw-light);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

.faq-section {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-md);
}

.faq-item {
    border-bottom: 1px solid #000;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-sm) 0;
    cursor: pointer;
    font-size: var(--font-md);
    font-weight: var(--fw-medium);
    line-height: var(--lh-snug);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-icon {
    font-size: var(--font-xl);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: var(--sp-sm);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    display: none;
    padding-bottom: var(--sp-md);
}

.faq-item.active .faq-content {
    display: block;
}

.faq-content p {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
}

.accordion {
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-lg);
}

.accordion-item {
    border-top: 1px solid #000;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-sm) 0;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-loose);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.accordion-icon {
    font-size: var(--font-xl);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    padding-bottom: var(--sp-md);
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    font-size: var(--font-sm);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-xs);
}

.accordion-content a {
    color: #0066cc;
    text-decoration: underline;
    word-break: break-all;
}

.page-footer {
    background: #1a1a1a;
    color: #fff;
    padding: var(--sp-lg) var(--sp-md);
    margin-top: var(--sp-xl);
}

.footer-container {
    max-width: 1080px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

.footer-logo .logo-icon { filter: brightness(0) invert(1); }
.footer-logo .logo-ratgeber { filter: brightness(0) invert(1); }
.footer-logo .logo-tagline { filter: brightness(0) invert(1); }

.footer-nav {
    display: flex;
    gap: var(--sp-md);
}

.footer-nav a {
    font-size: var(--font-xs);
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--sp-sm);
}

.footer-bottom p {
    font-size: var(--font-xs);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .hero-image-section {
        margin-top: -5rem;
    }

    .author-avatar {
        width: 80px;
        height: 80px;
    }

    .ingredient-icon {
        width: 120px;
        height: 120px;
    }

    .review-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .review-avatar {
        width: 90px;
        height: 90px;
    }

    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
