/* ══════════════════════════════════════
   Arndt-Physio – Shared Styles
   ══════════════════════════════════════ */

:root {
    --sand: #DAAB78;
    --sand-light: #E3C09A;
    --sand-pale: #EDD5BC;
    --sand-bg: #F5E6D3;
    --warm-white: #FDFAF6;
    --terra: #AE633F;
    --brown: #3B2E20;
    --brown-mid: #6B5B4A;
    --brown-light: #9A8B7A;
    --white: #fff;
    --border: #E8DFD4;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--brown);
    line-height: 1.7;
    background: var(--warm-white);
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
header {
    background: var(--sand);
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}
header .wrap {
    display: flex; justify-content: space-between; align-items: center;
    height: 60px;
}
.logo { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; color: var(--white); }
.logo small { display: block; font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 400; color: rgba(255,255,255,0.75); letter-spacing: 0.3px; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { color: rgba(255,255,255,0.85); font-size: 0.84rem; font-weight: 500; transition: color 0.2s; }
nav a:hover { color: var(--white); }
.nav-cta {
    background: var(--white); color: var(--terra) !important;
    padding: 8px 18px; border-radius: 6px; font-weight: 600;
    font-size: 0.82rem; transition: background 0.2s;
}
.nav-cta:hover { background: var(--warm-white); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--white); margin: 4px 0; transition: transform 0.2s; }

@media (max-width: 780px) {
    .menu-btn { display: block; }
    nav {
        position: fixed; top: 60px; left: 0; right: 0;
        background: var(--white); padding: 20px 24px;
        flex-direction: column; align-items: flex-start; gap: 0;
        transform: translateY(-110%); transition: transform 0.25s;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }
    nav.open { transform: translateY(0); }
    nav a { display: block; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--border); color: var(--brown); }
    nav a:last-child { border-bottom: none; }
    .nav-cta { margin-top: 10px; display: inline-block; background: var(--sand); color: var(--white) !important; }
}

/* ── SECTIONS ── */
section { padding: 72px 0; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--sand-bg); }
.bg-sand { background: var(--sand-bg); }

.sec-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600; margin-bottom: 8px;
}
.sec-sub { color: var(--brown-mid); margin-bottom: 36px; max-width: 560px; }
.sec-center { text-align: center; }
.sec-center .sec-sub { margin-left: auto; margin-right: auto; }

.btn {
    display: inline-block; background: var(--sand); color: var(--white);
    padding: 12px 24px; border-radius: 6px; font-weight: 600;
    font-size: 0.88rem; transition: background 0.2s;
}
.btn:hover { background: var(--terra); }
.btn-outline {
    background: none; border: 1.5px solid var(--sand); color: var(--terra);
    margin-left: 12px;
}
.btn-outline:hover { background: var(--sand); color: var(--white); }

/* ── HERO ── */
.hero { padding: 100px 0 60px; background: var(--sand-bg); }
.hero-inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px;
    align-items: center;
}
.hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600; line-height: 1.3;
    margin-bottom: 16px;
}
.hero-sub {
    font-size: 0.95rem; color: var(--brown-mid);
    line-height: 1.75; margin-bottom: 28px;
}
.hero-details {
    display: flex; gap: 24px; margin-bottom: 28px;
    font-size: 0.84rem; color: var(--brown-mid);
}
.hero-details span { display: flex; align-items: center; gap: 6px; }
.hero-details i { color: var(--sand); font-size: 0.9rem; }
.hero-img {
    border-radius: 12px; overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--sand-pale);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 780px) {
    .hero { padding: 80px 0 40px; }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-img { max-width: 360px; margin: 0 auto; }
}

