/* urlaub.bg – Design-System der öffentlichen Website.
   Mobile-first, kein Framework. Kalender-Stile in calendar.css. */

/* --- Basis ---------------------------------------------------------------- */

:root {
  --sea-900: #092b3e;
  --sea-800: #0e3a52;
  --sea-700: #15506f;
  --sea-100: #dcebf2;
  --sand-100: #f7f1e8;
  --sand-200: #efe5d4;
  --coral: #e8734d;
  --coral-dark: #d05f3a;
  --ink: #21323d;
  --ink-soft: #5a6b76;
  --white: #ffffff;
  /* Belegungsfarben – identisch zum internen Bereich */
  --cal-free: #d7f0de;
  --cal-busy: #e0584f;
  --cal-tentative: #f4d03f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(9, 43, 62, .12);
  --shadow-soft: 0 4px 14px rgba(9, 43, 62, .08);
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea-700); }
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.3rem); margin: 0 0 .4em; color: var(--sea-800); }
h3 { font-size: 1.15rem; margin: 0 0 .35em; color: var(--sea-800); }
p  { margin: 0 0 1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.kicker {
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .5em;
}

.lead { font-size: 1.1rem; color: var(--ink-soft); }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: .8em 1.6em;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 6px 18px rgba(232, 115, 77, .35); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .65);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .26); transform: translateY(-2px); }
.btn:disabled { opacity: .55; cursor: default; transform: none; }

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px;
}
.site-header.scrolled {
  background: rgba(9, 43, 62, .88);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}
/* Logo braucht einen hellen Untergrund (dunkelblaue Schrift) */
.logo img {
  height: 40px;
  width: auto;
  background: rgba(255, 255, 255, .92);
  padding: 5px 12px;
  border-radius: 999px;
  box-sizing: content-box;
}
.main-nav { display: flex; gap: 4px; }
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: .45em .8em;
  border-radius: 8px;
  font-size: .95rem;
}
.main-nav a:hover { background: rgba(255, 255, 255, .15); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Sprachumschalter: <details>-Klappmenue, funktioniert auch ohne JS.
   Die Links stehen statisch im Markup, i18n.js haengt nur den Anker an. */
.lang-switch { position: relative; }
.lang-switch > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .45em .7em;
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}
.lang-switch > summary::-webkit-details-marker { display: none; }
.lang-switch > summary::after {
  content: "";
  width: 0; height: 0;
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 3px;
  transition: transform .2s ease;
}
.lang-switch[open] > summary::after { transform: rotate(180deg); margin-top: -3px; }
.lang-switch > summary:hover { background: rgba(255, 255, 255, .15); }
.lang-switch img {
  width: 21px; height: 14px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .55);
}
.lang-switch ul {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: rgba(9, 43, 62, .97);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  min-width: 170px;
}
.lang-switch li + li { margin-top: 2px; }
.lang-switch ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: .5em .7em;
  border-radius: 7px;
  white-space: nowrap;
}
.lang-switch ul a:hover { background: rgba(255, 255, 255, .15); }
.lang-switch ul a[aria-current] { background: rgba(255, 255, 255, .22); }

