/* ====================================
   CSS Reset & Normalize
==================================== */
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, main, 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 {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    line-height: 1.5;
    color: #2C2B23;
    background: #F0EFE7;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
a:focus {
    outline: 2px solid #9B8353;
    outline-offset: 2px;
}
ul, ol {
    list-style-position: inside;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}
table {
    border-collapse: collapse;
    width: 100%;
}
button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}
:focus {
    outline: none;
}

/* ====================================
   Typography Scale & Brand Fonts
==================================== */
body {
    font-family: 'Inter', Arial, sans-serif;
    color: #2C2B23;
    background: #F0EFE7;
    letter-spacing: 0.01em;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}
h1, .h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.75rem; /* 44px */
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #2C2B23;
    margin-bottom: 20px;
}
h2, .h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem; /* 32px */
    font-weight: 700;
    letter-spacing: 0.015em;
    color: #2C2B23;
    margin-bottom: 16px;
}
h3, .h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem; /* 22px */
    font-weight: 600;
    color: #2C2B23;
    margin-bottom: 12px;
}
h4, .h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    color: #2C2B23;
    margin-bottom: 10px;
}
p, li, td, th {
    font-size: 1rem; /* 16px */
    font-family: 'Inter', Arial, sans-serif;
    color: #2C2B23;
}
p.subheadline {
    font-size: 1.25rem;
    color: #9B8353;
    margin-bottom: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
}
strong {
    font-weight: 600;
    color: #2C2B23;
}

/* ====================================
   Container & Section Layout
==================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: none;
    border-radius: 18px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ====================================
   Header & Navigation
==================================== */
header {
    background: #F0EFE7;
    border-bottom: 1px solid #e5e1d8;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1200;
}
.brand-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 0 12px 0;
    background: transparent;
}
.brand-bar img {
    height: 44px;
    width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 0 16px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.135rem;
    letter-spacing: 0.01em;
    background: transparent;
}
.main-nav a {
    position: relative;
    color: #2C2B23;
    padding: 4px 0 4px 0;
    transition: color 0.2s;
}
.main-nav a:not(.cta-btn):after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #9B8353;
    transition: width .25s;
    position: absolute;
    left: 0; bottom: 0;
}
.main-nav a:hover:after, .main-nav a.active:after {
    width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
    color: #9B8353;
}
.cta-btn {
    display: inline-block;
    background: #9B8353;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    padding: 10px 28px;
    border-radius: 26px;
    font-weight: 600;
    border: none;
    box-shadow: none;
    transition: background 0.33s, color 0.33s, box-shadow 0.2s;
    letter-spacing: 0.04em;
    margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
    background: #2C2B23;
    color: #fff;
    box-shadow: 0 2px 14px 0 rgba(44,43,35,0.11);
}

/* ====================================
   Mobile Navigation (Burger Menu)
==================================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    position: absolute;
    top: 27px;
    right: 26px;
    z-index: 1401;
    color: #2C2B23;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #e5e1d8;
}
.mobile-menu {
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    background: rgba(44,43,35,0.94);
    color: #fff;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .33s cubic-bezier(.65,0,.35,1);
    pointer-events: none;
    visibility: hidden;
}
.mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}
.mobile-menu-close {
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    position: absolute;
    top: 18px;
    right: 24px;
    z-index: 1350;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: rgba(255,255,255,0.11);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 80px;
    gap: 24px;
    padding: 36px 28px;
}
.mobile-nav a {
    color: #fff;
    font-size: 1.275rem;
    font-family: 'Playfair Display', Georgia, serif;
    padding: 10px 0;
    width: 100%;
    border-radius: 6px;
    transition: background .20s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #9B8353;
    color: #fff;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    header {
        padding-bottom: 5px;
    }
}

/* ====================================
   Hero Section
==================================== */
.hero {
    background: #eae7db;
    margin-bottom: 40px;
    box-shadow: 0 4px 18px 0 rgba(155,131,83,.04);
    border-radius: 0 0 32px 32px;
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 38px;
    padding-bottom: 32px;
}
.hero .content-wrapper {
    align-items: flex-start;
    gap: 22px;
    max-width: 750px;
}
.hero h1 {
    color: #2C2B23;
    font-size: 2.5rem;
}
.hero .cta-btn {
    margin-top: 10px;
    font-size: 1.08rem;
}

