/* ===================================================
   CSS RESET & BASE NORMALIZATION
=================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    min-height: 100vh;
    background: #FAF8F4;
    color: #3F5329;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    display: block;
}
svg {
    display: inline-block;
    vertical-align: middle;
}
a {
    color: #3F5329;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #758C31;
    outline: none;
}
ul, ol {
    list-style: none;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    background: none;
    border: none;
    box-sizing: border-box;
}
:focus {
    outline: 2px solid #A3A380;
    outline-offset: 2px;
}

/* ===================================================
   TYPOGRAPHY: ELEGANT CLASSIC
=================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=PT+Serif:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'PT Serif', Georgia, serif;
    color: #3F5329;
    font-weight: 700;
    letter-spacing: 0.01em;
}
h1 {
    font-size: 2.75rem;
    margin-bottom: 24px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
}
h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}
.subheadline {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #5B684A;
    font-size: 1.125rem;
    margin-bottom: 24px;
    font-weight: 500;
}
p, li, td, th {
    color: #253419;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}
strong {
    font-weight: 700;
    font-family: 'PT Serif', Georgia, serif;
}
em {
    font-style: italic;
}

/* ===================================================
   LAYOUT & CONTAINER
=================================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.content-wrapper {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: none;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 20px 0 rgba(140, 146, 140, 0.11);
}

@media (max-width: 768px) {
    .section {
        padding: 28px 8px;
        margin-bottom: 36px;
    }
    .container {
        padding: 0 8px;
    }
    .content-wrapper {
        gap: 16px;
    }
}

/* ===================================================
   HEADER & NAVIGATION
=================================================== */
header {
    background: #F6EDDD;
    box-shadow: 0 1px 8px 0 rgba(63,83,41,0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 40;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 32px;
    padding: 0 20px;
}
header img {
    height: 52px;
    width: auto;
    margin-right: 24px;
}
nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    color: #3F5329;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}
nav a:after {
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background: #A3A380;
    transition: width 0.2s;
    margin-top: 2px;
}
nav a:hover:after, nav a:focus:after {
    width: 80%;
}
.cta-button {
    background: #3F5329;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 32px;
    box-shadow: 0 2px 12px 0 rgba(63,83,41,0.09);
    transition: background 0.18s, color 0.18s, transform 0.12s;
    border: none;
    display: inline-block;
    margin-left: 30px;
    cursor: pointer;
    letter-spacing: 0.03em;
}
.cta-button:hover, .cta-button:focus {
    background: #5C7050;
    color: #fffada;
    transform: translateY(-2px) scale(1.02);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
    display: none;
}
@media (max-width: 960px) {
    nav {
        display: none;
    }
    .cta-button {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        font-size: 2rem;
        background: #fff;
        color: #3F5329;
        border-radius: 50%;
        height: 48px;
        width: 48px;
        align-items: center;
        justify-content: center;
        border: 1px solid #A3A380;
        box-shadow: 0 2px 10px rgba(63,83,41,0.04);
        cursor: pointer;
        transition: background 0.15s;
        z-index: 51;
    }
    .mobile-menu-toggle:active,
    .mobile-menu-toggle:hover {
        background: #F6EDDD;
        color: #213111;
    }
}

.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: 0 2px 32px 7px rgba(63,83,41,0.11);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.55,.08,.41,.99);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 24px 0;
    gap: 0;
}
.mobile-menu.open {
    transform: translateX(0%);
}
.mobile-menu-close {
    background: #F6EDDD;
    color: #364725;
    font-size: 2.1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #A3A380;
    align-self: flex-end;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(140,146,140, 0.11);
    cursor: pointer;
    transition: background 0.15s;
    z-index: 110;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
    background: #A3A380;
    color: #fff;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-left: 24px;
}
.mobile-nav a {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.2rem;
    color: #3F5329;
    padding: 12px 0;
    font-weight: 700;
    transition: color 0.16s, background 0.15s;
    border-radius: 6px;
    line-height: 1.4;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #F6EDDD;
    color: #758C31;
}

@media (min-width: 961px) {
    .mobile-menu,
    .mobile-menu-toggle {
        display: none!important;
    }
}

