/*
Theme Name: Luises Gästehaus
Theme URI: https://luises-gaestehaus.de/
Author: Familie Hoffmann-Krell
Description: Individuelles WordPress-Theme für Luises Gästehaus mit Preisen, Kontakt, Impressum, Datenschutz und vorbereitetem Smoobu-Onlinebuchungsbereich.
Version: 1.6.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: luises-gaestehaus
License: GNU General Public License v2 or later
*/

:root {
      --cream: #fbf7f0;
      --paper: #fffdf9;
      --forest: #26463a;
      --forest-2: #365b4c;
      --sage: #dbe5dc;
      --terracotta: #c86f4e;
      --terracotta-dark: #a95438;
      --gold: #d8b26e;
      --ink: #24322d;
      --muted: #66736d;
      --line: #e8e0d5;
      --shadow: 0 24px 70px rgba(38, 70, 58, 0.13);
      --radius-lg: 34px;
      --radius-md: 22px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.65;
    }

    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }
    .container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

    .topbar {
      background: var(--forest);
      color: rgba(255,255,255,.88);
      font-size: .9rem;
    }
    .topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      flex-wrap: wrap;
      text-align: center;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(251, 247, 240, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(232,224,213,.85);
    }
    .nav-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      font-weight: 850;
      letter-spacing: -.03em;
      color: var(--forest);
    }
    .brand-mark {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 50% 50% 45% 45%;
      background: var(--terracotta);
      color: #fff;
      font-family: Georgia, serif;
      font-size: 1.45rem;
      box-shadow: 0 9px 22px rgba(200,111,78,.22);
    }
    .nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: .95rem; }
    .nav-links a:hover { color: var(--forest); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: var(--terracotta);
      color: white;
      box-shadow: 0 12px 28px rgba(200,111,78,.26);
    }
    .btn-primary:hover { background: var(--terracotta-dark); }
    .btn-secondary {
      background: rgba(255,255,255,.72);
      border-color: var(--line);
      color: var(--forest);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 74px 0 70px;
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: rgba(216,178,110,.18);
      top: -240px;
      right: -170px;
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.03fr .97fr;
      gap: 58px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: 999px;
      background: #efe4d4;
      color: #7d563f;
      font-size: .82rem;
      font-weight: 850;
      letter-spacing: .07em;
      text-transform: uppercase;
    }
    h1, h2, h3 { text-wrap: balance; }
    h1 {
      margin: 20px 0 24px;
      color: var(--forest);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3.25rem, 6.6vw, 6.35rem);
      line-height: .94;
      letter-spacing: -.055em;
      font-weight: 700;
    }
    .hero-lead {
      font-size: clamp(1.06rem, 2vw, 1.24rem);
      color: var(--muted);
      max-width: 680px;
      margin: 0;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .facts {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }
    .fact {
      background: rgba(255,255,255,.76);
      border: 1px solid var(--line);
      padding: 9px 13px;
      border-radius: 999px;
      font-size: .92rem;
      font-weight: 750;
      color: var(--forest);
    }

    .visual {
      min-height: 590px;
      border-radius: 44px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0)),
        linear-gradient(145deg, #bfd2c1 0%, #e7d4b7 53%, #c3ad88 100%);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .visual::after {
      content: "";
      position: absolute;
      inset: auto -8% -25% -8%;
      height: 55%;
      border-radius: 50% 50% 0 0;
      background: linear-gradient(180deg, #8fa889, #71886f);
    }
    .sun {
      position: absolute;
      top: 56px;
      right: 58px;
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: #f5dfaa;
      box-shadow: 0 0 0 24px rgba(245,223,170,.15);
    }
    .tree {
      position: absolute;
      bottom: 116px;
      left: 42px;
      width: 95px;
      height: 190px;
      z-index: 2;
    }
    .tree::before {
      content: "";
      position: absolute;
      left: 40px;
      bottom: 0;
      width: 15px;
      height: 82px;
      border-radius: 8px;
      background: #725848;
    }
    .tree::after {
      content: "";
      position: absolute;
      width: 95px;
      height: 125px;
      border-radius: 52% 48% 44% 56%;
      background: #496a55;
      top: 0;
    }
    .house {
      position: absolute;
      z-index: 3;
      left: 18%;
      right: 10%;
      bottom: 82px;
      height: 285px;
      background: #fff8ee;
      border-radius: 16px 16px 7px 7px;
      box-shadow: 0 22px 44px rgba(48,58,48,.23);
    }
    .roof {
      position: absolute;
      left: -8%;
      top: -34%;
      width: 116%;
      height: 40%;
      background: #6c665c;
      clip-path: polygon(50% 0, 100% 100%, 0 100%);
    }
    .door {
      position: absolute;
      left: 44%;
      bottom: 0;
      width: 17%;
      height: 46%;
      border-radius: 9px 9px 0 0;
      background: var(--forest-2);
    }
    .window {
      position: absolute;
      top: 37%;
      width: 20%;
      height: 26%;
      border-radius: 7px;
      background: #b8d0d1;
      border: 7px solid #f3eadf;
      box-shadow: inset 0 0 0 2px rgba(38,70,58,.08);
    }
    .w1 { left: 12%; }
    .w2 { right: 12%; }
    .visual-note {
      position: absolute;
      z-index: 7;
      right: 22px;
      bottom: 22px;
      max-width: 255px;
      border-radius: 18px;
      padding: 15px 17px;
      background: rgba(255,253,249,.94);
      color: var(--forest);
      font-weight: 850;
      box-shadow: 0 12px 32px rgba(38,70,58,.15);
    }

    section { padding: 78px 0; }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 36px;
      margin-bottom: 34px;
    }
    .section-head .copy { max-width: 560px; color: var(--muted); margin: 0; }
    h2 {
      margin: 10px 0 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.25rem, 4.7vw, 4.25rem);
      line-height: 1.02;
      letter-spacing: -.045em;
      color: var(--forest);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .feature {
      position: relative;
      min-height: 220px;
      padding: 27px;
      border-radius: var(--radius-md);
      background: var(--paper);
      border: 1px solid var(--line);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .feature:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(38,70,58,.09); }
    .icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 23px;
      background: var(--sage);
      font-size: 1.35rem;
    }
    .feature h3 { margin: 0 0 8px; color: var(--forest); font-size: 1.16rem; }
    .feature p { color: var(--muted); margin: 0; font-size: .96rem; }

    .story {
      background: var(--forest);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 46px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 44px;
      align-items: center;
      box-shadow: var(--shadow);
    }
    .story h2 { color: #fff; }
    .story p { color: rgba(255,255,255,.76); }
    .story .kicker { background: rgba(255,255,255,.11); color: #fff; }
    .benefits { display: grid; gap: 13px; }
    .benefit {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 17px 18px;
      border-radius: 17px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.08);
      font-weight: 780;
    }

    .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .info-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 30px;
    }
    .info-card h3 { margin: 0 0 14px; color: var(--forest); }
    .info-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
    .info-card li + li { margin-top: 8px; }

    .contact {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      padding: 62px 34px;
      text-align: center;
      background: linear-gradient(135deg, #efe1cf 0%, #f7eadb 47%, #dce6db 100%);
      border: 1px solid #e5d7c5;
    }
    .contact::before,
    .contact::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      border: 1px solid rgba(38,70,58,.08);
    }
    .contact::before { left: -130px; top: -110px; }
    .contact::after { right: -120px; bottom: -130px; }
    .contact h2, .contact p, .contact .contact-actions, .contact .host { position: relative; z-index: 1; }
    .contact p { max-width: 650px; margin: 18px auto 26px; color: var(--muted); }
    .contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
    .host {
      display: inline-block;
      margin-top: 24px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.58);
      color: var(--forest);
      font-weight: 750;
    }

    .legal {
      background: #f2eee7;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .legal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
    .legal-card {
      background: rgba(255,255,255,.62);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 28px;
    }
    .legal-card h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
    .legal-card h3 { color: var(--forest); margin: 24px 0 7px; font-size: 1.06rem; }
    .legal-card p, .legal-card li { color: #5f6a65; font-size: .94rem; }
    .legal-card ul { padding-left: 19px; }
    .legal-card a { text-decoration: underline; text-underline-offset: 3px; }


    .booking-shell {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 34px;
      box-shadow: 0 18px 52px rgba(38,70,58,.08);
    }
    .booking-intro {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 26px;
      align-items: start;
      margin-bottom: 26px;
    }
    .booking-summary {
      background: var(--forest);
      color: #fff;
      border-radius: var(--radius-md);
      padding: 26px;
    }
    .booking-summary .price-big {
      display: block;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 2.7rem;
      line-height: 1;
      margin: 10px 0 8px;
    }
    .booking-summary p,
    .booking-summary li { color: rgba(255,255,255,.79); }
    .booking-summary ul { margin: 16px 0 0; padding-left: 19px; }
    .booking-summary li + li { margin-top: 7px; }

    .smoobu-wrap {
      min-height: 310px;
      border-radius: var(--radius-md);
      border: 1px dashed #c8bba9;
      background: #faf5ed;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }
.smoobu-empty {
      min-height: 258px;
      display: grid;
      place-items: center;
      text-align: center;
    }
    .smoobu-empty-inner { max-width: 570px; }
    .smoobu-empty .icon-large {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      margin: 0 auto 16px;
      border-radius: 20px;
      background: var(--sage);
      font-size: 1.7rem;
    }
    .smoobu-empty h3 { color: var(--forest); margin: 0 0 8px; }
    .smoobu-empty p { color: var(--muted); margin: 0; }

    .booking-note {
      margin-top: 18px;
      color: var(--muted);
      font-size: .9rem;
      text-align: center;
    }

    .booking-policy {
      margin-top: 20px;
      padding: 18px 20px;
      border-radius: 18px;
      background: #f3eee5;
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: .92rem;
    }

    footer { padding: 32px 0 46px; color: var(--muted); font-size: .9rem; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
    .footer-links a:hover { color: var(--forest); }
    .branches { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 7px; }
    .branch {
      border: 1px solid var(--line);
      background: rgba(255,255,255,.54);
      border-radius: 999px;
      padding: 5px 9px;
      font-size: .82rem;
    }

    @media (max-width: 930px) {
      .hero-grid, .story, .legal-grid { grid-template-columns: 1fr; }
      .booking-intro { grid-template-columns: 1fr; }
      .features { grid-template-columns: 1fr 1fr; }
      .visual { min-height: 500px; }
      .section-head { align-items: start; flex-direction: column; }
      .nav-links a:not(.nav-cta) { display: none; }
    }

    @media (max-width: 640px) {
      .container { width: min(calc(100% - 24px), var(--max)); }
      .topbar-inner { padding: 8px 0; gap: 8px 16px; }
      .hero { padding-top: 48px; }
      .features, .info-grid { grid-template-columns: 1fr; }
      .visual { min-height: 420px; border-radius: 28px; }
      .house { left: 13%; right: 8%; bottom: 64px; height: 230px; }
      .story { padding: 30px 24px; border-radius: 26px; }
      .contact { padding: 48px 22px; border-radius: 26px; }
      .nav-inner { min-height: 68px; }
      .brand-mark { width: 40px; height: 40px; }
      h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
    }


/* ===== Bilder & Galerie (Theme 1.1) ===== */
.hero-photo-frame {
  background: #d8d0c3;
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(20,38,31,0) 52%, rgba(20,38,31,.34) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-photo-frame .visual-note { z-index: 4; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery-item {
  grid-column: span 4;
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #e8e0d5;
  box-shadow: 0 10px 32px rgba(38,70,58,.08);
}
.gallery-item:first-child {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 556px;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item::after {
  content: "Bild vergrößern";
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,253,249,.9);
  color: var(--forest);
  font-size: .82rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(5px);
  transition: .2s ease;
}
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; transform: translateY(0); }

.lgh-lightbox {
  width: min(94vw, 1200px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.lgh-lightbox::backdrop { background: rgba(15,20,18,.82); }
.lgh-lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  display: block;
}
.lgh-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.93);
  color: #1f2f29;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 930px) {
  .gallery-item,
  .gallery-item:first-child {
    grid-column: span 6;
    grid-row: auto;
    min-height: 330px;
  }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item:first-child {
    grid-column: 1;
    min-height: 270px;
  }
  .gallery-item:first-child { min-height: 360px; }
}


/* Galerie nach Räumen – Version 1.2 */
.room-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.room-filter-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--forest);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.room-filter-btn:hover,
.room-filter-btn.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.room-gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #e8e0d5;
  box-shadow: 0 10px 32px rgba(38,70,58,.08);
}
.room-gallery-item[hidden] { display: none !important; }
.room-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.room-gallery-item:hover img { transform: scale(1.025); }
.room-gallery-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,253,249,.92);
  color: var(--forest);
  font-size: .8rem;
  font-weight: 850;
}
@media (max-width: 930px) {
  .room-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .room-gallery-grid { grid-template-columns: 1fr; }
  .room-filter { gap: 8px; }
  .room-filter-btn { padding: 9px 13px; font-size: .9rem; }
}