/* ── ÜBER MICH ── */
.about-layout {
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px;
    align-items: start;
}
.about-img { border-radius: 10px; overflow: hidden; aspect-ratio: 3/4; background: var(--sand-pale); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-body p { color: var(--brown-mid); margin-bottom: 14px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.about-tag {
    font-size: 0.78rem; padding: 5px 12px; border-radius: 4px;
    background: var(--sand-bg); color: var(--brown-mid);
}

@media (max-width: 780px) {
    .about-layout { grid-template-columns: 1fr; gap: 28px; }
    .about-img { max-width: 320px; }
}

/* ── BEHANDLUNGS-LEXIKON ── */
.lex-intro { color: var(--brown-mid); margin-bottom: 32px; max-width: 620px; }
.lex-category { margin-bottom: 28px; }
.lex-cat-title {
    font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 600;
    padding-bottom: 10px; margin-bottom: 12px;
    border-bottom: 2px solid var(--sand-pale);
    display: flex; align-items: center; gap: 10px;
}
.lex-cat-title i { color: var(--sand); font-size: 0.9rem; }
.lex-item {
    border: 1px solid var(--border); border-radius: 8px;
    margin-bottom: 6px; overflow: hidden;
    background: var(--white);
}
.lex-toggle {
    width: 100%; padding: 13px 16px; border: none;
    background: none; cursor: pointer; font-family: inherit;
    font-size: 0.88rem; font-weight: 500; color: var(--brown);
    display: flex; justify-content: space-between; align-items: center;
    text-align: left; transition: background 0.15s;
}
.lex-toggle:hover { background: var(--warm-white); }
.lex-toggle i { color: var(--brown-light); font-size: 0.7rem; transition: transform 0.2s; }
.lex-item.open .lex-toggle i { transform: rotate(180deg); }
.lex-detail {
    display: none; padding: 0 16px 14px;
    font-size: 0.86rem; color: var(--brown-mid); line-height: 1.7;
}
.lex-item.open .lex-detail { display: block; }

/* ── SYMPTOM-WEGWEISER ── */
.wegweiser-box {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 36px; max-width: 680px;
    margin: 0 auto;
}
.wegweiser-box h3 { font-family: 'Lora', serif; font-size: 1.15rem; margin-bottom: 6px; }
.wegweiser-box > p { color: var(--brown-mid); font-size: 0.88rem; margin-bottom: 24px; }
.ww-step { display: none; }
.ww-step.active { display: block; }
.ww-label { font-weight: 600; font-size: 0.88rem; margin-bottom: 12px; display: block; }
.ww-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ww-opt {
    padding: 10px 16px; border: 1.5px solid var(--border);
    border-radius: 6px; background: var(--warm-white);
    cursor: pointer; font-family: inherit; font-size: 0.84rem;
    color: var(--brown-mid); transition: 0.15s;
}
.ww-opt:hover { border-color: var(--sand); color: var(--brown); }
.ww-opt.selected { border-color: var(--sand); background: var(--sand-bg); color: var(--brown); font-weight: 500; }
.ww-result { background: var(--sand-bg); border-radius: 8px; padding: 20px; display: none; }
.ww-result.show { display: block; }
.ww-result h4 { font-family: 'Lora', serif; font-size: 1rem; margin-bottom: 8px; }
.ww-result p { font-size: 0.86rem; color: var(--brown-mid); margin-bottom: 10px; }
.ww-result ul { list-style: none; margin-bottom: 14px; }
.ww-result li { font-size: 0.86rem; color: var(--brown-mid); padding: 3px 0; padding-left: 16px; position: relative; }
.ww-result li::before { content: '–'; position: absolute; left: 0; color: var(--sand); }
.ww-disclaimer { font-size: 0.76rem; color: var(--brown-light); font-style: italic; margin-top: 10px; }
.ww-back {
    font-size: 0.82rem; color: var(--terra); cursor: pointer;
    background: none; border: none; font-family: inherit;
    margin-top: 10px; padding: 0;
}
.ww-back:hover { text-decoration: underline; }

/* ── TERMIN-FORMULAR ── */
.termin-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.termin-info h3 { font-family: 'Lora', serif; font-size: 1.15rem; margin-bottom: 10px; }
.termin-info p { color: var(--brown-mid); margin-bottom: 20px; }
.termin-contact-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
    font-size: 0.88rem; color: var(--brown-mid);
}
.termin-contact-row:last-child { border-bottom: none; }
.termin-contact-row i { color: var(--sand); width: 18px; text-align: center; }
.termin-contact-row a:hover { color: var(--terra); }
.termin-form {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 32px;
}
.tf-step { display: none; }
.tf-step.active { display: block; }
.tf-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.tf-dot { flex: 1; height: 3px; border-radius: 2px; background: var(--border); }
.tf-dot.done { background: var(--sand); }
.tf-label { font-weight: 600; font-size: 0.88rem; margin-bottom: 14px; display: block; }
.tf-opts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tf-opt {
    padding: 9px 14px; border: 1.5px solid var(--border);
    border-radius: 6px; background: var(--warm-white);
    cursor: pointer; font-family: inherit; font-size: 0.84rem;
    color: var(--brown-mid); transition: 0.15s;
}
.tf-opt:hover { border-color: var(--sand); }
.tf-opt.selected { border-color: var(--sand); background: var(--sand-bg); color: var(--brown); font-weight: 500; }
.tf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.tf-field { margin-bottom: 10px; }
.tf-field label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--brown-mid); margin-bottom: 4px; }
.tf-field input, .tf-field textarea, .tf-field select {
    width: 100%; padding: 10px 12px; border-radius: 6px;
    border: 1.5px solid var(--border); font-family: inherit;
    font-size: 0.88rem; background: var(--warm-white);
}
.tf-field input:focus, .tf-field textarea:focus, .tf-field select:focus { outline: none; border-color: var(--sand); }
.tf-field textarea { resize: vertical; min-height: 70px; }
.tf-nav { display: flex; justify-content: space-between; margin-top: 16px; }
.tf-back { background: none; border: none; color: var(--brown-mid); font-family: inherit; font-size: 0.84rem; cursor: pointer; padding: 0; }
.tf-back:hover { color: var(--terra); }
.tf-next {
    padding: 10px 22px; border: none; border-radius: 6px;
    background: var(--sand); color: #fff; font-family: inherit;
    font-size: 0.86rem; font-weight: 600; cursor: pointer;
    transition: background 0.2s;
}
.tf-next:hover { background: var(--terra); }