/* ===================================================
   FLEXBOX PATTERNS, CONTENT LAYOUTS
=================================================== */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 18px 0 rgba(63,83,41,0.09);
    padding: 32px 24px;
    margin-bottom: 20px;
    position: relative;
    transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover {
    box-shadow: 0 4px 28px 3px rgba(63,83,41,0.13);
    transform: translateY(-2px) scale(1.01);
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 32px;
    background: #F6EDDD;
    border-left: 6px solid #A3A380;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(140,146,140, 0.12);
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
    transition: box-shadow 0.22s, border-color 0.18s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 34px 0 rgba(63,83,41,0.14);
    border-color: #758C31;
}
.testimonial-card p {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.14rem;
    color: #3F5329;
    margin-bottom: 0;
}
.testimonial-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.95rem;
    color: #3F5329;
    font-weight: 500;
    opacity: 0.85;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 10px;
    justify-content: flex-start;
}
.feature-grid li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 7px 0 rgba(163,163,128,0.10);
    padding: 24px 18px;
    min-width: 220px;
    max-width: 270px;
    flex: 1 1 200px;
    transition: box-shadow 0.17s;
}
.feature-grid li:hover {
    box-shadow: 0 5px 34px 0 rgba(163,163,128,0.14);
}
.feature-grid img {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .feature-grid {
        gap: 16px;
        flex-direction: column;
        align-items: stretch;
    }
    .feature-grid li {
        max-width: 100%;
        min-width: 180px;
    }
}

/* ---------------------------------------------
   Tables (Preise & Angebote)
--------------------------------------------- */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(163,163,128,0.07);
    border-radius: 12px;
    overflow: hidden;
}
thead {
    background: #A3A380;
    color: #fff;
}
th, td {
    padding: 16px 14px;
    font-size: 1rem;
    border-bottom: 1px solid #EFEADF;
    text-align: left;
}
th:first-child, td:first-child {
    border-left: none;
}
th:last-child, td:last-child {
    border-right: none;
}
tbody tr:last-child td {
    border-bottom: none;
}
@media (max-width: 650px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }
    th, td {
        padding: 10px 7px;
    }
    thead, tbody tr {
        border-left: none;
        border-right: none;
    }
}

/* ===================================================
   BUTTONS & LINKS
=================================================== */
button, .cta-button {
    appearance: none;
    cursor: pointer;
}
.cta-button, .cookie-banner button, .cookie-modal button {
    transition: background 0.18s, color 0.14s, box-shadow 0.17s;
}

/* ===================================================
   FOOTER
=================================================== */
footer {
    background: #3F5329;
    color: #fff;
    padding: 56px 0 0 0;
    font-size: 1rem;
    letter-spacing: 0.015em;
    box-shadow: 0 -3px 24px 0 rgba(63,83,41,0.10);
}
footer .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px 36px 20px;
}
footer img {
    height: 58px;
    margin-bottom: 15px;
}
footer nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
    color: #A3A380;
}
.footer-contact {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.98rem;
    color: #F6EDDD;
    line-height: 1.7;
}
.footer-contact a {
    color: #F6EDDD;
    text-decoration: underline;
}
.footer-contact a:hover {
    color: #A3A380;
}
@media (max-width: 900px) {
    footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 0 8px 24px 8px;
    }
    footer img {
        margin-bottom: 9px;
    }
}

/* ===================================================
   FORMS & INTERACTIVE ELEMENTS
=================================================== */
input, textarea, select {
    background: #f9f7f3;
    border: 1px solid #A3A380;
    border-radius: 6px;
    padding: 12px 11px;
    color: #223013;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.15s, box-shadow 0.17s;
    margin-bottom: 20px;
    resize: vertical;
}
input:focus, textarea:focus, select:focus {
    border-color: #8A976B;
    box-shadow: 0 2px 8px 0 rgba(163,163,128, 0.16);
    outline: none;
}
label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    color: #3F5329;
    margin-bottom: 6px;
    display: inline-block;
}