@media (max-width: 760px) {
  .nav-toggle { display: block; order: 3; }
  /* Sprache bleibt auch bei geschlossenem Burger-Menue erreichbar */
  .lang-switch { order: 2; margin-left: auto; }
  .lang-switch > summary span { display: none; }
  .lang-switch > summary { padding: .45em .4em; gap: 5px; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(9, 43, 62, .97);
    padding: 8px 16px 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .8em; }
  body.nav-open .site-header { background: rgba(9, 43, 62, .97); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* --- Hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero picture, .hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom,
    rgba(9, 43, 62, .55) 0%,
    rgba(9, 43, 62, .25) 40%,
    rgba(9, 43, 62, .65) 100%);
}
.hero .wrap { padding-top: 90px; padding-bottom: 60px; }
.hero h1 {
  font-size: clamp(2rem, 7vw, 3.6rem);
  margin: 0 0 .3em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.hero .sub {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  max-width: 34em;
  margin-bottom: 1.6em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .4);
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  opacity: .85;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* --- Sektionen ------------------------------------------------------------- */

.section { padding: 72px 0; }
.section.sand { background: var(--sand-100); }
.section.sea { background: var(--sea-800); color: #f2f7fa; }
.section.sea h2, .section.sea h3 { color: #fff; }
.section.sea .lead { color: #c8dae4; }

/* Diagonaler Übergang über Sand-Sektionen */
.slope { position: relative; }
.slope::before {
  content: '';
  position: absolute;
  top: -38px;
  left: 0; right: 0;
  height: 40px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Einblenden beim Scrollen */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .scroll-hint { animation: none; }
}

/* --- Wohnungs-Karten -------------------------------------------------------- */

.apt-grid {
  display: grid;
  gap: 26px;
  margin-top: 34px;
}
@media (min-width: 720px) { .apt-grid { grid-template-columns: 1fr 1fr; } }

.apt-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.apt-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.apt-card .photo { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; }
.apt-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.apt-card:hover .photo img { transform: scale(1.045); }
.apt-card .price-badge {
  position: absolute;
  right: 12px; bottom: 12px;
  background: var(--sea-800);
  color: #fff;
  font-weight: 700;
  padding: .35em .9em;
  border-radius: 999px;
  font-size: .9rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
}
.apt-card .body { padding: 20px 22px 24px; }
.apt-card .facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
  padding: 0;
  list-style: none;
}
.apt-card .facts li {
  background: var(--sea-100);
  color: var(--sea-800);
  border-radius: 999px;
  padding: .25em .8em;
  font-size: .85rem;
  font-weight: 700;
}
.apt-card .more { font-weight: 700; color: var(--coral); }

/* --- Fakten-Grid (Resort) ---------------------------------------------------- */

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 34px 0 8px;
}
.fact {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.fact .icon { display: block; width: 34px; height: 34px; margin: 0 auto 10px; color: #ffd9a8; }
.fact .icon svg { display: block; width: 100%; height: 100%; }
.fact strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.fact span { font-size: .88rem; color: #c8dae4; }

/* --- Galerie-Strips ---------------------------------------------------------- */

.strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(9, 43, 62, .3) transparent;
}
.strip::-webkit-scrollbar { height: 8px; }
.strip::-webkit-scrollbar-thumb { background: rgba(9, 43, 62, .25); border-radius: 4px; }
.strip .g-item {
  flex: 0 0 auto;
  width: min(78vw, 340px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
  border: 0;
  padding: 0;
  background: none;
}
.strip .g-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.strip .g-item:hover img { transform: scale(1.04); }

/* Insider-Tipps „Obzor & Umgebung" */
.local-tips { margin-top: 34px; }
.local-tips h3 { margin-top: 1.7em; }
.tips { list-style: none; padding: 0; margin: 0; }
.tips li { position: relative; padding-left: 1.4em; margin: 0 0 .85em; }
.tips li::before { content: ''; position: absolute; left: 2px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.tips strong { color: var(--sea-800); }

/* Lightbox */
dialog.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(96vw, 1100px);
  width: auto;
}
dialog.lightbox::backdrop { background: rgba(5, 20, 30, .9); }
.lightbox figure { margin: 0; position: relative; }
.lightbox img {
  max-width: 96vw;
  max-height: 84vh;
  width: auto;
  border-radius: 10px;
  margin: 0 auto;
}
.lightbox figcaption { color: #cfe0ea; text-align: center; padding: 10px 0 0; font-size: .95rem; }
.lightbox .lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(9, 43, 62, .65);
  color: #fff;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox .lb-prev { left: 8px; }
.lightbox .lb-next { right: 8px; }
.lightbox .lb-close {
  position: absolute;
  top: -6px; right: -6px;
  transform: none;
  font-size: 1.2rem;
  width: 38px; height: 38px;
}

/* --- Kontakt-Karten ----------------------------------------------------------- */

.person-grid { display: grid; gap: 24px; margin-top: 30px; }
@media (min-width: 720px) { .person-grid { grid-template-columns: 1fr 1fr; } }
.person {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px;
  text-align: center;
}
.person img.portrait {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 4px solid var(--sand-200);
}
.person .role { color: var(--ink-soft); font-size: .95rem; margin-bottom: 12px; }
.person .channels { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
.person .channels a {
  display: inline-flex;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sand-100);
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background .15s ease;
}
.person .channels a:hover { transform: translateY(-3px); background: var(--sand-200); }
.person .channels img { width: 22px; height: 22px; }
.person .phones { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 6px; }
.person .phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--sea-800);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .2px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.person .phone:hover { transform: translateY(-2px); background: var(--sand-200); }
.person .phone .ic { color: var(--coral); flex: none; }
.person .phone .flag { font-size: 1.15rem; line-height: 1; }

/* --- Buchungsbereich (Layout; Kalender in calendar.css) ------------------------ */

/* minmax(0,…): sonst bläht die intrinsische Breite des Kalender-Sliders die Spalte auf */
.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 26px; margin-top: 30px; }
@media (min-width: 980px) {
  .booking-layout { grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr); align-items: start; }
}

.quote-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 24px;
  /* Ziel von scrollIntoView(): Abstand zum fixen Header lassen */
  scroll-margin-top: 96px;
}
.quote-card h3 { margin-top: 0; }
.quote-card .range { font-weight: 700; color: var(--sea-700); margin-bottom: 10px; }
.quote-card table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.quote-card td { padding: .35em 0; }
.quote-card td:last-child { text-align: right; white-space: nowrap; }
.quote-card tr.total td {
  border-top: 2px solid var(--sea-100);
  font-weight: 700;
  font-size: 1.08rem;
  padding-top: .6em;
  color: var(--sea-800);
}
.quote-card .deposit-note, .quote-card .season-note {
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 12px 0 0;
}
.quote-card .season-note { color: #9a6a00; }
.quote-hint { color: var(--ink-soft); font-size: .97rem; }
.quote-hint.warn { color: #b03a2e; font-weight: 700; }

/* Ladekreisel waehrend der Preisberechnung */
.quote-loading { display: flex; align-items: center; gap: 10px; }
.quote-loading .spinner {
  width: 20px;
  height: 20px;
  flex: none;
  border: 3px solid var(--sea-100);
  border-top-color: var(--sea-700);
  border-radius: 50%;
  animation: quote-spin .8s linear infinite;
}
@keyframes quote-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .quote-loading .spinner { animation-duration: 2.5s; }
}

/* Je verfuegbarer Wohnung ein Angebotsblock mit Buchen-Button */
.quote-apt { border-top: 2px solid var(--sea-100); margin-top: 16px; padding-top: 14px; }
.quote-apt h4 { margin: 0 0 8px; color: var(--sea-800); font-size: 1.02rem; }
.quote-apt .btn-book { margin-top: 14px; width: 100%; }

/* Rabattzeile in der Preistabelle */
.quote-card tr.discount td { color: #1f7a44; font-weight: 600; }

/* Rabattcode-Eingabe (Geschwister der .quote-body, bleibt beim Neurendern
   der Preise stehen) */
.quote-code { border-top: 2px solid var(--sea-100); margin-top: 16px; padding-top: 14px; }
.quote-code[hidden] { display: none; }
.quote-code label { display: block; font-size: .9rem; color: var(--ink-soft); margin-bottom: 6px; }
.quote-code-row { display: flex; gap: 8px; }
.quote-code-row input {
  flex: 1; min-width: 0; font: inherit; padding: 9px 11px;
  border: 1px solid var(--sea-100); border-radius: 8px; text-transform: uppercase;
}
.quote-code-row .btn-code {
  flex: none; padding: 9px 16px; border: 1px solid var(--sea-100);
  border-radius: 8px; background: #fff; color: var(--sea-800);
  font: inherit; font-weight: 600; cursor: pointer;
}
.quote-code-row .btn-code:hover { background: var(--sea-50, #f2f8fa); }
.quote-code-msg { margin: 8px 0 0; font-size: .92rem; min-height: 1.2em; }
.quote-code-msg.ok   { color: #1f7a44; font-weight: 600; }
.quote-code-msg.info { color: var(--sea-800); }
.quote-code-msg.warn { color: #9a6a12; }
.quote-code-msg.err  { color: #b03a2e; font-weight: 600; }

/* Buchungs-Dialog */
dialog.booking-dialog {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
}
dialog.booking-dialog::backdrop { background: rgba(5, 20, 30, .6); }
.booking-dialog .bd-body { padding: 22px 22px 24px; position: relative; }
.booking-dialog h3 { margin-top: 0; padding-right: 36px; }
.booking-dialog .bd-summary { font-weight: 700; color: var(--sea-700); margin: 0 0 10px; }
.booking-dialog .bd-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: var(--sand-200, #f0e8dc);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
}

/* Formular */
.booking-dialog form { display: grid; gap: 14px; margin-top: 8px; }
.booking-dialog form[hidden] { display: none; } /* display:grid schlaegt sonst das hidden-Attribut */
.booking-dialog label { font-weight: 700; font-size: .9rem; display: block; margin-bottom: 4px; color: var(--sea-800); }
.booking-dialog input, .booking-dialog select, .booking-dialog textarea {
  width: 100%;
  font: inherit;
  padding: .6em .8em;
  border: 1.5px solid #ccd8df;
  border-radius: 10px;
  background: #fff;
  color: inherit;
}
.booking-dialog input:focus, .booking-dialog select:focus, .booking-dialog textarea:focus {
  outline: 2px solid var(--sea-700);
  outline-offset: 1px;
  border-color: var(--sea-700);
}
.booking-dialog textarea { min-height: 96px; resize: vertical; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* Honeypot: fuer Menschen unsichtbar */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-feedback { font-size: .95rem; }
.form-feedback.error { color: #b03a2e; font-weight: 700; }
.success-panel {
  background: var(--cal-free);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.success-panel h3 { color: #1e6b3a; }
.success-panel .rid { font-size: .85rem; color: var(--ink-soft); margin-top: 8px; }

/* --- Footer --------------------------------------------------------------------- */

.site-footer {
  background: var(--sea-900);
  color: #b9cdd9;
  padding: 44px 0 30px;
  font-size: .95rem;
}
.site-footer .cols { display: grid; gap: 24px; }
@media (min-width: 720px) { .site-footer .cols { grid-template-columns: auto 1fr auto; align-items: center; } }
.site-footer a { color: #e4eef4; }
.site-footer .logo img { height: 36px; }
.site-footer .fine { margin-top: 22px; font-size: .82rem; color: #7d95a3; }

/* --- Detailseiten ----------------------------------------------------------------- */

.page-hero {
  position: relative;
  min-height: 46svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.page-hero picture, .page-hero img.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(9,43,62,.45), rgba(9,43,62,.75));
}
.page-hero .wrap { padding-top: 110px; padding-bottom: 34px; }
.page-hero h1 { margin: 0 0 .2em; font-size: clamp(1.7rem, 5.5vw, 2.7rem); text-shadow: 0 2px 14px rgba(0,0,0,.4); }

.amenities { columns: 2; gap: 26px; padding-left: 1.2em; margin: 18px 0; }
.amenities li { margin-bottom: .45em; break-inside: avoid; }
@media (max-width: 620px) { .amenities { columns: 1; } }

.two-col { display: grid; gap: 30px; margin-top: 26px; }
.two-col > * { min-width: 0; }
/* Auf den Wohnungsseiten sind die Zwischenueberschriften semantisch h2 - sie
   stehen direkt unter der h1 der Seite, ein h3 waere eine uebersprungene
   Ebene. Optisch sollen sie die kompakte h3-Groesse behalten. .two-col gibt
   es nur auf wohnung-a.html und wohnung-f.html. */
.two-col h2 { font-size: 1.15rem; margin: 0 0 .35em; }
@media (min-width: 860px) { .two-col { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); align-items: start; } }
.sticky-side { position: sticky; top: 84px; }

.plan-link { display: inline-block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); cursor: zoom-in; }

.impressum-body h2 { margin-top: 1.4em; }
.impressum-body { padding-top: 110px; }