@media (max-width: 780px) {
    .termin-layout { grid-template-columns: 1fr; }
    .tf-row { grid-template-columns: 1fr; }
}

/* ── PRAXIS / MAP ── */
.praxis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.praxis-map { border-radius: 10px; overflow: hidden; height: 340px; }
.praxis-map iframe { width: 100%; height: 100%; border: 0; }
.praxis-details p { color: var(--brown-mid); margin-bottom: 16px; }
.praxis-row {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0; font-size: 0.88rem; color: var(--brown-mid);
}
.praxis-row i { color: var(--sand); width: 16px; text-align: center; margin-top: 3px; }
.praxis-row a:hover { color: var(--terra); }

@media (max-width: 780px) {
    .praxis-grid { grid-template-columns: 1fr; }
    .praxis-map { height: 240px; }
}

/* ── ZEITEN ── */
.zeiten-box {
    max-width: 480px; margin: 0 auto;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 32px;
}
.z-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.z-row:last-of-type { border-bottom: none; }
.z-row span:first-child { color: var(--brown-mid); }
.z-row span:last-child { font-weight: 600; }
.z-note {
    margin-top: 16px; padding: 12px;
    background: var(--sand-bg); border-radius: 6px;
    text-align: center; font-size: 0.82rem; color: var(--brown-mid);
}

