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

:root {
    --primary-color: #6B4423;
    --secondary-color: #D4A574;
    --accent-color: #8B6F47;
    --text-dark: #2C2416;
    --text-light: #F5F1E8;
    --bg-cream: #FBF8F1;
    --bg-white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
}

.ad-disclosure-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--text-light);
    text-align: center;
    padding: 0.4rem;
    font-size: 0.75rem;
    z-index: 1001;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 30px;
    bottom: 0;
    width: 200px;
    background: var(--bg-cream);
    padding: 2rem 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
    display: block;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

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

.nav-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.asymmetric-layout {
    margin-left: 200px;
    margin-top: 30px;
    min-height: 100vh;
}

.hero-offset {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-image-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-cream);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-float {
    position: relative;
    z-index: 10;
    background: var(--bg-white);
    padding: 3rem;
    max-width: 550px;
    margin-left: 5%;
    box-shadow: 0 10px 40px var(--shadow);
}

.hero-text-float h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-text-float p {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.story-introduction {
    padding: 5rem 3rem;
    position: relative;
}

.content-offset-left {
    max-width: 650px;
    margin-left: 8%;
    margin-bottom: 3rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.content-offset-left p {
    margin-bottom: 1.5rem;
}

.image-overlap-right {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    box-shadow: 0 15px 50px var(--shadow);
}

.image-overlap-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--bg-cream);
}

.problem-amplification {
    padding: 6rem 3rem;
    background: var(--bg-cream);
}

.split-asymmetric {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.text-block-narrow {
    flex: 1;
    max-width: 500px;
}

.text-block-narrow h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-block-narrow p {
    margin-bottom: 1.5rem;
}

.image-block-offset {
    flex: 1;
    position: relative;
    top: -3rem;
}

.image-block-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 40px var(--shadow);
    background-color: var(--bg-cream);
}

.insight-reveal {
    padding: 6rem 3rem;
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.cards-irregular {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.insight-card {
    background: var(--bg-cream);
    padding: 2rem;
    flex: 1;
    min-width: 280px;
}

.insight-card.card-position-1 {
    margin-top: 0;
}

.insight-card.card-position-2 {
    margin-top: 2rem;
}

.insight-card.card-position-3 {
    margin-top: 4rem;
}

.insight-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-offset {
    padding: 5rem 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-container-left {
    flex: 1;
    background: var(--bg-cream);
    padding: 3rem;
}

.quote-container-left blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.quote-container-left cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--accent-color);
}

.image-beside-quote {
    flex: 1;
}

.image-beside-quote img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-cream);
}

.ingredients-science {
    padding: 6rem 3rem;
    background: var(--bg-cream);
    position: relative;
}

.content-irregular {
    max-width: 600px;
    margin-left: 8%;
}

.content-irregular h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.ingredient-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ingredient-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.science-image-float {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    box-shadow: 0 10px 40px var(--shadow);
}

.science-image-float img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-white);
}

.trust-builder {
    padding: 4rem 3rem;
}