/* ===================================================
   COOKIE CONSENT BANNER & MODAL
=================================================== */
.cookie-banner {
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1.5px solid #A3A380;
    box-shadow: 0 -4px 36px 0 rgba(63,83,41,0.10);
    padding: 26px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    z-index: 1300;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #223013;
    animation: cookieBannerIn 0.37s cubic-bezier(.76,-0.17,.38,1.14);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  80% { transform: translateY(-12px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.cookie-banner button {
    padding: 11px 26px;
    border-radius: 24px;
    border: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: #A3A380;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 11px 0 rgba(63,83,41,0.07);
    transition: background 0.17s, color 0.13s;
}
.cookie-banner .accept {
    background: #3F5329;
    color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
    background: #758C31;
}
.cookie-banner .reject {
    background: #EFEADF;
    color: #3F5329;
    border: 1px solid #A3A380;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
    background: #A3A380;
    color: #fff;
}
.cookie-banner .settings {
    background: #A3A380;
    color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
    background: #3F5329;
    color: #fffada;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-banner .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
    display: none;
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: 1400;
    background: rgba(63,83,41,0.23);
    align-items: center;
    justify-content: center;
}
.cookie-modal.open {
    display: flex;
    animation: cookieModalIn 0.28s cubic-bezier(.64,-0.17,.52,0.96);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-content {
    background: #fff;
    border-radius: 18px;
    max-width: 420px;
    width: 95%;
    padding: 34px 28px;
    box-shadow: 0 8px 45px 0 rgba(63,83,41,0.13);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #223013;
}
.cookie-modal-content h2 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.cookie-modal-content .modal-close {
    position: absolute;
    right: 22px;
    top: 26px;
    background: none;
    font-size: 1.7rem;
    color: #3F5329;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
    z-index: 1500;
}
.cookie-modal-content .modal-close:hover {
    color: #A3A380;
}
.cookie-modal-content label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    font-size: 1.01rem;
    color: #364725;
    margin-bottom: 0;
}
.cookie-modal-content input[type='checkbox'] {
    width: 21px;
    height: 21px;
    accent-color: #A3A380;
    border-radius: 5px;
    margin-right: 8px;
}
.cookie-modal-content .cookie-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.cookie-modal-content .essential {
    color: #3F5329;
    font-weight: 700;
    opacity: 0.77;
}
.cookie-modal-content .cookie-modal-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 18px;
    justify-content: flex-end;
}
.cookie-modal-content .cookie-modal-actions button {
    padding: 10px 22px;
    font-size: 1rem;
    border-radius: 20px;
    background: #A3A380;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
}
.cookie-modal-content .cookie-modal-actions .save {
    background: #3F5329;
}
.cookie-modal-content .cookie-modal-actions .save:hover {
    background: #758C31;
}
.cookie-modal-content .cookie-modal-actions .cancel {
    background: #A3A380;
}
.cookie-modal-content .cookie-modal-actions .cancel:hover {
    background: #EFEADF;
    color: #3F5329;
}
@media (max-width: 540px) {
    .cookie-modal-content {
        padding: 18px 7px;
        gap: 12px;
    }
    .cookie-modal-content h2 {
        margin-bottom: 9px;
    }
    .cookie-modal-content .modal-close {
        right: 8px;
        top: 9px;
    }
    .cookie-modal-content .cookie-modal-actions {
        gap: 9px;
        flex-direction: column;
    }
}

/* ===================================================
   RESPONSIVE DESIGN, SPACING SHIFTS
=================================================== */
@media (max-width: 900px) {
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.36rem; }
    .card, .card-container, .testimonial-card { padding: 18px 10px; }
    .testimonial-card, .feature-grid li { border-radius: 10px; }
}
@media (max-width: 650px) {
    h1 { font-size: 1.55rem; }
    h2 { font-size: 1.13rem; }
    .section { padding: 20px 2px; }
    .feature-grid { gap: 13px; }
    .testimonial-card { padding: 14px 4px; }
}

/* ===================================================
   MICRO-INTERACTIONS
=================================================== */
.cta-button, .cookie-banner button, .cookie-modal-content button {
    transition: background 0.19s, color 0.13s, transform 0.13s, box-shadow 0.13s;
}
.cta-button:active, .cookie-banner button:active, .cookie-modal-content button:active {
    transform: scale(0.98);
}

/* ===================================================
   MISC ELEMENTS
=================================================== */
hr {
    border: none;
    border-top: 1px solid #A3A380;
    margin: 26px 0;
}
blockquote {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.19rem;
    color: #758C31;
    border-left: 4px solid #A3A380;
    padding-left: 20px;
    margin: 20px 0;
}

/* Z-INDEX REFS: header 40, menu 100, banner 1300, modal 1400 */

/* ===================================================
   PRINT STYLES
=================================================== */
@media print {
    header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
    body { background: #fff!important; color: #111!important; }
}
section {
    padding:15px 0;
}