/* =========================================================
   VINUM LIVING · An der Lage — Modernes Design-System
   Editorial / architektonisch: warmes Bone, viel Weißraum,
   ruhige große Typo, Haarlinien, eine botanische Akzentfarbe
   (Rebgrün) + dezentes Bordeaux. Signatur: feine Höhenlinien
   (Rebzeilen / Terroir) via contour-Motiv.
   Keine externen Fonts / kein CDN / keine Cookies.
   ========================================================= */

:root {
  --bg:      #f2efe8;   /* warmes Bone — Grundfläche            */
  --bg-2:    #eae4d8;   /* etwas tiefer                          */
  --ink:     #17150f;   /* warmes Fast-Schwarz — Text            */
  --ink-2:   #46423a;   /* Fließtext gedämpft                    */
  --muted:   #8b8578;   /* Captions                              */
  --line:    #d9d3c6;   /* Haarlinien                            */
  --green:   #3d4a30;   /* Rebgrün — Primärakzent                */
  --green-d: #2b3522;   /* dunkles Rebgrün                       */
  --wine:    #6d2b3a;   /* Bordeaux — sparsamer Akzent           */
  --sand:    #b0995f;   /* Messing/Gold — feine Linien, Kicker   */
  --white:   #ffffff;

  --font-sans: system-ui, "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: .004em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 10vw, 9rem); }
.section--bg2 { background: var(--bg-2); }

/* ---- Kicker (nummerierte Mikro-Labels) ---- */
.kicker {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  font-weight: 600; color: var(--green);
  display: inline-flex; align-items: center; gap: .7rem;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--sand); }
.kicker .num { color: var(--wine); font-variant-numeric: tabular-nums; }
.section--dark .kicker { color: #b9c6a4; }
.section--dark .kicker::before { background: var(--sand); }

/* ---- Headings ---- */
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 600; line-height: 1.06; letter-spacing: -.022em; }
.display { font-size: clamp(2.7rem, 8vw, 6rem); font-weight: 600; letter-spacing: -.035em; line-height: .98; }
.h-xl { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -.03em; }
.h-lg { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.4rem); line-height: 1.55; color: var(--ink-2); font-weight: 400; }
.muted { color: var(--muted); }
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

/* =========================================================
   HEADER — über Hero transparent, ab Scroll fest
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; line-height: 1; }
.brand .logomark { width: 30px; height: 30px; flex: none; }
.brand .name { font-weight: 600; font-size: 1.05rem; letter-spacing: .02em; }
.brand .name small { display: block; font-size: .56rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a { font-size: .86rem; font-weight: 500; letter-spacing: .02em; position: relative; padding-block: 4px; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--green); transition: width .28s ease; }
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]:not(.btn)::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; padding: .4rem; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---- Buttons & Links ---- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--green); color: #fff; font-weight: 600; font-size: .9rem; letter-spacing: .01em;
  padding: .85rem 1.5rem; border: 1px solid var(--green); border-radius: 2px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}
.btn:hover { background: var(--green-d); border-color: var(--green-d); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.nav .btn { padding: .6rem 1.2rem; }
.arrow { transition: transform .2s ease; }
.btn:hover .arrow, .txtlink:hover .arrow { transform: translateX(4px); }
.txtlink { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--green); border-bottom: 1px solid transparent; }
.section--dark .txtlink { color: #cdd8bc; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: clamp(8rem, 16vw, 12rem); padding-bottom: clamp(3.5rem, 8vw, 7rem); overflow: clip; }
.hero-contour { position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none; }
.hero-contour svg { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: min(70%, 780px); height: auto; }
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.hero-art { position: relative; }
.hero-art svg { width: 100%; max-width: 340px; height: auto; display: block; margin-inline: auto; filter: drop-shadow(0 18px 30px rgba(45,30,35,.1)); }
.hero .kicker { margin-bottom: 1.6rem; }
.hero .display { max-width: 15ch; }
.hero .display em { color: var(--green); font-style: normal; }
.hero-sub { margin-top: 1.8rem; max-width: 44ch; }
.hero-cta { margin-top: 2.4rem; display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: clamp(2.6rem, 6vw, 4.5rem); display: flex; gap: clamp(1.6rem, 4vw, 3.4rem); flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.hero-meta .m strong { display: block; font-size: 1.5rem; font-weight: 600; letter-spacing: -.02em; }
.hero-meta .m span { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* =========================================================
   SECTION HEAD (asymmetrisch)
   ========================================================= */