/* ── GUTSCHEINE ── */
.gutschein-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.gutschein-card { background: var(--sand-bg); border-radius: 10px; padding: 40px 32px; text-align: center; }
.gutschein-card i { font-size: 2rem; color: var(--sand); margin-bottom: 12px; }
.gutschein-card h3 { font-family: 'Lora', serif; font-size: 1.2rem; margin-bottom: 6px; }
.gutschein-card p { font-size: 0.86rem; color: var(--brown-mid); }
.gutschein-text p { color: var(--brown-mid); margin-bottom: 14px; }

@media (max-width: 780px) { .gutschein-row { grid-template-columns: 1fr; } }

/* ── GOOGLE REZENSIONEN ── */
.reviews-header { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 8px; flex-wrap: wrap; }
.reviews-google {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 8px 16px; font-size: 0.88rem;
}
.reviews-google img { width: 20px; height: 20px; }
.reviews-stars { color: #FBBC04; font-size: 1.1rem; letter-spacing: 1px; }
.reviews-rating { font-weight: 600; font-size: 1rem; }
.reviews-count { color: var(--brown-mid); font-size: 0.82rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px; position: relative; }
.review-card::before {
    content: '\201C'; position: absolute; top: 12px; right: 20px;
    font-family: 'Lora', serif; font-size: 3rem; color: var(--sand-pale); line-height: 1;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--sand-pale); display: flex; align-items: center;
    justify-content: center; font-weight: 600; color: var(--terra); font-size: 0.9rem;
}
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-date { font-size: 0.75rem; color: var(--brown-light); }
.review-stars { color: #FBBC04; font-size: 0.82rem; margin-bottom: 8px; }
.review-text { font-size: 0.86rem; color: var(--brown-mid); line-height: 1.7; }
.reviews-cta { text-align: center; margin-top: 28px; }
.reviews-cta p { color: var(--brown-mid); margin-bottom: 14px; font-size: 0.92rem; }

@media (max-width: 780px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── JOBS ── */
.jobs-intro { max-width: 680px; margin-bottom: 40px; }
.jobs-intro p { color: var(--brown-mid); margin-bottom: 14px; line-height: 1.8; }
.jobs-intro p strong { color: var(--brown); }
.jobs-fahrplan { position: relative; padding-left: 32px; margin-bottom: 40px; max-width: 660px; }
.jobs-fahrplan::before {
    content: ''; position: absolute; left: 7px; top: 8px; bottom: 24px;
    width: 2px; background: linear-gradient(to bottom, var(--sand), var(--sand-pale));
}
.fp-title { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; padding-left: 0; position: relative; }
.fp-step { position: relative; margin-bottom: 24px; }
.fp-step::before {
    content: ''; position: absolute; left: -29px; top: 6px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--sand); border: 2px solid var(--warm-white);
}
.fp-step-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; color: var(--terra); margin-bottom: 4px; }
.fp-step p { color: var(--brown-mid); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.jobs-benefits {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 28px 32px; margin-bottom: 40px;
    max-width: 660px; position: relative;
}
.jobs-benefits::before {
    content: ''; position: absolute; left: 0; top: 16px; bottom: 16px;
    width: 3px; background: var(--sand); border-radius: 0 2px 2px 0;
}
.jobs-benefits h3 { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; }
.jobs-benefits p { color: var(--brown-mid); line-height: 1.8; margin-bottom: 0; }
.jobs-benefit-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.jb-tag { font-size: 0.78rem; padding: 5px 12px; border-radius: 20px; background: var(--sand-bg); color: var(--brown-mid); font-weight: 500; }
.jobs-profile { max-width: 660px; margin-bottom: 40px; }
.jobs-profile h3 { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.jobs-profile p { color: var(--brown-mid); line-height: 1.8; }
.jobs-cta { background: var(--sand-bg); border-radius: 10px; padding: 32px; max-width: 660px; }
.jobs-cta h3 { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.jobs-cta p { color: var(--brown-mid); line-height: 1.7; margin-bottom: 16px; }
.jobs-cta .jobs-sig { font-weight: 600; color: var(--brown); margin-bottom: 0; }

/* ── FOOTER ── */
footer {
    background: var(--brown); color: rgba(255,255,255,0.5);
    padding: 40px 0 16px; font-size: 0.82rem;
}
.footer-inner {
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 24px;
    padding-bottom: 20px; margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-family: 'Lora', serif; font-size: 1rem; font-weight: 500; color: var(--sand-light); }
.footer-brand small { display: block; font-family: 'Inter', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 4px; font-weight: 400; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--sand-light); }
.footer-social a {
    display: inline-flex; width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.06); align-items: center; justify-content: center;
    margin-left: 6px; transition: background 0.2s;
}
.footer-social a:hover { background: var(--sand); color: #fff; }
.footer-copy { text-align: center; font-size: 0.72rem; }

/* ── CHATBOT ── */
.chat-btn {
    position: fixed; bottom: 18px; right: 18px; z-index: 90;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--sand); color: #fff; border: none;
    font-size: 0.9rem; cursor: pointer;
    box-shadow: 0 2px 10px rgba(174,99,63,0.18);
    transition: background 0.2s;
}
.chat-btn:hover { background: var(--terra); }
.chat-box {
    position: fixed; bottom: 70px; right: 18px; z-index: 90;
    width: 300px; max-height: 380px;
    background: var(--white); border-radius: 10px;
    box-shadow: 0 6px 24px rgba(45,31,14,0.1);
    display: none; flex-direction: column;
    border: 1px solid var(--border);
}
.chat-box.open { display: flex; }
.chat-head { padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.chat-head strong { font-size: 0.82rem; }
.chat-head button { background: none; border: none; color: var(--brown-light); cursor: pointer; font-size: 0.8rem; }
.chat-body { flex: 1; padding: 12px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; min-height: 140px; max-height: 200px; }
.cb { max-width: 84%; font-size: 0.8rem; line-height: 1.5; padding: 8px 12px; border-radius: 10px; }
.cb-bot { background: var(--sand-bg); align-self: flex-start; border-bottom-left-radius: 3px; }
.cb-user { background: var(--sand); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-quick { padding: 0 12px 6px; display: flex; flex-wrap: wrap; gap: 4px; }
.chat-quick button {
    padding: 4px 10px; border-radius: 12px;
    background: var(--warm-white); border: 1px solid var(--border);
    font-size: 0.72rem; color: var(--brown-mid); cursor: pointer;
    font-family: inherit; transition: 0.15s;
}
.chat-quick button:hover { border-color: var(--sand); }
.chat-input { display: flex; gap: 5px; padding: 8px 12px; border-top: 1px solid var(--border); }
.chat-input input {
    flex: 1; padding: 7px 10px; border-radius: 6px;
    border: 1px solid var(--border); font-family: inherit; font-size: 0.8rem;
    background: var(--warm-white);
}
.chat-input input:focus { outline: none; border-color: var(--sand); }
.chat-input button {
    width: 30px; height: 30px; border-radius: 6px;
    background: var(--sand); color: #fff; border: none;
    cursor: pointer; font-size: 0.7rem; transition: 0.2s;
}
.chat-input button:hover { background: var(--terra); }

@media (max-width: 480px) {
    .chat-box { right: 8px; left: 8px; width: auto; }
}

/* ── FEEDBACK BUTTON ── */
.feedback-btn {
    position: fixed; bottom: 18px; left: 18px; z-index: 90;
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--sand); color: #fff; border: none;
    padding: 10px 18px; border-radius: 24px;
    font-family: inherit; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; box-shadow: 0 2px 10px rgba(174,99,63,0.18);
    transition: background 0.2s, transform 0.2s;
}
.feedback-btn:hover { background: var(--terra); transform: translateY(-1px); }
.feedback-btn i { font-size: 0.9rem; }

@media (max-width: 480px) {
    .feedback-btn span { display: none; }
    .feedback-btn { border-radius: 50%; width: 44px; height: 44px; padding: 0; justify-content: center; }
}

/* ── LEGAL PAGES ── */
.legal-content { padding: 100px 0 60px; }
.legal-content h1 {
    font-family: 'Lora', serif; font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600; margin-bottom: 32px;
}
.legal-content h2 {
    font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600;
    margin-top: 36px; margin-bottom: 12px;
    padding-bottom: 8px; border-bottom: 2px solid var(--sand-pale);
}
.legal-content h3 { font-size: 0.95rem; font-weight: 600; margin-top: 20px; margin-bottom: 8px; }
.legal-content p { color: var(--brown-mid); margin-bottom: 12px; line-height: 1.8; }
.legal-content ul { list-style: none; margin-left: 0; margin-bottom: 16px; }
.legal-content li {
    color: var(--brown-mid); margin-bottom: 6px; padding-left: 16px;
    position: relative; line-height: 1.8;
}
.legal-content li::before { content: '–'; position: absolute; left: 0; color: var(--sand); }
.legal-content a { color: var(--terra); text-decoration: underline; }
.legal-content a:hover { color: var(--brown); }
.legal-back {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--terra); font-size: 0.88rem; font-weight: 500;
    margin-bottom: 24px;
}
.legal-back:hover { color: var(--brown); text-decoration: underline; }
.impressum-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 28px 32px; margin-bottom: 32px;
}
.impressum-card p { margin-bottom: 4px; }
.impressum-card .label {
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--brown-light); font-weight: 600; margin-bottom: 8px; margin-top: 16px;
}
.impressum-card .label:first-child { margin-top: 0; }

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--brown); color: #fff;
    display: flex; justify-content: center;
    padding: 20px 16px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
    animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
    max-width: 900px; width: 100%;
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.cookie-text p { font-size: 0.84rem; line-height: 1.5; opacity: 0.9; margin: 0; }
.cookie-text a { color: var(--sand); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
    padding: 10px 20px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 6px; cursor: pointer;
    font-size: 0.88rem; font-weight: 600; white-space: nowrap; transition: 0.2s;
    background: transparent; color: #fff;
}
.cookie-btn:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
/* "Alle akzeptieren" ist visuell gleichwertig – kein Hervorheben durch Farbe (kein Dark Pattern) */
.cookie-accept { background: transparent; color: #fff; }
.cookie-essential { background: transparent; color: #fff; }
.cookie-reject  { background: transparent; color: #fff; }
@media (max-width: 640px) {
    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-actions { width: 100%; justify-content: center; }
}

/* ── GOOGLE MAPS 2-KLICK CONSENT ── */
.map-consent {
    width: 100%; height: 100%; min-height: 300px;
    background: var(--cream); border-radius: inherit;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 24px;
}
.map-consent-inner i { font-size: 2.4rem; color: var(--terra); margin-bottom: 12px; }
.map-consent-inner p { font-size: 0.88rem; color: var(--brown-mid); margin: 4px 0; }
.map-consent-inner a { color: var(--terra); }
.map-consent-inner .btn { margin-top: 12px; font-size: 0.84rem; padding: 8px 20px; }

/* ── FORMULAR CONSENT CHECKBOX ── */
.tf-consent { margin: 12px 0 4px; }
.tf-checkbox {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.82rem; color: var(--brown-mid); cursor: pointer; line-height: 1.45;
}
.tf-checkbox input[type="checkbox"] {
    margin-top: 2px; flex-shrink: 0; accent-color: var(--terra);
    width: 16px; height: 16px;
}
.tf-checkbox a { color: var(--terra); text-decoration: underline; }
.tf-consent.shake { animation: shake 0.4s ease; }
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(12px); transition: opacity 0.45s ease, transform 0.45s ease; }
.sr.show { opacity: 1; transform: translateY(0); }
