/* ============================================================
   Design Apartments — Stylesheet
   Stilistik: Unbounded + Türkis-Akzent, heller "smarter Minimalismus"
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f4;
  --ink: #161616;
  --ink-2: #5b5b5b;
  --line: #e6e6e3;
  --accent: #2f9c95;
  --accent-dark: #267d77;
  --accent-soft: #72bcb7;
  --accent-tint: #e7f3f2;
  --accent-ink: #ffffff;
  --ok: #2f9c95;
  --err: #c0392b;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(20,20,20,.06);
  --shadow: 0 10px 30px rgba(20,20,20,.10);
  --shadow-lg: 0 24px 60px rgba(20,20,20,.18);

  --container: 1200px;
  --pad-x: clamp(16px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-text: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; line-height: 1.25; }
p { color: var(--ink-2); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section__head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--font-text);
  font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-dark); display: inline-block; margin-bottom: 14px;
}
.section__head p { margin-top: 16px; font-size: 1.075rem; }

/* ---------- Buttons (единый компонент) ---------- */
.btn {
  --btn-h: 50px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--btn-h); padding-inline: 26px;
  font-family: var(--font-text); font-weight: 600; font-size: .975rem; line-height: 1;
  border: 1.5px solid transparent; border-radius: var(--r-sm);
  background: none; color: var(--ink); white-space: nowrap;
  transition: transform .15s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-dark); box-shadow: var(--shadow); }
.btn--secondary { border-color: var(--ink); color: var(--ink); }
.btn--secondary:hover { background: var(--ink); color: #fff; }
.btn--ghost { color: var(--ink); padding-inline: 12px; }
.btn--ghost:hover { color: var(--accent-dark); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn--sm { --btn-h: 40px; padding-inline: 18px; font-size: .9rem; }
.btn--lg { --btn-h: 58px; padding-inline: 34px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -.02em; word-spacing: -.08em; display: flex; align-items: center; gap: 8px; }
.brand__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); display: block; flex: none; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 500; font-size: .95rem; color: var(--ink-2); transition: color .2s; }
.nav a:hover { color: var(--ink); }
.header__cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 92px) clamp(28px, 4vw, 44px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; }
.hero__title { margin-bottom: 22px; }
.hero__title em { font-style: normal; color: var(--accent-dark); }
.hero__lead { font-size: 1.15rem; max-width: 46ch; margin-bottom: 28px; }
.hero__stats { display: flex; gap: 36px; margin-top: 38px; flex-wrap: wrap; }
.hero__stat .n { font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; }
.hero__stat .l { font-size: .9rem; color: var(--ink-2); }
.hero__media { position: relative; display: flex; flex-direction: column; }
.hero__media img { width: 100%; flex: 1 1 auto; min-height: 360px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero__badge {
  margin-top: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 18px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 12px;
}
.hero__badge .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; flex: none; }
.hero__badge b { font-family: var(--font-display); font-size: .95rem; }
.hero__badge span { font-size: .8rem; color: var(--ink-2); display: block; }

/* ---------- Search / Booking bar ---------- */
.searchbar { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: 14px; }
.searchbar__row { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 10px; align-items: end; }
.searchbar .field { margin: 0; }
.searchbar .btn { height: 56px; }
.hero .searchbar { margin-top: 34px; }

/* ---------- Fields ---------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field > label { font-size: .82rem; font-weight: 600; color: var(--ink-2); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .975rem; color: var(--ink);
  height: 50px; padding: 0 14px; width: 100%;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.field textarea { height: auto; padding: 12px 14px; min-height: 96px; resize: vertical; line-height: 1.5; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235b5b5b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.field--invalid input, .field--invalid select, .field--invalid textarea { border-color: var(--err); }
.field__error { font-size: .8rem; color: var(--err); min-height: 0; display: none; }
.field--invalid .field__error { display: block; }

/* ---------- Cards / Catalog ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__price { position: absolute; right: 12px; bottom: 12px; background: rgba(255,255,255,.94); border-radius: 999px; padding: 7px 14px; font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-sm); }
.card__price b { font-family: var(--font-display); }
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__city { display: flex; align-items: center; gap: 7px; color: var(--accent-dark); font-weight: 600; font-size: .85rem; letter-spacing: .03em; text-transform: uppercase; }
.card__title { font-size: 1.2rem; }
.card__meta { display: flex; gap: 16px; color: var(--ink-2); font-size: .92rem; flex-wrap: wrap; }
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__actions { display: flex; gap: 10px; margin-top: auto; padding-top: 6px; }
.card__actions .btn { flex: 1; }
.catalog__empty { text-align: center; padding: 48px 0; color: var(--ink-2); grid-column: 1 / -1; }
.catalog__empty svg { width: 48px; height: 48px; color: var(--accent-soft); margin: 0 auto 14px; }

/* ---------- Amenities ---------- */
.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.amenity { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.amenity .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; }
.amenity .ic svg { width: 24px; height: 24px; }
.amenity b { font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; }
.amenity span { font-size: .9rem; color: var(--ink-2); }

