/* Keine externen Schriftarten – ausschließlich System-Fonts */

/* ── Variables ── */
:root {
    --primary:    #9c6b3d;
    --primary-lt: #b8845a;
    --dark:       #2a1508;
    --dark-mid:   #3b2208;
    --warm:       #f0e8dc;
    --bg:         #faf5ee;
    --surface:    #ffffff;
    --border:     #e6ddd3;
    --muted:      #5c4c3c;
    --text:       #2a1a08;
    --green:      #3d7a55;
    --green-lt:   #eaf3ed;
    --green-dark: #2a5a3c;
    --accent:     #c8a45a;
    --shadow-sm:  0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.05);
    --shadow-md:  0 4px 16px rgba(0,0,0,.09), 0 12px 40px rgba(0,0,0,.07);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.13), 0 20px 60px rgba(0,0,0,.09);
    --radius:     10px;
    --radius-xl:  20px;
    --ease:       .22s ease;
    --header-h:   68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.is-home { background: var(--dark); }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--dark); }

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ── Site Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--dark);
    transition: background .35s ease, box-shadow .35s ease;
}
.is-home .site-header {
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(200,168,130,.18);
}
.is-home .site-header.scrolled {
    background: var(--dark);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
    border-bottom-color: transparent;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    gap: 1.5rem;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity var(--ease);
}
.logo__img {
    display: block;
    height: 46px;
    width: auto;
}
.logo:hover { opacity: .8; text-decoration: none; }

.nav { margin: 0; padding: 0; list-style: none; display: flex; gap: 0; }
.nav a {
    display: block;
    padding: .35rem .75rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #c8a882;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--ease), border-color var(--ease);
}
.nav a:hover { color: #f5e6d5; text-decoration: none; }
.nav a.active { color: #f5e6d5; border-bottom-color: var(--green); }

.main-content { padding: 2.5rem 0 5rem; }
.main--home { padding: 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
    margin-top: 0;
    line-height: 1.15;
    font-family: Georgia, 'Palatino Linotype', Palatino, serif;
    font-weight: 700;
    color: var(--dark);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -.01em; margin-bottom: .75rem; }
h3 { font-size: 1.15rem; margin-bottom: .5rem; }
p + p { margin-top: .75rem; }

.overline {
    display: block;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .85rem;
}

/* ── Scroll-Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* ── Wave Dividers ── */
.wave { display: block; line-height: 0; overflow: hidden; }
.wave svg { display: block; width: 100%; height: auto; }
.wave--dark-to-bg  { background: transparent; margin-top: -40px; position: relative; z-index: 2; }
.wave--bg-to-dark  { background: #f4f9f6; }
.wave--dark-to-warm { background: var(--dark-mid); }
.wave--bg-to-warm  { background: #f4f9f6; }

/* ── Hero Split (Homepage) ── */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100dvh;
    min-height: 100vh;
    padding-bottom: 52px;
}
.hero-split__left {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem clamp(1.5rem, 5vw, 5rem) 5rem;
    position: relative;
    z-index: 2;
}
.hero-split__left .overline { color: var(--accent); }
.hero-split__left h1 {
    color: #f5e6d5;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.0;
    margin-bottom: 1.25rem;
}
.hero-split__sub {
    color: #d4b896;
    font-size: 1rem;
    font-weight: 300;
    max-width: 360px;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.hero-split__right {
    position: relative;
    overflow: hidden;
}
.hero-split__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(.7) saturate(1.15);
}
.hero-split__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(42,21,8,.5) 0%, transparent 40%);
    pointer-events: none;
}

/* ── Section: Services ── */
.section-services {
    background: #f4f9f6;
    padding: 6rem 0 4rem;
}
.section-services__inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}
.section-services__header { margin-bottom: 1.25rem; }
.section-services__heading {
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -.02em;
    line-height: 1.1;
    max-width: 480px;
}
.section-services .overline { color: var(--green); }
.section-services__intro {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-top: 0;
    max-width: 380px;
}
.section-services__intro + .section-services__intro { margin-top: .75rem; }

.service-list { display: flex; flex-direction: column; }
.service-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: padding-left var(--ease), color var(--ease);
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { padding-left: .6rem; color: var(--dark); text-decoration: none; }
.service-row__icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 2.75rem;
    text-align: center;
    transition: transform var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-row__icon svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}
