:root {
    --wood: #b5651d;
    --wood-dark: #7a4419;
    --ember: #c9491f;
    --cream: #faf3e8;
    --cream-dark: #f0e3cd;
    --ink: #2c2320;
    --ink-soft: #5a4c42;
    --border: #e2d5c3;
    --ok: #3a7d44;
    --max-width: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Sticky header covers anchor-jump targets otherwise - clears its
   ~85px height (71px on mobile) with a bit of breathing room. */
section[id] { scroll-margin-top: 100px; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: var(--wood-dark); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- header --- */

header.site-header {
    background: var(--ink);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.brand {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.brand-logo { height: 56px; width: auto; display: block; }

.nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
.nav a.navlink {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
}
.nav a.navlink:hover { opacity: 1; }

.nav .cta {
    background: var(--ember);
    color: #fff;
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.nav .cta:hover { background: #a83b17; }
.nav .cta.cta-disabled { background: transparent; border: 1.5px solid #fff; padding: calc(0.5rem - 1.5px) calc(1.1rem - 1.5px); }
.nav .cta.cta-disabled:hover { background: rgba(255,255,255,0.15); }

.nav-toggle { display: none; }

/* --- hero --- */

.hero {
    position: relative;
    background: #1a1310;
    color: #fff;
}
.hero img.hero-img {
    width: 100%;
    height: 62vh;
    min-height: 360px;
    object-fit: cover;
    object-position: center 25%;
    opacity: 0.9;
}
.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(10,7,5,0.85) 0%, rgba(10,7,5,0.72) 40%, rgba(10,7,5,0.5) 70%, rgba(10,7,5,0.3) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.hero-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 0 1rem;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.85));
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.hero-text p {
    max-width: 640px;
    font-size: 1.15rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.85);
    margin: 0 0 1.5rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
}
.btn-primary { background: var(--ember); color: #fff; }
.btn-primary:hover { background: #a83b17; }
.btn-secondary { border-color: #fff; color: #fff; }
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* --- sections --- */

section { padding: 3.5rem 0; }
section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 0.5rem;
}
.section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    color: var(--ink-soft);
}

.section-alt { background: var(--cream-dark); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}
.feature-card .icon { margin-bottom: 0.6rem; color: var(--wood-dark); }
.feature-card .icon svg { width: 34px; height: 34px; }
.feature-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.feature-card p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.gallery a { border-radius: 8px; overflow: hidden; }
.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.25s ease;
}
.gallery a:hover img { transform: scale(1.05); }

/* --- pricing --- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}
.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.price-card .price-head {
    background: var(--wood);
    color: #fff;
    padding: 1.1rem 1.4rem;
}
.price-card .price-head h3 { margin: 0 0 0.15rem; }
.price-card .price-head span { font-size: 0.85rem; opacity: 0.9; }
.price-card table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.price-card td { padding: 0.55rem 1.4rem; border-bottom: 1px solid var(--border); }
.price-card tr:last-child td { border-bottom: none; }
.price-card td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.price-note { padding: 0.9rem 1.4rem; font-size: 0.82rem; color: var(--ink-soft); background: var(--cream-dark); }

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.terms-grid .term { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.1rem 1.3rem; }
.terms-grid .term strong { display: block; margin-bottom: 0.3rem; }

/* --- gutschein --- */

.gutschein-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.gutschein-box img { flex: 0 1 187px; max-width: 187px; border-radius: 8px; }
.gutschein-box .text { flex: 1 1 280px; }

/* --- booking page --- */

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 860px) {
    .booking-layout { grid-template-columns: 1fr; }
}

.calendar-card, .form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.4rem;
}

.sauna-toggle { display: flex; gap: 0.6rem; margin-bottom: 1rem; }
.sauna-toggle button {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid var(--border);
    background: var(--cream-dark);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
.sauna-toggle button.active { background: var(--wood); color: #fff; border-color: var(--wood); }

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.cal-header button {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    font-size: 1rem;
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    text-align: center;
    font-size: 0.85rem;
}
.cal-grid .dow { font-weight: 600; opacity: 0.6; padding: 0.3rem 0; font-size: 0.75rem; }
.cal-grid .day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0 0.3rem;
    border-radius: 6px;
    cursor: pointer;
    background: var(--cream-dark);
}
.cal-grid .day .day-price {
    font-size: 0.62rem;
    font-weight: 600;
    opacity: 0.75;
    margin-top: 1px;
}
.cal-grid .day.empty { background: none; cursor: default; }
.cal-grid .day.past { background: none; color: #ccc; cursor: default; }
.cal-grid .day.busy { background: #f1c9c0; color: #a83b17; text-decoration: line-through; cursor: not-allowed; }
.cal-grid .day.selected { background: var(--wood); color: #fff; }
.cal-grid .day.selected .day-price { opacity: 0.9; }
.cal-grid .day.in-range { background: #e8c9a3; }
.cal-grid .day.package-day { background: #ffe3b3; box-shadow: inset 0 0 0 2px var(--wood); }
.cal-grid .day.package-day .day-price { color: var(--wood-dark); }
.cal-grid .day:hover:not(.busy):not(.empty):not(.past) { outline: 2px solid var(--wood); }

.legend { display: flex; gap: 1rem; margin-top: 1rem; font-size: 0.8rem; flex-wrap: wrap; }
.legend span { display: inline-flex; align-items: center; gap: 0.35rem; }
.legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.legend .i-free { background: var(--cream-dark); }
.legend .i-busy { background: #f1c9c0; }
.legend .i-selected { background: var(--wood); }
.legend .i-package { background: #ffe3b3; box-shadow: inset 0 0 0 2px var(--wood); }

.selection-summary { margin-top: 1rem; padding: 0.9rem; background: var(--cream-dark); border-radius: 8px; font-size: 0.9rem; }
.selection-summary .price-line { font-size: 1.3rem; font-weight: 700; color: var(--wood-dark); margin-top: 0.3rem; }

.form-card form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-card label { font-size: 0.85rem; font-weight: 600; display: flex; flex-direction: column; gap: 0.3rem; }
.form-card input, .form-card textarea, .form-card select {
    padding: 0.6rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 400;
}
.form-card .checkbox-row { flex-direction: row; align-items: flex-start; gap: 0.5rem; }
.form-card .checkbox-row input { margin-top: 0.2rem; flex-shrink: 0; }
.form-card .checkbox-row span { font-weight: 400; }
.form-card button[type=submit] {
    padding: 0.8rem;
    background: var(--ember);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.form-card button[type=submit]:hover { background: #a83b17; }
.form-card button[type=submit]:disabled { background: #ccc; cursor: not-allowed; }

.form-msg { padding: 0.7rem 0.9rem; border-radius: 6px; font-size: 0.88rem; display: none; }
.form-msg.error { display: block; background: #fbe4e4; color: #a83232; }
.form-msg.success { display: block; background: #e5f3e6; color: var(--ok); }

/* --- contact / footer --- */

.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
}
@media (max-width: 860px) {
    .kontakt-layout { grid-template-columns: 1fr; }
}

.contact-box {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.contact-box .item { min-width: 200px; }
.contact-box .item .icon { margin-bottom: 0.4rem; color: var(--wood-dark); display: flex; justify-content: center; }
.contact-box .item .icon svg { width: 30px; height: 30px; }
.contact-box .item .big { font-size: 1.3rem; font-weight: 700; color: var(--wood-dark); }

.contact-form-card { text-align: left; }
.contact-form-card h3 { margin-top: 0; text-align: center; }

footer.site-footer {
    background: var(--ink);
    color: #cfc3b8;
    padding: 2rem 0;
    font-size: 0.85rem;
    text-align: center;
}
footer.site-footer a { color: #fff; }
footer.site-footer .foot-links { margin-top: 0.6rem; display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.legal-page main { max-width: 760px; margin: 0 auto; padding: 3rem 1.25rem; }
.legal-page h1 { margin-top: 0; }

@media (max-width: 720px) {
    .nav ul { display: none; }
    .brand-logo { height: 42px; }
    .hero-logo { max-width: 230px; }
    .hero-text h1 { font-size: 1.7rem; }
    .hero-text p { font-size: 1rem; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* Admin tables become stacked cards instead of a horizontal-scroll table */
    .responsive-table { display: block; overflow-x: visible; }
    .responsive-table thead { display: none; }
    .responsive-table tbody { display: block; }
    .responsive-table tr {
        display: block;
        margin-bottom: 0.9rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 0.7rem 0.9rem;
        background: #fff;
    }
    .responsive-table td {
        display: block;
        border-bottom: 1px dashed var(--border);
        padding: 0.4rem 0;
    }
    .responsive-table td:last-child { border-bottom: none; padding-bottom: 0; }
    .responsive-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        opacity: 0.55;
        margin-bottom: 0.2rem;
    }
    .responsive-table .col-zeitraum { white-space: normal; }

    .table-toolbar { flex-direction: column; align-items: stretch; }
    .table-toolbar .muted { margin-left: 0; }
}

/* ===== admin panel ===== */

.login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-box { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 2.5rem; width: 320px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.login-box h1 { margin-top: 0; font-size: 1.3rem; text-align: center; }
.login-box form { display: flex; flex-direction: column; gap: 0.25rem; }
.login-box label { font-size: 0.85rem; margin-top: 0.75rem; }
.login-box input { padding: 0.55rem 0.6rem; border: 1px solid var(--border); border-radius: 6px; font-size: 1rem; }
.login-box button { margin-top: 1.25rem; padding: 0.65rem; border: none; border-radius: 6px; background: var(--wood); color: #fff; font-size: 1rem; cursor: pointer; }
.login-box button:hover { background: var(--wood-dark); }
.login-back { text-align: center; margin-top: 1.25rem; font-size: 0.85rem; }
.flash { padding: 0.6rem 0.8rem; border-radius: 6px; font-size: 0.9rem; }
.flash-error { background: #fbe4e4; color: #a83232; }
.flash-ok { background: #e5f3e6; color: var(--ok); }

.topbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; background: var(--wood-dark); color: #fff; padding: 0.9rem 1.5rem; }
.topbar h1 { font-size: 1.1rem; margin: 0; line-height: 0; }
.topbar a { color: #fff; text-decoration: none; opacity: 0.85; }
.topbar a:hover { opacity: 1; text-decoration: underline; }

.booking-mode-toggle { display: flex; border-radius: 20px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.4); }
.booking-mode-toggle .mode-option { background: none; border: none; color: rgba(255,255,255,0.75); padding: 0.45rem 1rem; font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.booking-mode-toggle .mode-option.active { background: var(--ember); color: #fff; }
.booking-mode-toggle .mode-option:not(.active):hover { background: rgba(255,255,255,0.12); color: #fff; }

main.wrap { max-width: 1100px; margin: 0 auto; padding: 1.5rem; }
.stats { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 0.9rem 1.3rem; min-width: 130px; }
.stat-card .num { font-size: 1.6rem; font-weight: 700; }
.stat-card .label { font-size: 0.8rem; opacity: 0.7; }

.panel { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.2rem 1.4rem; margin-bottom: 1.5rem; }
.panel h2 { margin-top: 0; font-size: 1.05rem; text-align: left; }
.panel > summary { cursor: pointer; list-style: none; }
.panel > summary::-webkit-details-marker { display: none; }
.panel > summary h2 { display: inline-flex; align-items: center; gap: 0.4rem; }
.panel > summary h2::before { content: '\25B6'; font-size: 0.7em; transition: transform 0.15s ease; }
.panel[open] > summary h2::before { transform: rotate(90deg); }
.panel > summary:hover h2 { color: var(--wood-dark); }

table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th, td { text-align: left; padding: 0.5rem 0.5rem; border-bottom: 1px solid var(--border); vertical-align: top; }
th { font-size: 0.78rem; text-transform: uppercase; opacity: 0.6; }
td.col-zeitraum { white-space: nowrap; }

th.sortable { cursor: pointer; user-select: none; }
th.sortable:hover { opacity: 1; color: var(--wood-dark); }
th.sortable::after { content: '\2195'; margin-left: 0.3rem; opacity: 0.4; font-size: 0.8em; }
th.sortable.sort-asc::after { content: '\2191'; opacity: 1; }
th.sortable.sort-desc::after { content: '\2193'; opacity: 1; }

.table-toolbar {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0.9rem;
}
.table-toolbar input[type=search] {
    flex: 1 1 220px;
    padding: 0.5rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
}
.table-toolbar select {
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
}
.table-toolbar .muted { margin-left: auto; white-space: nowrap; }
.table-toolbar .page-info { white-space: nowrap; color: var(--ink-soft); font-size: 0.9rem; }
.booking-pagination button:disabled { opacity: 0.45; cursor: not-allowed; }

@media (max-width: 720px) {
    .table-toolbar { flex-direction: column; align-items: stretch; }
    .table-toolbar input[type=search], .table-toolbar select { flex: none; }
    .table-toolbar .muted { margin-left: 0; }
}

.badge { display: inline-block; padding: 0.15rem 0.55rem; border-radius: 20px; font-size: 0.75rem; color: #fff; }
.badge-pending { background: var(--pending, #c98a1c); }
.badge-confirmed { background: var(--ok); }
.badge-cancelled { background: #a83232; }
.badge-blocked { background: #6b6b6b; }

.actions-inline { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.actions-inline button, main .btn { font-size: 0.78rem; padding: 0.3rem 0.6rem; border-radius: 5px; border: 1px solid var(--border); background: #f4ede1; cursor: pointer; }
.actions-inline button:hover { background: #e9dcc6; }
.btn-danger { color: #a83232; border-color: #a83232; }
.btn-ok { color: var(--ok); border-color: var(--ok); }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.8rem; align-items: end; }
.form-grid label { display: flex; flex-direction: column; font-size: 0.8rem; gap: 0.3rem; }
.form-grid input, .form-grid select, .form-grid textarea { padding: 0.5rem; border: 1px solid var(--border); border-radius: 6px; font-size: 0.9rem; font-family: inherit; }
.form-grid .full { grid-column: 1 / -1; }

.submit-row { margin-top: 0.9rem; }
.submit-row button { padding: 0.55rem 1.2rem; background: var(--wood); color: #fff; border: none; border-radius: 6px; cursor: pointer; }
.submit-row button:hover { background: var(--wood-dark); }
.muted { opacity: 0.6; font-size: 0.8rem; }
.price { font-weight: 600; }

/* admin calendar overview reuses .cal-header/.cal-grid/.day/.legend above; only the
   two-up layout and status-color day variants are new */
.cal-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.mini-cal h3 { margin: 0 0 0.6rem; font-size: 0.95rem; }
.mini-cal .cal-grid { font-size: 0.75rem; }
.mini-cal .day { cursor: default; }
.mini-cal .day.today { outline: 1px solid var(--wood-dark); }
.mini-cal .day.d-pending { background: var(--pending, #c98a1c); color: #fff; }
.mini-cal .day.d-confirmed { background: var(--ok); color: #fff; }
.mini-cal .day.d-blocked { background: #6b6b6b; color: #fff; }

.tabs { display: flex; gap: 0.4rem; border-bottom: 1px solid var(--border); margin-bottom: 1.2rem; flex-wrap: wrap; }
.tab-btn { padding: 0.55rem 1rem; border: none; background: none; font-size: 0.9rem; cursor: pointer; color: var(--ink-soft); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-btn:hover { color: var(--wood-dark); }
.tab-btn.active { color: var(--wood-dark); font-weight: 600; border-bottom-color: var(--wood); }
.tab-panel[hidden] { display: none; }

.panel-inset { background: #faf6f0; border: 1px solid var(--border); border-radius: 8px; padding: 1.1rem 1.3rem; }
.panel-inset h3 { margin-top: 0; font-size: 1rem; }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 1rem; }
.modal-box { background: #fff; border-radius: 10px; padding: 1.5rem; max-width: 420px; width: 100%; box-shadow: 0 10px 40px rgba(0,0,0,0.25); }
.modal-box h3 { margin-top: 0; }
.modal-box label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.85rem; font-weight: 600; margin-top: 0.9rem; }
.modal-box .checkbox-row { flex-direction: row; align-items: center; gap: 0.5rem; margin-top: 0.9rem; }
.modal-box .checkbox-row span { font-weight: 400; }
.modal-box textarea { width: 100%; box-sizing: border-box; padding: 0.5rem 0.6rem; border: 1px solid var(--border); border-radius: 6px; font: inherit; resize: vertical; }
.modal-box .submit-row { display: flex; gap: 0.6rem; }
#status-modal-cancel { background: #f4ede1; color: inherit; }
#status-modal-cancel:hover { background: #e8ddc9; }

.legend .swatch { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.legend .swatch.d-pending { background: var(--pending, #c98a1c); }
.legend .swatch.d-confirmed { background: var(--ok); }
.legend .swatch.d-blocked { background: #6b6b6b; }

/* ---------- Click-to-load map embed (GDPR/TTDSG "2-click" consent) ---------- */
.map-embed { margin: 0.75rem auto 0; max-width: 640px; border-radius: 8px; overflow: hidden; background: var(--cream-dark); }
.map-embed iframe { display: block; }
.map-placeholder { padding: 1.75rem 1.5rem; text-align: center; }
.map-placeholder p { max-width: 42ch; margin: 0 auto 1rem; color: var(--ink-soft); font-size: 0.85rem; }

/* ---------- Cookie notice banner ---------- */
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
    background: var(--ink); color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.cookie-banner-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; flex: 1 1 320px; font-size: 0.85rem; color: #e8ddcf; }
.cookie-banner-inner a { color: #fff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.6rem; flex-shrink: 0; flex-wrap: wrap; }