.testimonial-cluster {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.quote-small {
    flex: 1;
    background: var(--bg-cream);
    padding: 2rem;
    font-style: italic;
}

.quote-small p {
    margin-bottom: 1rem;
}

.quote-small cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.products-reveal {
    padding: 6rem 3rem;
    background: var(--bg-white);
}

.products-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.products-subheading {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 4rem;
}

.products-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-item {
    background: var(--bg-cream);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-visual {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-info p {
    margin-bottom: 1rem;
}

.product-composition {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.btn-choose {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-choose:hover {
    background: var(--accent-color);
}

.btn-choose.selected {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.order-section {
    padding: 6rem 3rem;
    background: var(--bg-cream);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-instruction {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.selected-product-display {
    background: var(--bg-white);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.no-selection {
    color: var(--accent-color);
    font-style: italic;
}

.order-form {
    background: var(--bg-white);
    padding: 2rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: bold;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--secondary-color);
    font-family: inherit;
    font-size: 1rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover:not(:disabled) {
    background: var(--accent-color);
}

.btn-submit:disabled {
    background: var(--secondary-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.references {
    padding: 4rem 3rem;
    background: var(--bg-white);
    max-width: 1000px;
    margin: 0 auto;
}

.references h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.reference-list {
    list-style: decimal;
    padding-left: 2rem;
}

.reference-list li {
    margin-bottom: 1rem;
}

.reference-list a {
    color: var(--accent-color);
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.citation {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.citation:hover {
    text-decoration: underline;
}

.disclaimer {
    padding: 3rem;
    background: var(--bg-cream);
    margin: 3rem;
    border-left: 4px solid var(--primary-color);
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--accent-color);
}

.site-footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-inner p {
    flex: 1;
}

.cookie-inner a {
    color: var(--secondary-color);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-accept:hover {
    background: var(--accent-color);
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero-offset {
    padding: 5rem 3rem 3rem;
    margin-left: 5%;
}

.page-hero-offset h1 {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 1rem;
}

.about-story {
    padding: 5rem 3rem;
    position: relative;
}

.philosophy-section {
    padding: 6rem 3rem;
    background: var(--bg-cream);
}

.values-irregular {
    padding: 6rem 3rem;
}

.values-grid-offset {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: var(--bg-cream);
    padding: 2rem;
}

.value-item.value-pos-1 {
    margin-top: 0;
}

.value-item.value-pos-2 {
    margin-top: 2rem;
}

.value-item.value-pos-3 {
    margin-top: 1rem;
}

.value-item.value-pos-4 {
    margin-top: 3rem;
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-section {
    padding: 5rem 3rem;
    position: relative;
}

.mission-statement {
    padding: 5rem 3rem;
    background: var(--bg-cream);
}

.centered-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-white);
    box-shadow: 0 5px 20px var(--shadow);
}

.centered-box h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.products-detailed {
    padding: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-detail-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.product-detail-item.reverse {
    flex-direction: row-reverse;
}

.product-image-large {
    flex: 1;
}

.product-image-large img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-cream);
}

.product-content-offset {
    flex: 1;
}

.product-intro {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.composition-box {
    background: var(--bg-cream);
    padding: 1.5rem;
    margin: 2rem 0;
}

.composition-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.composition-note {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.price-display {
    margin: 2rem 0;
}

.price-main {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-info {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.ordering-info {
    padding: 4rem 3rem;
    background: var(--bg-cream);
}

.contact-content {
    padding: 3rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-info-block {
    flex: 1;
}

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

.info-group h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-image-offset {
    flex: 1;
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-cream);
}

.impressum-section {
    padding: 5rem 3rem;
    background: var(--bg-cream);
}

.impressum-section h2,
.impressum-section h3,
.impressum-section h4 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.thanks-container {
    padding: 6rem 3rem;
    min-height: 70vh;
}

.thanks-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.thanks-message h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

.order-confirmation-box {
    background: var(--bg-cream);
    padding: 3rem;
    margin: 3rem 0;
}

.order-confirmation-box h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.confirmation-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.order-summary-display {
    background: var(--bg-white);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary-large {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary-large:hover {
    background: var(--accent-color);
}

.btn-secondary-large {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-large:hover {
    background: var(--bg-cream);
}

.additional-info {
    padding: 3rem;
}

.info-box-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-cream);
    padding: 2rem;
}

.info-box-centered h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-page-content {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto 0 200px;
}

.legal-page-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 1.5rem 0 0.8rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 1rem 0 0.5rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 60px;
        padding: 2rem 1rem;
    }

    .nav-brand {
        font-size: 1rem;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }

    .nav-list {
        display: none;
    }

    .nav-hamburger {
        display: flex;
        margin-top: 2rem;
    }

    .asymmetric-layout {
        margin-left: 60px;
    }

    .legal-page-content {
        margin-left: 60px;
    }

    .hero-image-container {
        width: 100%;
    }

    .hero-text-float {
        margin: 2rem;
    }

    .split-asymmetric {
        flex-direction: column;
    }

    .image-overlap-right,
    .science-image-float {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        margin-top: 2rem;
    }

    .testimonial-offset {
        flex-direction: column;
    }

    .testimonial-cluster {
        flex-direction: column;
    }

    .product-detail-item,
    .product-detail-item.reverse {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .products-asymmetric-grid {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-inner {
        flex-direction: column;
    }

    .cards-irregular {
        flex-direction: column;
    }

    .insight-card.card-position-1,
    .insight-card.card-position-2,
    .insight-card.card-position-3 {
        margin-top: 0;
    }
}
