/* =========================================================
   TOKENS & BASE
   ========================================================= */
   :root{
    --c-bg-top:  #f6fbff;    /* sehr hell (oben) */
    --c-bg-mid:  #e9f3f7;    /* sanftes Hellblau */
    --c-bg-deep: #0e2b32;    /* dunkles Blaugrün (Footer-Zone) */
    --c-card:    #123741;    /* Kachel-Hintergrund (dunkel) */
    --c-card-2:  #0f2e36;    /* zweite Card-Variante */
    --c-text:    #0b1e25;    /* Standard Text auf hell */
    --c-text-on: #ffffff;    /* Text auf dunkel */
    --c-muted:   #9ab0b8;
    --c-accent:  #3ec9ff;
  
    --radius-xl: 22px;
    --radius-md: 12px;
    --radius-sm: 8px;
  
    --shadow:    0 12px 36px rgba(0,0,0,.22);
    --shadow-md: 0 10px 28px rgba(0,0,0,.18);
    --shadow-sm: 0 6px 18px  rgba(0,0,0,.14);
  }
  
  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    color:var(--c-text);
    font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  
    /* WICHTIG: weicher Verlauf ohne harte Bänder */
    background:
      linear-gradient(
        180deg,
        var(--c-bg-top) 0%,
        var(--c-bg-mid) 60%,
        #dfeef4 85%,
        #dbeaf0 92%,
        var(--c-bg-mid) 100%
      );
  
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }
  
  /* Inhalte bewusst vom Body-Verlauf entkoppeln */
  main, .surface{
    background: linear-gradient(180deg,#ffffff 0%, #f7fbfe 40%, #f2f8fb 100%);
  }
  
  /* Links */
  a{color:inherit;text-underline-offset:2px}
  a:hover{text-decoration:none;opacity:.9}
  a.on-dark{color:#eaf7ff}
  
  /* Utilities */
  .container{max-width:1200px;margin:0 auto;padding:20px}
  .surface{padding-top:24px;padding-bottom:40px}
  .section{margin-top:24px}
  .on-dark{color:var(--c-text-on)}
  .muted{color:var(--c-muted)}
  .nowrap{white-space:nowrap}
  .hidden{display:none !important}
  
  /* Typo blocks */
  .prose p{margin:.6rem 0}
  .prose ul{margin:.4rem 0 .8rem 1.1rem}
  .prose h2,.prose h3{margin:1.1rem 0 .4rem}
  
  /* =========================================================
     HEADER / NAV
     ========================================================= */
  .site-header{
    position:sticky;top:0;z-index:50;
    background:linear-gradient(180deg,rgba(14,43,50,.95),rgba(14,43,50,.78));
    backdrop-filter:saturate(140%) blur(8px);
    color:#fff;
  }
  .site-header .container{
    display:flex;align-items:center;gap:18px;
    padding-top:12px;padding-bottom:12px; /* etwas mehr Luft fürs größere Logo */
  }
  .brand{display:inline-flex;align-items:center;gap:10px}
  
  /* >>> Logo-Größen gezielt steuern */
  .site-header .brand img{height:52px;display:block}  /* doppelt so groß wie vorher (26px) */
  .site-footer .brand img{height:26px;display:block}  /* Größe wie früherer Header */
  /* optional kleiner auf sehr kleinen Screens */
  @media (max-width:520px){
    .site-header .brand img{height:42px}
  }
  
  .nav{display:flex;gap:16px;margin-left:auto}
  .nav a{
    color:#eaf7ff;text-decoration:none;padding:6px 10px;border-radius:8px;
  }
  .nav a:hover,.nav a[aria-current="page"]{
    background:rgba(255,255,255,.12)
  }
  
  /* =========================================================
     BUTTONS / CHIPS
     ========================================================= */
  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
    padding:.6rem .9rem;border-radius:10px;border:1px solid transparent;
    text-decoration:none;font-weight:600;cursor:pointer;
  }
  .btn-primary{
    background:#1b889e;color:#fff;border-color:#167082;
    box-shadow:0 8px 22px rgba(27,136,158,.25);
  }
  .btn-outline{
    background:transparent;border-color:#2a5661;color:#2a5661;
  }
  .chip{
    display:inline-block;background:rgba(255,255,255,.15);color:#fff;
    padding:.18rem .55rem;border-radius:999px;font-size:.85rem
  }
  
  /* =========================================================
     CARDS / PANELS
     ========================================================= */
  .card{
    background:var(--c-card);
    color:var(--c-text-on);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow);
  }
  .card--alt{background:var(--c-card-2)}
  .card-header{padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.08)}
  .card-body{padding:16px}
  
  /* Details/Extras Karten (rechte Spalte) */
  .details-card .row{display:flex;gap:8px;margin:6px 0}
  .details-card .key{color:#bcd0d6;min-width:110px}
  .details-card .val{color:#fff}
  
  /* =========================================================
     EXPOSE – HERO
     ========================================================= */
  .expose-hero{
    position:relative;border-radius:var(--radius-xl);overflow:hidden;
    margin:10px 0 24px;box-shadow:var(--shadow)
  }
  .expose-hero img{display:block;width:100%;height:360px;object-fit:cover}
  .expose-hero::after{
    content:"";position:absolute;inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.45) 100%);
  }
  .expose-head{position:absolute;left:0;right:0;bottom:0;padding:18px}
  .expose-head h1{margin:0;color:#fff;text-shadow:0 8px 26px rgba(0,0,0,.35)}
  .expose-meta{margin-top:6px}
  .badge{background:rgba(255,255,255,.15);color:#fff;padding:.18rem .5rem;border-radius:999px;font-size:.85rem}
  
  /* Grid für Content + Sidebar */
  .grid-2{display:grid;grid-template-columns:2fr 1fr;gap:24px}
  @media (max-width: 980px){ .grid-2{grid-template-columns:1fr} }
  
  /* =========================================================
     GALERIE
     ========================================================= */
  .gallery-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:10px}
  .gallery-grid a{display:block;border-radius:10px;overflow:hidden;box-shadow:var(--shadow-sm)}
  .gallery-grid img{width:100%;height:160px;object-fit:cover;display:block}
  @media (max-width: 1024px){ .gallery-grid{grid-template-columns:repeat(4,minmax(0,1fr))} }
  @media (max-width: 720px){
    .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .expose-hero img{height:280px}
  }
  
  /* =========================================================
     LIGHTBOX – garantiert aus, bis .open gesetzt wird
     ========================================================= */
  #lightbox,
  .lightbox{
    position:fixed !important;
    inset:0 !important;
    background:rgba(0,0,0,.92) !important;
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    align-items:center !important;
    justify-content:center !important;
    z-index:1000 !important;
    transition:opacity .18s ease;
  }
  #lightbox.open,
  .lightbox.open{
    display:flex !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }
  #lightbox img,
  .lightbox img{
    max-width:92vw;max-height:88vh;border-radius:10px;
    box-shadow:0 18px 60px rgba(0,0,0,.55)
  }
  #lightbox .close,#lightbox .prev,#lightbox .next,
  .lightbox .close,.lightbox .prev,.lightbox .next{
    position:absolute;border:0;background:rgba(255,255,255,.14);
    color:#fff;width:46px;height:46px;border-radius:999px;
    display:flex;align-items:center;justify-content:center;cursor:pointer;
    font-size:28px;backdrop-filter:saturate(140%) blur(2px)
  }
  #lightbox .close,.lightbox .close{top:18px;right:18px}
  #lightbox .prev,.lightbox .prev{left:18px}
  #lightbox .next,.lightbox .next{right:18px}
  
  /* =========================================================
     LISTING – Kartenübersicht (apartments)
     ========================================================= */
  .listing{
    display:grid;gap:20px;
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  @media (max-width: 1200px){ .listing{grid-template-columns:repeat(2,minmax(0,1fr))} }
  @media (max-width: 760px){ .listing{grid-template-columns:1fr} }
  
  .apartment-card{
    background:var(--c-card);color:#fff;border-radius:18px;overflow:hidden;
    box-shadow:var(--shadow);display:flex;flex-direction:column
  }
  .apartment-card .thumb{display:block;height:220px;object-fit:cover;width:100%}
  .apartment-card .body{padding:14px 16px}
  .apartment-card .title{margin:0 0 6px 0;color:#fff}
  .apartment-card .meta{color:#cfe0e6;font-size:.95rem}
  
  /* =========================================================
     FOOTER
     ========================================================= */
  .site-footer{
    color:#e6f3f6;
    background:linear-gradient(180deg,rgba(5,24,28,.80),rgba(5,24,28,.92));
  }
  .site-footer .container{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
  @media (max-width: 920px){ .site-footer .container{grid-template-columns:1fr 1fr} }
  @media (max-width: 560px){ .site-footer .container{grid-template-columns:1fr} }
  
  /* =========================================================
     KLEINE HELFER
     ========================================================= */
  hr.sep{border:0;border-top:1px solid rgba(255,255,255,.12);margin:12px 0}
  .mt-0{margin-top:0}.mt-6{margin-top:6px}.mt-12{margin-top:12px}.mt-18{margin-top:18px}
  .mb-0{margin-bottom:0}.mb-6{margin-bottom:6px}.mb-12{margin-bottom:12px}
  .px-0{padding-left:0;padding-right:0}.py-12{padding-top:12px;padding-bottom:12px}
  
  /* Weicher Content-Verlauf mit subtilen Lichthöfen */
  main, .site-main, .content, .surface, .page-band{
    background:
      radial-gradient(900px 360px at 12% -120px, rgba(62,201,255,.16), transparent 60%),
      radial-gradient(900px 360px at 88% -140px, rgba(62,201,255,.12), transparent 65%),
      linear-gradient(180deg,#ffffff 0%, #f7fbfe 55%, #eef7fb 100%);
  }
  
  /* ---------- Page background fade (Demo-Look) ---------- */
  .bg-fade {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #f5fafb 55%,
      #e9f2f4 100%
    );
  }
  
  /* ---------- Layout helpers ---------- */
  .container { max-width: 1160px; margin-inline: auto; padding-inline: 20px; }
  .section { padding: 28px 0; }
  .stack-lg > * + * { margin-top: 28px; }
  
  /* ---------- Hero ---------- */
  .hero-wrap { padding-top: 20px; }
  .hero-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
  }
  .hero-img { display: block; width: 100%; height: auto; }
  .hero-overlay {
    position: absolute; inset: auto 0 0 0;
    padding: 18px 22px 22px;
    background: linear-gradient(180deg, rgba(6,28,35,0) 0%, rgba(6,28,35,.72) 85%, rgba(6,28,35,.85) 100%);
  }
  .hero-title {
    color: #fff; font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; letter-spacing: .02em;
    margin: 0;
  }
  
  /* ---------- Info + Details Grid ---------- */
  .info-grid {
    display: grid;
    grid-template-columns: 1.6fr .9fr;
    gap: 28px;
  }
  @media (max-width: 900px){
    .info-grid { grid-template-columns: 1fr; }
  }
  
  .details-card {
    background: #18343c;
    color: #eaf6f8;
    border-radius: 14px;
    padding: 18px 18px 14px;
    box-shadow: 0 8px 26px rgba(0,0,0,.18);
  }
  .details-card h3 { color: #eaf6f8; margin: 4px 0 8px; }
  .details-card ul { list-style: disc; margin: 0 0 10px 18px; padding: 0; }
  .details-card li { margin: 6px 0; }
  .details-card a { color: #bfe8ff; text-decoration: underline; }
  
  .muted { color: #6a7e86; font-weight: 600; letter-spacing: .02em; }
  .mt-sm { margin-top: 10px; }
  .mt-lg { margin-top: 22px; }
  
  /* ---------- Galerie ---------- */
  .gallery-section h3 { margin-bottom: 12px; }
  .thumbs { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .thumb { display: block; border-radius: 10px; overflow: hidden; }
  .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  
  /* ====== Compat für apartment.php (Details-Liste & Card) ====== */
  .card { /* falls irgendwo noch nicht definiert */
    background: var(--c-card);
    color: var(--c-text-on);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }
  
  .card--details { /* wie deine .details-card, nur Alias */
    background: #18343c;
    color: #eaf6f8;
    border-radius: 14px;
    padding: 18px 18px 14px;
    box-shadow: 0 8px 26px rgba(0,0,0,.18);
  }
  
  .facts { list-style: none; margin: 0; padding: 0; }
  .facts li { margin: 6px 0; }
  .facts strong { color: #cfe8ea; font-weight: 700; }
  .divider { height:1px; background:rgba(255,255,255,.12); margin:16px 0; }
  
  /* 2-Spalten-Layout */
  .container.grid-2 { display:grid; grid-template-columns: 2fr 1fr; gap:24px; align-items:start; }
  @media (max-width:980px){ .container.grid-2 { grid-template-columns:1fr; } }
  
  /* Galerie-Raster */
  .gallery-grid { display:grid; gap:12px; grid-template-columns:repeat(auto-fill, minmax(180px, 1fr)); }
  .gallery-grid .thumb { display:block; border-radius:10px; overflow:hidden; box-shadow:0 6px 18px rgba(0,0,0,.14); }
  .gallery-grid img { width:100%; height:160px; object-fit:cover; display:block; }
  
  /* Hero oben (falls noch nicht) */
  .expose-hero { position:relative; border-radius:22px; overflow:hidden; margin:10px 0 24px; box-shadow:0 12px 36px rgba(0,0,0,.22); }
  .expose-hero img { display:block; width:100%; height:360px; object-fit:cover; }
  .expose-head { position:absolute; left:0; right:0; bottom:0; padding:18px; color:#fff;
    background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%); }
  
  /* Extras-Chips */
  .extras-list{display:flex;flex-wrap:wrap;gap:8px;margin:8px 0 0;padding:0;list-style:none}
  .extras-list li{background:rgba(255,255,255,.14);color:#eaf6f8;padding:.28rem .6rem;border-radius:999px;font-size:.95rem}
  
  /* Extras-Liste in der Details-Kachel */
  .details-card .extras-list{
    list-style:none; margin:10px 0 0; padding:0;
    display:grid; grid-template-columns:repeat(2, minmax(0,1fr));
    gap:6px 14px;
  }
  @media (max-width: 720px){ .details-card .extras-list{ grid-template-columns:1fr; } }
  .details-card .extras-list li{ position:relative; padding-left:14px; }
  .details-card .extras-list li::before{
    content:"•"; position:absolute; left:0; top:0; opacity:.6;
  }
  /* === Logo-Größen – harte Overrides === */
  
  /* Header: ~doppelt so groß (vorher ~26px) */
  .site-header .brand img,
  .site-header .container > a > img,
  .site-header .container img[alt*="Frankfurt"],
  .site-header img.logo {
    height: 52px !important;
    width: auto !important;
    display: block;
  }
  
  /* Footer: Größe wie der frühere Header (~26px) */
  .site-footer .brand img,
  .site-footer .container > a > img,
  .site-footer img.logo {
    height: 26px !important;
    width: auto !important;
    display: block;
  }
  
  /* Etwas mehr Luft im Header für das größere Logo */
  .site-header .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  /* Header – ~ doppelt so groß */
  .site-header .brand img,
  .site-header .container > a > img,
  .site-header img.logo,
  .site-header .container img[alt*="Frankfurt"]{
    height: 52px !important;
    width: auto !important;
    display: block;
  }
  
  /* Footer – Größe wie früherer Header (~26px) */
  .site-footer .brand img,
  .site-footer .container > a > img,
  .site-footer img.logo,
  .site-footer .container img[alt*="Frankfurt"]{
    height: 26px !important;
    width: auto !important;
    display: block;
  }
  
  /* etwas mehr Luft im Header für das größere Logo */
  .site-header .container{ padding-top:12px; padding-bottom:12px; }
  /* ================================
     Logo-Größen – HARTE OVERRIDES
     (bitte ans ENDE der app.css)
     ================================ */
  :root{
    /* Wunschgrößen: Header doppelt so groß, Footer wie bisheriger Header */
    --logo-header-h: 52px;  /* doppelt so groß wie ~26px */
    --logo-footer-h: 26px;  /* alte Header-Größe */
  }
  
  /* HEADER-Logo (sehr spezifisch + !important) */
  header.site-header .brand img,
  header.site-header .container > a.brand img,
  header.site-header .container > a img[alt="Frankfurt Apartments"]{
    height: var(--logo-header-h) !important;
    width: auto !important;
    max-height: none !important;
    display: block;
  }
  
  /* Etwas mehr vertikales Padding, damit das größere Logo Luft hat */
  header.site-header .container{
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  
  /* FOOTER-Logo (auf „alte Header-Größe“) */
  footer.site-footer .brand img,
  footer.site-footer .container > a.brand img,
  footer.site-footer .container img[alt="Frankfurt Apartments"]{
    height: var(--logo-footer-h) !important;
    width: auto !important;
    max-height: none !important;
    display: block;
  }
  /* =========================
     LOGO-GRÖSSEN HEADER & FOOTER
     ========================= */
  
  /* Header: so groß wie auf der alten Seite (~112px hoch) */
  .site-header .container{
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
  }
  .site-header .brand img{
    height:112px !important;   /* Zielhöhe */
    width:auto !important;     /* Seitenverhältnis bewahren */
    display:block;
  }
  
  /* Auf kleineren Screens etwas verkleinern, damit nichts umbricht */
  @media (max-width: 1024px){
    .site-header .brand img{ height:84px !important; }
  }
  @media (max-width: 640px){
    .site-header .brand img{ height:56px !important; }
  }
  
  /* Footer: so groß wie der bisherige Header (~52px hoch) */
  /* Greift unabhängig davon, ob im Footer das Bild in .brand steckt oder
     direkt in .container liegt – und überstimmt width/height-Attribute. */
  .site-footer .container > img,
  .site-footer .brand img,
  .site-footer img.logo{
    height:52px !important;
    width:auto !important;
    display:block;
  }
  /* ===========================
     LOGO-GRÖSSEN – OVERRIDES
     =========================== */
  :root{
    /* Header-Logo etwa wie auf der alten Seite (~64–66px) */
    --logo-header-h: 128px;
  
    /* Footer-Logo so groß wie dein JETZIGES Header-Logo (24px) */
    --logo-footer-h: 64px;
  }
  
  /* Header: Bild im <a class="brand"> … img */
  .site-header .brand img,
  .site-header .container > a img[alt*="Frankfurt"]{
    height: var(--logo-header-h) !important;
    width: auto !important;
    max-height: none !important;
    display: block;
  }
  
  /* etwas mehr Luft im Header, damit das größere Logo gut sitzt */
  .site-header .container{
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    align-items: center;
  }
  
  /* Footer: erstes Logo-Bild im Footer-Container */
  .site-footer .container img[alt*="Frankfurt"]{
    height: var(--logo-footer-h) !important;
    width: auto !important;
    max-height: none !important;
    display: block;
  }
  /* ---------- HERO: ruhiger Crop wie in der Demo ---------- */
  .expose-hero img{
    height: 420px;                /* etwas höher, wirkt ruhiger */
    object-fit: cover;
    object-position: 50% 30%;     /* zeigt den oberen Bildbereich mehr */
  }
  @media (max-width: 720px){
    .expose-hero img{ height: 300px; object-position: 50% 35%; }
  }
  
  /* ---------- Extras-Liste in der Details-Kachel ---------- */
  .details-card .extras-list{
    list-style:none; margin:10px 0 0; padding:0;
    display:flex; flex-wrap:wrap; gap:8px;
  }
  .details-card .extras-list li{
    background:rgba(255,255,255,.14);
    color:#eaf6f8;
    padding:.28rem .6rem;
    border-radius:999px;
    font-size:.95rem;
  }
  /* ===== HERO-BILD wie Demo (weniger abgeschnitten, responsive Höhe) ===== */
  .expose-hero { position: relative; border-radius: var(--radius-xl); overflow: hidden; margin: 12px 0 24px; box-shadow: var(--shadow); }
  .expose-hero img {
    width: 100%;
    height: clamp(240px, 36vw, 420px); /* ca. 16:9–21:9 */
    object-fit: cover;
    object-position: 50% 40%;          /* leicht nach oben fokussiert */
  }
  @media (max-width: 720px){
    .expose-hero img { height: clamp(200px, 48vw, 320px); object-position: 50% 50%; }
  }
  
  /* ===== Chips-Liste in der Details-Kachel (Ausstattung) ===== */
  .details-card .extras-list{
    list-style:none; margin:10px 0 0; padding:0;
    display:flex; flex-wrap:wrap; gap:8px;
  }
  .details-card .extras-list li{
    background:rgba(255,255,255,.14); color:#eaf6f8;
    padding:.28rem .6rem; border-radius:999px; font-size:.95rem
  }
  
  /* etwas Luft zwischen Blöcken in der Kachel */
  .details-card h4{ margin:14px 0 8px }
  .expose-hero img{height:clamp(240px,36vw,420px);object-fit:cover;object-position:50% 40%}
  @media (max-width:720px){.expose-hero img{height:clamp(200px,48vw,320px);object-position:50% 50%}}
  /* Hero: etwas höher fokussieren (Köpfe nicht abschneiden) */
  .expose-hero img{ object-position:50% 25% !important; }
  
  /* =========================================================
     >>>>> MEINE ERGÄNZUNGEN (NICHTS ANDERES GEÄNDERT) <<<<<
     ========================================================= */
  
  /* 1) Hero exakt auf Containerbreite – ohne HTML anpassen */
  .expose-hero{
    max-width: 1160px;      /* gleiche Breite wie .container */
    margin-left: auto;
    margin-right: auto;
  }
  
  /* 2) Finale Logo-Guards – sichern deine Wunschgrößen endgültig ab */
  header.site-header .brand img,
  header.site-header .container > a img[alt*="Frankfurt"]{
    height: var(--logo-header-h) !important;
    width: auto !important;
  }
  
  footer.site-footer .brand img,
  footer.site-footer .container > a img[alt*="Frankfurt"],
  footer.site-footer img.logo{
    height: var(--logo-footer-h) !important;
    width: auto !important;
  }
  /* Hero exakt auf Containerbreite halten */
.expose-hero{max-width:1160px;margin-left:auto;margin-right:auto}
.details-card .extras-text p { margin:.4rem 0; color:#eaf6f8; }
.details-card .extras-text a { color:#bfe8ff; }
/* Extras-Text in der Details-Kachel */
.details-card .extras-text p { margin: .4rem 0; color: #eaf6f8; }
.details-card .extras-text a { color: #bfe8ff; text-decoration: underline; }
/* ===== BRAND THEME: #146a7f ===== */
:root{
    /* Basis + feste Abstufungen (von Hand berechnet, keine CSS-Farbfunktionen nötig) */
    --brand-600: #146a7f; /* Basis */
    --brand-700: #116879; /* etwas dunkler */
    --brand-800: #0f5464; /* dunkel – ideal für Karten */
    --brand-900: #0c4452; /* sehr dunkel – ideal für Footer/Alt-Karten */
  }
  
  /* Header: transluzenter Verlauf in der neuen Grundfarbe */
  .site-header{
    background: linear-gradient(
      180deg,
      rgba(20,106,127,.95),
      rgba(20,106,127,.78)
    ) !important;
  }
  
  /* Primär-Button an die Marke anlehnen */
  .btn-primary{
    background: var(--brand-600) !important;
    border-color: var(--brand-800) !important;
    box-shadow: 0 8px 22px rgba(20,106,127,.25) !important;
  }
  
  /* Outline-Button: Kante & Text in Markenfarbe */
  .btn-outline{
    border-color: var(--brand-800) !important;
    color: var(--brand-800) !important;
  }
  
  /* Kartenfarben (Apartment-Karten & Details-Kachel) */
  .card,
  .apartment-card,
  .details-card,
  .card--details{
    background: var(--brand-800) !important; /* #0f5464 */
    color: #fff;
  }
  
  /* Alternative Kartenvariante – noch etwas dunkler */
  .card--alt{
    background: var(--brand-900) !important; /* #0c4452 */
  }
  
  /* Footer mit dunkler Marken-Variante */
  .site-footer{
    background: linear-gradient(
      180deg,
      rgba(12,68,82,.88),
      rgba(12,68,82,.96)
    ) !important;
    color:#e6f3f6;
  }
  
  /* Kleine Akzente: Chips behalten Lesbarkeit auf dunklem Grund */
  .extras-list li{
    background: rgba(255,255,255,.14);
    color:#eaf6f8;
  }
  /* ==== Soft White Background wie im Screenshot ==== */
/* Basisfarbe */
:root { --brand: #146a7f; }

/* Globaler Hintergrund */
html, body {
  background:
    /* weicher Glow links oben */
    radial-gradient(1200px 680px at 20% -120px,
      rgba(20,106,127, .14),     /* brand 14% */
      rgba(20,106,127, 0) 60%
    ),
    /* zweiter Glow rechts oben */
    radial-gradient(900px 500px at 90% -140px,
      rgba(20,106,127, .10),
      rgba(20,106,127, 0) 65%
    ),
    /* ganz zarter Hof mittig oben */
    radial-gradient(900px 600px at 50% 0px,
      rgba(20,106,127, .06),
      rgba(20,106,127, 0) 70%
    ),
    /* Grundverlauf von Weiß zu Eisblau */
    linear-gradient(180deg,
      #ffffff 0%,
      #f6fbff 58%,
      #eef6f9 100%
    );
  background-attachment: scroll, scroll, scroll, scroll; /* kein Parallax, wie im Shot */
}

/* Wichtig: eigene alten Hintergründe neutralisieren, damit nichts doppelt liegt */
main, .surface, .site-main, .content, .page-band {
  background: transparent; /* vorherige gradients entfernen */
}
/* ===========================
   Durchgehender Seiten-Hintergrund
   (nur zwischen Header & Footer)
   =========================== */

   :root { --brand: #146a7f; }

   /* 1) Weicher Verlauf über die ganze Seite */
   html, body { min-height: 100%; height: auto; }
   
   body{
     background:
       /* dezenter Glow links oben */
       radial-gradient(1200px 680px at 20% -120px,
         rgba(20,106,127,.14), rgba(20,106,127,0) 60%),
       /* dezenter Glow rechts oben */
       radial-gradient(900px 500px at 90% -140px,
         rgba(20,106,127,.10), rgba(20,106,127,0) 65%),
       /* Grundverlauf */
       linear-gradient(180deg,#ffffff 0%,#f6fbff 58%,#eef6f9 100%);
     background-repeat: no-repeat;
   }
   
   /* 2) Mittlere Bereiche transparent lassen,
      damit der Body-Verlauf durchläuft (keine „Streifen“) */
   main, .surface, .site-main, .content, .page-band,
   .section, .band, #apts, #apartments, #leistungen, #kontakt {
     background: transparent !important;
     border: 0 !important;           /* entfernt 1px-Border-Kanten */
     box-shadow: none;
   }
   
   /* evtl. Pseudo-Divider abschalten */
   .section::before, .section::after,
   .band::before, .band::after { content:none !important; }
   
   /* 3) WICHTIG: Header & Footer NICHT anfassen
      (falls sie zuvor auf transparent gesetzt wurden, hier zurücksetzen) */
   header.site-header{
     background: linear-gradient(180deg, rgba(14,43,50,.95), rgba(14,43,50,.78)) !important;
   }
   footer.site-footer{
     background: linear-gradient(180deg, rgba(5,24,28,.80), rgba(5,24,28,.92)) !important;
   }
   /* ===== Hero-Titel gut lesbar machen ===== */

/* Unterlage: stärkerer Gradient am unteren Bildrand */
.expose-head{
    position:absolute; left:0; right:0; bottom:0;
    padding: 18px 24px 26px;
    display:flex; align-items:flex-end; justify-content:center;
    text-align:center;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.45) 70%,
      rgba(0,0,0,.65) 100%
    );
  }
  
  /* Titel: weiß + kräftiger Schatten, zentriert */
  .hero__title{
    margin:0;
    color:#fff;
    font-weight:800;
    font-size: clamp(22px, 2.8vw, 34px);
    line-height:1.15;
    letter-spacing:.02em;
    text-shadow:
      0 8px 26px rgba(0,0,0,.55),
      0 2px 6px  rgba(0,0,0,.35);
    /* optionaler zarter Hintergrund hinter Zeilen */
    background: rgba(0,0,0,.25);
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-block;
    box-decoration-break: clone;  /* Hintergrund auch bei Zeilenumbruch */
  }
  
  /* Auf kleineren Screens noch etwas mehr Kontrast */
  @media (max-width: 720px){
    .expose-head{
      background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.72) 100%);
      padding-bottom: 18px;
    }
    .hero__title{ font-size: clamp(20px, 5.2vw, 28px); }
  }
  /* <section class="expose-hero title-outside"> … */
.expose-hero.title-outside .expose-head{
    position: static;
    background: none;
    padding: 10px 0 0;
  }
  .expose-hero.title-outside .hero__title{
    color:#0b1e25;
    text-shadow:none;
    background: transparent;
    text-align:left;              /* oder center, wenn gewünscht */
  }
  /* Titel unter dem Hero-Bild */
.expose-title{
    color:#0b1e25;                 /* schwarz auf hell */
    font-weight:800;
    font-size:clamp(22px, 2.8vw, 34px);
    line-height:1.15;
    letter-spacing:.01em;
    margin:12px auto 8px;          /* Abstand zum Bild & zum Content */
    padding:0 8px;                 /* min. Innenabstand, wirkt ruhiger */
  }
  
  /* Für kleine Screens: mittig & etwas kleiner */
  @media (max-width: 720px){
    .expose-title{
      text-align:center;
      font-size:clamp(20px, 5.2vw, 28px);
    }
  }
  
  /* Falls die alte Overlay-Überschrift noch irgendwo auftaucht: hart ausblenden */
  .expose-head{ display:none !important; }
  /* ==== Brandfarbe einmal zentral (falls noch nicht vorhanden) ==== */
:root{
    --c-brand: #146a7f;            /* Kachel-/Markenfarbe */
  }
  
  /* ==== FETT auf hellen Flächen in Kachel-Farbe ==== */
  /* Standard: überall erstmal einfärben */
  b, strong{
    color: var(--c-brand);
    font-weight: 700;              /* belasse deine Gewichte */
  }
  
  /* Ausnahmen: auf dunklen Karten / Kacheln NICHT umlackieren */
  .card b, .card strong,
  .details-card b, .details-card strong,
  .card--details b, .card--details strong,
  .on-dark b, .on-dark strong{
    color: inherit;                 /* nutzt die bestehende helle Schriftfarbe */
  }
  
  /* Deine vorhandene Regel für Fakten-Titel soll weiterhin gewinnen */
  .facts strong{                    /* bleibt z.B. #cfe8ea */
    /* hier nichts ändern – nur sicherstellen, dass diese Regel bestehen bleibt */
  }
  
  /* Optional: Fettschrift in Chips NICHT umlackieren */
  .extras-list b, .extras-list strong{ color: inherit; }
  /* =========================================
   Markenfarbe (falls noch nicht vorhanden)
   ========================================= */
:root{
    --c-brand: #146a7f;
  }
  
  /* =========================================
     1) Fett gesetzter Text auf hellen Flächen
     ========================================= */
  b, strong{
    color: var(--c-brand);
    font-weight: 700;
  }
  /* in dunklen Karten NICHT umlackieren */
  .card b, .card strong,
  .details-card b, .details-card strong,
  .card--details b, .card--details strong,
  .on-dark b, .on-dark strong{
    color: inherit;
  }
  
  /* =========================================
     2) Überschriften auf hellen Flächen
     (Titel unter dem Bild + Abschnittsüberschriften)
     ========================================= */
  /* global auf hellen Bereichen */
  .page-title,
  .prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6{
    color: var(--c-brand);
  }
  
  /* in dunklen Karten die vorhandenen Farben beibehalten */
  .card h1, .card h2, .card h3, .card h4, .card h5, .card h6,
  .details-card h1, .details-card h2, .details-card h3, .details-card h4, .details-card h5, .details-card h6,
  .card--details h1, .card--details h2, .card--details h3, .card--details h4, .card--details h5, .card--details h6{
    color: inherit;
  }
  
  /* (deine vorhandene Regel .details-card h3 { color:#eaf6f8; } bleibt bestehen) */
  .page-title{
    margin: 14px 0 12px;
    font-weight: 800;
    letter-spacing: .01em;
    color: var(--c-brand, #146a7f); /* Markenfarbe */
  }
  /* === Überschriften in Markenfarbe auf hellen Flächen === */
:root{ --c-brand: #146a7f; }

/* 1) Titel unter dem Hero-Bild */
.expose-title,
.expose-title a{
  color: var(--c-brand) !important;
}

/* 2) Generische Überschriften auf der Seite (aber NICHT in dunklen Karten) */
/* 2) Generische Überschriften auf der Seite (aber NICHT in dunklen Karten) */
main h1, main h2, main h3, main h4, main h5, main h6{
  color: var(--c-brand);
}
/* in dunklen Karten wieder neutralisieren */
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6,
.details-card h1, .details-card h2, .details-card h3, .details-card h4, .details-card h5, .details-card h6{
  color: inherit;
}
/* Links in Überschriften erben die Farbe */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{ color: inherit; }

/* 3) Apartments-Übersicht – sichere Treffer für deinen Seitentitel */
#apts h1,
#apartments h1,
.section > h1,
.band > h1,
.container > h1.page-title{
  color: var(--c-brand) !important;
}
/* === Globale Schrift: Arial === */
:root { --app-font: Arial, Helvetica, sans-serif; }

html, body,
button, input, select, textarea {
  font-family: var(--app-font) !important;
}

/* Falls einzelne Komponenten eigene Fonts gesetzt hatten */
h1, h2, h3, h4, h5, h6,
.nav a, .btn, .chip,
.prose, .prose * ,
.card, .details-card,
.apartment-card, .extras-list li,
.page-title, .expose-title {
  font-family: var(--app-font) !important;
}
/* Wenn du NUR Icon + Tooltip willst (ohne sichtbaren Text): */
  .icon-list.compact .icon-item{ justify-content: center; padding: 6px }
  .icon-list.compact .icon-item span{ position: absolute; left: -9999px }
  .hero--intro{
    padding: 56px 0 28px;
    background: radial-gradient(1200px 300px at 0 -100px, rgba(0,180,160,.08), rgba(0,0,0,0));
  }
  .eyebrow{
    color:#0a7; font-weight:700; letter-spacing:.02em; margin:0 0 .5rem;
  }
  .hero-title{
    font-size: clamp(2rem, 3.5vw + 1rem, 56px);
    line-height: 1.1; margin: 0 0 .75rem;
  }
  .hero-lead{
    max-width: 72ch; font-size: 1.1rem; color: #3b4b52;
  }
  /* === Hero (Apartments-Listing) – Feintuning === */

/* Falls du die Kachel-Farbe exakt setzen willst, trage sie hier als CSS-Variable ein */
:root{
  --tile: #0e6a75; /* <- anpassen falls dein Kachel-Teal anders ist */
}

.hero--intro{
  padding: 44px 0 20px;
  background: radial-gradient(1200px 300px at 0 -100px, rgba(0,180,160,.08), rgba(0,0,0,0));
}

.eyebrow{
  /* vorher grün – jetzt schwarz */
  color:#111;
  font-weight:700;
  letter-spacing:.02em;
  margin:0 0 .4rem;
}

.hero-title{
  color: var(--tile, #0e6a75);         /* Kachel-Farbe */
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 .6rem;
  /* etwas kleiner als vorher */
  font-size: clamp(1.6rem, 2.6vw + .9rem, 42px);
}

/* Ab großen Viewports nicht umbrechen -> eine Zeile */
@media (min-width: 1100px){
  .hero-title{ white-space: nowrap; }
}

.hero-lead{
  max-width: 72ch;
  font-size: 1.06rem;
  color: #111;                         /* schwarz */
}
/* --- Ausstattung: klare Badges + Text ------------------------------------ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 16px;
  margin: .25rem 0 1rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #cfd6da;        /* hellgrau wie deine alten */
  display: grid;
  place-items: center;
  flex: 0 0 32px;
}

.badge-icon img {
  width: 18px;
  height: 18px;
  opacity: .95;
}

.badge-icon .badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #55636c;
}

.feature-list span.label {
  font-size: 14px;
  color: #f0f6f7;             /* passt zu deiner Kachel */
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Extras-Liste unter der Ausstattung wieder sichtbar/stimmig */
.facts.extras-list {
  margin-top: 6px;
}
.btn-full { display:block; width:100%; text-align:center; }
/* Anfrage-Button */
.btn-inquiry{
  background:#19d1cf;
  color:#fff;
  border-color:#19d1cf;
}
.btn-inquiry:hover,
.btn-inquiry:focus{
  background:#13c3c1;   /* leicht dunkler für Hover */
  border-color:#13c3c1;
  color:#fff;
}
.btn-inquiry:active{ transform: translateY(0.5px); }

/* falls noch nicht vorhanden */
.btn-full{ display:block; width:100%; text-align:center; }
/* Einmal zentral (auf :root oder auf .details-card setzen)  */
:root{
  /* Kachelfarbe hier eintragen, falls abweichend */
  --tile-color: #0e5b63; /* <- deine Kachelfarbe */
}

/* Anfrage-Button */
.btn-inquiry{
  background:#19d1cf;
  color: var(--tile-color);          /* Text = Kachelfarbe */
  border-color:#19d1cf;
}
.btn-inquiry:hover,
.btn-inquiry:focus{
  background:#13c3c1;               /* leicht dunkler */
  border-color:#13c3c1;
  color: var(--tile-color);          /* bleibt Kachelfarbe */
}

/* Optional, falls du den Button breit haben willst */
.btn-full{ display:block; width:100%; text-align:center; }
:root{
  /* exakt die Farbe, die Header/Footer/Kachel nutzen */
  --brand-tile: #0e5b63; /* <- ggf. anpassen */
}

/* Anfrage-Button im Detail-Card */
.details-card .btn-inquiry,
.details-card .btn-inquiry:link,
.details-card .btn-inquiry:visited{
  background: #19d1cf;
  border-color: #19d1cf;
  color: var(--brand-tile) !important;  /* Text = Kachelfarbe */
  text-decoration: none !important;     /* Unterstreichung weg */
}

.details-card .btn-inquiry:hover,
.details-card .btn-inquiry:focus{
  background: #13c3c1;
  border-color: #13c3c1;
  color: var(--brand-tile) !important;  /* bleibt Kachelfarbe */
  text-decoration: none !important;
}

/* Brand-Variante (wie Kachel/Header) */
:root{
  --tile: #0e5b63;   /* eure Kachel/Header-Farbe (falls anders: hier ändern) */
  --accent: #19d1cf; /* euer Akzent (Button) */
}

.icon--brand svg { color: var(--tile); }           /* Strichfarbe */
.icon-badge--brand { background: rgba(25,209,207,.18); } /* zarte Fläche */
.icon-badge--accent { background: #19d1cf22; }    /* alternative Akzentfläche */

/* Wenn du die Linie heller/dunkler brauchst */
.icon--light svg { color:#b9c3c7; }
.icon--dark  svg { color:#0e5b63; }
.icon-list.compact .icon-item{display:flex;align-items:center;gap:.6rem;margin:.5rem 0}
.icon-badge{display:inline-flex;align-items:center;justify-content:center;padding:10px;border-radius:9999px;background:rgba(255,255,255,.08)}
.icon-badge--brand{background:rgba(25,209,207,.15)} /* #19d1cf */
.icon{width:22px;height:22px;display:inline-block}
.icon--brand{fill:none;stroke:var(--brand-600,#0e2b32);stroke-width:1.7}

/* Eintrag */
.icon-item{
  display:flex; align-items:center; gap:10px;
  min-width:0;
  background: transparent;           /* <- keine Pillen mehr */
  padding:0;
  color:#eaf6f8;                      /* Text/Iconfarbe auf Kachel */
}

/* Badge-Hintergrund */
.icon-badge{
  width: var(--size); height: var(--size);
  display:grid; place-items:center;
  border-radius:12px;
  background: rgba(255,255,255,.12);
}

/* Brand-/Akzent-Varianten */
:root{
  --tile: #0e5b63;     /* Kachel-/Header-Farbe (ggf. anpassen) */
  --accent: #19d1cf;   /* Button-/Akzentfarbe */
}
.icon-badge--brand{ background: rgba(25,209,207,.18); }  /* zarter Akzent */
.icon--brand svg    { color: var(--tile); }              /* Strich in Kachel-Farbe */

/* SVG selbst */
.icon svg{ width:20px; height:20px; color: currentColor; fill: currentColor; }

/* Label in kompakter Variante verstecken */
.icon-list.compact .icon-item span:last-child{
  position:absolute; left:-9999px;
}
/* Badges bleiben wie gehabt – hier nur die Icon-Färbung für Bitmap-PNGs */
/* PNG-Icons als farbige Silhouetten über CSS-Masken */
/* PNG-Icons als farbige Silhouetten per CSS-Maske */
/* PNG-Icons per Masking einfärben (Breite/Höhe > 0!) */
.icon-old{
  width:22px; height:22px; display:inline-block;
  background-color: var(--ink);
  -webkit-mask: var(--icon) no-repeat center / contain;
          mask: var(--icon) no-repeat center / contain;
}
.icon-badge--brand .icon-old, .icon--brand-old{ background-color: var(--ink); }
.icon-list.compact .icon-old{ width:20px; height:20px; }

/* SVG-Icons (Sprite) – sichtbar machen */
.icon{ width:22px; height:22px; display:inline-block; }
.icon-badge--brand .icon, .icon--brand { color: var(--ink); }
/* ===== ICON-FIX (SVG + alte PNGs) ===== */

/* SVG-Icons aus dem Sprite */
.icon{
  width:22px;
  height:22px;
  display:inline-block;
  vertical-align:middle;
}
.icon use{ pointer-events:none; }
/* SVG-Icons: Farbübergabe über currentColor */
.icon{ display:inline-block; vertical-align:middle; }
.icon, .icon *{
  stroke: currentColor !important;
  fill: currentColor !important;   /* <- war 'none' => machte viele Icons unsichtbar */
  stroke-width: 1.5 !important;
  vector-effect: non-scaling-stroke;
}
/* Falls einzelne Pfade explizit als "leer" gedacht sind, respektieren */
.icon [fill="none"],
.icon *[fill="none"]{ fill: none !important; }

/* Badge, das die Icon-Farbe vererbt (currentColor) */
.icon-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px; height:32px;
  border-radius:9999px;
  background: rgba(255,255,255,.06);
  color: #fff;                 /* in der dunklen Karte -> weißes Icon */
}

/* PNG-Icons (alte Seite) per CSS-Maske einfärben */
.icon-old{
  width:22px; height:22px; display:inline-block;
  background-color: currentColor; /* vererbt von .icon-badge */
  -webkit-mask: var(--icon) no-repeat center / contain;
          mask: var(--icon) no-repeat center / contain;
}
.icon-badge--brand .icon-old,
.icon--brand-old{ background-color: currentColor; }

.icon-list.compact .icon,
.icon-list.compact .icon-old{ width:20px; height:20px; }
/* ===== ICONS – FINAL (überschreibt alles vorherige) ===== */
.details-card .icon-list{
  --size: 40px;
  list-style: none; margin: 8px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px;
}
@media (max-width:520px){
  .details-card .icon-list{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.details-card .icon-item{
  display:flex; align-items:center; gap:10px; min-width:0;
  background: transparent; padding:0; color:#fff;
}

.details-card .icon-badge{
  width: var(--size); height: var(--size);
  display:grid; place-items:center; border-radius:12px;
  background: rgba(255,255,255,.12);
  color:#fff; /* -> currentColor für die Icons */
}

/* SVG: immer Strich in currentColor */
.details-card .icon{
  width:20px; height:20px; display:inline-block; vertical-align:middle;
  color:inherit !important;
}
.details-card .icon *, .details-card .icon use{
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 1.8 !important;
  vector-effect: non-scaling-stroke;
}

/* Alte PNGs per Maske einfärben */
.details-card .icon-old{
  width:20px; height:20px; display:inline-block;
  background-color: currentColor !important;
  -webkit-mask: var(--icon) no-repeat center / contain !important;
          mask: var(--icon) no-repeat center / contain !important;
}

/* Kompakte Variante: Text ausblenden */
.icon-list.compact .icon-item{ justify-content:center; }
.icon-list .icon-item > span:last-child{ position:absolute; left:-9999px; }
/* ===== HERO-CAROUSEL ===================================== */
.hero-carousel{
  position: relative;
  border-radius: var(--radius-xl, 22px);
  overflow: hidden;
  margin: 10px 0 24px;
  box-shadow: var(--shadow, 0 12px 36px rgba(0,0,0,.22));
  max-width: 1160px;           /* wie eure .container */
  margin-left: auto;
  margin-right: auto;
}

/* Höhe/Verhältnis wie bei euren Karten – fühlt sich „richtig“ an */
.hero-carousel .hero-frame{
  position: relative;
  aspect-ratio: 16 / 9;        /* nach Wunsch: 4/3, 21/9 etc. */
}
@supports not (aspect-ratio: 1){
  .hero-carousel .hero-frame{ height: clamp(240px, 36vw, 420px); }
}

/* Slides liegen übereinander, nur eines sichtbar */
.hero-slide{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% var(--hero-focus, 30%);
  opacity: 0; transition: opacity .25s ease;
  display: block;
}
.hero-slide.is-active{ opacity: 1; }

/* Pfeile */
.hero-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border: 0; border-radius: 999px;
  background: rgba(0,0,0,.35); color: #fff; font-size: 28px;
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: saturate(140%) blur(2px);
}
.hero-prev{ left: 10px; }
.hero-next{ right: 10px; }
.hero-nav:hover{ background: rgba(0,0,0,.5); }

/* Dots */
.hero-dots{
  position: absolute; left: 0; right: 0; bottom: 8px;
  display: flex; gap: 6px; justify-content: center;
}
.hero-dot{
  width: 8px; height: 8px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.55); cursor: pointer;
}
.hero-dot.is-active{ background: #fff; }
/* ===== HERO-CAROUSEL ===================================== */
.hero-carousel{
  position: relative;
  border-radius: var(--radius-xl, 22px);
  overflow: hidden;
  margin: 10px 0 24px;
  box-shadow: var(--shadow, 0 12px 36px rgba(0,0,0,.22));
  max-width: 1160px;              /* wie eure .container */
  margin-left: auto; margin-right: auto;
}
.hero-carousel .hero-frame{
  position: relative;
  aspect-ratio: 16 / 9;           /* Verhältnis nach Wunsch */
}
@supports not (aspect-ratio: 1){
  .hero-carousel .hero-frame{ height: clamp(240px, 36vw, 420px); }
}
.hero-slide{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% var(--hero-focus, 30%);
  opacity: 0; transition: opacity .25s ease;
}
.hero-slide.is-active{ opacity: 1; }

/* Pfeile */
.hero-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border: 0; border-radius: 999px;
  background: rgba(0,0,0,.35); color: #fff; font-size: 28px;
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: saturate(140%) blur(2px);
}
.hero-prev{ left: 10px; }
.hero-next{ right: 10px; }
.hero-nav:hover{ background: rgba(0,0,0,.5); }

/* Dots */
.hero-dots{
  position: absolute; left: 0; right: 0; bottom: 8px;
  display: flex; gap: 6px; justify-content: center;
}
.hero-dot{
  width: 8px; height: 8px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.55); cursor: pointer;
}
.hero-dot.is-active{ background: #fff; }
/* H1 unter dem Hero sauber ausrichten */
.expose-title{
  max-width:1160px;
  margin: 12px auto 10px;
  padding: 0 8px;
  color: var(--c-brand, #146a7f);
  font-weight: 800;
}

/* Hero-Nav über das Bild legen und sicher klickbar machen */
.hero-carousel{ position:relative; }
.hero-nav{ z-index: 3; }            /* vor den Slides */
.hero-slide{ position:absolute; inset:0; z-index:1; }
.hero-dots{ z-index: 2; }
/* ===== Details-Kachel: Iconliste kompakt ===== */
.details-card .icon-list{
  --size: 30px;                           /* kleineres Badge */
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px 10px;                          /* weniger Luft */
  margin-top: 6px;
}
@media (min-width:1100px){
  .details-card .icon-list{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.details-card .icon-item{
  display:flex; align-items:center; gap:8px;
  padding:2px 0;                          /* sehr kompakt */
  min-width:0; background:transparent; color:#fff;
}
.details-card .icon-badge{
  width:var(--size); height:var(--size);
  display:grid; place-items:center;
  border-radius:10px;
  background:rgba(255,255,255,.10);
}
.details-card .icon{ width:18px; height:18px; }
.details-card .badge-dot{ width:6px; height:6px; border-radius:999px; background:#cfe0e6; }

/* Liste in der Kachel ebenfalls enger */
.details-card .facts li{ margin:4px 0; }
/* ===== Details-Kachel: Icons groß & sehr dicht nebeneinander ===== */
.details-card .icon-list{
  --size: 42px;                              /* Badge-Größe */
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));  /* 5 pro Reihe */
  gap: 6px 8px;                              /* minimaler Abstand */
  margin: 8px 0 6px;
  padding: 0;
  list-style: none;
  justify-items: center;
  align-items: center;
}

/* responsiv etwas weniger Spalten */
@media (max-width:1024px){ .details-card .icon-list{ grid-template-columns:repeat(4,1fr); } }
@media (max-width:520px) { .details-card .icon-list{ grid-template-columns:repeat(3,1fr); } }

.details-card .icon-item{
  display:flex; align-items:center; justify-content:center;
  gap:0; padding:0; margin:0 !important;     /* KEIN zusätzlicher Außenabstand */
  min-width:0; background:transparent; color:#fff;
}

.details-card .icon-badge{
  width:var(--size); height:var(--size);
  display:grid; place-items:center;
  border-radius:12px;
  background: rgba(255,255,255,.12);
}

/* Icon-Größen */
.details-card .icon      { width:22px; height:22px; }
.details-card .icon-old  { width:22px; height:22px; }
.details-card .badge-dot { width:8px; height:8px; border-radius:50%; background:#cfe0e6; }
/* Extras in der Details-Kachel kompakt */
.details-card .extras-list{ margin:6px 0 10px; padding-left:16px; }
.details-card .extras-list li{ margin:4px 0; }
.details-card .extras-text p{ margin:.4rem 0; color:#eaf6f8; }
.details-card .extras-text a{ color:#bfe8ff; text-decoration:underline; }
/* ==== Extras wieder als einfache Zeilen (keine Pillen) ==== */
.details-card .extras-list{ 
  list-style: none; 
  margin: 6px 0 10px; 
  padding: 0; 
}
.details-card .extras-list li{
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 4px 0 !important;
  box-shadow: none !important;
  color: #eaf6f8;           /* bleibt gut lesbar auf der Kachel */
  display: block;
}
/* falls irgendwo ein Bullet über ::before gesetzt wurde: aus */
.details-card .extras-list li::before{ content: none !important; }
/* ===== Listing-Karten: Button & Preis fix am Boden ===== */
.apartment-card { position: relative; display: flex; flex-direction: column; }

.apartment-card .body{
  position: relative;
  /* Platz für Button/Preis lassen */
  padding: 14px 16px 62px;
  min-height: 150px; /* bei sehr kurzen Texten gleiche Höhe */
}

/* Titel zweizeilig, sauber abgeschnitten */
.apartment-card .title{
  margin: 0 0 .35rem 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Button bleibt unten links */
.apartment-card .body .btn{
  position:absolute;
  left:16px;
  bottom:14px;
}

/* PREIS: unten rechts + fett (nimmt die letzte .meta in der Karte) */
.apartment-card .body .meta:last-of-type{
  position:absolute;
  right:16px;
  bottom:18px;
  margin:0;
  font-weight:800;
  font-size:1rem;
  letter-spacing:.01em;
  text-align:right;
  white-space:nowrap;        /* kein Zeilenumbruch */
}/* ===== Footer-Layout ===== */
.site-footer .container {
  padding: 28px 20px;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr)); /* genug Breite pro Spalte */
  gap: 24px 40px;
  align-items: start;
}

/* Brand-Spalte: Logo über Text */
.site-footer .brand img{
  display: block;          /* verhindert „inline“-Nebeneinander */
  height: 40px;            /* oder was zu deinem Logo passt */
  width: auto;
  margin: 0 0 10px 0;      /* Abstand Tagline unter Logo */
}

.site-footer .brand p{
  margin: 0 0 8px 0;
  max-width: none;         /* falls irgendwo begrenzt wurde */
  white-space: normal;     /* sicherstellen, dass normal umbrochen wird */
}

/* Spalten generisch */
.site-footer .footer-col h4{ margin: 0 0 10px; }
.site-footer .footer-col p{  margin: 0 0 6px; }

/* Responsive: 2 Spalten / 1 Spalte */
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}
/* ================================
   Mobile Header – kompakter
   ================================ */

/* Tablet und kleiner */
@media (max-width: 768px) {
  .site-header{
    padding-block: 10px;      /* weniger vertikaler Innenabstand */
    min-height: 0;            /* kein erzwungener Mindest-Höhenbalken */
  }

  .site-header .container{
    align-items: center;
    gap: 12px;
  }

  /* Logo kleiner */
  .site-header .brand img,
  .site-header .logo{
    height: 32px;             /* vorher größer */
    width: auto;
  }

  /* Navi kompakter */
  .site-header nav ul{
    gap: 8px;
  }
  .site-header nav a{
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.2;
  }
}

/* Phone-portrait sehr klein */
@media (max-width: 480px) {
  .site-header{
    padding-block: 8px;
  }

  .site-header .brand img,
  .site-header .logo{
    height: 26px;
  }

  .site-header nav a{
    padding: 6px 8px;
    font-size: 13px;
  }

  /* Optional: Nav leicht verglasen für Lesbarkeit */
  .site-header .site-nav{
    background: rgba(0,0,0,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
  }
}
/* ===== Footer-Layout feinjustieren ===== */
.site-footer .footer-grid{
  /* mehr Platz für Adresse, weniger Luft zwischen den Spalten */
  grid-template-columns: 280px 160px 200px minmax(320px, 1fr);
  column-gap: 48px;
  align-items: start;
}

/* Logo-Block kompakt halten */
.site-footer .brand img{ width: 150px; height: auto; }
.site-footer .brand p{ margin: 8px 0 0; }

/* "Rechtliches": Links untereinander statt nebeneinander */
.site-footer .legal p{ margin: 0; }
.site-footer .legal p a{
  display: block;
  line-height: 1.5;
}
.site-footer .legal p a + a{ margin-top: 6px; }

/* Adresse etwas mehr „links“ wirken lassen (durch geringeren Innenabstand) */
.site-footer .address{ padding-left: 4px; }

/* optional: Adresse möglichst in einer Zeile halten,
   ohne auf kleinen Screens zu quetschen */
.site-footer .address address{
  white-space: nowrap;
}

/* Responsive (Tablet & darunter): 2 Spalten, Adresse über volle Breite */
@media (max-width: 1024px){
  .site-footer .footer-grid{
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 28px;
  }
  .site-footer .address{ grid-column: span 2; }
}
/* Footer – Brand-Block sauber untereinander */
.site-footer .brand{
  display: flex;              /* klare vertikale Stapelung */
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.site-footer .brand img{ 
  display: block; 
}

.site-footer .brand .tagline{
  margin: 10px 0 0;           /* Abstand unter dem Logo */
  line-height: 1.35;
  white-space: normal;        /* falls irgendwo nowrap gesetzt war */
  max-width: 280px;           /* orientiert sich an der 1. Grid-Spalte */
}

.site-footer .brand .muted{
  margin-top: 8px;
  opacity: .7;
}
/* ================================
   Responsive, kompakter Header
   ================================ */

/* Grundwerte – per var leicht verstellbar */
:root{
  --hdr-pad-y: 16px;           /* vertikale Innenabstände */
  --hdr-pad-x: 20px;           /* horizontale Innenabstände */
  --hdr-logo-w: clamp(140px, 22vw, 260px); /* Logo-Breite Desktop→Tablet */
}

/* Header-Grundlayout (deine Glasoptik lassen wir unverändert) */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  padding: calc(var(--hdr-pad-y) + env(safe-area-inset-top)) var(--hdr-pad-x) var(--hdr-pad-y);
}

/* Logo skalieren statt fixe px-Werte */
.site-header .brand img{
  width: var(--hdr-logo-w);
  height: auto;
  display: block;
}

/* Nav-Pills etwas kompakter */
.site-header .nav-main{ gap: 10px; }
.site-header .nav-main a{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1;
}

/* ====== Breakpoints ====== */

/* Tablet (<= 1024px) – alles ein Stück kleiner */
@media (max-width: 1024px){
  :root{
    --hdr-pad-y: 12px;
    --hdr-logo-w: clamp(130px, 26vw, 200px);
  }
  .site-header .nav-main a{ padding: 9px 12px; font-size: 14.5px; }
}

/* Phone (<= 680px) – kompakt */
@media (max-width: 680px){
  :root{
    --hdr-pad-y: 10px;
    --hdr-logo-w: clamp(120px, 38vw, 170px);
  }
  .site-header{ border-radius: 0 } /* sicherheitshalber */
  .site-header .nav-main{ gap: 8px; }
  .site-header .nav-main a{ padding: 8px 11px; font-size: 14px; }
}

/* Super-klein (<= 360px) – noch ein Tick kleiner */
@media (max-width: 360px){
  :root{
    --hdr-pad-y: 8px;
    --hdr-logo-w: 120px;
  }
  .site-header .nav-main a{ padding: 7px 10px; font-size: 13.5px; }
}

/* Optional: Wenn der Header im Verhältnis zum Inhalt noch „hoch“ wirkt,
   kannst du den oberen Rand des ersten Blockes leicht reduzieren: */
.surface > :first-child{ margin-top: 0 }
/* =========================================
   Header kompakt auf Handy & Tablet (force)
   ========================================= */

/* Grundlayout: flach & zentriert */
.site-header{
  padding: 10px 16px !important;
  padding-top: calc(10px + env(safe-area-inset-top)) !important;
}
.site-header .container{ display:flex; align-items:center; gap:12px; }

/* Logo IMMER klein halten – notfalls mit !important */
.site-header img{ height:auto; width:auto; }
.site-header .brand img,
.site-header .logo img,
.site-header > .container img:first-child{
  height: 36px !important;         /* Desktop/Tablet */
  width: auto !important;
}

/* Nav-Pill kompakter */
.site-header .nav-main{ gap:10px; }
.site-header .nav-main a{
  padding: 9px 12px !important;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1;
}

/* Tablet */
@media (max-width: 1024px){
  .site-header{ padding: 8px 14px !important; }
  .site-header .brand img,
  .site-header .logo img,
  .site-header > .container img:first-child{
    height: 32px !important;
  }
  .site-header .nav-main a{ padding: 8px 11px !important; font-size: 14px; }
}

/* Phone */
@media (max-width: 680px){
  .site-header{ padding: 8px 12px !important; }
  .site-header .brand img,
  .site-header .logo img,
  .site-header > .container img:first-child{
    height: 28px !important;       /* iPhone-Optik */
  }
  .site-header .nav-main a{ padding: 7px 10px !important; font-size: 13.5px; }
}

/* GANZ klein */
@media (max-width: 360px){
  .site-header .brand img,
  .site-header .logo img,
  .site-header > .container img:first-child{
    height: 26px !important;
  }
}

/* Der erste Inhaltsblock direkt unter dem Header
   bekommt weniger Top-Padding – sonst wirkt der Kopf zu hoch */
@media (max-width: 680px){
  .surface > *:first-child{
    padding-top: 12px !important;
    margin-top: 0 !important;
  }
}
/* ==== Compact Glass Header (mobile + tablet) ==== */
.site-header{
  /* weniger vertikale Höhe – passt sich der Viewport-Breite an */
  padding-block: clamp(10px, 2.2vw, 18px);
}

/* Logo dynamisch skalieren */
.site-header .brand img,
.site-header .site-brand img,
.site-header .logo img{
  height: clamp(28px, 7vw, 46px); /* Handy: ~28–34px, Tablet: ~36–42px, Desktop: 46px max */
  width: auto;
}

/* Buttons im Header etwas kleiner auf schmalen Geräten */
@media (max-width: 900px){
  .site-header nav a,
  .site-header .nav a,
  .site-header .btn{
    font-size: 14px;
    padding: 8px 12px;
    line-height: 1.2;
  }
  .site-header nav{ gap: 8px; }
}

/* iPhone-Bereich: noch einen Tick enger */
@media (max-width: 600px){
  .site-header{
    padding-block: 10px;
  }
  .site-header nav a,
  .site-header .nav a,
  .site-header .btn{
    font-size: 13px;
    padding: 7px 10px;
  }
}

/* Sicherheitsnetz: jede fixe/min Höhe am Header killen */
.site-header,
.site-header::before,
.site-header .glass,
.site-header .bar{
  min-height: 0 !important;
  height: auto !important;
}
/* ==== Compact Glass Header (mobile + tablet) ==== */
.site-header{
  padding-block: clamp(10px, 2.2vw, 18px);
}

.site-header .brand img,
.site-header .logo img,
.site-header .site-brand img{
  height: clamp(28px, 7vw, 46px); /* Handy klein, Tablet mittel, Desktop max 46px */
  width: auto;
}

@media (max-width: 900px){
  .site-header nav a,
  .site-header .nav a,
  .site-header .btn{
    font-size: 14px;
    padding: 8px 12px;
    line-height: 1.2;
  }
  .site-header nav{ gap: 8px; }
}

@media (max-width: 600px){
  .site-header{ padding-block: 10px; }
  .site-header nav a,
  .site-header .nav a,
  .site-header .btn{
    font-size: 13px;
    padding: 7px 10px;
  }
}

/* falls irgendwo min-height gesetzt war */
.site-header,
.site-header::before,
.site-header .glass,
.site-header .bar{
  min-height: 0 !important;
  height: auto !important;
}
/* ===== Responsive Header-Bar ===== */
.site-header{
  position: sticky; top: 0; z-index: 100;
  /* dein bestehender Verlauf/Background kann bleiben */
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:14px 18px;
}
.site-header .brand img{
  /* Desktop-Größe */
  height: 46px; width: auto; display:block;
}
.site-header .nav{ display:flex; align-items:center; gap:12px; }
.site-header .nav a{
  padding:.55rem .70rem; border-radius:10px;
  color:#fff; text-decoration:none;
}

/* Tablet ↓ */
@media (max-width: 1024px){
  .site-header .brand img{ height: 38px; }
  .site-header .nav a{ padding:.45rem .60rem; font-size:.95rem; }
}

/* Phones ↓ */
@media (max-width: 768px){
  .site-header .container{ padding:10px 12px; }
  .site-header .brand img{ height: 30px; }
  .site-header .nav{ gap:8px; }
  .site-header .nav a{ padding:.38rem .50rem; font-size:.85rem; }
}

/* Sehr schmale Phones ↓ – nur die CTA zeigen */
@media (max-width: 420px){
  .site-header .brand img{ height: 26px; }
  .site-header .nav a{ display:none; }
  .site-header .nav a.btn,
  .site-header .nav a.btn-primary{ 
    display:inline-flex; 
    padding:.45rem .70rem; font-size:.9rem;
  }
}
/* ===== Header: responsive Logo & kompakte Abstände ===== */

/* Grundlayout */
.site-header {
  padding-block: 10px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo nie „100% breit“ werden lassen */
.site-header .brand img {
  display: block;
  height: auto !important;
  /* responsive Breite: min 150px, skaliert mit Viewport, max 240px */
  width: clamp(150px, 34vw, 240px) !important;
}

/* Navigation kompakter und nicht übergroß auf kleinen Screens */
.site-header .nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2.2vw, 18px);
  flex-wrap: nowrap;
}
.site-header .nav a {
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1;
  padding: 8px 12px;
  border-radius: 999px;
}

/* etwas mehr Luft ab Tablet */
@media (min-width: 600px) {
  .site-header { padding-block: 12px; }
  .site-header .brand img { width: clamp(170px, 24vw, 260px) !important; }
}
@media (min-width: 900px) {
  .site-header { padding-block: 16px; }
  .site-header .brand img { width: clamp(190px, 18vw, 280px) !important; }
}

/* Fallback-Schranke für sehr schmale Geräte (alte iPhones im Zoom) */
@media (max-width: 360px) {
  .site-header .brand img { width: 140px !important; }
  .site-header .nav a { padding: 6px 10px; }
}
/* === FINAL HEADER FIX (wins everything) ==================== */
/* Bitte GANZ ans Ende von assets/app.css einfügen */

header.site-header{
  padding: clamp(8px, 2vw, 14px) 16px !important;
}

header.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}

header.site-header .brand img,
header.site-header .container > a.brand img,
header.site-header .container > a img[alt*="Frankfurt"],
header.site-header img.logo{
  /* Höhe immer automatisch -> Verhältnis bleibt korrekt */
  height: auto !important;
  max-height: none !important;
  display: block !important;

  /* Logo skaliert über BREITE (Phone klein, Tablet mittel, Desktop gedeckelt) */
  width: clamp(120px, 34vw, 220px) !important;
}

/* Tablet feiner */
@media (min-width: 600px){
  header.site-header .brand img,
  header.site-header .container > a img[alt*="Frankfurt"],
  header.site-header img.logo{
    width: clamp(150px, 26vw, 240px) !important;
  }
}

/* Sehr schmale Phones – noch kleiner */
@media (max-width: 360px){
  header.site-header .brand img,
  header.site-header .container > a img[alt*="Frankfurt"],
  header.site-header img.logo{
    width: 130px !important;
  }
}

/* ==== Mobile-Navi sichtbar & scrollbar (überstimmt alte Hides) ==== */
@media (max-width: 480px){
  .site-header .nav a{ 
    display: inline-flex !important;
    padding: 6px 10px;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .site-header .nav{
    gap: 8px;
    overflow-x: auto;               /* statt umbrechen */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .site-header .nav::-webkit-scrollbar{ display: none; }
}
/* ==== FIX: Mobile-Nav nie verstecken + sauber umbrechen ==== */
@media (max-width: 420px){
  /* Container darf umbrechen, Nav springt unter das Logo */
  .site-header .container{ flex-wrap: wrap; }

  /* Nav auf volle Breite, links ausrichten */
  .site-header .nav{
    order: 2;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 6px;
  }

  /* Links NICHT verstecken (überstimmt alte Regel) */
  .site-header .nav a{ 
    display: inline-flex !important;
    padding: 6px 10px;
    font-size: 13.5px;
    line-height: 1.2;
  }

  /* Logo etwas kompakter, damit alles passt */
  .site-header .brand img{ 
    width: 150px !important; 
    height: auto !important;
  }
}
/* ===== Header-Navigation: immer sichtbar auf Phones ===== */
@media (max-width: 740px){
  .site-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;                 /* <-- WICHTIG: zweite Zeile erlauben */
    padding-inline: 12px;
  }

  /* Logo bleibt links, eigene Zeile oben */
  .site-header .brand{
    flex: 0 1 auto;
    order: 1;
  }

  /* Nav auf voller Breite darunter, zentriert */
  .site-header .nav{
    order: 2;
    flex: 1 0 100%;                  /* ganze Zeile einnehmen */
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    overflow: visible;               /* nichts abschneiden */
  }

  /* Pills kompakter, damit alles passt */
  .site-header .nav a{
    font-size: 14px;
    line-height: 1.2;
    padding: 8px 12px;
    border-radius: 12px;
    white-space: nowrap;
  }
}

/* Extra-Schranke für sehr schmale Geräte/Zoom */
@media (max-width: 390px){
  .site-header .nav a{
    font-size: 13.5px;
    padding: 7px 10px;
  }
}
/* === Hero/Carousel: dünner Rand + weicher Schatten =================== */
.expose-hero,
.hero-carousel{
  position: relative;
  border-radius: var(--radius-xl, 22px);
  overflow: hidden;
  /* weicher Drop-Shadow unter dem Block */
  box-shadow: 0 18px 38px rgba(0,0,0,.22), 0 8px 18px rgba(0,0,0,.16);
}

/* 1-px „Hairline“-Rand (als Overlay, damit nichts verschiebt) */
.expose-hero::before,
.hero-carousel::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  /* auf hellem Hintergrund: dezentes Teal, sonst leichtes Weiß */
  border: 1px solid rgba(12,68,82,.20);     /* #0c4452 @ 20% */
}

@media (max-width: 720px){
  /* auf sehr kleinen Screens den Rand noch sanfter */
  .expose-hero::before,
  .hero-carousel::before{
    border-color: rgba(12,68,82,.14);
  }
}

/* Falls der Bereich über dunklem Header liegt, Rand etwas heller */
.on-dark .expose-hero::before,
.on-dark .hero-carousel::before{
  border-color: rgba(255,255,255,.22);
}
/* === Hero/Carousel: Hairline-Rand + Schatten sichtbar machen === */
.hero-carousel{
  position: relative;
  border-radius: var(--radius-xl, 22px);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,.22), 0 8px 18px rgba(0,0,0,.16);
}

/* Rand über den Bildern, aber klickt nicht mit */
.hero-carousel::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(12,68,82,.20); /* dezent */
  pointer-events:none;
  z-index:3; /* WICHTIG: über den Slides */
}

/* Stacking-Order sauber definieren */
.hero-carousel .hero-slide{ z-index:1; }
.hero-carousel .hero-dots { z-index:4; }   /* über dem Rand */
.hero-carousel .hero-nav  { z-index:5; }   /* über allem, bleibt klickbar */
/* === Hero/Carousel: kräftiger Rahmen + Schatten ================== */
.hero-carousel{
  border-radius: var(--radius-xl, 22px);
  overflow: hidden;
  /* dunklerer Drop-Shadow */
  box-shadow:
    0 22px 48px rgba(12, 68, 82, .35),
    0 8px 18px rgba(0, 0, 0, .20);
  position: relative;
}

/* Außenrahmen (kräftiger, 2px) */
.hero-carousel::before{
  content:"";
  position:absolute; inset:0;
  border-radius:inherit;
  border:2px solid rgba(12, 68, 82, .45);   /* <- Stärke/Farbe hier drehen */
  pointer-events:none;
  z-index:3;                                /* über den Slides */
}

/* feine Innenkante als „Glanz“ */
.hero-carousel::after{
  content:"";
  position:absolute;
  inset:1px;                                /* 1px nach innen versetzt */
  border-radius: calc(var(--radius-xl, 22px) - 1px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  pointer-events:none;
  z-index:3;
}

/* Stacking-Order sichern */
.hero-carousel .hero-slide{ z-index:1; }
.hero-carousel .hero-dots { z-index:4; }
.hero-carousel .hero-nav  { z-index:5; }

/* Optional: auf sehr kleinen Screens etwas zurücknehmen */
@media (max-width: 680px){
  .hero-carousel::before{ border-color: rgba(12,68,82,.35); }
  .hero-carousel{ box-shadow:
      0 18px 38px rgba(12,68,82,.28),
      0 6px 16px rgba(0,0,0,.18); }
}
/* ===== Apartment-Karten: kräftiger Rahmen + Schatten ===== */

/* ein gemeinsamer Radius, damit wir innen 1px abziehen können */
:root{ --apt-radius: 18px; }

.apartment-card{
  position: relative;
  border-radius: var(--apt-radius);
  overflow: hidden;
  /* etwas satterer Schatten */
  box-shadow:
    0 18px 38px rgba(12, 68, 82, .28),
    0 6px 16px  rgba(0, 0, 0,  .18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

/* Außenrahmen (2px) – wirkt auf dunkler Kachel sehr edel */
.apartment-card::before{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  border:2px solid rgba(12,68,82,.45);   /* ← kräftig; bei Bedarf .35/.55 anpassen */
  pointer-events:none;
  z-index:3;
}

/* feine Innenkante als Glanz (1px) */
.apartment-card::after{
  content:"";
  position:absolute;
  inset:1px;                               /* 1px nach innen */
  border-radius: calc(var(--apt-radius) - 1px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  pointer-events:none;
  z-index:3;
}

/* Hover: leicht anheben + border etwas „frischer“ */
.apartment-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 48px rgba(12, 68, 82, .34),
    0 8px 18px  rgba(0, 0, 0,  .20);
}
.apartment-card:hover::before{ border-color: rgba(25,209,207,.35); } /* dein Akzent */

/* damit Bild & Inhalt sauber den Radius übernehmen */
.apartment-card .thumb{ border-radius: 0; display:block; }