/* ---------- Vorteile (Split features) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.feature + .feature { margin-top: clamp(40px, 6vw, 80px); }
.feature--rev .feature__media { order: 2; }
.feature__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.feature__list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.feature__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.feature__list .ic { color: var(--accent-dark); flex: none; margin-top: 2px; }

/* ---------- Entwicklungsplan (Timeline) ---------- */
.plan { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.plan__col { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 18px; text-align: center; }
.plan__year { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.plan__bar { height: 110px; display: flex; align-items: flex-end; justify-content: center; margin: 16px 0 12px; }
.plan__bar i { display: block; width: 36px; background: linear-gradient(var(--accent-soft), var(--accent)); border-radius: 8px 8px 0 0; }
.plan__n { font-weight: 600; }
.plan__n span { display: block; font-size: .8rem; color: var(--ink-2); font-weight: 400; }
.plan__cities { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { background: var(--accent-tint); color: var(--accent-dark); border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: clamp(36px, 6vw, 64px); text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.72); margin: 16px auto 28px; max-width: 52ch; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 72px) 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { font-family: var(--font-display); font-weight: 500; font-size: .95rem; margin-bottom: 16px; }
.footer a, .footer p { color: var(--ink-2); font-size: .92rem; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--accent-dark); }
.footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--ink-2); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(16,16,16,.62); animation: fade .25s var(--ease); }
.modal__dialog {
  position: relative; z-index: 1; background: #fff; border-radius: var(--r-lg);
  width: min(960px, calc(100vw - 32px)); max-height: calc(100vh - 48px); overflow: auto;
  margin: 24px auto; box-shadow: var(--shadow-lg); animation: fade .25s var(--ease);
}
.modal__dialog--sm { width: min(480px, calc(100vw - 32px)); }
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.9); border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.modal__close svg { width: 20px; height: 20px; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } }

/* Apartment detail modal */
.detail__gallery { position: relative; }
.detail__main { aspect-ratio: 16/10; }
.detail__main img { width: 100%; height: 100%; object-fit: cover; }
.detail__thumbs { display: flex; gap: 8px; padding: 10px; flex-wrap: wrap; }
.detail__thumbs button { width: 84px; height: 60px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; padding: 0; }
.detail__thumbs button.is-active { border-color: var(--accent); }
.detail__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.detail__body { padding: 24px clamp(20px, 4vw, 36px) 32px; }
.detail__city { color: var(--accent-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; }
.detail__title { margin: 6px 0 14px; }
.detail__meta { display: flex; gap: 22px; flex-wrap: wrap; color: var(--ink-2); margin-bottom: 18px; }
.detail__meta span { display: inline-flex; gap: 7px; align-items: center; }
.detail__price { font-family: var(--font-display); font-size: 1.5rem; }
.detail__price small { font-family: var(--font-text); font-size: .9rem; color: var(--ink-2); font-weight: 400; }
.detail__amen { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; margin: 18px 0 26px; }
.detail__amen li { display: flex; gap: 9px; align-items: center; font-size: .95rem; }
.detail__amen .ic { color: var(--accent-dark); flex: none; }
.detail__foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 20px; }

/* Booking form modal */
.book__head { padding: 28px clamp(20px,4vw,36px) 0; }
.book__sub { color: var(--ink-2); margin-top: 6px; }
.book__form { padding: 22px clamp(20px,4vw,36px) 32px; }
.book__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.book__summary { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; margin: 6px 0 22px; }
.book__summary .line { display: flex; justify-content: space-between; font-size: .95rem; padding: 4px 0; color: var(--ink-2); }
.book__summary .total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.book__summary .total b { font-family: var(--font-display); }