.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head .kicker { margin-bottom: 1.1rem; }
.sec-head p { color: var(--ink-2); max-width: 42ch; }
.section--dark .sec-head p { color: #c7c1b4; }

/* =========================================================
   APARTMENTS
   ========================================================= */
.apt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.apt-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.apt-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(23,21,15,.5); }
.apt-thumb { position: relative; aspect-ratio: 4/5; background: var(--bg-2); overflow: hidden; }
.apt-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.apt-card:hover .apt-thumb img { transform: scale(1.04); }
.apt-thumb .placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; background: linear-gradient(150deg, #e7e1d4, #ded7c8); }
.apt-tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: color-mix(in srgb, var(--ink) 78%, transparent); color: #fff; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; padding: .4rem .8rem; border-radius: 2px; backdrop-filter: blur(4px); }
.apt-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.apt-body h3 { font-size: 1.4rem; letter-spacing: -.02em; }
.apt-body .desc { color: var(--ink-2); font-size: .95rem; }
.apt-facts { display: flex; gap: 1.1rem; flex-wrap: wrap; font-size: .8rem; color: var(--ink-2); margin-top: .1rem; }
.apt-facts li { list-style: none; display: inline-flex; align-items: center; gap: .4rem; }
.apt-facts svg { width: 15px; height: 15px; color: var(--green); }
.apt-foot { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.apt-foot .price { font-size: .82rem; color: var(--muted); }
.apt-foot .price b { color: var(--ink); font-size: 1.05rem; }

/* =========================================================
   AMENITIES / HAUS-HIGHLIGHTS
   ========================================================= */
.amenity-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 2.4rem); }
.amenity { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.amenity svg { width: 26px; height: 26px; color: var(--green); stroke-width: 1.5; margin-bottom: .9rem; }
.section--dark .amenity { border-top-color: rgba(255,255,255,.18); }
.section--dark .amenity svg { color: #b9c6a4; }
.amenity h3 { font-size: 1.1rem; margin-bottom: .35rem; letter-spacing: -.01em; }
.amenity p { font-size: .9rem; color: var(--ink-2); }
.section--dark .amenity p { color: #bdb7aa; }

/* =========================================================
   DARK „DIE LAGE" SECTION
   ========================================================= */
.section--dark { background: var(--ink); color: #ece7dc; position: relative; overflow: clip; }
.section--dark .h-xl, .section--dark h2, .section--dark h3 { color: #f4f0e6; }
.dark-contour { position: absolute; inset: 0; z-index: 0; opacity: .22; pointer-events: none; }
.dark-contour svg { position: absolute; left: 0; bottom: -10%; width: 120%; height: auto; }
.section--dark .wrap { position: relative; z-index: 1; }
.lage { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.lage p + p { margin-top: 1.1rem; }
.lage .muted { color: #a9a293; }
.lage-figure { aspect-ratio: 4/5; border-radius: 3px; overflow: hidden; background: linear-gradient(160deg, #2f3a26, #222b1c); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.lage-figure .placeholder { color: rgba(255,255,255,.4); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; }
.lage-figure img { width: 100%; height: 100%; object-fit: cover; }
.pull { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.35; color: #f4f0e6; letter-spacing: 0; }

/* =========================================================
   REGION / WEINSTRASSE
   ========================================================= */
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 1.6vw, 1.2rem); }
.region-card { position: relative; border-radius: 3px; overflow: hidden; aspect-ratio: 3/4; border: 1px solid var(--line); display: block; }
.region-card .ph { position: absolute; inset: 0; background: linear-gradient(160deg, #46543a, #2f3a26 65%, #232c1b); display: flex; align-items: center; justify-content: center; }
.region-card .ph span { color: rgba(255,255,255,.4); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.region-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.region-card:hover img { transform: scale(1.05); }
.region-card figcaption { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.5rem 1.2rem 1.2rem; background: linear-gradient(transparent, rgba(15,14,10,.9)); color: #fff; }
.region-card figcaption b { display: block; font-size: 1.05rem; letter-spacing: -.01em; font-weight: 600; }
.region-card figcaption small { font-size: .78rem; color: rgba(255,255,255,.72); }

/* =========================================================
   PROMISE
   ========================================================= */
.promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.promise .item { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.promise .item h3 { font-size: 1.15rem; margin-bottom: .5rem; display: flex; align-items: center; gap: .6rem; letter-spacing: -.01em; }
.promise .item h3 svg { width: 20px; height: 20px; color: var(--sand); stroke-width: 1.6; }
.promise .item p { font-size: .95rem; color: var(--ink-2); }

/* =========================================================
   BOOKING CTA BAND
   ========================================================= */
.cta-band { text-align: center; }
.cta-band .h-xl { max-width: 18ch; margin: .6rem auto 1rem; }
.cta-band p { color: var(--ink-2); max-width: 52ch; margin: 0 auto 1.8rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink); color: #b7b2a6; padding-block: clamp(3rem, 6vw, 5rem); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.4rem; }
.foot-brand .name { font-weight: 600; font-size: 1.35rem; color: var(--bg); letter-spacing: .01em; }
.foot-brand p { margin-top: .9rem; font-size: .92rem; max-width: 36ch; }
.foot-col h4 { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: #7d786c; margin-bottom: 1.1rem; }
.foot-col a, .foot-col p { display: block; font-size: .93rem; color: #b7b2a6; margin-bottom: .6rem; }
.foot-col a:hover { color: #fff; }
.foot-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: #7d786c; }

/* =========================================================
   DETAIL / THEMENSEITEN (Basis; Feindesign je Seite inline)
   ========================================================= */
.detail-hero { padding-top: clamp(7rem, 12vw, 9rem); }
.crumbs { font-size: .8rem; color: var(--muted); display: flex; gap: .5rem; align-items: center; margin-bottom: 1.6rem; }
.crumbs a:hover { color: var(--green); }
.facts-row { display: flex; gap: clamp(1.6rem, 4vw, 3rem); flex-wrap: wrap; padding: 1.6rem 0; border-block: 1px solid var(--line); margin: 2rem 0; }
.fact { display: flex; flex-direction: column; }
.fact b { font-size: 1.6rem; font-weight: 600; letter-spacing: -.02em; }
.fact span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }
.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 1.6rem; margin-top: 1.2rem; }
.amenities li { list-style: none; display: flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--ink-2); }
.amenities svg { width: 17px; height: 17px; color: var(--green); flex: none; }
.book-wide { max-width: 860px; margin-inline: auto; }
.book-head { text-align: center; margin-bottom: 1.8rem; }
.book-head .note { color: var(--muted); max-width: 54ch; margin: .8rem auto 0; }
.book-widget { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: clamp(1rem, 3vw, 1.8rem); }

/* =========================================================
   KARUSSELL + LIGHTBOX
   ========================================================= */
.carousel { position: absolute; inset: 0; overflow: hidden; }
.carousel-track { display: flex; height: 100%; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.carousel-track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; display: block; background: var(--bg-2); }
.carousel .cbtn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; line-height: 1; box-shadow: 0 2px 12px rgba(0,0,0,.22); user-select: none; opacity: 0; transition: opacity .2s ease, background .15s ease; }
.carousel:hover .cbtn, .carousel:focus-within .cbtn { opacity: 1; }
.carousel .cbtn:hover { background: #fff; }
.cprev { left: 12px; } .cnext { right: 12px; }
.apt-thumb .cbtn { width: 34px; height: 34px; font-size: 1.3rem; }
@media (hover: none) { .carousel .cbtn { opacity: 1; background: rgba(255,255,255,.85); } }
.carousel-counter { position: absolute; bottom: 14px; right: 16px; z-index: 3; background: rgba(20,18,14,.62); color: #fff; font-size: .78rem; letter-spacing: .04em; padding: .25rem .75rem; border-radius: 20px; }
.carousel-hint { position: absolute; bottom: 14px; left: 16px; z-index: 3; background: rgba(20,18,14,.55); color: #fff; font-size: .72rem; letter-spacing: .04em; padding: .25rem .75rem; border-radius: 20px; opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.gallery-carousel:hover .carousel-hint { opacity: 1; }
.gallery-carousel { position: relative; inset: auto; aspect-ratio: 16/10; border-radius: 4px; margin-top: 2rem; background: var(--bg-2); }
.gallery-carousel .carousel-track img { cursor: zoom-in; }
.apt-tag { z-index: 4; }
.lb { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; background: rgba(18,16,12,.94); }
.lb.open { display: flex; }
.lb-stage { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; }
.lb-stage img { max-width: 92vw; max-height: 88vh; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb button { position: absolute; background: rgba(255,255,255,.14); color: #fff; border: none; border-radius: 50%; width: 48px; height: 48px; font-size: 1.7rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.lb button:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 18px; right: 18px; } .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); } .lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: .85rem; letter-spacing: .06em; background: rgba(0,0,0,.35); padding: .3rem .8rem; border-radius: 20px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 240px; margin: 0 0 .5rem; }
  .apt-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-row { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .promise { grid-template-columns: 1fr; }
  .lage { grid-template-columns: 1fr; }
  .lage-figure { max-width: 420px; }
  .sec-head { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 1.2rem; background: var(--bg); padding: 1.6rem var(--gutter); border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; }
  .site-header .bar { height: 76px; }
}
@media (max-width: 560px) {
  .apt-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.4rem; }
}
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 2.5px solid var(--green); outline-offset: 3px; border-radius: 2px; }
.section--dark a:focus-visible { outline-color: var(--sand); }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

/* =========================================================
   HERO mit Foto-Hintergrund (Pool / Weinberg)
   ========================================================= */
.hero--photo {
  background: #26301f url("img/hero/pool-hero.webp") center 38%/cover no-repeat;
  min-height: min(92vh, 820px);
  display: flex; align-items: center;
}
.hero--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(100deg,
      rgba(242,239,232,.98) 0%,
      rgba(242,239,232,.95) 38%,
      rgba(242,239,232,.80) 54%,
      rgba(242,239,232,.38) 71%,
      rgba(242,239,232,.06) 90%,
      rgba(242,239,232,0) 100%),
    linear-gradient(0deg, rgba(38,48,31,.18), rgba(38,48,31,0) 30%);
}
.hero--photo .wrap { position: relative; z-index: 1; display: block; }
.hero--photo .hero-copy { max-width: 42ch; }
@media (max-width: 760px) {
  .hero--photo {
    background-position: center 30%;
    min-height: 0;
  }
  .hero--photo::before {
    background:
      linear-gradient(178deg,
        rgba(242,239,232,.96) 0%,
        rgba(242,239,232,.90) 46%,
        rgba(242,239,232,.66) 74%,
        rgba(242,239,232,.30) 100%);
  }
}

/* Amenity-Fotos (Haus-Highlights) */
.amenity-photo { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:3px; margin-bottom:1.1rem; display:block; }
.amenity { border-top:none; padding-top:0; }
.section--dark .amenity { border-top:none; }

/* Hero-Foto: Inhalt oben ausrichten + Kennzahl-Labels lesbarer */
.hero--photo { align-items: flex-start; }
.hero--photo .hero-meta span { color: #6b6456; }
.hero--photo .hero-meta { border-top-color: rgba(23,21,15,.22); }
.hero--photo .hero-copy { text-shadow: 0 1px 0 rgba(246,243,236,.5); }

/* Smoobu-Platzhalter (bis Widget eingebettet wird) */
.smoobu-slot { min-height: 280px; border: 1.5px dashed var(--green); border-radius: 4px; background: color-mix(in srgb, var(--green) 5%, transparent); display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.smoobu-slot .inner { max-width: 34ch; }
.smoobu-slot .inner strong { display: block; color: var(--green); margin-bottom: .5rem; font-size: 1.1rem; }
.smoobu-slot .inner span { font-size: .9rem; color: var(--ink-2); }