.service-row:hover .service-row__icon { transform: scale(1.1); }
.service-row__body {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    flex: 1;
}
.service-row__body strong {
    font-family: Georgia, 'Palatino Linotype', Palatino, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
}
.service-row__body span {
    font-size: .88rem;
    color: var(--muted);
    font-weight: 300;
}
.service-row__arrow {
    font-size: 1.2rem;
    color: var(--green);
    flex-shrink: 0;
    transition: transform var(--ease);
    font-family: sans-serif;
}
.service-row:hover .service-row__arrow { transform: translateX(5px); }

/* ── Section: Hours ── */
.section-hours {
    background: var(--dark-mid);
    padding: 6rem 0 5.5rem;
}
.section-hours__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.section-hours__text .overline { color: var(--accent); }
.section-hours__text h2 {
    color: #f5e6d5;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.0;
    margin-bottom: 1rem;
}
.section-hours__text p {
    color: #c0a080;
    font-weight: 300;
    max-width: 280px;
}
.section-hours__table .hours-table thead th { background: rgba(255,255,255,.05); color: #a08870; }
.section-hours__table .hours-table td { color: #d4b896; border-bottom-color: rgba(255,255,255,.07); }
.section-hours__table .hours-table td:first-child { color: #f5e6d5; }
.section-hours__table .hours-table td.closed { color: #8a7060; }

/* ── Preise in Öffnungszeiten-Section ── */
.section-hours__prices { margin-top: 1.75rem; }
.section-hours__prices-label {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .6rem;
}
.section-hours__text .hours-table thead th { background: rgba(255,255,255,.05); color: #a08870; }
.section-hours__text .hours-table td { color: #d4b896; border-bottom-color: rgba(255,255,255,.07); }
.section-hours__text .hours-table td:first-child { color: #f5e6d5; }
.section-hours__prices-note {
    margin-top: .55rem;
    font-size: .78rem;
    color: #7a6855;
    font-style: italic;
}

/* ── Summer Notice ── */
.section-hours__inner .summer-notice { grid-column: 1 / -1; }
.summer-notice {
    margin-top: 1.25rem;
    padding: .75rem 1rem;
    border-left: 3px solid var(--green);
    background: rgba(61,122,85,.12);
    border-radius: var(--radius);
    font-size: .84rem;
    color: #8abf9a;
    line-height: 1.6;
}
.summer-notice strong {
    display: block;
    font-weight: 600;
    margin-bottom: .2rem;
    color: #b8e0c4;
}
.summer-notice small { opacity: .75; font-size: .9em; }
.section-hours__table .hours-table td.closed small { opacity: .7; font-size: .85em; }

/* ── Section: CTA ── */
.section-cta {
    background: var(--warm);
    padding: 6rem 0;
    text-align: center;
}
.section-cta__inner { max-width: 640px; margin: 0 auto; }
.section-cta__quote {
    font-family: Georgia, 'Palatino Linotype', Palatino, serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-style: italic;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* ── Buttons ── */
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    padding: .7rem 1.75rem;
    border-radius: var(--radius);
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .05em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    min-height: 44px;
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease), color var(--ease);
    white-space: nowrap;
}
.btn:hover {
    background: var(--green-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(61,122,85,.35);
}
.btn.secondary {
    background: transparent;
    color: #f5e6d5;
    border-color: rgba(245,230,213,.3);
}
.btn.secondary:hover {
    background: rgba(245,230,213,.1);
    border-color: rgba(245,230,213,.6);
    color: #f5e6d5;
    transform: none;
    box-shadow: none;
}
.btn.outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}
.btn.outline:hover {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--primary);
    transform: none;
    box-shadow: none;
}
.btn--cta {
    background: var(--green);
    font-size: .9rem;
    padding: .85rem 2.5rem;
}
.btn--cta:hover { background: var(--green-dark); }

.muted { color: var(--muted); }

/* ── Social Links ── */
.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.social-links a {
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #e8d0b0;
    text-decoration: none;
    border-bottom: 1px solid rgba(200,168,130,.3);
    padding-bottom: 1px;
    transition: color var(--ease), border-color var(--ease);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.social-links a:hover { color: #f5e6d5; border-color: rgba(245,230,213,.5); }

/* ── Page Hero (Unterseiten) ── */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #5a3418 100%);
    color: #f5e6d5;
    border: none;
    border-radius: var(--radius-xl);
    padding: 3rem 2.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(61,122,85,.15) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero h1 {
    color: #f5e6d5;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: .4rem;
    position: relative;
}
.page-hero .hero-sub {
    font-size: 1rem;
    color: #b8956a;
    margin-top: .4rem;
    font-weight: 300;
    position: relative;
}

/* ── Cards ── */
.card, .legal {
    background: var(--surface);
    border: none;
    border-top: 3px solid var(--green);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--ease), border-color var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--green-dark); }

.content-image { margin: 0; }
.content-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}
.content-image figcaption {
    margin-top: .6rem;
    font-size: .8rem;
    color: var(--muted);
}

/* ── Content Sections ── */
.content-sections { display: flex; flex-direction: column; gap: 1.25rem; }

.benefit-list { padding-left: 0; list-style: none; margin-top: .65rem; }
.benefit-list li {
    position: relative;
    padding: .6rem 0 .6rem 1.6rem;
    font-size: .92rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.55;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

/* ── Two-Column Content ── */
.content-two-col {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

/* ── Data Grid ── */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: .85rem;
    margin-top: .75rem;
}
.data-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.data-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--green-dark);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.data-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    font-family: Georgia, 'Palatino Linotype', Palatino, serif;
}

/* ── Rules Grid ── */
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: .5rem; }
.rules-title {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .25rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.rules-title--do { color: var(--green); }
.rules-title--dont { color: #c0392b; }

/* ── Treatment Steps ── */
.treatment-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: .75rem; counter-reset: step; }
.treatment-step { display: flex; gap: 1rem; align-items: flex-start; }
.treatment-step::before {
    counter-increment: step;
    content: counter(step);
    min-width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: .1rem;
}
.treatment-step__content h4 {
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: .2rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
}
.treatment-step__content p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ── Comparison Table ── */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: .75rem; font-size: .9rem; }
.comparison-table th {
    background: var(--green-lt);
    color: var(--green-dark);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: .65rem .9rem;
    border-bottom: 2px solid rgba(61,122,85,.2);
    text-align: left;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.comparison-table td {
    padding: .65rem .9rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
    vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: var(--dark); }

/* ── Price Table ── */
.price-table { width: 100%; border-collapse: collapse; margin-top: .75rem; }
.price-table th {
    background: var(--dark);
    color: #f5e6d5;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: .75rem 1rem;
    text-align: left;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.price-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); font-size: .9rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { font-weight: 700; color: var(--primary); text-align: right; }
.price-table tbody tr:nth-child(even) td { background: var(--bg); }

/* ── Amway Products ── */
.amway-intro { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.amway-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.product-card {
    text-align: center;
    padding: 1.85rem 1.5rem;
    margin-bottom: 0;
    transition: box-shadow var(--ease), transform var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__icon { font-size: 2.2rem; margin-bottom: .75rem; display: flex; justify-content: center; }
.product-card__icon svg { width: 1em; height: 1em; }
.product-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.product-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ── Lottie Accent ── */
.lottie-accent { display: flex; align-items: flex-start; justify-content: center; flex-shrink: 0; }

/* ── Badge List ── */
.badge-list { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .5rem; }
.badge-list span {
    background: rgba(156,107,61,.12);
    color: var(--primary);
    border: 1px solid rgba(156,107,61,.2);
    padding: .2rem .75rem;
    border-radius: 100px;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .04em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Neuigkeiten-Teaser (Homepage) ── */
.section-news-teaser {
    background: var(--warm);
    padding: 3rem 0;
}
.news-teaser {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: var(--surface);
    border-radius: var(--radius-xl);
    border-top: 3px solid var(--accent);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-sm);
}
.news-teaser__label {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex-shrink: 0;
}
.news-teaser__label .overline { margin-bottom: 0; color: var(--accent); }
.news-teaser__badge {
    display: inline-block;
    background: rgba(200,164,90,.15);
    color: #8a6010;
    border: 1px solid rgba(200,164,90,.3);
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .15rem .7rem;
}
.news-teaser__content { flex: 1; min-width: 200px; }
.news-teaser__content h3 { font-size: 1.1rem; margin-bottom: .3rem; color: var(--dark); }
.news-teaser__content p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.55; }
@media (max-width: 600px) {
    .news-teaser { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .news-teaser .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── Developer Banner ── */
.dev-banner {
    background: #1a0d04;
    border-top: 1px solid rgba(156,107,61,.15);
    padding: 1.5rem 0;
}
.dev-banner__inner {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.dev-banner__text { color: #9a8878; font-size: .85rem; flex: 1; min-width: 180px; margin: 0; }
.dev-banner__text strong { color: #c8a882; }
.dev-banner .badge-list span { background: rgba(156,107,61,.12); color: #a08878; border-color: rgba(156,107,61,.2); }
.dev-banner__link {
    color: #c8a882;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid rgba(200,168,130,.4);
    padding-bottom: 1px;
    transition: color var(--ease), border-color var(--ease);
    flex-shrink: 0;
}
.dev-banner__link:hover { color: #f5e6d5; border-color: rgba(245,230,213,.6); }

/* ── Hours Table ── */
.hours-table { border-collapse: collapse; width: 100%; max-width: 440px; }
.hours-table--full { max-width: 100%; }
.hours-table thead th {
    background: var(--bg);
    color: var(--muted);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: .65rem .8rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.hours-table td {
    padding: .65rem .8rem;
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 600; color: var(--dark); }
.hours-table td.closed { color: var(--muted); }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 1.25rem; align-items: start; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; margin-top: .85rem; border: 1px solid var(--border); }
.map-wrapper iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ── Contact Form ── */
.contact-form { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.25rem; }
.contact-form label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.contact-form input,
.contact-form textarea {
    padding: .7rem .95rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .93rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--dark);
    width: 100%;
    min-height: 44px;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #bbb0a2; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(156,107,61,.12);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; margin-top: .25rem; }

.form-success {
    background: #f0faf0;
    border: 1px solid #c0dfc0;
    border-left: 3px solid var(--green);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    color: var(--green);
    font-size: .9rem;
    margin-top: .75rem;
}
.form-errors {
    list-style: none;
    background: #fdf3f2;
    border: 1px solid #f0c4c0;
    border-left: 3px solid #c0392b;
    border-radius: var(--radius);
    padding: .8rem 1.1rem;
    color: #7a1a14;
    font-size: .88rem;
    margin-bottom: .85rem;
}
.form-errors li + li { margin-top: .35rem; }
.form-errors li::before { content: "— "; }

/* ── News ── */
.news-item {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}
.news-item h2 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.news-meta {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .65rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.news-item--highlight {
    border-top-color: var(--accent);
    background: linear-gradient(160deg, #fffdf7 0%, var(--surface) 60%);
}
.news-item--highlight h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
.news-item__badge {
    display: inline-block;
    background: rgba(200,164,90,.15);
    color: #8a6010;
    border: 1px solid rgba(200,164,90,.35);
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2rem .8rem;
    margin-bottom: .75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Legal ── */
.legal h1 {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    overflow-wrap: break-word;
    word-break: break-word;
}
.legal h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.75rem 0 .55rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--border);
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { font-size: .9rem; line-height: 1.75; }
.legal ul { padding-left: 1.25rem; margin: .5rem 0; }
.legal a { color: var(--primary); }

/* ── Notice ── */
.notice { border-left: 4px solid var(--primary); padding-left: 1rem; }

/* ── Seite komplett in Bearbeitung ── */
.page-in-progress {
    text-align: center;
    padding: 5rem 1.5rem;
    max-width: 520px;
    margin: 0 auto;
}
.page-in-progress svg {
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: .85;
}
.page-in-progress h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--dark);
    margin-bottom: .85rem;
}
.page-in-progress p {
    color: var(--muted);
    font-size: .97rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.page-in-progress__links {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── In-Bearbeitung / Hinweis-Banner (Kontaktformular) ── */
.page-notice {
    background: #fff8e6;
    border: 1px solid #f0d87a;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: .85rem 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
    color: #4a3200;
}
.page-notice svg { flex-shrink: 0; color: #b08020; }
.page-notice strong { font-weight: 600; }

/* ── Footer ── */
.site-footer { background: var(--dark); }
.footer-inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    padding: 4.5rem 0 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
    align-items: start;
}
.footer-brand__logo {
    display: block;
    width: auto;
    height: 96px;
    margin-bottom: 1.5rem;
}
.footer-brand__tagline {
    font-size: .88rem;
    color: #a08870;
    line-height: 1.75;
    max-width: 260px;
    margin-bottom: 1.25rem;
}
.footer-brand__social { font-size: .8rem; color: #8a7060; }
.footer-brand__social a {
    color: #a08870;
    text-decoration: none;
    transition: color var(--ease);
}
.footer-brand__social a:hover { color: #c8a882; }
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: .5rem;
}
.footer-links section h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #6ab888;
    margin-bottom: 1rem;
}
.footer-links section p,
.icon-contact {
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    vertical-align: middle;
    position: relative;
    top: -0.1em;
    margin-right: .2em;
}
.icon-contact svg { width: 100%; height: 100%; }

.footer-links section address {
    font-size: .84rem;
    color: #b09880;
    line-height: 1.75;
    font-style: normal;
}
.footer-links section a {
    color: #b09880;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--ease), border-color var(--ease);
}
.footer-links section a:hover {
    color: #e8d0b0;
    border-bottom-color: rgba(200,168,130,.5);
}
.footer-links ul {
    margin: 0; padding: 0; list-style: none;
    display: flex; flex-direction: column; gap: .6rem;
}
.footer-links ul a { font-size: .84rem; }
.footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .74rem;
    color: #8a7060;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.footer-bottom a { color: #a08878; }
.footer-bottom a:hover { color: #c8a882; }

/* ── Nav Overlay ── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 150;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}
.nav-overlay.visible { pointer-events: auto; opacity: 1; }

/* ── Mobile Hamburger ── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    flex-direction: column;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #9a7a60;
    border-radius: 1px;
    transition: all .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Tablet allgemein (768–1199px) ── */
@media (min-width: 768px) and (max-width: 1199px) {
    /* Hero */
    .hero-split { min-height: clamp(500px, 72vh, 720px); }
    .hero-split__left { padding: 4rem clamp(1.5rem, 4vw, 3rem) 3.5rem; }
    .hero-split__left h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
    .hero-split__sub { font-size: .94rem; max-width: 300px; }

    /* Sektionen kompakter */
    .section-services { padding: 4.5rem 0 3.5rem; }
    .section-services__inner { gap: 3rem; }
    .section-hours { padding: 4.5rem 0 4rem; }
    .section-hours__inner { gap: 2rem; }
    .section-cta { padding: 4.5rem 0; }

    /* Unterseiten */
    .contact-grid { grid-template-columns: 1fr 290px; }
    .amway-products-grid { grid-template-columns: repeat(2, 1fr); }
    .rules-grid { grid-template-columns: repeat(2, 1fr); }
    .data-grid { grid-template-columns: repeat(3, 1fr); }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr 1.4fr; gap: 2.5rem; }
    .footer-links { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* ── Hamburger-Nav (Tablet portrait + Mobile, ≤ 1024px) ── */
@media (max-width: 1024px) {
    .nav-toggle { display: flex; margin-left: auto; }
    .site-header .container { gap: 0; }
    /* nav wrapper aus dem Flex-Flow herausnehmen */
    .site-header nav { flex: 0 0 0; min-width: 0; overflow: visible; }
    .nav-toggle span { background: #c8a882; }
    .is-home .nav-toggle span { background: #f0d9b8; }
    .nav {
        position: absolute;
        top: 100%;
        left: -4%;
        right: -4%;
        flex-direction: column;
        background: #1e0e04;
        border-bottom: 2px solid rgba(61,122,85,.2);
        box-shadow: 0 8px 32px rgba(0,0,0,.45);
        padding: .25rem 0 .75rem;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
        z-index: 185;
    }
    .nav.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        transition: opacity .22s ease, transform .22s ease;
    }
    .nav a {
        padding: .9rem 1.5rem;
        color: #c8a882;
        border-bottom: 1px solid rgba(255,255,255,.07);
        font-size: .9rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        letter-spacing: .05em;
    }
    .nav li:last-child a { border-bottom: none; }
    .nav a.active { color: #f5e6d5; }
    .nav a:hover { color: #f5e6d5; background: rgba(255,255,255,.04); }
}

/* ── Tablet portrait / kleines Tablet (768–1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-links { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-inner { padding: 3.5rem 0 3rem; }
    .section-hours__inner { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
    .site-header .container { padding: .4rem 0; }
    .logo__img { height: 38px; }
    .is-home .site-header { background: rgba(42,21,8,.55); }

    /* Hero Split: Bild als Hintergrund, Text als Overlay */
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: unset;
        position: relative;
        overflow: hidden;
        padding-bottom: 52px;
    }
    .hero-split__right {
        position: absolute;
        inset: 0;
        height: 100%;
        order: unset;
    }
    .hero-split__right img { object-position: center 40%; }
    .hero-split__left {
        position: relative;
        z-index: 2;
        order: unset;
        background: linear-gradient(to bottom, rgba(28,12,3,.80) 0%, rgba(28,12,3,.80) 55%, rgba(28,12,3,.25) 80%, transparent 100%);
        justify-content: flex-start;
        padding: 2rem 1.5rem 3.5rem;
    }
    .hero-split__left h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
    .hero-split__sub { max-width: 100%; font-size: .9rem; }

    /* Sektionen */
    .section-services { padding: 4rem 0 3.5rem; }
    .section-services__inner { grid-template-columns: 1fr; gap: 2rem; }
    .section-services__intro { max-width: 100%; }
    .section-hours { padding: 4rem 0 3.5rem; }
    .section-hours__inner { grid-template-columns: 1fr; gap: 2rem; }
    .section-cta { padding: 4rem 0; }
    .section-cta__quote { font-size: clamp(1.5rem, 6vw, 2rem); }
    .wave svg { height: 40px; }

    /* Unterseiten */
    .content-two-col { grid-template-columns: 1fr; }
    .content-two-col .lottie-accent { display: none; }
    .amway-intro { grid-template-columns: 1fr; }
    .amway-intro .lottie-accent { display: none; }
    .amway-products-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .rules-grid { grid-template-columns: 1fr; }
    .data-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-table { font-size: .82rem; }
    .comparison-table th, .comparison-table td { padding: .5rem .6rem; }
    .price-table { font-size: .85rem; }
    .price-table th, .price-table td { padding: .55rem .7rem; }
    .card, .legal { padding: 1.6rem 1.4rem; }
    .page-hero { padding: 2.25rem 1.5rem; border-radius: var(--radius); }
    .main-content { padding: 0rem 0 3.5rem; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2.5rem; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .dev-banner__inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

/* ── Kleines Smartphone (≤ 480px) ── */
@media (max-width: 480px) {
    .data-grid { grid-template-columns: 1fr; }
    .amway-products-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .cta-row { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .comparison-table th:nth-child(3),
    .comparison-table td:nth-child(3) { display: none; }
}

/* ── Cookie-Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(200,164,90,.18);
    box-shadow: 0 -8px 40px rgba(0,0,0,.35);
    z-index: 9990;
    transform: translateY(100%);
    transition: transform .38s cubic-bezier(.2,.8,.3,1);
    padding: 1.4rem 0;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__text strong {
    display: block;
    color: #f5e6d5;
    font-size: .97rem;
    margin-bottom: .35rem;
}
.cookie-banner__text p {
    font-size: .82rem;
    color: #907868;
    line-height: 1.65;
    margin: 0;
}
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions {
    display: flex;
    gap: .7rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: .65rem 1.4rem;
    border-radius: var(--radius);
    font-size: .83rem;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    border: 1.5px solid transparent;
    min-height: 44px;
    white-space: nowrap;
    transition: background .2s, border-color .2s, color .2s;
    font-family: system-ui, -apple-system, sans-serif;
}
.cookie-btn--secondary {
    background: transparent;
    color: #c8a882;
    border-color: rgba(200,168,130,.3);
}
.cookie-btn--secondary:hover { background: rgba(200,168,130,.1); border-color: rgba(200,168,130,.55); }
.cookie-btn--primary { background: var(--green); color: #fff; border-color: transparent; }
.cookie-btn--primary:hover { background: var(--green-dark); }

/* ── Google Maps Platzhalter ── */
.map-consent-gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: #f4f0ea;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    height: 260px;
    padding: 1.5rem;
    text-align: center;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
}
.map-consent-gate svg { color: #b0a090; opacity: .7; }
.map-consent-gate p { margin: 0; }
.map-consent-btn {
    margin-top: .25rem;
    padding: .55rem 1.25rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 40px;
    transition: background .2s;
    font-family: system-ui, -apple-system, sans-serif;
}
.map-consent-btn:hover { background: var(--primary-lt); }
.map-iframe-blocked { display: none; }

@media (max-width: 600px) {
    .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cookie-banner__actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
