.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

/* ═══ PAGE HERO ═══ */
.page-hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: calc(11vh + 64px) 32px 80px; /* Header (11vh) + einheitlicher Abstand */
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(30,61,107,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,151,42,0.1) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.3) 80%, transparent);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 24px;
}
.hero-tag-dot { width:6px; height:6px; border-radius:50%; background:var(--gold-bright); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
.hero-h1 {
  font-family: var(--ff-serif); font-size: clamp(44px, 6vw, 78px);
  font-weight: 300; line-height: 1.05; color: var(--white);
}
.hero-h1 em { font-style: italic; color: var(--gold-bright); }
.hero-h1 strong { font-weight: 600; display: block; }
.hero-sub {
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.6); max-width: 460px; margin-top: 20px;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.06); border-radius: var(--r-md);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.07); flex-shrink: 0;
}
.hero-stat:last-child { grid-column: 1 / -1; }
.hero-stat {
  background: rgba(11,28,53,0.6); backdrop-filter: blur(8px); padding: 22px 32px; min-width: 160px;
}
.hero-stat-num { font-family: var(--ff-serif); font-size: 36px; font-weight: 600; color: var(--gold-bright); line-height: 1; }
.hero-stat-label { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }

@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .hero-stats { flex-direction: row; flex-wrap: wrap; } .hero-stat { flex: 1; min-width: 130px; } }
@media (max-width: 600px) { .page-hero { padding: calc(11vh + 48px) 20px 64px; } }

/* ═══ TAB BAR ═══ */
.tab-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.tab-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.tab-buttons { display: flex; }
.tab-btn {
  padding: 20px 28px;
  font-family: var(--ff-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: color var(--dur), border-color var(--dur); white-space: nowrap;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold-bright); }
.tab-count {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(11,28,53,0.3);
  white-space: nowrap; flex-shrink: 0;
}
@media (max-width: 600px) { .tab-bar-inner { padding: 0 20px; } .tab-btn { padding: 16px 16px; font-size: 12px; } .tab-count { display: none; } }

/* ═══ LISTINGS SECTION ═══ */
.listings-section { padding: 80px 0 120px; }

/* Section heading */
.listing-group { margin-bottom: 80px; }
.listing-group-head {
  display: flex; align-items: center; gap: 24px; margin-bottom: 48px;
}
.listing-group-title {
  font-family: var(--ff-serif); font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; color: var(--navy);
}
.listing-group-title em { font-style: italic; color: var(--gold); }
.listing-group-line { flex: 1; height: 1px; background: var(--border); }
.listing-group-num { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

/* ═══ LISTING CARDS ═══ */
.listing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .listing-grid { grid-template-columns: 1fr; } }

.listing-card {
  background: var(--navy-mid);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(201,151,42,0.15);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: block; cursor: pointer;
}
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(11,28,53,0.10);
  border-color: rgba(11,28,53,0.18);
}

/* image area */
.listing-img-wrap {
  position: relative; overflow: hidden; height: 220px; background: var(--navy);
}
.listing-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.listing-card:hover .listing-img-wrap img { transform: scale(1.05); filter: brightness(0.75); }

/* badge on image */
.listing-type-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); background: var(--gold-bright);
  padding: 5px 12px; border-radius: 100px;
}
.listing-type-badge.mieten { background: var(--gold-bright); }
.listing-type-badge.kaufen { background: var(--white); color: var(--navy); }

/* no-link overlay */
.listing-no-link {
  position: absolute; inset: 0;
  background: rgba(11,28,53,0.45);
  display: flex; align-items: center; justify-content: center;
}
.listing-no-link-text {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px; border-radius: 100px;
}

/* arrow top right */
.listing-arrow {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.listing-arrow svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; }
.listing-card:hover .listing-arrow { opacity: 1; transform: translateY(0); background: var(--gold-bright); border-color: var(--gold-bright); }
.listing-card:hover .listing-arrow svg { stroke: var(--navy); }

/* card body */
.listing-body { padding: 24px; }
.listing-title {
  font-family: var(--ff-serif); font-size: 22px; font-weight: 600;
  color: var(--white); line-height: 1.2; margin-bottom: 6px;
}
.listing-sub {
  font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; line-height: 1.5;
}

/* specs row */
.listing-specs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.spec-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500; color: var(--white);
  background: rgba(255,255,255,0.08); padding: 5px 10px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}
.spec-pill svg { width: 11px; height: 11px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* address */
.listing-address {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.45);
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
}
.listing-address svg { width: 11px; height: 11px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ═══ ANFRAGE BANNER ═══ */
.anfrage-banner {
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 56px 60px;
  position: relative;
  margin-top: 80px;
}
.anfrage-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201,151,42,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.anfrage-banner::after {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px; background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.anfrage-text { position: relative; z-index: 1; }
.anfrage-text .eyebrow { color: var(--gold-bright); }
.anfrage-h2 {
  font-family: var(--ff-serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 400; color: var(--white); line-height: 1.15;
}
.anfrage-h2 em { font-style: italic; color: var(--gold-bright); }
.anfrage-p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-top: 12px; max-width: 440px; }
.anfrage-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-sans); font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--navy); background: var(--gold-bright);
  padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); white-space: nowrap;
}
.btn-gold:hover { background: var(--gold); transform: translateY(-2px); }
.btn-gold svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-sans); font-size: 14px; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7); background: transparent;
  padding: 14px 28px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: border-color var(--dur), color var(--dur), background var(--dur); white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

@media (max-width: 768px) {
  .anfrage-banner { grid-template-columns: 1fr; padding: 40px 32px; }
  .anfrage-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 500px) { .anfrage-banner { padding: 32px 24px; } }

/* ═══ EMPTY STATE ═══ */
.empty-state {
  text-align: center; padding: 80px 32px;
  border: 1px dashed rgba(11,28,53,0.15); border-radius: var(--r-lg);
}
.empty-state-icon { font-size: 40px; margin-bottom: 16px; opacity: 0.3; }
.empty-state-text { font-size: 15px; color: var(--muted); }

/* ═══ FADE ANIMATIONS ═══ */
.js-ready .fade-up { opacity:0; transform:translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.fade-up.visible { opacity:1; transform:translateY(0); }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s}
.d4{transition-delay:.32s} .d5{transition-delay:.40s} .d6{transition-delay:.48s}