/* Success modal */
.success { text-align: center; padding: 44px clamp(20px,4vw,36px); }
.success__ic { width: 76px; height: 76px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; margin: 0 auto 22px; animation: pop .4s var(--ease); }
.success__ic svg { width: 38px; height: 38px; }
.success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.success__ref { display: inline-block; margin: 16px 0 22px; background: var(--bg-soft); border: 1px dashed var(--line); border-radius: var(--r-sm); padding: 10px 18px; font-family: var(--font-display); }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); z-index: 200; background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease); font-size: .95rem; }
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .plan { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; display: block; }
  .hero__media img { aspect-ratio: 4/3.2; flex: none; min-height: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav, .header__cta .btn--secondary { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px var(--pad-x) 16px; box-shadow: var(--shadow); }
  .nav.is-open a { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .searchbar__row { grid-template-columns: 1fr 1fr; }
  .searchbar__row .field--span,
  .searchbar__row .btn { grid-column: 1 / -1; }
  .feature, .feature--rev .feature__media { grid-template-columns: 1fr; order: 0; }
  .feature__media { order: -1; }
  .book__row { grid-template-columns: 1fr; }
  .detail__amen { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  /* Badge nicht über das Bild legen — als eigener Block darunter */
  .hero__badge { position: static; left: auto; bottom: auto; margin: 14px 0 0; max-width: none; width: fit-content; }
}
@media (max-width: 520px) {
  .cards, .amenities, .plan, .footer__grid { grid-template-columns: 1fr; }
  .searchbar__row { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Erweiterungen: Logo-Puls, Filterleiste, Kalender, Effekte
   ============================================================ */

/* Logo-Punkt: sanftes Pulsieren ("online") */
.brand__dot { position: relative; animation: dotBreathe 2.6s ease-in-out infinite; }
.brand__dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(47, 156, 149, .55); animation: dotPulse 2.6s ease-out infinite;
}
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(47,156,149,.55); } 70% { box-shadow: 0 0 0 9px rgba(47,156,149,0); } 100% { box-shadow: 0 0 0 0 rgba(47,156,149,0); } }
@keyframes dotBreathe { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

/* Maus-Effekte: weiche Übergänge */
.hero__media img { transition: transform .4s var(--ease); will-change: transform; }
.card { will-change: transform; }

/* Reveal-Stagger nutzt inline transition-delay (per JS/Template) */

/* ---------- Filterleiste im Katalog ---------- */
.filterbar-wrap { margin-bottom: 30px; }
.filterbar {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr auto auto; gap: 10px; align-items: end;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 14px; box-shadow: var(--shadow-sm);
}
.filterbar .field { margin: 0; }
.filterbar .field > label { font-size: .74rem; }
.filterbar .field input, .filterbar .field select { height: 46px; }
.filterbar .btn { height: 46px; }
@media (max-width: 860px) {
  .filterbar { grid-template-columns: 1fr 1fr; }
  .filterbar .btn { grid-column: auto; }
}
@media (max-width: 520px) { .filterbar { grid-template-columns: 1fr; } }

/* ---------- Verfügbarkeitskalender ---------- */
.cal { border: 1px solid var(--line); border-radius: var(--r); padding: 16px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal__title { font-family: var(--font-display); font-weight: 500; font-size: 1rem; text-transform: capitalize; }
.cal__nav { display: flex; gap: 8px; }
.cal__nav button { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; transition: background .2s, border-color .2s; }
.cal__nav button:not([disabled]):hover { border-color: var(--accent); color: var(--accent-dark); }
.cal__nav button[disabled] { opacity: .35; pointer-events: none; }
.cal__nav svg { width: 18px; height: 18px; }
.cal__dows, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dows span { text-align: center; font-size: .72rem; color: var(--ink-2); padding: 4px 0; font-weight: 600; }
.cal__day { aspect-ratio: 1; border: 0; background: var(--bg-soft); border-radius: 8px; font: inherit; font-size: .92rem; color: var(--ink); display: grid; place-items: center; position: relative; transition: background .15s, color .15s; }
.cal__day--empty { background: transparent; pointer-events: none; }
.cal__day:not([disabled]):hover { background: var(--accent-tint); }
.cal__day[disabled] { color: #c4c4c4; background: #fafafa; cursor: not-allowed; }
.cal__day--booked { color: var(--ink-2); }
.cal__day--booked::after { content: ""; position: absolute; left: 22%; right: 22%; height: 2px; background: var(--err); opacity: .55; transform: rotate(-14deg); }
.cal__day--inrange { background: var(--accent-tint); border-radius: 4px; }
.cal__day--start, .cal__day--end { background: var(--accent) !important; color: #fff; }
.cal__legend { display: flex; gap: 18px; margin-top: 14px; font-size: .78rem; color: var(--ink-2); flex-wrap: wrap; }
.cal__legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal__legend i { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.cal__legend i.free { background: var(--bg-soft); border: 1px solid var(--line); }
.cal__legend i.busy { background: #fafafa; border: 1px solid var(--line); position: relative; }
.cal__legend i.busy::after { content: ""; position: absolute; left: 2px; right: 2px; top: 5px; height: 2px; background: var(--err); opacity: .55; transform: rotate(-14deg); }
.cal__legend i.sel { background: var(--accent); }

.cal-summary { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; }
.cal-summary__info { font-size: .95rem; }
.cal-summary__info b { font-family: var(--font-display); }
.cal-summary__hint { color: var(--ink-2); font-size: .92rem; }
.detail__cal-wrap { margin: 26px 0 4px; }
.detail__cal-wrap h4 { font-family: var(--font-display); font-weight: 500; margin-bottom: 12px; }

/* ---------- Klickbarer Rating-Button ---------- */
.rating-btn { border: 0; background: none; padding: 0; font: inherit; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 6px; cursor: pointer; border-radius: 6px; transition: color .15s; }
.rating-btn:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.rating-btn .cnt { color: var(--ink-2); font-size: .85em; }
.detail__meta .rating-btn { font-size: 1rem; }

/* ---------- Bewertungen-Modal ---------- */
.reviews { padding: 28px clamp(20px, 4vw, 32px) 32px; }
.reviews__head { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.reviews__score { font-family: var(--font-display); font-weight: 600; font-size: 2.2rem; line-height: 1; display: flex; align-items: baseline; gap: 6px; }
.reviews__score span { color: var(--accent); font-size: 1.4rem; }
.reviews__head b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.reviews__head .sub { color: var(--ink-2); font-size: .9rem; }
.reviews__list { display: flex; flex-direction: column; }
.review { padding: 18px 0; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: 0; }
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review__ava { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; font-weight: 600; font-size: .9rem; flex: none; }
.review__who b { font-family: var(--font-text); font-weight: 600; font-size: .98rem; display: block; }
.review__date { color: var(--ink-2); font-size: .82rem; }
.review__stars { margin-left: auto; color: var(--accent); letter-spacing: 1px; font-size: .95rem; flex: none; }
.review__stars .off { color: var(--line); }
.review p { color: var(--ink); font-size: .95rem; line-height: 1.55; }

/* ---------- Gästestimmen-Sektion ---------- */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.voice__stars { color: var(--accent); letter-spacing: 1px; font-size: .95rem; }
.voice__stars .off { color: var(--line); }
.voice__text { color: var(--ink); font-size: .96rem; line-height: 1.55; flex: 1; }
.voice__foot { display: flex; align-items: center; gap: 10px; }
.voice__ava { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; font-weight: 600; font-size: .85rem; flex: none; }
.voice__who b { display: block; font-weight: 600; font-size: .92rem; }
.voice__who span { color: var(--ink-2); font-size: .8rem; }
.voice__badge { margin-left: auto; align-self: flex-start; background: #fff7e0; color: #927400; border: 1px solid #f0e2a8; border-radius: 999px; padding: 4px 10px; font-size: .72rem; font-weight: 600; white-space: nowrap; }

.voice-form-card { margin-top: 40px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.voice-form-card__intro h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; margin-bottom: 10px; }
.voice-form-card__intro p { font-size: .95rem; }
.voice-form .btn { margin-top: 6px; }

.star-input { display: inline-flex; gap: 4px; padding: 2px 0; }
.star-input .star { font-size: 1.9rem; line-height: 1; color: var(--line); background: none; border: 0; padding: 0 2px; cursor: pointer; transition: color .12s, transform .12s; }
.star-input .star.on { color: var(--accent); }
.star-input .star:hover { transform: scale(1.18); }

/* ---------- Promo-Band: direkt buchen & 10% sparen ---------- */
.promo-sec { padding-block: clamp(8px, 1.5vw, 16px) clamp(36px, 5vw, 60px); }
.promo__inner {
  background: var(--accent); color: #fff; border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 34px) clamp(24px, 4vw, 40px);
  display: flex; align-items: center; gap: clamp(18px, 3vw, 30px); flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.promo__badge { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; line-height: 1; background: rgba(255,255,255,.16); border: 1.5px solid rgba(255,255,255,.55); border-radius: 14px; padding: 12px 18px; flex: none; }
.promo__text { flex: 1; min-width: 220px; }
.promo__text b { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2.2vw, 1.4rem); display: block; margin-bottom: 4px; }
.promo__text span { color: rgba(255,255,255,.88); }
.promo__inner .btn--light { flex: none; }
/* Eigener Hover im Promo-Band: Button bleibt sichtbar (kein Türkis) */
.promo__inner .btn--light:hover { background: var(--ink); color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.22); }

/* ---------- Vollbreite Bild ---------- */
.fullbleed { width: 100%; }
.fullbleed img { width: 100%; height: clamp(240px, 34vw, 480px); object-fit: cover; display: block; }

@media (max-width: 900px) { .voice-form-card { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .voices { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .voices { grid-template-columns: 1fr; } }