/* ====================================
   Feature Grid / Service Previews
==================================== */
.feature-grid, .service-previews, .highlights-grid, .usp-icons, .icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 12px;
    justify-content: flex-start;
    padding: 0;
}
.feature-grid li, .service-previews li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2.5px 12px rgba(44,43,35,0.07);
    padding: 28px 22px;
    flex: 1 1 220px;
    min-width: 240px;
    max-width: 340px;
    margin-bottom: 20px;
    transition: box-shadow .20s, transform .20s;
}
.feature-grid li:hover, .service-previews li:hover {
    box-shadow: 0 7px 22px rgba(44,43,35,0.14);
    transform: translateY(-2px) scale(1.02);
}
.feature-grid img, .service-previews img {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
}
.service-previews li h3, .feature-grid li h3 {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.27rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: #2C2B23;
}
.service-previews {
    padding-top: 7px;
}
.highlights-grid {
    gap: 22px;
    margin-top: 14px;
}
.highlights-grid > div {
    flex: 1 1 220px;
    min-width: 170px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2.5px 10px rgba(44,43,35,0.06);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow .16s;
}
.highlights-grid > div:hover {
    box-shadow: 0 6px 16px rgba(44,43,35,0.12);
}
.highlights-grid img {
    width: 38px;
    height: 38px;
    margin-bottom: 9px;
}

/* Detailed service list (in Leistungen) */
.detailed-service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}
.detailed-service-list li {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2.5px 12px rgba(44,43,35,0.06);
    padding: 24px 19px;
    margin-bottom: 20px;
}
.detailed-service-list h3 {
    margin-bottom: 8px;
    font-family: 'Playfair Display', Georgia, serif;
    color: #2C2B23;
    font-size: 1.14rem;
}

/* ====================================
   Table Styling
==================================== */
.price-table {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2.5px 12px rgba(44,43,35,0.06);
    width: 100%;
    overflow: hidden;
    margin-bottom: 22px;
    margin-top: 16px;
}
.price-table th, .price-table td {
    padding: 14px 15px;
    text-align: left;
    font-size: 1rem;
}
.price-table th {
    background: #9B8353;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 1.1rem;
}
.price-table tbody tr {
    border-bottom: 1px solid #eee9d4;
}
.price-table tbody tr:last-child {
    border-bottom: none;
}

/* ====================================
   Card Containers
==================================== */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(156,139,85,0.10);
    position: relative;
    transition: box-shadow .2s, transform .18s;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    flex: 1 1 260px;
    min-width: 230px;
}
.card:hover {
    box-shadow: 0 12px 35px rgba(44,43,35,0.13);
    transform: translateY(-2px) scale(1.018);
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
}

/* ====================================
   Testimonials
==================================== */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    color: #2C2B23;
    border-radius: 15px;
    box-shadow: 0 2.5px 15px rgba(44,43,35,0.06);
    padding: 26px 24px;
    min-width: 260px;
    max-width: 350px;
    margin-bottom: 20px;
    position: relative;
    border-left: 6px solid #9B8353;
    transition: box-shadow .17s;
}
.testimonial-card blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.13rem;
    line-height: 1.6;
    color: #2C2B23;
    margin-bottom: 10px;
}
.testimonial-card p {
    margin-bottom: 0;
    color: #9B8353;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.98rem;
}
.testimonial-card strong {
    color: #2C2B23;
}
.testimonial-card:hover {
    box-shadow: 0 8px 26px rgba(44,43,35,0.15);
}

