*, *::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-strong); }
.italic { font-style: italic; }

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

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

.header {
    background: #f7e8d3;
    padding: var(--sp-sm) var(--sp-md);
}

.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;
}

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

.hero-content {
    max-width: 1080px;
    margin: 0 auto;
}

.hero-title {
    font-size: var(--font-3xl);
    line-height: var(--lh-snug);
    font-weight: var(--fw-bold);
    color: #fff;
    letter-spacing: 0.03em;
    margin-bottom: var(--sp-md);
}

.hero-intro {
    font-size: var(--font-md);
    line-height: var(--lh-relaxed);
    font-weight: var(--fw-light);
    color: #fff;
    letter-spacing: 0.03em;
    margin-bottom: var(--sp-lg);
}

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

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

.author-info {
    font-style: italic;
    color: #fff;
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    letter-spacing: 0.03em;
}

.author-info .author-name {
    font-weight: var(--fw-strong);
}

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

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

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

.hero-expert {
    position: absolute;
    width: 24%;
    aspect-ratio: 1;
    bottom: 4%;
    right: 3%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.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);
    letter-spacing: 0.03em;
}

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

.content-image-flat {
    border-radius: 0;
}

.ingredient-card {
    background: #e4efcf;
    border-radius: var(--radius-lg);
    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: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.ingredient-text {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
    letter-spacing: 0.03em;
}

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

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

.author-bio p.author-bio-title {
    font-size: var(--font-lg);
    font-weight: var(--fw-strong);
    letter-spacing: 0.03em;
    margin-bottom: var(--sp-md);
}

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

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

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

.faq-question {
    font-size: var(--font-md);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    padding-top: var(--sp-md);
    padding-right: var(--sp-xl);
    padding-bottom: var(--sp-md);
    padding-left: 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    letter-spacing: 0.03em;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><line x1='12' y1='4' x2='12' y2='20'/><line x1='4' y1='12' x2='20' y2='12'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><line x1='4' y1='12' x2='20' y2='12'/></svg>");
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 0 var(--sp-md) 0;
}

.faq-answer p {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
    letter-spacing: 0.03em;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: var(--font-lg);
        padding-right: var(--sp-xl);
    }

    .faq-question::after {
        width: 32px;
        height: 32px;
    }
}

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

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

.info-question {
    font-size: var(--font-sm);
    font-weight: var(--fw-normal);
    line-height: var(--lh-none);
    padding-top: var(--sp-md);
    padding-right: var(--sp-xl);
    padding-bottom: var(--sp-md);
    padding-left: 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    letter-spacing: 0.02em;
}

.info-question::-webkit-details-marker {
    display: none;
}

.info-question::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><line x1='12' y1='4' x2='12' y2='20'/><line x1='4' y1='12' x2='20' y2='12'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s ease;
}

.info-item[open] .info-question::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><line x1='4' y1='12' x2='20' y2='12'/></svg>");
}

.info-answer {
    padding: 0 0 var(--sp-md) 0;
}

.info-answer p {
    font-size: var(--font-sm);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-sm);
    letter-spacing: 0.02em;
}

.info-answer p:last-child {
    margin-bottom: 0;
}

.quellen-list {
    margin: 0;
    padding-left: var(--sp-md);
    list-style: decimal;
}

.quellen-list li {
    font-size: var(--font-sm);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-xs);
    word-break: break-all;
}

.quellen-list a {
    color: #2563eb;
    text-decoration: underline;
}

.page-footer {
    background: #232222;
    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-lg);
}

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

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

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

.footer-nav a {
    font-size: var(--font-xs);
    letter-spacing: 0.5px;
    color: #fff;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    color: #fff;
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

.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.8;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .ingredient-icon {
        width: 72px;
        height: 72px;
    }

    .cta-button {
        font-size: var(--font-xl);
        padding: var(--sp-md) var(--sp-md);
    }
}

@media (min-width: 1024px) {
    .ingredient-icon {
        width: 84px;
        height: 84px;
    }
}

@media (min-width: 768px) {
    .header {
        padding: var(--sp-md) var(--sp-lg);
    }

    .hero-section {
        padding: var(--sp-xl) var(--sp-lg) calc(var(--sp-xl) + var(--sp-lg));
    }

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

    .hero-image-section {
        margin-top: -5rem;
    }

    .hero-main-image {
        border-radius: var(--radius-xl);
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: calc(var(--sp-xl) + var(--sp-md));
        padding-bottom: calc(var(--sp-xl) + var(--sp-xl));
    }

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

    .hero-image-section {
        margin-top: -6rem;
    }

    .hero-main-image {
        border-radius: var(--radius-xl);
    }
}