/* Version 1.3: Navigation in der Bilder-Großansicht */
.lgh-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.95);
  color: var(--forest);
  font-size: 2.15rem;
  line-height: 1;
  cursor: pointer;
  z-index: 100001;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.lgh-lightbox-prev { left: 20px; }
.lgh-lightbox-next { right: 20px; }
.lgh-lightbox-nav:hover,
.lgh-lightbox-nav:focus-visible {
  background: #fff;
  outline: 3px solid rgba(255,255,255,.35);
}
.lgh-lightbox-caption {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  max-width: min(760px, calc(100vw - 140px));
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--forest);
  font-weight: 800;
  text-align: center;
  z-index: 100001;
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
@media (max-width: 620px) {
  .lgh-lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 1.75rem;
  }
  .lgh-lightbox-prev { left: 8px; }
  .lgh-lightbox-next { right: 8px; }
  .lgh-lightbox-caption {
    bottom: 10px;
    max-width: calc(100vw - 92px);
    font-size: .86rem;
  }
}



/* Version 1.5: OpenStreetMap – datenschutzfreundlich per Klick laden */
.location-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}
.location-info {
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--forest);
  color: #fff;
}
.location-info h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.location-info p {
  color: rgba(255,255,255,.8);
}
.location-address {
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 17px;
  background: rgba(255,255,255,.08);
  font-weight: 800;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.location-actions .btn-map-light {
  background: #fff;
  color: var(--forest);
}
.location-actions .btn-map-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.map-consent {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(rgba(251,247,240,.84), rgba(251,247,240,.84)),
    repeating-linear-gradient(35deg, transparent 0 34px, rgba(38,70,58,.08) 35px 37px),
    repeating-linear-gradient(125deg, transparent 0 48px, rgba(200,111,78,.07) 49px 51px);
}
.map-consent-screen {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}
.map-consent-inner {
  max-width: 520px;
}
.map-consent-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--sage);
  font-size: 1.8rem;
}
.map-consent h3 {
  margin: 0 0 9px;
  color: var(--forest);
  font-size: 1.35rem;
}
.map-consent p {
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: .94rem;
}
.map-privacy-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .78rem;
}
#lgh-osm-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 440px;
}
.map-consent.is-loaded .map-consent-screen {
  display: none;
}
.map-status {
  min-height: 1.4em;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
}
.leaflet-container {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
@media (max-width: 900px) {
  .location-card { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .location-info { padding: 26px 22px; }
  .map-consent, #lgh-osm-map { min-height: 380px; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { width: 100%; }
}



/* Version 1.6: automatische Freischaltung von Buchung und Mobilnummer */
.booking-prelaunch {
  border-radius: var(--radius-lg);
  padding: 42px 30px;
  text-align: center;
  background: linear-gradient(135deg, #efe1cf 0%, #f8efe4 52%, #dce6db 100%);
  border: 1px solid #e5d7c5;
}
.booking-prelaunch h2 {
  margin-bottom: 14px;
}
.booking-prelaunch p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: var(--muted);
}
.booking-prelaunch-date {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--forest);
  font-weight: 850;
}