/* ====================================
   Text Sections, Text + Image
==================================== */
.text-section {
    margin-bottom: 18px;
}
.text-section h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #2C2B23;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.17rem;
}
.text-section p {
    margin-bottom: 10px;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* ====================================
   Icon List / USP Icons
==================================== */
.icon-list, .usp-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
    align-items: center;
}
.icon-list img, .usp-icons img {
    width: 38px;
    height: 38px;
    filter: grayscale(0.28) brightness(1.08);
}

/* ====================================
   Map Placeholder
==================================== */
.map-placeholder {
    background: #F7F4EB;
    border: 2px dashed #e5e1d8;
    border-radius: 12px;
    padding: 28px 12px;
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    color: #726c5c;
    font-size: 1.05rem;
    margin-top: 14px;
}

/* ====================================
   Footer
==================================== */
footer {
    background: #2C2B23;
    color: #fff;
    padding: 0 0 0 0;
    margin-top: 60px;
    border-top: 5px solid #9B8353;
}
footer .container {
    padding-top: 38px;
    padding-bottom: 38px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 180px;
    max-width: 270px;
}
.footer-brand img {
    width: 48px;
    height: auto;
    margin-bottom: 9px;
}
.tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #eae7db;
    margin-bottom: 3px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 200px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', Arial, sans-serif;
}
.footer-contact p, .footer-contact strong{
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 200px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', Arial, sans-serif;
}
.footer-contact a {
    color: #eae7db;
    text-decoration: underline;
    transition: color .16s;
}
.footer-contact a:hover, .footer-contact a:focus {
    color: #9B8353;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
    min-width: 136px;
}
.footer-menu a {
    color: #eae7db;
    font-size: 0.98rem;
    font-family: 'Inter', Arial, sans-serif;
    opacity: 0.94;
    transition: color .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
    color: #9B8353;
}
.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}
.footer-social img {
    width: 28px;
    height: 28px;
    filter: grayscale(0.18) brightness(1.13);
    opacity: 0.95;
    transition: filter .17s, opacity .22s;
}
.footer-social a:hover img {
    filter: none;
    opacity: 1;
}

/* ====================================
   Cookie Consent Banner
==================================== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F7F4EB;
    color: #2C2B23;
    box-shadow: 0 -4px 30px rgba(44,43,35,0.09);
    z-index: 2000;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    font-size: 1rem;
    animation: cookieBannerFadeIn .33s;
    transition: transform .33s cubic-bezier(.65,0,.35,1);
}
@keyframes cookieBannerFadeIn {
    from { transform: translateY(100%);} to { transform: translateY(0);}
}
.cookie-banner .cookie-message {
    flex: 1 1 auto;
    max-width: 680px;
    font-size: 1rem;
    margin-right: 38px;
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 12px;
}
.cookie-consent-btn, .cookie-settings-btn, .cookie-reject-btn {
    font-family: 'Playfair Display', Georgia, serif;
    border-radius: 26px;
    border: 1.5px solid #9B8353;
    padding: 8.5px 24px;
    background: #fff;
    color: #2C2B23;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    transition: background .22s, color .22s, border .18s;
}
.cookie-consent-btn {
    background: #9B8353;
    color: #fff;
    border: 1.5px solid #9B8353;
    margin-right: 5px;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
    background: #2C2B23;
    color: #fff;
    border: 1.5px solid #2C2B23;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus, .cookie-reject-btn:hover, .cookie-reject-btn:focus {
    background: #e8e1ce;
    color: #2C2B23;
    border: 1.5px solid #2C2B23;
}

/* Cookie modal (preferences) */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44,43,35,0.80);
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}
.cookie-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal {
    background: #fff;
    border-radius: 18px;
    max-width: 420px;
    width: 95vw;
    padding: 36px 28px 22px 28px;
    box-shadow: 0 6px 44px rgba(44,43,35,0.20);
    color: #2C2B23;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 1rem;
    position: relative;
    animation: cookieModalPop .25s;
}
@keyframes cookieModalPop {
    from { transform: scale(0.94); opacity: 0;} to {transform: scale(1); opacity: 1;}
}
.cookie-modal .modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.cookie-modal .modal-close {
    position: absolute;
    right: 14px;
    top: 14px;
    background: none;
    border: none;
    font-size: 1.45rem;
    color: #888066;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    transition: background .15s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
    background: #e8e1ce;
}
.cookie-modal .modal-section {
    margin-bottom: 14px;
    font-size: 1.03rem;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
}
.cookie-category label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.04rem;
    color: #2C2B23;
    font-weight: 600;
}
input[type="checkbox"], input[type="radio"] {
    accent-color: #9B8353;
    width: 18px;
    height: 18px;
}

/* ====================================
   Responsive Layout
==================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 97vw;
    }
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .main-nav {
        display: none;
    }
    .brand-bar {
        padding-left: 10px;
    }
}
@media (max-width: 870px) {
    .feature-grid, .service-previews, .highlights-grid, .testimonials {
        flex-direction: column;
        gap: 18px;
    }
    .feature-grid li, .service-previews li, .highlights-grid > div, .testimonial-card {
        max-width: 100%;
        min-width: unset;
        width: 100%;
        flex: 1 1 90vw;
    }
}
@media (max-width: 780px) {
    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.45rem; }
    .hero { padding-left: 0; padding-right: 0;}
    .container { padding: 0 9px; }
    .section { padding: 30px 7px; }
}
@media (max-width: 640px) {
    .hero {
        min-height: 180px;
        padding: 18px 0 12px 0;
        border-radius: 0 0 19px 19px;
    }
    .hero h1 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    .cta-btn {
        padding: 8px 18px;
        font-size: 0.99rem;
    }
    .feature-grid, .service-previews, .highlights-grid, .testimonials {
        gap: 10px;
    }
    .feature-grid li, .service-previews li, .highlights-grid > div, .testimonial-card {
        padding: 18px 10px;
    }
    .testimonial-card {
        min-width: unset;
        max-width: 100vw;
        padding: 17px 6px;
    }
    footer .container {
        padding-left: 7px;  padding-right: 7px;
    }
    .footer-brand img {
        width: 36px;
    }
    .footer-social img {
        width: 22px; height: 22px;
    }
    .container { padding: 0 2px; }
    .section { padding: 16px 4px; }
}
@media (max-width: 768px) {
    .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ====================================
   General Utilities
==================================== */
.gap16 { gap:16px; }
.gap24 { gap:24px; }
.mt24 { margin-top:24px; }
.mb32 { margin-bottom:32px; }
.rounded15 { border-radius: 15px; }
.centered {
    justify-content: center;
    align-items: center;
}
.text-center {
    text-align: center;
}

/* ====================================
   Accessibility
==================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ====================================
   Miscellaneous (Scrollbars, Selection)
==================================== */
::-webkit-scrollbar {
    width: 9px;
    background: #F0EFE7;
}
::-webkit-scrollbar-thumb {
    background: #e6dcc9;
    border-radius: 4.5px;
}
::selection {
    background: #9B8353;
    color: #fff;
}

/* ====================================
   Custom Forms, Focus States
==================================== */
input, textarea, select {
    font-size: 1rem;
    font-family: 'Inter', Arial, sans-serif;
    border-radius: 8px;
    border: 1.5px solid #dad7cb;
    padding: 10px 12px;
    background: #F0EFE7;
    color: #2C2B23;
    transition: border .16s;
}
input:focus, textarea:focus, select:focus {
    border-color: #9B8353;
    background: #fff;
    outline: none;
}

/* ====================================
   Print Styles (Minimal)
==================================== */
@media print {
    body, header, footer, main, section, .section, .container {
        background: #fff !important;
        color: #2C2B23 !important;
    }
    .mobile-menu, .cookie-banner, .cookie-modal-overlay {
        display: none !important;
    }
}

/* ====================================
   End
==================================== */
